@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;
  }
}

/* ====================================================
Base style & container
==================================================== */
body {
  color: #3f2a2e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}

.inner {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1230px;
}

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

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

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

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

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

/* ====================================================

==================================================== */
.js-inview {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}

.js-fadeIn {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1 !important;
}

.sec-lead {
  position: relative;
  margin-top: -170px;
  padding: 218px 0 170px;
}

@media screen and (max-width: 1800px) {
  .sec-lead {
    margin-top: -11vw;
    padding: 12.11vw 0 9.44vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-lead {
    background: #f7ebe8;
    margin-top: 0;
    padding: 0 0 11.51vw;
  }
}

@media screen and (min-width: 835px) {
  .sec-lead .img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }
  .sec-lead .img-bg img {
    width: 100%;
    height: 100%;
  }
}

.sec-lead .inner {
  position: relative;
}

.sec-lead__ttl img {
  max-width: 66.9%;
}

.sec-lead .txt-block {
  margin-top: 130px;
  margin-left: 54.888%;
}

@media screen and (max-width: 1800px) {
  .sec-lead .txt-block {
    margin-top: 7.22vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-lead .txt-block {
    margin: -6.5vw 0 0;
    padding: 0 6vw;
  }
}

.sec-lead .txt-block__ttl {
  margin-bottom: 25px;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 834px) {
  .sec-lead .txt-block__ttl {
    margin-bottom: 10px;
    font-size: 23px;
    font-size: 2.3rem;
  }
}

.sec-approach .ttl-wrap {
  position: relative;
  margin-top: -35px;
  margin-bottom: -35px;
  height: 267px;
  text-align: center;
  background: url(../img/bg-approach_pc.png) no-repeat center center;
  background-size: auto 267px;
}

@media screen and (max-width: 1800px) {
  .sec-approach .ttl-wrap {
    margin-top: -1.9vw;
    margin-bottom: -1.9vw;
    height: 14.8333vw;
    background-size: auto 14.86vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-approach .ttl-wrap {
    margin-top: -2.39vw;
    margin-bottom: -2.39vw;
    height: 35.7vw;
    background: url(../img/bg-approach_sp.png) no-repeat center center;
    background-size: auto 35.7vw;
  }
}

.sec-approach__ttl {
  line-height: 267px;
}

@media screen and (max-width: 1800px) {
  .sec-approach__ttl {
    line-height: 14.8333vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-approach__ttl {
    line-height: 35.7vw;
  }
}

.sec-approach__ttl img {
  max-width: 830px;
}

@media screen and (max-width: 1800px) {
  .sec-approach__ttl img {
    width: 46.11vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-approach__ttl img {
    width: max(220px, 56.35vw);
  }
}

.sec-approach .recommend-block {
  padding-top: 110px;
  background: url(../img/bg-secapproach_pc.png) no-repeat center top;
  background-size: cover;
}

@media screen and (max-width: 1800px) {
  .sec-approach .recommend-block {
    padding-top: 6.11vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-approach .recommend-block {
    padding-top: 7.19vw;
    background: url(../img/bg-secapproach_sp.png) no-repeat center top;
    background-size: cover;
  }
}

.sec-approach .recommend-block__ttl {
  margin-bottom: 60px;
}

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

.sec-approach .recommend-block__ttl img {
  max-width: 890px;
}

@media screen and (max-width: 1800px) {
  .sec-approach .recommend-block__ttl img {
    width: 77.93vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-approach .recommend-block__ttl img {
    width: max(290px, 77.93vw);
  }
}

@media screen and (max-width: 834px) {
  .sec-approach .recommend-block .w-approach {
    margin-bottom: 10px;
  }
}

.sec-approach .recommend-block .w-approach img {
  max-width: 636px;
}

@media screen and (max-width: 834px) {
  .sec-approach .recommend-block .w-approach img {
    max-width: 250px;
  }
}

@media screen and (max-width: 640px) {
  .sec-approach .recommend-block .w-approach img {
    max-width: 180px;
  }
}

@media screen and (min-width: 835px) {
  .sec-approach .recommend-block .txt-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;
    margin: 45px auto 60px;
    max-width: 680px;
  }
}

.sec-approach .recommend-block .txt-block .c-txt01 {
  width: 305px;
}

@media screen and (max-width: 834px) {
  .sec-approach .recommend-block .txt-block .c-txt01 {
    display: inline-block;
    width: auto;
    margin: 20px 0;
  }
}

@media screen and (max-width: 834px) {
  .sec-approach .recommend-block .txt-block .c-txt01 {
    width: 85%;
  }
}

.sec-bnr {
  padding-bottom: 90px;
  background: url(../img/bg_btn02.png) repeat-y center top;
  background-size: 100% auto;
}

@media screen and (max-width: 1800px) {
  .sec-bnr {
    background-size: 1800px auto;
  }
}

@media screen and (max-width: 834px) {
  .sec-bnr {
    margin-top: 30px;
    padding-bottom: 40px;
    background-size: contain;
  }
}

.sec-bnr .bg-sec {
  padding-top: 50px;
  background: url(../img/bg_btn.png) no-repeat center top;
  background-size: 100% auto;
}

@media screen and (max-width: 1800px) {
  .sec-bnr .bg-sec {
    background-size: 1800px auto;
  }
}

@media screen and (max-width: 834px) {
  .sec-bnr .bg-sec {
    padding-top: 0;
    background-size: contain;
  }
}

.sec-bnr .inner {
  max-width: 1030px;
}

@media screen and (max-width: 834px) {
  .sec-bnr img {
    width: 88%;
  }
}

.sec-bnr .btn-block {
  margin-top: -35px;
}

@media screen and (max-width: 834px) {
  .sec-bnr .btn-block {
    margin-top: -4.19vw;
  }
}

.btn-block {
  padding: 30px 6% 5px;
  background: #fff;
}

@media screen and (max-width: 834px) {
  .btn-block {
    padding: 20px 6% 5px;
  }
}

.btn-block__ttl {
  color: #3f2a2e;
  font-size: 26px;
  font-size: 2.6rem;
}

@media screen and (max-width: 834px) {
  .btn-block__ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.btn-block .btn-box {
  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-top: 30px;
}

@media screen and (max-width: 640px) {
  .btn-block .btn-box {
    margin-top: 20px;
  }
}

.btn-block .btn-box .c-btn01 {
  margin: 0 0 30px;
  width: 48.295%;
}

@media screen and (max-width: 640px) {
  .btn-block .btn-box .c-btn01 {
    margin: 0 0 20px;
    width: 100%;
  }
}

.sec-point {
  padding-bottom: 1px;
  background: #f8f4f1;
}

@media screen and (min-width: 835px) {
  .sec-point .ttl-wrap {
    padding: 70px 0 112px;
    background: url(../img/bg-ttl-product_pc.png) no-repeat center top;
    background-size: cover;
  }
}

@media screen and (max-width: 1800px) {
  .sec-point .ttl-wrap {
    padding: 3.88vw 0 6.22vw;
  }
}

@media screen and (max-width: 1230px) {
  .sec-point .ttl-wrap {
    padding: 5.69vw 0 9.1vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-point .ttl-wrap {
    padding: 0;
  }
  .sec-point .ttl-wrap .inner {
    padding: 0;
  }
}

.sec-point__ttl {
  margin: 0 auto;
  max-width: 1100px;
}

@media screen and (max-width: 1230px) {
  .sec-point__ttl {
    width: 89.4%;
  }
}

@media screen and (max-width: 834px) {
  .sec-point__ttl {
    width: 100%;
  }
}

.sec-point .lead-block {
  margin: 75px 0 0;
}

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

.sec-point .lead-block__ttl {
  margin: 0 auto 50px;
  max-width: 754px;
}

@media screen and (max-width: 1200px) {
  .sec-point .lead-block__ttl {
    margin: 0 auto 35px;
    width: 80%;
  }
}

@media screen and (max-width: 834px) {
  .sec-point .lead-block__ttl {
    width: 94%;
  }
}

.sec-point .lead-block p {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.9;
}

@media screen and (max-width: 640px) {
  .sec-point .lead-block p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-point .point-block {
  position: relative;
  margin: 100px 0 30px;
  padding: 0 5.4% 62px;
  background-color: #fff;
}

@media screen and (max-width: 834px) {
  .sec-point .point-block {
    width: calc(100% + 30px);
    margin: 30px -15px;
    padding: 0 25px 30px;
  }
}

.sec-point .point-block:before {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  display: inline-block;
  width: 100%;
  height: 30px;
  background: url(../img/shadow.png) no-repeat center top;
  background-size: 100%;
}

.sec-point .point-block__ttlbox {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  top: -30px;
  margin: 0 auto 75px;
  max-width: 600px;
/*  max-width: 800px;
*/  color: #fff;
  background: #666665;
/*  background: #c2b482;
*/}

@media screen and (max-width: 834px) {
  .sec-point .point-block__ttlbox {
    display: block;
    margin-bottom: max(30px, 7.19%);
    top: 0;
    left: -25px;
    width: calc(100% + 50px);
    max-width: none;
  }
}

.sec-point .point-block__ttlbox .txt-no {
/*  position: relative;
*/  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;
  padding: 40px 10px;
  width: 200px;
  font-size: 20px;
  font-size: 2rem;
  background: #666665;
  margin: 0 auto;
}

@media screen and (max-width: 834px) {
  .sec-point .point-block__ttlbox .txt-no {
    padding: 0 10px;
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 36px;
  }
}

@media screen and (min-width: 835px) {
  .sec-point .point-block__ttlbox .txt-no:before, .sec-point .point-block__ttlbox .txt-no:after {
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 2px;
    height: 30px;
    background: #fff;
  }
  .sec-point .point-block__ttlbox .txt-no:before {
    top: 0;
  }
  .sec-point .point-block__ttlbox .txt-no:after {
    bottom: 0;
  }
}

.sec-point .point-block__ttlbox .txt-no .no {
  display: inline-block;
  width: 32px;
  height: 32px;
  color: #666665;
  font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  font-weight: 600;
  font-size: 30px;
  font-size: 3rem;
  line-height: 34px;
  background: #fff;
  border-radius: 50%;
}

@media screen and (max-width: 834px) {
  .sec-point .point-block__ttlbox .txt-no .no {
    margin-left: 5px;
    font-size: 20px;
    font-size: 2rem;
    width: 24px;
    height: 24px;
    line-height: 26px;
  }
}

.sec-point .point-block__ttlbox .txt-ttl {
  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;
  padding: 10px 0 25px;
  width: calc(100% - 200px);
}

@media screen and (max-width: 834px) {
  .sec-point .point-block__ttlbox .txt-ttl {
    padding: 10px 0 15px;
    width: 100%;
  }
}

.sec-point .point-block__ttl {
  line-height: 1.2;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 600;
}

@media screen and (max-width: 834px) {
  .sec-point .point-block__ttl {
    line-height: 1.4;
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.sec-point .point-block__ttl .txt-s {
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 834px) {
  .sec-point .point-block__ttl .txt-s {
    font-size: 23px;
    font-size: 2.3rem;
  }
}

.sec-point .point-block .txt-point {
  margin: 0 auto 110px;
  max-width: 704px;
}

@media screen and (max-width: 1200px) {
  .sec-point .point-block .txt-point {
    margin-bottom: max(30px, 7.19%);
    width: 90%;
  }
}

.sec-point .point01 {
  background: #fff url(../img/img-product01_pc.png) no-repeat right top 42%;
  background-size: 70% auto;
}

@media screen and (max-width: 834px) {
  .sec-point .point01 {
    background: #fff;
  }
}

.sec-point .point01 .txt-block {
  padding-bottom: 120px;
  padding-right: 46.72%;
}

@media screen and (max-width: 1200px) {
  .sec-point .point01 .txt-block {
    padding-bottom: 10%;
  }
}

@media screen and (max-width: 834px) {
  .sec-point .point01 .txt-block {
    margin-bottom: -3%;
    padding-bottom: max(200px, 47.36%);
    padding-right: 0;
    background: #fff url(../img/img-product01_sp.png) no-repeat right bottom -10%;
    background-size: contain;
  }
}

.sec-point .point01 .txt-block__ttl {
  margin-bottom: 55px;
  max-width: 474px;
}

@media screen and (max-width: 1200px) {
  .sec-point .point01 .txt-block__ttl {
    margin-bottom: max(20px, 4.79%);
  }
}

.sec-point .point02 .support {
  padding: 35px 4.2% 10px;
  margin-top: 50px;	
  background: rgba(219, 219, 219, 0.4);
}

@media screen and (max-width: 640px) {
  .sec-point .point02 .support {
    padding-bottom: 20px;
  }
}

.sec-point .point02 .support_list {
  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;
}

.sec-point .point02 .support_list__item {
  margin-bottom: 20px;
  width: 25%;
  color: #231815;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .sec-point .point02 .support_list__item {
    margin-bottom: max(30px, 7.19%);
    padding: 0 1%;
    width: 50%;
  }
}

@media screen and (max-width: 640px) {
  .sec-point .point02 .support_list__item {
    padding: 0;
    margin-bottom: 0px;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .sec-point .point02 .support_list__item:first-child {
    margin-bottom: 25px;
  }
}

.sec-point .point02 .support_list__item .txt-s {
  color: #666;
  font-size: 14px;
  font-size: 1.4rem;
}

.sec-point .point02 .support_list__item img {
  margin-bottom: 10px;
  width: 100%;
  max-width: 375px;
}

@media screen and (max-width: 640px) {
  .sec-point .point02 .support_list__item img {
    width: 70%;
  }
}

.sec-point .point02 .support__ttl {
  margin-bottom: 20px;
  color: #444;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 834px) {
  .sec-point .point02 .support__ttl {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.sec-point .point02 .support__ttl span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #444444;
}

.sec-point .point02 {
  position: relative;
  background: #fff url(../img/bg-product02_pc.png) no-repeat right top;
  background-size: 100% auto;
  padding-bottom: 150px;
}

@media screen and (max-width: 834px) {
  .sec-point .point02 {
    background: #fff;
  }
}

.sec-point .point02:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
/*  bottom: 0;
*/top: 40%;
  width: 100%;
  height: 568px;
  background: url(../img/bg-product03_pc.png) no-repeat left bottom;
  background-size: contain;
}

@media screen and (max-width: 834px) {
  .sec-point .point02:before {
    padding-bottom: max(180px, 43.16vw);
    background: url(../img/bg-product03_sp.png) no-repeat left bottom;
    background-size: auto 50vw;
  }
}

@media screen and (max-width: 640px) {
  .sec-point .point02:before {
    background-size: contain;
  }
}

.sec-point .point02 .txt-block {
  position: relative;
  max-width: 540px;
}

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

.sec-point .point02 .txt-block__ttl {
  color: #5e504d;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
}

@media screen and (max-width: 834px) {
  .sec-point .point02 .txt-block__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.sec-point .point02 .txt-block__ttl .c-ft__SJP {
  font-size: 34px;
  font-size: 3.4rem;
}

@media screen and (max-width: 834px) {
  .sec-point .point02 .txt-block__ttl .c-ft__SJP {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.sec-point .point02 .txt-block .c-txt03 {
  color: #545555;
}

.sec-point .point02 .block01 {
  margin-bottom: 125px;
}

@media screen and (max-width: 834px) {
  .sec-point .point02 .block01 {
    margin-bottom: 0;
    padding-bottom: max(40px, 8vw);
    background: url(../img/bg-product02_sp.png) no-repeat right top 16.5vw;
    background-size: 70% auto;
  }
}

@media screen and (max-width: 640px) {
  .sec-point .point02 .block01 {
    padding-bottom: max(30px, 7.2vw);
    background-position: right top 16vw;
    background-size: 75% auto;
  }
}

@media screen and (min-width: 835px) {
  .sec-point .point02 .block01 .ttl-box {
    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-bottom: 30px;
  }
}

.sec-point .point02 .block01 .ttl-box span {
  margin-right: 22px;
  width: 181px;
}

@media screen and (max-width: 834px) {
  .sec-point .point02 .block01 .txt-block__ttl {
    margin-bottom: 15px;
    margin-top: 30px;
  }
}

.sec-point .point02 .block02 {
  margin-left: auto;
}

.sec-point .point02 .block02 .txt-block__ttl {
  margin-bottom: 35px;
}

@media screen and (max-width: 834px) {
  .sec-point .point02 .block02 .txt-block__ttl {
    margin-bottom: 15px;
  }
}

.sec-prescription {
  padding: 125px 0 85px;
  background: url(../img/bg-free.jpg) no-repeat center top;
  background-size: 100% auto;
}

@media screen and (max-width: 1800px) {
  .sec-prescription {
    background-size: 1800px auto;
  }
}

@media screen and (max-width: 834px) {
  .sec-prescription {
    padding: 60px 0 30px;
    background-size: cover;
  }
}

.sec-prescription__ttl {
  margin-bottom: 40px;
  color: #749eb8;
  font-size: 40px;
  font-size: 4rem;
}

@media screen and (max-width: 834px) {
  .sec-prescription__ttl {
    margin-bottom: 20px;
    font-size: 30px;
    font-size: 3rem;
  }
}

.sec-prescription__ttl .txt-s {
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 834px) {
  .sec-prescription__ttl .txt-s {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.sec-howtouse {
  padding: 135px 0 140px;
}

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

.sec-howtouse__ttl {
  margin: 0 auto 40px;
  max-width: 510px;
}

@media screen and (max-width: 834px) {
  .sec-howtouse__ttl {
    width: 70%;
    min-width: 250px;
  }
}

.sec-howtouse__ttl .cap {
  display: inline-block;
  margin-top: 20px;
  color: #444;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 834px) {
  .sec-howtouse__ttl .cap {
    margin-top: 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.sec-howtouse .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: 0 auto 30px;
  max-width: 954px;
}

.sec-howtouse .lead-block__img {
  width: 40.8%;
}

@media screen and (max-width: 834px) {
  .sec-howtouse .lead-block__img {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 400px;
  }
}

.sec-howtouse .lead-block__txt {
  width: 54.5%;
}

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

.sec-howtouse .lead-block__ttl {
  margin-bottom: 25px;
  font-size: 34px;
  font-size: 3.4rem;
}

@media screen and (max-width: 834px) {
  .sec-howtouse .lead-block__ttl {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 640px) {
  .sec-howtouse .lead-block__ttl {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.sec-howtouse .step_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-howtouse .step_list__item {
  position: relative;
  margin-bottom: 30px;
  width: 28.8%;
}

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

.sec-howtouse .step_list__item:not(:last-child) {
  margin-right: 6.5%;
}

@media screen and (max-width: 640px) {
  .sec-howtouse .step_list__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.sec-howtouse .step_list__item:not(:last-child):before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../img/arrow.png) no-repeat center center;
  background-size: contain;
}

@media screen and (min-width: 641px) {
  .sec-howtouse .step_list__item:not(:last-child):before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 45%;
    right: -15%;
    width: 23px;
    height: 25px;
  }
}

@media screen and (max-width: 990px) {
  .sec-howtouse .step_list__item:not(:last-child):before {
    top: 40%;
    width: 20px;
    height: 22px;
  }
}

@media screen and (max-width: 834px) {
  .sec-howtouse .step_list__item:not(:last-child):before {
    right: -18%;
  }
}

@media screen and (max-width: 640px) {
  .sec-howtouse .step_list__item:not(:last-child):before {
    top: auto;
    bottom: -38px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 23px;
    height: 25px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.sec-howtouse .step_list__item p {
  color: #545555;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.666;
  margin-top: 20px;
}

@media screen and (max-width: 834px) {
  .sec-howtouse .step_list__item p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-products {
  padding: 110px 0 60px;
  background: #f4f5f8;
  background: -webkit-gradient(linear, left top, right top, from(#f4f5f8), color-stop(50%, #fffefe), to(#f4f5f8));
  background: -o-linear-gradient(left, #f4f5f8 0%, #fffefe 50%, #f4f5f8 100%);
  background: linear-gradient(to right, #f4f5f8 0%, #fffefe 50%, #f4f5f8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f5f8', endColorstr='#f4f5f8',GradientType=1 );
}

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

.sec-products__ttl {
  margin-bottom: 20px;
  color: #444;
  font-size: 20px;
  font-size: 2rem;
}

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

.sec-products__ttl span {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid #444;
}

.sec-products .product-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;
}

.sec-products .product-block__img {
  width: 37%;
}

@media screen and (max-width: 834px) {
  .sec-products .product-block__img {
    margin: 0 auto 40px;
    width: 100%;
    max-width: 550px;
  }
}

.sec-products .product-block__txt {
  width: 60%;
}

@media screen and (max-width: 834px) {
  .sec-products .product-block__txt {
    width: 100%;
  }
}

.sec-products .product-block__cap01 {
  max-width: 450px;
}

@media screen and (max-width: 834px) {
  .sec-products .product-block__cap01 {
    width: 55%;
    min-width: 290px;
  }
}

.sec-products .product-block__cap02 {
  display: inline-block;
  padding: 2px 0;
  width: 100%;
  max-width: 450px;
  margin: 8px 0 20px;
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-size: 2.5rem;
  background: #a69795;
}

@media screen and (max-width: 834px) {
  .sec-products .product-block__cap02 {
    font-size: max(20px, 2.9vw);
  }
}

.sec-products .product-block__ttl {
  margin-bottom: 25px;
  color: #666;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 834px) {
  .sec-products .product-block__ttl {
    font-size: max(25px, 3.59vw);
  }
}

.sec-products .product-block__desc {
  color: #666;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 640px) {
  .sec-products .product-block__desc {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-products .product-block__price {
  color: #666;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .sec-products .product-block__price {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.sec-products .product-block__price .price {
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 640px) {
  .sec-products .product-block__price .price {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.sec-products .product-block__price .txt-s {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
}

@media screen and (max-width: 640px) {
  .sec-products .product-block__price .txt-s {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-products .product-block__price .c-ft__SJP {
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 834px) {
  .sec-products .product-block__price .c-ft__SJP {
    font-size: max(25px, 3.59vw);
  }
}

.sec-products .support-comp {
  position: relative;
  margin: 40px 0 30px;
  padding: 30px 5.5% 15px;
  border: 1px solid #c2b482;
}

@media screen and (max-width: 834px) {
  .sec-products .support-comp {
    margin: 30px 0;
    padding: 20px 4% 15px;
  }
}

.sec-products .support-comp:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  width: 38%;
  height: 5px;
  background: #c2b482;
}

.sec-products .support-comp__ttl {
  margin-bottom: 10px;
  color: #231815;
  font-size: 25px;
  font-size: 2.5rem;
}

@media screen and (max-width: 834px) {
  .sec-products .support-comp__ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.sec-products .support-comp__list {
  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;
}

.sec-products .support-comp__list-item {
  margin-bottom: 15px;
  padding: 6px;
  width: 49%;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  background: #b39354;
  border-radius: 30px;
}

@media screen and (max-width: 1200px) {
  .sec-products .support-comp__list-item {
    font-size: 2vw;
  }
}

@media screen and (max-width: 640px) {
  .sec-products .support-comp__list-item {
    width: 100%;
    font-size: max(18px, 2.8vw);
  }
}

.sec-btnbtm {
  padding: 50px 0;
  background: url(../img/bg_btn02.png) repeat-y center top;
  background-size: 100% auto;
  border-bottom: 80px solid #c7786e;
}

@media screen and (max-width: 1800px) {
  .sec-btnbtm {
    background-size: 1800px auto;
  }
}

@media screen and (max-width: 834px) {
  .sec-btnbtm {
    background-size: contain;
    border-bottom-width: 40px;
  }
}

.sec-btnbtm .inner {
  max-width: 1030px;
}

.fade-up {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
      transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), -webkit-transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), -webkit-transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  -o-transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), -webkit-transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
}

.fade-up.active {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
}

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

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

.c-ft__not {
  font-family: "Noto Sans JP", sans-serif;
}

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

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

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

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

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

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

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

/*テキストMODULE*/
.c-txt01 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77;
}

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

.c-txt02 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.c-txt03 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .c-txt03 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

/*リンクMODULE*/
/*ボタンMODULE*/
.c-btn01 {
  display: inline-block;
  padding: 32px 10px;
  width: 100%;
  color: #fff;
  font-size: 26px;
  font-size: 2.6rem;
  background: #69533c;
}

@media screen and (max-width: 834px) {
  .c-btn01 {
    padding: 20px 10px;
    font-size: 21px;
    font-size: 2.1rem;
  }
}

/* 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;
  }
}

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

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