@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: #353535;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  background: #f3f2f0;
  overflow: hidden;
}

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

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

/* ====================================================
Header
==================================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background: #f3bfc1;
  z-index: 100;
  opacity: 0;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#main-header .inner {
  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;
  height: 66px;
}

#main-header .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

#main-header .fn-sns {
  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-left: auto;
}

#main-header .fn-sns__item {
  font-size: 18px;
  font-size: 1.8rem;
}

#main-header .fn-sns__item:not(:first-child) {
  margin-left: 30px;
}

@media screen and (max-width: 834px) {
  #main-header .fn-sns__item:not(:first-child) {
    margin-left: 15px;
  }
}

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

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

.c-fc__pk {
  color: #ecaeb1;
}

.c-ft__gal {
  font-family: "Galada", cursive;
}

.c-ft__lat {
  font-family: "Lato", sans-serif;
}

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

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

.c-ft__js {
  font-family: "Julius Sans One", sans-serif;
}

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

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

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

.c-shadow {
  text-shadow: 1px 1px 0px rgba(143, 91, 94, 0.6);
}

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

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

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

/*テキストMODULE*/
.c-txt01 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

.c-txtind {
  padding-left: 1em;
  text-indent: -1em;
}

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

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

@media screen and (max-width: 990px) {
  .c-txt03 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.c-txt03__pk {
  color: #f3bfc1;
}

.c-txt03__pu {
  color: #c8a7c9;
}
.c-txt03__or {
    color: #ecb6a0;
}

.c-ttl-w {
  position: relative;
  padding-bottom: 5px;
  padding-right: 5px;
  font-size: 70px;
  font-size: 7rem;
  line-height: 1;
}

@media screen and (max-width: 990px) {
  .c-ttl-w {
    font-size: max(26px, 7.0707vw);
  }
}

.c-ttl-w .txt-shadow {
  position: absolute;
  right: 0;
  bottom: 0;
  color: rgba(243, 191, 193, 0.7);
}

.c-ttl-w .txt-shadow.c-pu {
  color: #d7b8d8;
}

.c-ttl-w .c-shadow {
  position: relative;
}

/*リンクMODULE*/
/*ボタンMODULE*/
.c-btn-detail {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #7c6e6f;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .08em;
  line-height: 50px;
  text-align: center;
  background: #f9ddde;
  border-radius: 30px;
}

.c-btn-detail:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 26px;
  height: 8px;
}

.c-btn-detail:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  background: url(../img/arrow.png) no-repeat center center;
  background-size: contain;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.c-btn-detail:hover:before {
  right: 5px;
}

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

/* ====================================================
LP content
==================================================== */
.mv-area {
  position: relative;
  height: 100vh;
  background: #f9ddde;
}

.mv-area:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
}

.mv-area:after {
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0 105px 100vw;
  border-color: transparent transparent #f9ddde transparent;
}

@media screen and (max-width: 834px) {
  .mv-area:after {
    content: none;
  }
}

.mv-area .c-img-of {
  width: 100%;
  height: 100vh;
  -o-object-position: top;
     object-position: top;
}

.mv-area__ttl {
  font-size: 70px;
  font-size: 7rem;
}

@media screen and (max-width: 834px) {
  .mv-area__ttl {
    font-size: max(35px, 8.38vw);
  }
}

.mv-area__ttl-block {
  position: absolute;
  right: 50px;
  bottom: 6px;
  margin: 0 auto;
  line-height: 1;
  z-index: 1;
}

@media screen and (max-width: 1230px) {
  .mv-area__ttl-block {
    top: 200px;
    left: 80px;
  }
}

.mv-area__ttlsub {
  margin-top: 5px;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 834px) {
  .mv-area__ttlsub {
    font-size: max(16px, 2.39vw);
  }
}

.mv-area .scroll {
  position: absolute;
  left: 50px;
  bottom: -12px;
  width: 10px;
  height: 75px;
  padding-bottom: 54px;
  z-index: 1;
}

.mv-area .scroll:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 45px;
}

.mv-area .scroll:before {
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: #fff;
  -webkit-animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@media screen and (max-width: 834px) {
  .mv-area .scroll {
    left: 15px;
  }
}

.mv-area .scroll-down {
  display: inline-block;
  margin-left: -13px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

.sec-concept {
  position: relative;
  padding-top: 80px;
  background: #f9ddde;
}

.sec-concept:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100vw;
  height: 60px;
}

.sec-concept:before {
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: #f3f2f0;
}

@media screen and (max-width: 1230px) {
  .sec-concept:before {
    height: 5.3vw;
  }
}

.sec-concept .inner {
  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;
}

.sec-concept__img {
  position: relative;
  padding: 0 2.045%;
  width: 50%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (max-width: 834px) {
  .sec-concept__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    text-align: center;
  }
  .sec-concept__img img {
    max-width: 500px;
    width: 100%;
  }
}

.sec-concept__txt {
  position: relative;
  padding: 0 8.18%;
  width: 47%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (max-width: 1230px) {
  .sec-concept__txt {
    padding: 0 4.5%;
  }
}

@media screen and (max-width: 990px) {
  .sec-concept__txt {
    padding: 0 3.5%;
    width: 50%;
  }
}

@media screen and (max-width: 834px) {
  .sec-concept__txt {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 auto 60px;
    width: 100%;
    max-width: 400px;
  }
}

.sec-concept__ttl {
  margin: 15px 0 10px;
}

.sec-concept__cap02 {
  margin-bottom: 45px;
  padding: 3px 0;
  border-top: 1px solid #7d6869;
  border-bottom: 1px solid #7d6869;
}

@media screen and (max-width: 1230px) {
  .sec-concept__cap02 {
    margin-bottom: 4.09%;
  }
}

.sec-voice {
  padding: 124px 0 70px;
}

@media screen and (max-width: 1230px) {
  .sec-voice {
    padding: 70px 0;
  }
}

.sec-voice__ttl {
  margin-bottom: 60px;
  color: #edeaec;
  font-size: 100px;
  font-size: 10rem;
  line-height: .9;
}

@media screen and (max-width: 1230px) {
  .sec-voice__ttl {
    font-size: max(32px, 9.09vw);
  }
}

.sec-items-intro {
  position: relative;
  padding: max(100px, 10.41vw) 0;
  background: url(../img/img04.jpg) no-repeat center top;
  background-size: 100% 940px;
}

@media screen and (max-width: 1230px) {
  .sec-items-intro {
    background-size: auto 940px;
  }
}

@media screen and (max-width: 834px) {
  .sec-items-intro {
    padding: max(11.9vw, 10.41vw) 0;
    background-size: auto 88%;
  }
}

@media screen and (max-width: 640px) {
  .sec-items-intro {
    background-size: auto 92%;
  }
}

.sec-items-intro__content {
  position: relative;
}

.sec-items-intro__ttl {
  margin: 15px 0 30px;
}

@media screen and (max-width: 640px) {
  .sec-items-intro__ttl img {
    width: 100%;
    max-width: 220px;
  }
}

.sec-items-intro__img {
  margin: max(50px, 4.1666vw) auto 0;
  max-width: 690px;
}

@media screen and (max-width: 834px) {
  .sec-items-intro__img {
    width: 80%;
  }
}

@media screen and (max-width: 640px) {
  .sec-items-intro__img {
    margin: max(30px, 4.1666vw) auto 0;
    width: 100%;
  }
}

.sec-items {
  margin: 0 auto;
  max-width: 1200px;
}

.sec-items__label {
  position: relative;
}

@media screen and (min-width: 835px) {
  .sec-items__label {
    width: 60px;
    height: 220px;
  }
}

@media screen and (max-width: 834px) {
  .sec-items__label {
    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;
    margin-bottom: 30px;
  }
}

.sec-items__label .no {
  display: block;
  text-align: center;
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
}

@media screen and (max-width: 834px) {
  .sec-items__label .no {
    margin-right: 10px;
    font-size: 54px;
    font-size: 5.4rem;
  }
}

.sec-items__label .txt {
  font-size: 18px;
  font-size: 1.8rem;
  text-decoration: underline;
  letter-spacing: .08em;
}

@media screen and (min-width: 835px) {
  .sec-items__label .txt {
    display: inline-block;
    position: absolute;
    top: 140px;
    left: -80px;
    height: 60px;
    width: 215px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    text-decoration: underline;
  }
}

@media screen and (max-width: 834px) {
  .sec-items__label .txt {
    margin-top: -8px;
  }
}

.sec-items__label .txt .txt-s {
  font-size: 15px;
  font-size: 1.5rem;
}

.sec-items .lead-block__ttl {
  margin-bottom: 25px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.9;
}

@media screen and (max-width: 834px) {
  .sec-items .lead-block__ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-items .lead-block__ttl .tx-strong {
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 834px) {
  .sec-items .lead-block__ttl .tx-strong {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.sec-items .txt-deco {
  color: rgba(246, 223, 224, 0.35);
  font-size: 124px;
  font-size: 12.4rem;
  line-height: .8;
}

@media screen and (max-width: 1230px) {
  .sec-items .txt-deco {
    font-size: 10.9vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-items .txt-deco {
    font-size: max(30px, 15vw);
  }
}

.sec-items .point-box {
  position: relative;
  margin-top: 50px;
  padding: 45px 20px 40px 75px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px -6px rgba(246, 223, 224, 0.5);
          box-shadow: 0px 0px 16px -6px rgba(246, 223, 224, 0.5);
}

@media screen and (max-width: 834px) {
  .sec-items .point-box {
    padding: 45px 20px 30px 20px;
  }
}

.sec-items .point-box .tag {
  position: absolute;
  left: -20px;
  top: -20px;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 100px;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  text-align: center;
  background: #f3bfc1;
  border-radius: 50%;
}

@media screen and (max-width: 834px) {
  .sec-items .point-box .tag {
    width: 70px;
    height: 70px;
    line-height: 75px;
    color: #fff;
    font-size: 24px;
    font-size: 2.4rem;
    left: -4%;
    top: calc(-4% - 20px);
  }
}

.sec-items__head {
  position: relative;
  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;
  margin-bottom: 90px;
}

@media screen and (max-width: 834px) {
  .sec-items__head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 60px;
  }
}

.sec-items__head-img {
  margin-left: -71.9%;
  width: 71.9%;
}

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

@media screen and (max-width: 834px) {
  .sec-items__head-img {
    margin-left: 0;
    width: 100%;
  }
}

.sec-items__head .lead-block {
  position: relative;
  padding-left: 12.27%;
  width: 100%;
}

@media screen and (min-width: 835px) {
  .sec-items__head .lead-block {
    margin-top: -25px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 1024px) {
  .sec-items__head .lead-block {
    padding-left: 8%;
  }
}

@media screen and (max-width: 834px) {
  .sec-items__head .lead-block {
    margin-top: 30px;
    padding-left: 0;
    width: 100%;
  }
}

.sec-items__head .lead-block__txt {
  margin-top: 30px;
}

@media screen and (max-width: 834px) {
  .sec-items__head .lead-block__txt {
    margin-top: 10px;
  }
}

.sec-items .c-txt03 {
  margin-top: 10px;
}

@media screen and (max-width: 834px) {
  .sec-items .c-txt03 {
    margin-top: 5px;
  }
}

.sec-items01 {
  padding-bottom: 120px;
}

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

.sec-items01 .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: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 660px;
}

.sec-items01 .lead-block__txt {
  width: 77.57%;
  max-width: calc(100% - 80px);
}

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

.sec-items01 .txt-deco01 {
  position: relative;
  margin-bottom: -100px;
  z-index: 1;
}

@media screen and (max-width: 834px) {
  .sec-items01 .txt-deco01 {
    margin: 40px 0 -13vw;
  }
}

@media screen and (max-width: 640px) {
  .sec-items01 .txt-deco01 {
    margin-bottom: -85px;
  }
}

.sec-items01 .txt-deco02 {
  position: absolute;
  top: 115px;
  left: 50px;
  z-index: 1;
}

@media screen and (max-width: 1230px) {
  .sec-items01 .txt-deco02 {
    top: 10.45%;
  }
}

@media screen and (max-width: 990px) {
  .sec-items01 .txt-deco02 {
    top: 5.5%;
  }
}

@media screen and (max-width: 834px) {
  .sec-items01 .txt-deco02 {
    left: 0;
    top: -2%;
  }
}

.sec-items01 .point-block {
  position: relative;
  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-items01 .point-block__txt {
  position: relative;
  padding-left: 20px;
  width: 47.045%;
  z-index: 2;
}

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

.sec-items01 .point-block__img {
  width: calc(50% + 4.1666vw);
}

@media screen and (max-width: 834px) {
  .sec-items01 .point-block__img {
    margin-bottom: 40px;
    width: calc(100% + 15px);
  }
}

.sec-items01 .point01 .point-block {
  padding-top: 60px;
}

.sec-items01 .point01 .point-block__img {
  margin-left: -4.1666vw;
}

@media screen and (max-width: 834px) {
  .sec-items01 .point01 .point-block__img {
    margin-left: -15px;
  }
}

.sec-items01 .point01 .point-block__txt {
  margin-top: 90px;
}

@media screen and (max-width: 834px) {
  .sec-items01 .point01 .point-block__txt {
    margin-top: 0;
  }
}

.sec-items01 .point02 {
  position: relative;
}

@media screen and (max-width: 834px) {
  .sec-items01 .point02 {
    margin-top: 70px;
    padding-top: 4%;
  }
}

.sec-items01 .point02 .point-block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 835px) {
  .sec-items01 .point02 .point-block__img {
    margin-right: -4.1666vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sec-items01 .point02 .point-block__txt {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 834px) {
  .sec-items01 .point02 .point-block__img {
    margin-right: -15px;
  }
}

.sec-life {
  position: relative;
  padding-bottom: 90px;
}

@media screen and (max-width: 990px) {
  .sec-life {
    padding-bottom: max(50px, 9vw);
  }
}

@media screen and (max-width: 640px) {
  .sec-life {
    padding-bottom: max(45px, 10vw);
  }
}

.sec-life-wrap {
  padding: 47px 0 60px;
  background: #f9ddde;
}

@media screen and (max-width: 990px) {
  .sec-life-wrap {
    padding-bottom: max(40px, 7vw);
  }
}

@media screen and (max-width: 640px) {
  .sec-life-wrap {
    padding-bottom: max(30px, 7vw);
  }
}

.sec-life-wrap img {
  max-width: 962px;
  width: 87.4545%;
}

@media screen and (max-width: 990px) {
  .sec-life-wrap img {
    width: 92%;
  }
}

.sec-life__txt {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  max-width: 1100px;
}

.sec-items02 {
  padding: 150px 0 0;
  max-width: 100%;
}

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

.sec-items02 .sec-items__label {
  margin-left: 80px;
}

@media screen and (max-width: 834px) {
  .sec-items02 .sec-items__label {
    margin: 0 auto;
  }
}

.sec-items02__btm {
  background: #f7e3db;
}

@media screen and (max-width: 834px) {
  .sec-items02__btm {
    padding-bottom: 70px;
  }
}

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

.sec-items02__btm-img {
  margin-left: 7.04%;
  width: 50%;
}

@media screen and (max-width: 834px) {
  .sec-items02__btm-img {
    margin-left: 0;
    width: 85%;
  }
}

.sec-items02__btm-txt {
  position: absolute;
  right: 0;
}

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

@media screen and (max-width: 834px) {
  .sec-items02__btm-txt {
    bottom: -50px;
  }
}

.sec-items03 {
  padding: 185px 0 0;
  max-width: 100%;
}

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

@media screen and (min-width: 835px) {
  .sec-items03 .sec-items__head .lead-block {
    margin-left: auto;
    padding-left: 0;
    padding-right: 1%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: right;
  }
  .sec-items03 .sec-items__head .lead-block__txt {
    margin-left: auto;
    max-width: 380px;
    text-align: left;
  }
}

@media screen and (max-width: 1024px) {
  .sec-items03 .sec-items__head .lead-block {
    padding-right: 8%;
  }
}

@media screen and (min-width: 835px) {
  .sec-items03 .sec-items__head .sec-items__label {
    padding-right: 23.5%;
    margin-left: auto;
    text-align: left;
  }
}

@media screen and (min-width: 835px) {
  .sec-items03 .sec-items__head-img {
    margin-left: 0;
    margin-right: -71.9%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.sec-items03__btm {
  position: relative;
  background: #e9dee8;
  border-top: 95px solid #e9dee8;
}

@media screen and (max-width: 990px) {
  .sec-items03__btm {
    border-top-width: 9.5vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-items03__btm {
    padding-bottom: 100px;
  }
}

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

.sec-items03__btm-img {
  margin-left: auto;
  margin-right: -2vw;
  width: 76.166vw;
}

@media screen and (max-width: 834px) {
  .sec-items03__btm-img {
    margin-left: 0;
    width: 90%;
  }
}

.sec-items03__btm-txt {
  position: absolute;
  left: 10px;
  right: 0;
  margin: 0 auto;
  text-align: left;
  max-width: 1100px;
}

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

@media screen and (max-width: 834px) {
  .sec-items03__btm-txt {
    left: 10px;
    bottom: 20px;
  }
}

.sec-items03__btm-txt .c-ttl-w .txt-shadow {
  left: 5px;
  right: auto;
}

.fadeIn__r {
  -webkit-transition-duration: 1s;
       -o-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-delay: .5s;
       -o-transition-delay: .5s;
          transition-delay: .5s;
  opacity: 0;
  -webkit-transform: translateX(-200px);
      -ms-transform: translateX(-200px);
          transform: translateX(-200px);
}

.fadeIn__l {
  -webkit-transition-duration: 1s;
       -o-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-delay: .5s;
       -o-transition-delay: .5s;
          transition-delay: .5s;
  opacity: 0;
  -webkit-transform: translateX(-200px);
      -ms-transform: translateX(-200px);
          transform: translateX(-200px);
}

.inview.fadeIn__l,
.inview.fadeIn__r {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.sec-product {
  padding: 130px 0 0;
}

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

.sec-product__ttl {
  margin-bottom: 70px;
  color: #edeaec;
  font-size: 124px;
  font-size: 12.4rem;
  line-height: 1;
}

@media screen and (max-width: 834px) {
  .sec-product__ttl {
    margin-bottom: 40px;
    font-size: max(30px, 15vw);
  }
}

.sec-product .product-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-product .product-list__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: 60px;
  width: 50%;
}

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

.sec-product .product-list__item-img {
  padding: 0 7.2%;
  width: 39.4545%;
}

@media screen and (max-width: 834px) {
  .sec-product .product-list__item-img {
    padding: 0 3.5%;
    width: 35%;
  }
}

.sec-product .product-list__item .name {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: .08em;
}

@media screen and (max-width: 640px) {
  .sec-product .product-list__item .name {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.sec-product .product-list__item .net {
  margin: 30px 0 35px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 640px) {
  .sec-product .product-list__item .net {
    margin: 20px 0 25px;
  }
}

.sec-product .product-list__item .net .c-fw__bd {
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  font-size: 1.8rem;
}

.sec-product .product-list__item-txt {
  width: 40.9%;
}

@media screen and (max-width: 834px) {
  .sec-product .product-list__item-txt {
    width: 60%;
  }
}

.sec-product .product-list__item .c-btn-detail {
  max-width: 230px;
}

.bnr-block {
  margin: 0 auto 150px;
  max-width: 1200px;
  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;
}

@media screen and (max-width: 640px) {
  .bnr-block {
    margin: 0 auto 60px;
  }
}

@media screen and (min-width: 641px) {
  .bnr-block__item {
    width: 50%;
  }
}

#main-footer {
  padding-bottom: 50px;
  color: #7c6e6f;
  font-size: 12px;
  font-size: 1.2rem;
}

#main-footer .share-block__ttl {
  display: inline-block;
  line-height: 20px;
  width: 60px;
  border: 1px solid #7c6e6f;
}

#main-footer .share-block {
  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: 15px 0 45px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 640px) {
  #main-footer .share-block {
    margin: 15px 0 30px;
  }
}

#main-footer .share-block .fn-sns__item {
  margin: 0 8px;
}

.js-para,
.js-para_l {
  position: relative;
  display: inline-block;
}

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