@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");
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;
}

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

/* ====================================================
Font
==================================================== */
/* ====================================================
Position & transfo
==================================================== */
/* ====================================================
opacity
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
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
==================================================== */
html.is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

html.is-locked body {
  -webkit-overflow-scrolling: auto;
}

body {
  color: #151515;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  font-weight: 500;
  overflow-x: hidden;
}

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

a {
  color: #151515;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a.rollover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a.rollover:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.inner {
  display: block;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 25px;
}

@media screen and (max-width: 1200px) {
  .inner {
    padding: 0 9.333%;
  }
}

@media screen and (max-width: 990px) {
  .inner {
    padding: 0 7%;
  }
}

.inner-low {
  padding-top: 91px;
}

@media screen and (max-width: 990px) {
  .inner-low {
    padding-top: 49px;
  }
}

@media screen and (max-width: 1200px) {
  .inner-low .inner {
    padding: 0 4%;
  }
}

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

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

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

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

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

/* ====================================================
Header
==================================================== */
#main-header {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5000;
  padding: 17px 0;
}

@media screen and (min-width: 991px) {
  #main-header {
    -webkit-animation: fadeIn 6s 12s ease;
            animation: fadeIn 6s 12s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}

@media screen and (max-width: 990px) {
  #main-header {
    position: fixed;
    padding: 0;
    opacity: 1;
  }
}

@media screen and (max-width: 990px) {
  #main-header .inner {
    padding: 0;
  }
}

@media screen and (min-width: 991px) {
  #main-header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 990px) {
  #main-header .header-inner {
    display: none;
    background: #FFF;
    width: 100%;
    height: 100vh;
    text-align: left;
    padding: 75px 15%;
  }
}

#main-header .header-inner .header-logo {
  width: 208px;
}

#main-header .header-inner .header-logo .off {
  display: block;
}

#main-header .header-inner .header-logo .on {
  display: none;
}

@media screen and (max-width: 990px) {
  #main-header .header-inner .header-logo {
    display: none;
  }
}

@media screen and (max-width: 990px) {
  #main-header .header-logo.sp-lg {
    width: 170px;
    padding: 8px 0 0 10px;
  }
}

#main-header .header-sns {
  font-size: 0;
}

@media screen and (min-width: 991px) {
  #main-header .header-sns {
    display: none;
  }
}

#main-header .header-sns li {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 15px;
}

#main-header .gnavi {
  width: calc(100% - 208px);
  text-align: right;
  font-size: 0;
}

@media screen and (max-width: 990px) {
  #main-header .gnavi {
    margin-bottom: 40px;
  }
}

#main-header .gnavi li {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  display: inline-block;
  margin-left: 30px;
}

@media screen and (max-width: 990px) {
  #main-header .gnavi li {
    display: block;
    margin: 0 0 25px;
    text-align: left;
  }
}

#main-header .gnavi li:first-of-type {
  margin-left: 0;
}

#main-header .gnavi li a {
  color: #FFF;
  padding: 10px 0;
}

@media screen and (max-width: 990px) {
  #main-header .gnavi li a {
    color: #141414;
    padding: 0;
  }
}

#main-header.fixed {
  position: fixed;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 991px) {
  #main-header.fixed {
    background: #FFF;
  }
}

#main-header.fixed .header-logo .off {
  display: none;
}

#main-header.fixed .header-logo .on {
  display: block;
}

#main-header.fixed .gnavi li a {
  color: #151515;
}

@media screen and (min-width: 991px) {
  #main-header.fixed .gnavi li a::after {
    background-color: #151515;
  }
}

#main-header.fixed .menu-trigger span {
  background: #030303;
}

@media screen and (min-width: 835px) {
  #main-header.fixed-header {
    opacity: 1;
    position: fixed;
    background: #FFFFFF;
  }
  #main-header.fixed-header .header-logo .off {
    display: none;
  }
  #main-header.fixed-header .header-logo .on {
    display: block;
  }
  #main-header.fixed-header .gnavi li a {
    color: #151515;
  }
}

@media screen and (max-width: 990px) {
  #main-header.fixed-header .menu-trigger {
    opacity: 1;
  }
  #main-header.fixed-header .menu-trigger span {
    background: #030303;
  }
}

@media screen and (min-width: 835px) {
  #main-header.fixed-header02 {
    opacity: 1;
    position: fixed;
  }
  #main-header.fixed-header02 .header-logo .off {
    display: block;
  }
  #main-header.fixed-header02 .header-logo .on {
    display: none;
  }
  #main-header.fixed-header02 .gnavi li a {
    color: #fff;
  }
}

@media screen and (max-width: 990px) {
  #main-header.fixed-header02 .menu-trigger {
    opacity: 1;
  }
  #main-header.fixed-header02 .menu-trigger span {
    background: #fff;
  }
}

@media screen and (min-width: 835px) {
  #main-header.fixed-header02.fixed {
    opacity: 1;
    position: fixed;
  }
  #main-header.fixed-header02.fixed .header-logo .off {
    display: none;
  }
  #main-header.fixed-header02.fixed .header-logo .on {
    display: block;
  }
  #main-header.fixed-header02.fixed .gnavi li a {
    color: #151515;
  }
}

@media screen and (max-width: 990px) {
  #main-header.fixed-header02.fixed .menu-trigger {
    opacity: 1;
  }
  #main-header.fixed-header02.fixed .menu-trigger span {
    background: #030303;
  }
}

.menu-trigger {
  display: block;
  position: fixed;
  z-index: 9999;
  width: 19px;
  height: 19px;
  top: 20px;
  right: 20px;
  z-index: 1;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

@media screen and (min-width: 991px) {
  .menu-trigger {
    display: none;
  }
}

.menu-trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}

.menu-trigger span:nth-of-type(1) {
  top: 0px;
}

.menu-trigger span:nth-of-type(2) {
  top: 9px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0px;
}

.menu-trigger.active span {
  background: #030303;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
      transform: translateY(9px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  -ms-transform: translateY(-9px) rotate(45deg);
      transform: translateY(-9px) rotate(45deg);
}

/* ====================================================
Footer
==================================================== */
#main-footer {
  background: #444444;
  color: #b8b6b5;
  padding: 0 0 45px;
}

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

#main-footer .footer-tp, #main-footer .footer-bt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#main-footer .footer-tp {
  padding: 75px 0 70px;
}

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

#main-footer .footer-bt {
  padding-top: 40px;
  border-top: 1px solid #666666;
}

@media screen and (max-width: 834px) {
  #main-footer .footer-bt {
    border: none;
    padding-top: 20px;
  }
}

#main-footer .footer-cap {
  text-align: right;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 1200px) {
  #main-footer .footer-cap {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 834px) {
  #main-footer .footer-cap {
    margin-top: 10px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

#main-footer .footer-logo {
  width: 250px;
}

@media screen and (max-width: 834px) {
  #main-footer .footer-logo {
    width: 100%;
    margin-bottom: 30px;
  }
  #main-footer .footer-logo img {
    width: 125px;
  }
}

#main-footer .footer-menu, #main-footer .footer-list {
  font-size: 0;
}

#main-footer .footer-menu li, #main-footer .footer-list li {
  position: relative;
  display: inline-block;
  margin-left: 18px;
  padding-left: 18px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 1200px) {
  #main-footer .footer-menu li, #main-footer .footer-list li {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 834px) {
  #main-footer .footer-menu li, #main-footer .footer-list li {
    margin-left: 8px;
    padding-left: 8px;
  }
}

#main-footer .footer-menu li::after, #main-footer .footer-list li::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  margin-top: -10px;
  background: #6f6f6f;
}

@media screen and (max-width: 834px) {
  #main-footer .footer-menu li::after, #main-footer .footer-list li::after {
    height: 8px;
  }
}

#main-footer .footer-menu li:first-of-type, #main-footer .footer-list li:first-of-type {
  padding-left: 0;
  margin-left: 0;
}

#main-footer .footer-menu li:first-of-type::after, #main-footer .footer-list li:first-of-type::after {
  display: none;
}

#main-footer .footer-menu li a, #main-footer .footer-list li a {
  color: #b8b6b5;
}

#main-footer .footer-menu li a:hover, #main-footer .footer-list li a:hover {
  color: #FFF;
}

@media screen and (max-width: 990px) {
  #main-footer .footer-menu {
    width: 100%;
    margin-top: 30px;
  }
}

@media screen and (max-width: 834px) {
  #main-footer .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #666666;
    border-bottom: 1px solid #666666;
    padding: 8px 0;
    margin: 0;
  }
}

@media screen and (max-width: 834px) {
  #main-footer .footer-menu li {
    width: 25%;
    text-align: center;
    font-size: 11px;
    font-size: 1.1rem;
    padding: 0;
    margin: 7px 0;
  }
  #main-footer .footer-menu li:nth-of-type(2), #main-footer .footer-menu li:nth-of-type(5) {
    width: 50%;
  }
}

@media screen and (max-width: 834px) {
  #main-footer .footer-menu li::after {
    display: none;
  }
}

#main-footer .footer-list {
  font-size: 0;
}

#main-footer .footer-list li {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 834px) {
  #main-footer .footer-list li {
    font-size: 9px;
    font-size: 0.9rem;
  }
}

#main-footer .footer-list li::after {
  margin-top: -8px;
}

@media screen and (max-width: 834px) {
  #main-footer .footer-list li::after {
    margin-top: -4px;
  }
}

#main-footer .footer-sns {
  font-size: 0;
  padding-left: 7px;
}

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

#main-footer .footer-sns li {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 834px) {
  #main-footer .footer-sns li {
    margin: 0 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

#main-footer .footer-sns li a {
  color: #b8b6b5;
}

#main-footer .footer-sns li a:hover {
  color: #FFF;
}

#main-footer .footer-copyright {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Cormorant Garamond", serif;
  margin-left: auto;
}

@media screen and (max-width: 834px) {
  #main-footer .footer-copyright {
    font-size: 9px;
    font-size: 0.9rem;
  }
}

/* ====================================================
MODULE
==================================================== */
.breadcrumb {
  position: relative;
  margin-bottom: 230px;
  padding-left: 35px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
}

@media screen and (max-width: 990px) {
  .breadcrumb {
    margin-bottom: 12vw;
  }
}

.breadcrumb:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 1px;
  background: #666;
}

.breadcrumb a {
  position: relative;
  display: inline-block;
  margin-right: 25px;
}

.breadcrumb a:before {
  content: '';
  display: inline-block;
  position: absolute;
  right: -18px;
  top: 50%;
  margin-top: -2.5px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #5e5e5e;
  border-right: 1px solid #5e5e5e;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.breadcrumb span {
  color: #989898;
}

@media screen and (min-width: 835px) {
  #contents a {
    -webkit-animation: all .2s;
            animation: all .2s;
  }
  #contents a:hover {
    opacity: .6;
  }
}

@media screen and (min-width: 835px) {
  #contents a[href^="tel"] {
    pointer-events: none;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #contents a[href^="tel"] {
    display: inline-block;
  }
}

/*見出しMODULE*/
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-ipd {
    display: none !important;
  }
}

@media screen and (max-width: 990px) {
  .pc-lg {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (max-width: 374px) {
  .pc-xs {
    display: none !important;
  }
}

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

@media screen and (min-width: 1025px) {
  .sp-ipd {
    display: none !important;
  }
}

@media screen and (min-width: 991px) {
  .sp-lg {
    display: none !important;
  }
}

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

@media screen and (min-width: 375px) {
  .sp-xs {
    display: none !important;
  }
}

.ttl-01 {
  font-size: 35px;
  font-size: 3.5rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  margin-bottom: 30px;
}

@media screen and (max-width: 990px) {
  .ttl-01 {
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 834px) {
  .ttl-01 {
    font-size: 21px;
    font-size: 2.1rem;
    margin-bottom: 15px;
  }
}

.ttl-02 {
  font-size: 27px;
  font-size: 2.7rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  margin-bottom: 60px;
}

@media screen and (max-width: 990px) {
  .ttl-02 {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 834px) {
  .ttl-02 {
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }
}

.ttl-03 {
  color: #656565;
  font-weight: 500;
  margin-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 990px) {
  .ttl-03 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 834px) {
  .ttl-03 {
    margin-bottom: 30px;
  }
}

.ttl-03 .en {
  display: block;
  font-size: 35px;
  font-size: 3.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

@media screen and (max-width: 990px) {
  .ttl-03 .en {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 834px) {
  .ttl-03 .en {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}

.ttl-03 .jp {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 1px;
}

@media screen and (max-width: 990px) {
  .ttl-03 .jp {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 834px) {
  .ttl-03 .jp {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.ttl-en {
  position: relative;
  padding-left: 65px;
  color: #656565;
  font-size: 21px;
  font-size: 2.1rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 75px;
}

@media screen and (max-width: 990px) {
  .ttl-en {
    padding-left: 50px;
    margin-bottom: 30px;
    font-size: 2.121vw;
  }
}

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

.ttl-en::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 55px;
  height: 1px;
  margin-right: 15px;
  background: #666;
}

@media screen and (max-width: 990px) {
  .ttl-en::before {
    width: 40px;
    margin-right: 10px;
  }
}

.ttl-04 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 30px;
  font-size: 3rem;
  border-bottom: 1px solid #534f4f;
}

@media screen and (max-width: 834px) {
  .ttl-04 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.ttl-05 {
  padding: 175px 0 60px;
  color: #656565;
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-size: 6rem;
  letter-spacing: 3px;
  line-height: 1;
}

@media screen and (max-width: 834px) {
  .ttl-05 {
    padding: 12vw 0 7.2vw;
    font-size: min(7.19vw, 60px);
  }
}

.ttl-06 {
  font-size: clamp(24px, 1rem + 4.19vw, 35px);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 2px;
}

.ttl-07 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  padding-bottom: 70px;
  color: #2e2c2b;
}

@media screen and (max-width: 834px) {
  .ttl-07 {
    font-size: 26px;
    font-size: 2.6rem;
    padding-bottom: 50px;
  }
}

.ttl-page {
  margin-bottom: 35px;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-size: 3.5rem;
}

@media screen and (max-width: 834px) {
  .ttl-page {
    margin-bottom: 10px;
  }
}

.ttl-page + .small {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}

.ttl-08 {
  position: relative;
  display: inline-block;
  width: 100%;
}

.ttl-08 .jp {
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 2.05;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 1200px) {
  .ttl-08 .jp {
    font-size: 25px;
    font-size: 2.5rem;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 834px) {
  .ttl-08 .jp {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 374px) {
  .ttl-08 .jp {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.ttl-08 .en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #f2f2f2;
  font-size: 100px;
  font-size: 10rem;
  line-height: 1;
  position: absolute;
  right: 0;
  bottom: 10px;
  letter-spacing: 0.11em;
}

.ttl-08 .en span {
  font-family: "Cinzel", serif;
  font-weight: 500;
}

@media screen and (max-width: 1200px) {
  .ttl-08 .en {
    font-size: 65px;
    font-size: 6.5rem;
    white-space: nowrap;
  }
}

@media screen and (max-width: 834px) {
  .ttl-08 .en {
    font-size: 40px;
    font-size: 4rem;
    bottom: -20px;
  }
}

@media screen and (max-width: 640px) {
  .ttl-08 .en {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 374px) {
  .ttl-08 .en {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.ttl-09 {
  position: relative;
  margin-bottom: 175px;
  padding-left: 72px;
  color: #141414;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 70px;
}

@media screen and (max-width: 990px) {
  .ttl-09 {
    margin-bottom: 12vw;
  }
}

@media screen and (max-width: 834px) {
  .ttl-09 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 40px;
    padding-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .ttl-09 {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.ttl-09:before {
  display: none;
}

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

.ttl-10 {
  margin-bottom: 45px;
}

@media screen and (max-width: 834px) {
  .ttl-10 {
    margin-bottom: 25px;
  }
}

.ttl-10 .en {
  font-size: 100px;
  font-size: 10rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  display: inline-block;
  width: 100%;
  line-height: 1.3;
  margin-bottom: 0px;
  color: #000;
}

@media screen and (max-width: 834px) {
  .ttl-10 .en {
    font-size: 50px;
    font-size: 5rem;
  }
}

@media screen and (max-width: 374px) {
  .ttl-10 .en {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

.ttl-10 .jp {
  font-size: 18px;
  font-size: 1.8rem;
  color: #656565;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 834px) {
  .ttl-10 .jp {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 374px) {
  .ttl-10 .jp {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.ttl-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 23px;
}

.ttl-12 .jp {
  font-size: 82px;
  font-size: 8.2rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #000;
}

@media screen and (max-width: 834px) {
  .ttl-12 .jp {
    font-size: 65px;
    font-size: 6.5rem;
  }
}

.ttl-12 .en {
  font-size: 30px;
  font-size: 3rem;
  line-height: 2;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  margin-left: 20px;
}

@media screen and (max-width: 834px) {
  .ttl-12 .en {
    font-size: 20px;
    font-size: 2rem;
  }
}

/*テキストMODULE*/
.txt-basic {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 2;
}

.txt-basic.lh24 {
  line-height: 2.4;
}

@media screen and (max-width: 834px) {
  .txt-basic.lh24 {
    line-height: 1.4;
  }
}

@media screen and (max-width: 834px) {
  .txt-basic {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.9;
  }
}

.txt-basic--lg {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.25;
  color: #151515;
}

@media screen and (max-width: 834px) {
  .txt-basic--lg {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.9;
  }
}

.txt-bg {
  font-size: 100px;
  font-size: 10rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  white-space: nowrap;
}

.txt-bg .lh {
  line-height: 0.9;
}

@media screen and (max-width: 1200px) {
  .txt-bg {
    font-size: 50px;
    font-size: 5rem;
  }
}

@media screen and (max-width: 834px) {
  .txt-bg {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 374px) {
  .txt-bg {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.txt-bg .rellax {
  opacity: 0.08;
}

.txt-bg .rellax {
  display: block;
}

@media screen and (max-width: 834px) {
  .txt-bg .rellax {
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
    margin-left: 10px;
  }
}

.txt-link {
  color: #00a0e9;
  text-decoration: underline;
}

.txt-link02 {
  color: inherit;
  font-weight: bold;
  text-decoration: underline;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.mb50 {
  margin-bottom: 50px;
}

.ft-en {
  font-family: "Cormorant Garamond", serif;
}

.ft-en02 {
  font-family: "Cinzel", serif;
}

.ft-en03 {
  font-family: "Montserrat", sans-serif;
}

.ft-min {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/*リンクMODULE*/
.link-hover a {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

@media screen and (min-width: 835px) {
  .link-hover a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FFF;
    -webkit-transform: translateX(-101%);
    -ms-transform: translateX(-101%);
        transform: translateX(-101%);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

@media screen and (min-width: 835px) {
  .link-hover a:hover::after {
    -webkit-transform: none;
    -ms-transform: none;
        transform: none;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
  }
}

/*ボタンMODULE*/
.btn {
  position: relative;
  display: block;
  width: 185px;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  padding-bottom: 10px;
}

@media screen and (max-width: 834px) {
  .btn {
    width: 130px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.btn::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #151515;
}

.btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  top: 5px;
  width: 30px;
  height: 6px;
  background: url("../img/common/arw.png") no-repeat 0 0/100% auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 834px) {
  .btn::after {
    width: 20px;
    height: 4px;
    right: 5px;
  }
}

.btn:hover {
  opacity: 1 !important;
}

.btn:hover::after {
  right: 0px;
}

.btn-com02 {
  display: inline-block;
  width: 100%;
  padding: 18px 134px 18px 10px;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  background: #040000;
}

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

.btn-com02:before {
  display: none;
}

.btn-com02::after {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -5px;
  width: 84px;
  height: 9px;
  background: url("../img/common/arw-wh.png") no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 834px) {
  .btn-com02::after {
    width: 60px;
    height: 8px;
    right: 10px;
  }
}

.btn-comp03 {
  font-size: 15px;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
  position: relative;
  background: #000000;
  width: 410px;
  height: 75px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 4px;
}

@media screen and (max-width: 640px) {
  .btn-comp03 {
    width: 100%;
    max-width: 280px;
    height: 50px;
  }
}

.btn-comp03:after {
  content: '';
  width: 30px;
  height: 6px;
  background: url("../img/brand/icon-arrow.png") no-repeat center center;
  background-size: 100%;
  display: inline-block;
  position: absolute;
  right: 38px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-icn {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-size: 1.6rem;
}

.btn-icn i {
  margin-right: 10px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadeImg {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeImg {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.fade {
  opacity: 0;
}

.fade_on {
  opacity: 1;
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fade-img {
  opacity: 0;
}

.fade-img.fade_on {
  opacity: 1;
  -webkit-animation-name: fadeImg;
          animation-name: fadeImg;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

/* ====================================================
Index
==================================================== */
.sec-mv {
  /* slider */
}

.sec-mv .mv {
  position: relative;
  width: 100%;
  height: 100vh;
}

.sec-mv .mv__logo {
  opacity: 0;
  position: absolute;
  z-index: 500;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 325px;
}

@media screen and (max-width: 834px) {
  .sec-mv .mv__logo {
    width: 82px;
  }
}

.sec-mv .mv__logo--wh {
  -webkit-animation: fadeIn 6s 12s ease-in-out;
          animation: fadeIn 6s 12s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.sec-mv .mv__logo--bk {
  -webkit-animation: fadeInOut 7s 5s ease-in-out;
          animation: fadeInOut 7s 5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.sec-mv .mv__slider {
  opacity: 0;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.sec-mv .mv__slider.slick-initialized {
  opacity: 1;
  -webkit-transition: all 6s ease;
  -o-transition: all 6s ease;
  transition: all 6s ease;
}

.sec-mv .mv__slider .item {
  position: relative;
  height: 100%;
}

@media screen and (max-width: 834px) {
  .sec-mv .mv__slider .item {
    height: 100vh;
  }
}

.sec-mv .mv__slider .item__img {
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
}

.sec-mv .mv__slider .item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.sec-mv .mv__layer {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 499;
  background: #FFF;
  -webkit-animation: fadeOut 4s 0.5s ease;
          animation: fadeOut 4s 0.5s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.sec-mv .mv__desc {
  opacity: 0;
  position: absolute;
  z-index: 500;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  max-width: 538px;
  -webkit-animation: fadeInOut 4s 0.5s ease;
          animation: fadeInOut 4s 0.5s ease;
}

@media screen and (max-width: 834px) {
  .sec-mv .mv__desc {
    width: 90%;
  }
}

.sec-mv .mv__scroll {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 500;
  width: 1px;
  height: 120px;
  overflow: hidden;
  -webkit-animation: fadeIn 6s 14s ease-in-out;
          animation: fadeIn 6s 14s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

.sec-mv .mv__scroll::before, .sec-mv .mv__scroll::after {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: auto;
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  width: 1px;
  height: 100%;
}

.sec-mv .mv__scroll::after {
  background-color: #fafdfe;
  -webkit-animation: ScrollnavigateAnimation 2s infinite cubic-bezier(0.77, 0, 0.18, 1);
          animation: ScrollnavigateAnimation 2s infinite cubic-bezier(0.77, 0, 0.18, 1);
}

.sec-mv .mv__slider .slick-active .item {
  opacity: 1;
  -webkit-transition: ease 5.0s;
  -o-transition: ease 5.0s;
  transition: ease 5.0s;
}

.sec-mv .mv__slider .slick-continue .item {
  -webkit-transition: ease 5.0s;
  -o-transition: ease 5.0s;
  transition: ease 5.0s;
}

.sec-mv .mv__slider .item__img {
  -webkit-transform: scale(1.2, 1.2);
      -ms-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

.sec-mv .mv__slider .slick-active .item__img {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: ease 10.0s;
  -o-transition: ease 10.0s;
  transition: ease 10.0s;
}

@-webkit-keyframes ScrollnavigateAnimation {
  0% {
    height: 0;
  }
  45% {
    height: 100%;
  }
  55% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0;
    top: 100%;
  }
}

@keyframes ScrollnavigateAnimation {
  0% {
    height: 0;
  }
  45% {
    height: 100%;
  }
  55% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0;
    top: 100%;
  }
}

@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

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

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

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

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

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

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.block-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 835px) {
  .block-intro__img, .block-intro__content {
    width: 50%;
  }
}

@media screen and (min-width: 835px) {
  .block-intro__img--left, .block-intro__content--left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (min-width: 835px) {
  .block-intro__img--right, .block-intro__content--right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

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

.block-intro__content {
  padding-left: 8.4%;
}

@media screen and (max-width: 1200px) {
  .block-intro__content {
    padding-left: 0;
  }
}

.block-intro__btn {
  margin-top: 50px;
}

@media screen and (max-width: 834px) {
  .block-intro__btn {
    margin-top: 30px;
  }
}

.sec-about {
  position: relative;
  padding: 165px 0 0;
}

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

@media screen and (max-width: 834px) {
  .sec-about {
    padding: 50px 0 0;
    background: #f4f4f4;
  }
  .sec-about::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 100%;
    height: 65vw;
    background: #FFF;
  }
}

.sec-about .txt-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .sec-about .txt-bg {
    top: 125px;
  }
}

@media screen and (max-width: 834px) {
  .sec-about .txt-bg {
    top: 25px;
    z-index: 2;
  }
}

.sec-about .txt-bg.txt-left {
  text-align: left;
}

.sec-about .block-intro {
  position: relative;
  min-height: 740px;
}

@media screen and (max-width: 990px) {
  .sec-about .block-intro {
    min-height: 500px;
  }
}

@media screen and (max-width: 834px) {
  .sec-about .block-intro {
    min-height: inherit;
    position: relative;
    z-index: 3;
  }
}

@media screen and (max-width: 834px) {
  .sec-about .block-intro__img {
    margin-left: -8%;
  }
}

@media screen and (min-width: 991px) {
  .sec-about .block-intro__img .img {
    position: absolute;
    width: 55.35%;
    right: 52%;
    top: 0;
    height: 740px;
  }
}

@media screen and (max-width: 990px) {
  .sec-about .block-intro__img .img {
    height: 500px;
  }
}

@media screen and (max-width: 834px) {
  .sec-about .block-intro__img .img {
    height: inherit;
  }
}

@media screen and (min-width: 991px) {
  .sec-about .block-intro__img .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
  }
}

.sec-about .block-intro__content {
  padding-top: 60px;
}

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

.sec-news {
  background: #f4f4f4;
  padding: 160px 0;
  margin-top: -100px;
}

@media screen and (max-width: 990px) {
  .sec-news {
    margin-top: 0;
  }
}

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

.sec-news__bg {
  position: relative;
  background: #FFF;
  padding: 130px 8% 90px 10.96%;
}

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

.sec-news__bg::after {
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  top: 0;
  width: 3000px;
  height: 100%;
  background: #FFF;
}

.sec-news .ttl-03 {
  text-align: left;
}

.sec-news .btn {
  margin: 0 auto;
}

@media screen and (max-width: 834px) {
  .sec-news .btn {
    margin: 0;
  }
}

.sec-news .block-news {
  margin-bottom: 60px;
}

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

.sec-news .block-news .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #eeeeee;
}

@media screen and (max-width: 834px) {
  .sec-news .block-news .item {
    padding: 20px 15px;
  }
}

.sec-news .block-news .item:first-of-type {
  border-top: 1px solid #eeeeee;
}

.sec-news .block-news .item__data {
  width: 90px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 834px) {
  .sec-news .block-news .item__data {
    font-size: 10px;
    font-size: 1rem;
    width: 60px;
  }
}

.sec-news .block-news .item__cate {
  width: 150px;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
}

@media screen and (max-width: 834px) {
  .sec-news .block-news .item__cate {
    font-size: 10px;
    font-size: 1rem;
    width: 110px;
  }
}

.sec-news .block-news .item__cate span {
  display: inline-block;
  min-width: 115px;
  font-family: "Cormorant Garamond", serif;
  color: #FFF;
  background: #151515;
  text-align: center;
  padding: 3px 0;
}

@media screen and (max-width: 834px) {
  .sec-news .block-news .item__cate span {
    min-width: inherit;
    display: block;
    width: 100%;
    padding: 0;
  }
}

.sec-news .block-news .item__ttl {
  width: calc(100% - 240px);
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 834px) {
  .sec-news .block-news .item__ttl {
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

.sec-news .block-news .item__ttl a:hover {
  text-decoration: underline;
}

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

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

.sec-experience .block-intro {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec-experience .block-intro__img img {
  display: block;
  margin: 0 auto;
}

.sec-strength {
  position: relative;
  background: #f4f4f4;
  overflow: hidden;
  padding-bottom: 135px;
}

@media screen and (max-width: 834px) {
  .sec-strength {
    padding: 0 0 95px;
    background: #f4f4f4 url("../img/index/strength-map.png") no-repeat right 15% bottom 10px;
    background-size: 179px auto;
  }
}

.sec-strength::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #FFF;
}

@media screen and (max-width: 834px) {
  .sec-strength::before {
    height: 45px;
  }
}

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

.sec-strength .txt-bg {
  position: absolute;
  z-index: 2;
  left: 3%;
  top: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media screen and (max-width: 834px) {
  .sec-strength .txt-bg {
    left: -15px;
    top: 120px;
  }
}

.sec-strength .strength-img {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 65px;
}

@media screen and (max-width: 834px) {
  .sec-strength .strength-img {
    margin: 0 -8% 55px;
  }
}

.sec-strength .strength-img .item {
  width: 50%;
}

.sec-strength .strength-img .item:nth-of-type(2) {
  padding-top: 60px;
}

@media screen and (max-width: 834px) {
  .sec-strength .strength-img .item:nth-of-type(2) {
    padding-top: 15px;
  }
}

.sec-strength .block-intro__img {
  text-align: right;
  padding-right: 2%;
}

@media screen and (max-width: 834px) {
  .sec-strength .block-intro__img {
    display: none;
  }
}

.sec-strength .block-intro .txt-basic {
  margin-bottom: 45px;
}

@media screen and (max-width: 834px) {
  .sec-strength .block-intro .txt-basic {
    margin-bottom: 25px;
  }
}

.sec-strength .block-intro .txt-basic:last-of-type {
  margin-bottom: 0;
}

.sec-navigator {
  padding: 190px 0 160px;
}

@media screen and (max-width: 834px) {
  .sec-navigator {
    padding: 35px 0 45px;
  }
}

.sec-navigator .block-intro {
  position: relative;
  min-height: 650px;
}

@media screen and (max-width: 990px) {
  .sec-navigator .block-intro {
    min-height: 400px;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigator .block-intro {
    min-height: inherit;
  }
}

.sec-navigator .block-intro__content {
  padding-left: 0;
  padding-right: 7%;
}

@media screen and (max-width: 1200px) {
  .sec-navigator .block-intro__content {
    padding-left: 0;
  }
}

@media screen and (min-width: 835px) {
  .sec-navigator .block-intro__content {
    width: 40.7%;
  }
}

@media screen and (min-width: 835px) {
  .sec-navigator .block-intro__img {
    width: 59.3%;
  }
}

@media screen and (min-width: 991px) {
  .sec-navigator .block-intro__img .img {
    position: absolute;
    width: 67.162%;
    left: 40.8%;
    top: 0;
    height: 650px;
  }
}

@media screen and (max-width: 990px) {
  .sec-navigator .block-intro__img .img {
    height: 400px;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigator .block-intro__img .img {
    height: inherit;
    margin-right: -8%;
  }
}

@media screen and (min-width: 991px) {
  .sec-navigator .block-intro__img .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
  }
}

.sec-navigator .block-intro__content {
  padding-top: 60px;
}

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

.sec-view {
  text-align: right;
  padding-bottom: 165px;
}

@media screen and (max-width: 834px) {
  .sec-view {
    text-align: left;
    background: #f4f4f4;
    padding: 40px 0;
  }
}

.sec-view .ttl-en {
  display: inline-block;
  margin-bottom: 45px;
}

@media screen and (max-width: 834px) {
  .sec-view .ttl-en {
    margin-bottom: 25px;
  }
}

.sec-view .view-slider .item {
  padding: 0 30px;
}

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

.sec-view .view-slider .item:focus {
  outline: none;
}

.sec-view .view-slider .item img {
  width: 100%;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
}

.sec-view .view-slider .item a {
  display: block;
  overflow: hidden;
}

.sec-view .view-slider .item a:hover img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

.sec-view .view-slider .slick-list {
  padding-bottom: 50px !important;
}

@media screen and (max-width: 834px) {
  .sec-view .view-slider .slick-list {
    padding-bottom: 30px !important;
  }
}

.view-slider .slick-dots,
.gallery-slider .slick-dots {
  bottom: 0;
}

.view-slider .slick-dots li,
.gallery-slider .slick-dots li {
  margin: 0 7px !important;
}

.view-slider .slick-dots li button,
.gallery-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}

.view-slider .slick-dots li button::before,
.gallery-slider .slick-dots li button::before {
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border: 1px solid #FFF;
  background: #cccccc;
}

@media screen and (max-width: 834px) {
  .view-slider .slick-dots li button::before,
  .gallery-slider .slick-dots li button::before {
    border-color: #f4f4f4;
  }
}

.view-slider .slick-dots li.slick-active button::before,
.gallery-slider .slick-dots li.slick-active button::before {
  background: #151515;
  border-color: #151515;
}

.sec-brand {
  padding-bottom: 165px;
}

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

.sec-brand .block-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -13px;
}

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

.sec-brand .block-brand .item {
  padding: 0 13px;
}

@media screen and (min-width: 835px) {
  .sec-brand .block-brand .item {
    width: 33.3333%;
  }
}

@media screen and (max-width: 834px) {
  .sec-brand .block-brand .item {
    padding: 0 7px;
  }
}

.sec-brand .block-brand .item:focus {
  outline: none;
}

.sec-brand .block-brand .item__inner {
  display: block;
}

.sec-brand .block-brand .item__inner:hover .item__img .img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

.sec-brand .block-brand .item__img {
  margin-bottom: 50px;
  overflow: hidden;
}

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

.sec-brand .block-brand .item__img .img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  overflow: hidden;
}

.sec-brand .block-brand .item__img .img::after {
  content: "";
  display: block;
  padding-top: 101%;
}

.sec-brand .block-brand .item__img .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.sec-brand .block-brand .item__ttl {
  font-size: 27px;
  font-size: 2.7rem;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 25px;
  font-weight: 600;
}

@media screen and (max-width: 834px) {
  .sec-brand .block-brand .item__ttl {
    display: none;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sec-brand .block-brand .item__info {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 834px) {
  .sec-brand .block-brand .item__info {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 834px) {
  .sec-brand .block-brand .slick-list {
    padding-right: 30%;
  }
}

.sec-media {
  background: #f4f4f4;
  padding: 100px 0 115px;
}

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

.sec-media .btn {
  margin: 0 auto;
}

.sec-media .block-media {
  margin-bottom: 60px;
}

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

.sec-media .block-media .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 11.8%;
  background: #eeeeee;
  margin-bottom: 18px;
}

@media screen and (max-width: 834px) {
  .sec-media .block-media .item {
    padding: 20px 15px;
    margin-bottom: 9px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.sec-media .block-media .item__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 305px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 834px) {
  .sec-media .block-media .item__data {
    display: block;
    width: 70px;
    font-size: 10px;
    font-size: 1rem;
  }
}

.sec-media .block-media .item__cate {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  padding-left: 10px;
}

@media screen and (max-width: 834px) {
  .sec-media .block-media .item__cate {
    padding-left: 0;
    font-size: 10px;
    font-size: 1rem;
    width: auto;
  }
}

.sec-media .block-media .item__cate span {
  display: inline-block;
  min-width: 83px;
  font-family: "Cormorant Garamond", serif;
  color: #FFF;
  background: #151515;
  text-align: center;
  padding: 3px 0;
}

@media screen and (max-width: 834px) {
  .sec-media .block-media .item__cate span {
    margin-top: 5px;
    display: block;
    min-width: inherit;
    padding: 0;
  }
}

.sec-media .block-media .item__ttl {
  width: calc(100% - 305px);
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 834px) {
  .sec-media .block-media .item__ttl {
    font-size: 12px;
    font-size: 1.2rem;
    width: calc(100% - 70px);
    padding-left: 10px;
  }
}

.sec-media .block-media .item__ttl a:hover {
  text-decoration: underline;
}

.company-bnr {
  padding: 148px 0;
}

@media screen and (max-width: 834px) {
  .company-bnr {
    padding: 35px 0;
  }
}

.company-bnr .bnr {
  font-size: 27px;
  font-size: 2.7rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  border: 1px solid #666666;
  text-align: center;
  letter-spacing: 2px;
}

@media screen and (max-width: 834px) {
  .company-bnr .bnr {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.company-bnr .bnr a {
  display: block;
  line-height: 244px;
  background: url(../img/index/bnr-logo.png) no-repeat right 22px center;
  background-size: 472px auto;
}

@media screen and (max-width: 990px) {
  .company-bnr .bnr a {
    line-height: 180px;
    background-size: 236px auto;
  }
}

@media screen and (max-width: 834px) {
  .company-bnr .bnr a {
    line-height: 60px;
    background-size: 95px auto;
    background-position: right 5px center;
  }
}

.company-bnr .bnr a:hover {
  background-color: #f9f9f9;
}

.article-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 55px 4.95%;
}

@media screen and (max-width: 990px) {
  .article-list {
    grid-gap: 35px 3%;
  }
}

@media screen and (max-width: 640px) {
  .article-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.article-list-item a {
  display: inline-block;
}

.article-list-item .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.41%;
  overflow: hidden;
}

.article-list-item .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.article-list-item .txt-box {
  padding: 9.48% 7.5% 12.33%;
  background: #f4f4f4;
}

@media screen and (max-width: 834px) {
  .article-list-item .txt-box {
    padding: 6% 4% 8%;
  }
}

.article-list-item .txt-box .ttl-article {
  margin: 25px 0 30px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 2;
}

@media screen and (max-width: 834px) {
  .article-list-item .txt-box .ttl-article {
    margin: 15px 0 20px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}

.article-list-item .txt-box .desc {
  display: -webkit-box;
  line-height: 2;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 834px) {
  .article-list-item .txt-box .desc {
    line-height: 1.8;
  }
}

.pagenation {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 120px;
}

@media screen and (max-width: 834px) {
  .pagenation {
    margin-top: 60px;
  }
}

.pagenation-item a, .pagenation-item .active {
  display: inline-block;
  width: 50px;
  height: 47px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 47px;
  text-align: center;
}

.pagenation-item a.active, .pagenation-item .active.active {
  color: #fff;
  background: #000;
  border: 0;
}

@media screen and (max-width: 640px) {
  .pagenation-item a, .pagenation-item .active {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.pagenation-item .mid {
  display: inline-block;
  padding-top: 15px;
  line-height: .5;
}

.flex-grid-article {
  padding: 110px 0 150px;
  display: -ms-grid;
  display: grid;
  grid-template: "side ... main" / 21% 7.625% 69.375%;
}

@media screen and (max-width: 990px) {
  .flex-grid-article {
    grid-template: "side ... main" / 23% 5.625% 69.375%;
  }
}

@media screen and (max-width: 834px) {
  .flex-grid-article {
    padding: 50px 0 70px;
    grid-template: "main" "side";
  }
}

.flex-grid-article > .side-block {
  grid-area: side;
}

.flex-grid-article > .side-block .cusutom-select-box {
  margin-bottom: 75px;
}

@media screen and (max-width: 990px) {
  .flex-grid-article > .side-block .cusutom-select-box {
    margin-bottom: 40px;
  }
}

.flex-grid-article > .side-block .terms-list-box:not(:last-child) {
  margin-bottom: 70px;
}

.flex-grid-article > .side-block .terms-list-box {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 834px) {
  .flex-grid-article > .side-block .terms-list-box {
    margin-bottom: 40px;
  }
}

.flex-grid-article > .side-block .category-list,
.flex-grid-article > .side-block .tab-list {
  padding-left: 65px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 990px) {
  .flex-grid-article > .side-block .category-list,
  .flex-grid-article > .side-block .tab-list {
    padding-left: 50px;
  }
}

.flex-grid-article > .side-block .category-list-item,
.flex-grid-article > .side-block .tab-list-item {
  margin-bottom: 25px;
}

@media screen and (max-width: 990px) {
  .flex-grid-article > .side-block .category-list-item,
  .flex-grid-article > .side-block .tab-list-item {
    margin-bottom: 15px;
  }
}

.flex-grid-article > .side-block .category-list li,
.flex-grid-article > .side-block .tab-list li {
  margin-bottom: 25px;
}

@media screen and (max-width: 990px) {
  .flex-grid-article > .side-block .category-list li,
  .flex-grid-article > .side-block .tab-list li {
    margin-bottom: 15px;
  }
}

.flex-grid-article > .side-block .tab-list-item {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 25px;
}

.flex-grid-article > .main-block {
  grid-area: main;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 834px) {
  .flex-grid-article > .main-block {
    margin-bottom: 60px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.flex-grid-article .title-area {
  margin-bottom: 75px;
}

@media screen and (max-width: 834px) {
  .flex-grid-article .title-area {
    margin-bottom: 40px;
  }
}

.flex-grid-article .article-area {
  padding-bottom: 50px;
}

.flex-grid-article .article-area p {
  margin: 35px 0;
  line-height: 2.25;
}

@media screen and (max-width: 834px) {
  .flex-grid-article .article-area p {
    line-height: 1.8;
  }
}

.flex-grid-article .article-area h1 {
  margin: 70px 0 40px;
  padding: 18px 40px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  font-size: 2.4rem;
  background: #eee;
}

@media screen and (max-width: 834px) {
  .flex-grid-article .article-area h1 {
    font-size: 21px;
    font-size: 2.1rem;
    margin: 40px 0 30px;
    padding: 15px 20px;
  }
}

.flex-grid-article .article-area h2 {
  margin: 75px 0 60px;
  padding: 2px 0 10px 30px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  border-bottom: 1px solid #151515;
  border-left: 7px solid #2e2c2b;
}

@media screen and (max-width: 834px) {
  .flex-grid-article .article-area h2 {
    margin: 45px 0 35px;
    padding: 2px 0 10px 20px;
    font-size: 20px;
    font-size: 2rem;
    border-left-width: 5px;
  }
}

.flex-grid-article .article-area h3 {
  margin: 65px 0;
  padding-bottom: 15px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 21px;
  font-size: 2.1rem;
  border-bottom: 1px solid #151515;
}

@media screen and (max-width: 834px) {
  .flex-grid-article .article-area h3 {
    margin: 35px 0;
    padding-bottom: 10px;
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.flex-grid-article .article-area h4 {
  position: relative;
  margin: 65px 0;
  padding-left: 35px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (max-width: 834px) {
  .flex-grid-article .article-area h4 {
    margin: 35px 0;
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.flex-grid-article .article-area h4:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  background: #151515;
}

.flex-grid-article .article-area h5 {
  position: relative;
  margin: 65px 0;
  padding-left: 45px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 834px) {
  .flex-grid-article .article-area h5 {
    margin: 35px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.flex-grid-article .article-area h5::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 1px;
  margin-right: 15px;
  background: #666;
}

.flex-grid-article .article-area h6 {
  position: relative;
  margin: 65px 0;
  padding-left: 35px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 834px) {
  .flex-grid-article .article-area h6 {
    margin: 35px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.flex-grid-article .article-area h6:before {
  content: '\f138';
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

.flex-grid-article .btn-box {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #ddd;
}

@media screen and (max-width: 834px) {
  .flex-grid-article .btn-box {
    padding: 30px 0;
  }
}

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

@media screen and (max-width: 834px) {
  .label-area {
    display: block;
  }
}

.label-area .term {
  font-size: 12px;
  font-size: 1.2rem;
}

.label-area .term .tag {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 5px;
  min-width: 100px;
  color: #fff;
  text-align: center;
  background: #000;
}

.label-area .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 834px) {
  .label-area .share {
    margin-top: 15px;
    display: block;
  }
}

.label-area .share span {
  color: #999;
  font-size: 14px;
  font-size: 1.4rem;
}

.label-area .share .icn-sns {
  display: inline-block;
  margin-left: 15px;
  width: 22px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  text-align: center;
}

.label-area .share .icn-sns.twitter {
  color: #78aad9;
}

.label-area .share .icn-sns.fb {
  color: #4f64b2;
}

.label-area .share .icn-sns.line {
  color: #5bac48;
}

.cusutom-select-box {
  overflow: hidden;
  width: 100%;
  color: #656565;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  background: #ffffff;
}

.cusutom-select-box select {
  width: 100%;
  padding: 18px 30px 18px 20px;
  cursor: pointer;
  text-indent: 0.01px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid #ccc;
}

@media screen and (max-width: 834px) {
  .cusutom-select-box select {
    padding-right: 25px;
  }
}

.cusutom-select-box select::-ms-expand {
  display: none;
}

.cusutom-select-box:before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 30px;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

@media screen and (max-width: 834px) {
  .cusutom-select-box:before {
    right: 20px;
  }
}

.page-media {
  padding-bottom: clamp(60px, 13vw, 130px);
}

.page-media .select-bos-wrap {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 316px 316px;
  margin-bottom: 55px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

@media screen and (max-width: 990px) {
  .page-media .select-bos-wrap {
    grid-template-columns: 45% 45%;
  }
}

@media screen and (max-width: 640px) {
  .page-media .select-bos-wrap {
    margin-bottom: 40px;
    grid-template-columns: 100%;
  }
}

.page-media .select-bos-wrap .cusutom-select-box {
  margin-bottom: 20px;
}

.page-media .media-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 100px 2.13%;
}

@media screen and (max-width: 834px) {
  .page-media .media-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 2.13%;
  }
}

.page-media .media-list .label-area {
  margin: 30px 0 20px;
}

@media screen and (max-width: 834px) {
  .page-media .media-list .label-area {
    margin: 15px 0 10px;
  }
}

.page-media .media-list p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 834px) {
  .page-media .media-list p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.page-company .message-block .message-item {
  display: -ms-grid;
  display: grid;
  grid-template-columns: max(300px, 24.5%) 1fr;
  padding: clamp(60px, 9.67vw, 150px) 0;
}

.page-company .message-block .message-item:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 834px) {
  .page-company .message-block .message-item {
    grid-template-columns: 100%;
  }
}

@media screen and (max-width: 834px) {
  .page-company .message-block .message-item .ttl-06 {
    margin-bottom: max(30px, 3.59vw);
  }
}

.page-company .message-block .message-item .desc {
  font-size: clamp(22px, 1rem + 2.8vw, 27px);
  line-height: 1.7;
}

@media screen and (max-width: 834px) {
  .page-company .message-block .message-item .desc {
    font-size: clamp(20px, 1rem + 2.3vw, 25px);
  }
}

.page-company .message-block .message-item .desc .small {
  font-size: clamp(17px, 1rem + 2vw, 21px);
}

@media screen and (max-width: 834px) {
  .page-company .message-block .message-item .desc .small {
    font-size: clamp(15px, 1rem + 1.8vw, 19px);
  }
}

.page-company .sec-profile {
  padding: clamp(60px, 18vw, 210px) 0 clamp(60px, 25vw, 310px);
  background: #f4f4f4;
}

.page-company .sec-profile .ttl-en {
  margin-bottom: clamp(50px, 9.35vw, 145px);
}

.page-company .sec-profile .profile-block {
  margin: 0 auto;
  padding: 9.8% max(15px, 8.45%);
  max-width: 1325px;
  background: #fff;
}

.page-company .sec-profile .profile-item {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-template-columns: max(130px, 26.4%) 1fr;
  padding: clamp(20px, 5%, 52px) 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.9;
  border-top: 1px solid #ddd;
}

.page-company .sec-profile .profile-item:last-child {
  border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 641px) {
  .page-company .sec-profile .profile-item:last-child:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    display: inline-block;
    width: max(130px, 26.4%);
    height: 1px;
    background: #151515;
  }
}

@media screen and (max-width: 640px) {
  .page-company .sec-profile .profile-item {
    grid-template-columns: 100%;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .page-company .sec-profile .profile-item .head {
    font-weight: bold;
  }
}

@media screen and (min-width: 641px) {
  .page-company .sec-profile .profile-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    display: inline-block;
    width: max(130px, 26.4%);
    height: 1px;
    background: #151515;
  }
}

.page-company .sec-profile .profile-item .logo {
  max-width: 225px;
}

@media screen and (max-width: 834px) {
  .gallery-wrap {
    padding-bottom: 10%;
  }
}

.gallery-wrap .gallery-item {
  margin-bottom: 20%;
}

@media screen and (max-width: 834px) {
  .gallery-wrap .gallery-item {
    margin-bottom: 90px;
  }
}

.gallery-wrap .logo {
  max-width: 700px;
  margin: 0 auto 35px auto;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .gallery-wrap .logo {
    margin-bottom: 15px;
  }
}

.gallery-wrap .gallery-slider {
  padding-bottom: 45px;
}

.gallery-wrap .gallery-slider .slick-dots {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 834px) {
  .gallery-wrap .gallery-slider .slick-dots {
    position: fixed;
    text-align: right;
  }
}

.gallery-wrap .name {
  margin: -40px 0 20px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 640px) {
  .gallery-wrap .name {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.gallery-wrap .lead-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 100px 0 85px;
}

@media screen and (max-width: 834px) {
  .gallery-wrap .lead-box {
    padding: 7vw 0 6vw;
  }
}

.gallery-wrap .lead-box .ttl {
  width: 46%;
  font-size: 30px;
  font-size: 3rem;
  line-height: 2;
}

@media screen and (max-width: 834px) {
  .gallery-wrap .lead-box .ttl {
    margin-bottom: 25px;
    width: 100%;
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 640px) {
  .gallery-wrap .lead-box .ttl {
    margin-bottom: 20px;
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.gallery-wrap .lead-box .desc {
  width: 50%;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.25;
}

@media screen and (max-width: 834px) {
  .gallery-wrap .lead-box .desc {
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.gallery-wrap .image-block {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 7.33% 1.61%;
}

@media screen and (max-width: 640px) {
  .gallery-wrap .image-block {
    display: block;
  }
  .gallery-wrap .image-block li {
    margin-bottom: 40px;
  }
  .gallery-wrap .image-block li img {
    width: 100%;
  }
}

.gallery-wrap .image-block p {
  margin: 8% 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.57;
}

@media screen and (max-width: 640px) {
  .gallery-wrap .image-block p {
    margin: 4% 0 0;
    line-height: 2;
  }
}

.gallery-wrap .lead-block {
  margin-bottom: 170px;
  padding: 80px 80px 100px;
  background: #f4f4f4;
}

@media screen and (max-width: 834px) {
  .gallery-wrap .lead-block {
    margin-bottom: 70px;
    padding: 40px 4% 50px;
  }
}

@media screen and (max-width: 640px) {
  .gallery-wrap .lead-block {
    margin-bottom: 70px;
    padding: 40px 4%;
  }
  .gallery-wrap .lead-block .image-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.gallery-wrap .lead-block p {
  margin-top: 70px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2.33;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .gallery-wrap .lead-block p {
    margin-top: 40px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
  }
}

@media screen and (max-width: 640px) {
  .gallery-wrap .lead-block p {
    margin-top: 0;
  }
}

.page-contact,
.page-privacy {
  padding-top: clamp(120px, 14.44vw, 260px);
  background: url(../img/privacy/img-page-bg.jpg) no-repeat center top;
  background-size: 100vw auto;
}

@media screen and (max-width: 640px) {
  .page-contact,
  .page-privacy {
    background: url(../img/privacy/img-page-bg_sp.jpg) no-repeat center top;
    background-size: 100vw auto;
  }
}

@media screen and (max-width: 1200px) {
  .page-contact .inner,
  .page-privacy .inner {
    padding: 0 4%;
  }
}

.page-contact .bg-wh,
.page-privacy .bg-wh {
  padding: clamp(60px, 9.67vw, 150px) max(20px, 4%) clamp(80px, 8vw, 120px);
  background: #fff;
}

.page-contact .bg-inner,
.page-privacy .bg-inner {
  margin: 0px auto;
  max-width: 1364px;
}

.page-contact .lead-box,
.page-privacy .lead-box {
  text-align: center;
}

.page-contact .lead-box .lead-strong,
.page-privacy .lead-box .lead-strong {
  font-size: clamp(22px, 1rem + 2vw, 27px);
  letter-spacing: 2px;
}

@media screen and (max-width: 834px) {
  .page-contact .lead-box .lead-strong,
  .page-privacy .lead-box .lead-strong {
    font-size: clamp(19px, 1rem + 1.8vw, 24px);
  }
}

.page-contact .lead-box .desc,
.page-privacy .lead-box .desc {
  margin: 60px 0;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 2;
}

@media screen and (max-width: 640px) {
  .page-contact .lead-box .desc,
  .page-privacy .lead-box .desc {
    text-align: left;
    margin: 40px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.page-contact .lead-box .contact-box,
.page-privacy .lead-box .contact-box {
  display: inline-block;
  margin: 0 0 40px;
  padding: 25px 15px 30px;
  width: min(570px, 80%);
  max-width: 570px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 1px;
  background: #f2f2f2;
  border: 1px solid #c9caca;
}

@media screen and (max-width: 640px) {
  .page-contact .lead-box .contact-box,
  .page-privacy .lead-box .contact-box {
    min-width: 260px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.page-contact .lead-box .contact-box .tel,
.page-privacy .lead-box .contact-box .tel {
  margin-top: 10px;
  font-size: 27px;
  font-size: 2.7rem;
}

@media screen and (max-width: 640px) {
  .page-contact .lead-box .contact-box .tel,
  .page-privacy .lead-box .contact-box .tel {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.ttl-page-wrap {
  padding-bottom: clamp(40px, 6vw, 110px);
  color: #fff;
  text-align: center;
}

.form-block .form-low {
  padding: clamp(15px, 3vw, 32px) 0;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 18px;
  font-size: 1.8rem;
}

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

.form-block .form-low {
  display: -ms-grid;
  display: grid;
  grid-template-columns: max(270px, 20%) 1fr;
}

@media screen and (max-width: 834px) {
  .form-block .form-low {
    grid-template-columns: 100%;
  }
}

.form-block .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 24px;
}

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

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

.form-block .required {
  display: inline-block;
  margin-left: .8em;
  margin-top: -4px;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  width: 62px;
  line-height: 33px;
  text-align: center;
  background: #707070;
  border-radius: 9px;
}

@media screen and (max-width: 834px) {
  .form-block .required {
    margin-top: 0;
    font-size: 17px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 640px) {
  .form-block .required {
    width: 50px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}

.form-block .err {
  margin: 10px 0 0;
  color: #ea0000;
  font-size: 14px;
  font-size: 1.4rem;
}

.form-block input[type="text"], .form-block input[type="email"], .form-block textarea {
  display: inline-block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 0;
  color: inherit;
  background: #efefef;
  border: 1px solid transparent;
  -webkit-transition: border 0.2s ease-out;
  -o-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
  outline: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  padding: 22px 5.1%;
}

@media screen and (max-width: 834px) {
  .form-block input[type="text"], .form-block input[type="email"], .form-block textarea {
    padding: 15px 3%;
  }
}

.form-block textarea {
  height: 210px;
  resize: none;
}

.form-block .custom-check-box input {
  display: none;
}

.form-block .custom-check-box label {
  font-size: 19px;
  font-size: 1.9rem;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 834px) {
  .form-block .custom-check-box label {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.form-block .custom-check-box label span {
  display: inline-block;
  position: relative;
  padding-left: 35px;
}

.form-block .custom-check-box label .mwform-checkbox-field-text {
  display: inline-block;
  position: relative;
  padding-left: 35px;
}

.form-block .custom-check-box label .mwform-checkbox-field-text:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #231815;
  position: absolute;
  border-radius: 4px;
  top: 3px;
  left: 0;
}

.form-block .custom-check-box input:checked + span:after {
  content: "";
  display: block;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 13px;
  width: 6px;
  border-bottom: 2px solid #231815;
  border-right: 2px solid #231815;
  position: absolute;
  left: 6px;
  top: 3px;
}

.form-block .btn-box {
  margin: 70px 0 0;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .form-block .btn-box {
    margin: 40px 0 0;
  }
}

.form-block .btn-box .btn-com02 {
  margin: 30px 0 0;
  max-width: 340px;
}

.mw_wp_form_confirm .head {
  padding-top: 0 !important;
}

.page-privacy .bg-wh {
  padding-bottom: clamp(80px, 12vw, 280px);
}

.privacy-block {
  margin: 60px auto 0;
  max-width: 1200px;
}

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

.privacy-block .privacy-row:not(:last-child) {
  margin-bottom: 55px;
}

@media screen and (max-width: 834px) {
  .privacy-block .privacy-row:not(:last-child) {
    margin-bottom: 35px;
  }
}

.privacy-block .head {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  padding-bottom: 10px;
  border-bottom: 1px solid #231815;
}

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

.privacy-block .desc {
  margin: 35px 15px 0;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 834px) {
  .privacy-block .desc {
    margin: 25px 10px 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.txt-lightyellow {
  color: #b29d50;
}

.sec-aboutmain {
  padding: 257px 0 214px;
  background: #FFFFFF;
}

@media screen and (max-width: 1200px) {
  .sec-aboutmain {
    padding: 165px 0 100px;
  }
}

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

.box-aboutmain {
  margin-bottom: 158px;
}

@media screen and (max-width: 1200px) {
  .box-aboutmain {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 834px) {
  .box-aboutmain {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
  }
}

.box-aboutmain__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 128px;
}

@media screen and (max-width: 1200px) {
  .box-aboutmain__head {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 990px) {
  .box-aboutmain__head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 50px;
  }
}

.box-aboutmain__head .ttl-02 {
  width: 35%;
  line-height: 2.25;
  margin-bottom: 0;
  color: #2e2c2b;
}

@media screen and (max-width: 1200px) {
  .box-aboutmain__head .ttl-02 {
    width: 45%;
  }
}

@media screen and (max-width: 990px) {
  .box-aboutmain__head .ttl-02 {
    width: 100%;
    margin-bottom: 35px;
  }
}

.box-aboutmain__head .txt-basic--lg {
  width: 65%;
  padding-left: 42px;
  margin-top: 10px;
}

@media screen and (max-width: 1200px) {
  .box-aboutmain__head .txt-basic--lg {
    width: 55%;
  }
}

@media screen and (max-width: 990px) {
  .box-aboutmain__head .txt-basic--lg {
    width: 100%;
    padding-left: 0;
    margin-top: 0;
  }
}

.box-luxurious > .txt-basic--lg {
  margin-bottom: 128px;
}

@media screen and (max-width: 1200px) {
  .box-luxurious > .txt-basic--lg {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 834px) {
  .box-luxurious > .txt-basic--lg {
    margin-bottom: 50px;
  }
}

.box-luxurious .ttl {
  text-align: center;
  margin-bottom: 41px;
}

.box-luxurious .ttl-des {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.8;
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin-bottom: 38px;
  display: inline-block;
  color: #2e2c2b;
}

@media screen and (max-width: 834px) {
  .box-luxurious .ttl-des {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 19px;
  }
}

@media screen and (max-width: 374px) {
  .box-luxurious .ttl-des {
    font-size: 2.5vw;
  }
}

.box-luxurious .ttl-main {
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.25;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  color: #000;
  display: inline-block;
  width: 100%;
}

@media screen and (max-width: 834px) {
  .box-luxurious .ttl-main {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 640px) {
  .box-luxurious .ttl-main {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.box-luxurious .list-luxurious .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 190px;
}

@media screen and (max-width: 1200px) {
  .box-luxurious .list-luxurious .item {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 990px) {
  .box-luxurious .list-luxurious .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 834px) {
  .box-luxurious .list-luxurious .item {
    margin-bottom: 50px;
  }
}

.box-luxurious .list-luxurious .item:last-child {
  margin-bottom: 0;
}

.box-luxurious .list-luxurious .item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.box-luxurious .list-luxurious .item:nth-child(odd) .item-img {
  padding-right: 0;
  padding-left: 60px;
}

@media screen and (max-width: 1200px) {
  .box-luxurious .list-luxurious .item:nth-child(odd) .item-img {
    padding-left: 30px;
  }
}

.box-luxurious .list-luxurious .item:nth-child(odd) .item-img .txt-vertical {
  left: 12px;
  right: auto;
}

@media screen and (max-width: 1200px) {
  .box-luxurious .list-luxurious .item:nth-child(odd) .item-img .txt-vertical {
    left: 0;
  }
}

.box-luxurious .list-luxurious .item:nth-child(odd) .item-txt {
  padding: 0 69px 45px 74px;
}

@media screen and (max-width: 1440px) {
  .box-luxurious .list-luxurious .item:nth-child(odd) .item-txt {
    padding: 0 15px 25px 35px;
  }
}

@media screen and (max-width: 1200px) {
  .box-luxurious .list-luxurious .item:nth-child(odd) .item-txt {
    padding: 0 15px 0px 15px;
  }
}

@media screen and (max-width: 834px) {
  .box-luxurious .list-luxurious .item:nth-child(odd) .item-txt {
    padding: 0;
  }
}

.box-luxurious .list-luxurious .item-txt {
  width: 30%;
  padding: 0 74px 45px 69px;
  color: #141414;
}

@media screen and (max-width: 1440px) {
  .box-luxurious .list-luxurious .item-txt {
    padding: 0 35px 25px 15px;
  }
}

@media screen and (max-width: 1200px) {
  .box-luxurious .list-luxurious .item-txt {
    padding: 0 15px 0px 15px;
    width: 55%;
  }
}

@media screen and (max-width: 990px) {
  .box-luxurious .list-luxurious .item-txt {
    width: 100%;
    padding: 0;
  }
}

.box-luxurious .list-luxurious .item-txt .ttl-02 {
  line-height: 2.1;
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .box-luxurious .list-luxurious .item-txt .ttl-02 {
    margin-bottom: 15px;
    line-height: 1.6;
  }
}

.box-luxurious .list-luxurious .item-txt .txt-basic {
  line-height: 2.4;
}

@media screen and (max-width: 834px) {
  .box-luxurious .list-luxurious .item-txt .txt-basic {
    line-height: 1.9;
  }
}

.box-luxurious .list-luxurious .item-img {
  width: 70%;
  position: relative;
  padding-right: 60px;
}

@media screen and (max-width: 1200px) {
  .box-luxurious .list-luxurious .item-img {
    padding-right: 30px;
    width: 45%;
  }
}

@media screen and (max-width: 990px) {
  .box-luxurious .list-luxurious .item-img {
    width: 100%;
    margin-bottom: 35px;
  }
}

.box-luxurious .list-luxurious .item-img .txt-vertical {
  position: absolute;
  top: 0;
  right: 12px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #656565;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 1200px) {
  .box-luxurious .list-luxurious .item-img .txt-vertical {
    right: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 834px) {
  .box-luxurious .list-luxurious .item-img .txt-vertical {
    height: 120%;
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 374px) {
  .box-luxurious .list-luxurious .item-img .txt-vertical {
    font-size: 10px;
    font-size: 1rem;
  }
}

.box-luxurious .list-luxurious .item-img .txt-vertical .en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1200px) {
  .box-luxurious .list-luxurious .item-img .txt-vertical .en {
    margin-bottom: 5px;
  }
}

.box-luxurious .list-luxurious .item-img .txt-vertical .number {
  font-family: "Cinzel", serif;
}

.box-luxurious .list-luxurious .item-img .txt-vertical .jp {
  color: #141414;
  letter-spacing: 0.1em;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.box-luxurious .list-luxurious .item-img .txt-vertical:before {
  content: '';
  height: 52px;
  width: 1px;
  background: #666666;
  display: inline-block;
  margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
  .box-luxurious .list-luxurious .item-img .txt-vertical:before {
    height: 20px;
  }
}

.sec-brandmain {
  padding-bottom: 172px;
}

@media screen and (min-width: 835px) {
  .sec-brandmain {
    margin-top: -71px;
  }
}

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

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

.sec-brandmain .block-brand {
  margin-bottom: 178px;
}

@media screen and (max-width: 1200px) {
  .sec-brandmain .block-brand {
    margin-bottom: 100px;
  }
}

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

@media screen and (min-width: 835px) {
  .sec-brandmain .block-brand .item__img {
    margin-bottom: 43px;
  }
}

.sec-brandmain .block-brand .item__img .img:after {
  padding-top: calc(716/998*100%);
}

.sec-brandmain .block-brand .item__ttl {
  color: #000;
}

.sec-brandmain .block-brand .item__info {
  color: #141414;
}

.sec-brandmain .view-slider02 {
  margin-bottom: 10px;
}

.sec-brandmain .block-brand02 .box-information {
  margin-bottom: 118px;
}

@media screen and (max-width: 834px) {
  .sec-brandmain .block-brand02 .box-information {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 835px) {
  .sec-brandmain .block-brand01 .lead-box {
    padding: 67px 0 77px;
  }
}

.sec-brandmain .lead-box .ttl {
  color: #2e2c2b;
}

.box-information {
  padding: 63px 76px 80px;
  background: #f4f4f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 246px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .box-information {
    padding: 30px 30px 50px;
    margin-bottom: 150px;
  }
}

@media screen and (max-width: 1024px) {
  .box-information {
    padding: 15px 15px 50px;
  }
}

@media screen and (max-width: 834px) {
  .box-information {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.box-information .ttl-infor {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.71;
  color: #656565;
  text-transform: uppercase;
  font-size: 21px;
  font-size: 2.1rem;
  width: 22%;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  .box-information .ttl-infor {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 834px) {
  .box-information .ttl-infor {
    font-size: 15px;
    font-size: 1.5rem;
    width: 100%;
    margin-bottom: 15px;
  }
}

.box-information .ttl-infor:before {
  content: '';
  width: 52px;
  height: 1px;
  background: #666666;
  display: inline-block;
  margin-right: 11px;
}

.box-information .block-contentinfor {
  font-weight: 500;
  line-height: 2.4;
  width: 78%;
  padding-left: 20px;
}

@media screen and (max-width: 834px) {
  .box-information .block-contentinfor {
    width: 100%;
    padding-left: 0;
  }
}

.box-information .block-contentinfor dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #141414;
}

.box-information .block-contentinfor dl dt {
  width: 120px;
}

@media screen and (max-width: 640px) {
  .box-information .block-contentinfor dl dt {
    width: 80px;
    margin-bottom: 5px;
  }
}

.box-information .block-contentinfor dl dd {
  width: calc(100% - 120px);
}

@media screen and (max-width: 640px) {
  .box-information .block-contentinfor dl dd {
    width: calc(100% - 80px);
  }
}

.box-information .block-contentinfor .dd-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 834px) {
  .box-information .block-contentinfor .dd-sub {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.box-information .block-contentinfor .dd-sub .flex {
  margin-right: 15px;
  white-space: nowrap;
}

@media screen and (max-width: 834px) {
  .box-information .block-contentinfor .dd-sub .flex {
    width: 100%;
  }
}

.box-information .block-contentinfor .link-map {
  padding: 0px 18px;
  color: #FFFFFF;
  margin-left: 15px;
  background: #929292;
  display: inline-block;
  line-height: 2;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .box-information .block-contentinfor .link-map {
    padding: 5px 18px 0;
  }
}

.box-information .link-more {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.sec-strengths {
  padding-top: 27px;
}

.sec-strengths .box-strength {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 123px;
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-strength {
    margin-bottom: 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sec-strengths .box-strength .part-img {
  width: 38%;
  text-align: center;
  padding-top: 7px;
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-strength .part-img {
    width: 50%;
    margin: 0 auto 35px auto;
  }
}

.sec-strengths .box-strength .part-txt {
  width: 62%;
  padding-left: 116px;
}

@media screen and (max-width: 1200px) {
  .sec-strengths .box-strength .part-txt {
    padding-left: 50px;
  }
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-strength .part-txt {
    width: 100%;
    padding-left: 0;
  }
}

.sec-strengths .box-strength .part-txt .ttl {
  margin-bottom: 91px;
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-strength .part-txt .ttl {
    margin-bottom: 50px;
  }
}

.sec-strengths .box-strength .part-txt .ttl .jp {
  font-size: 80px;
  font-size: 8rem;
  font-weight: 500;
  line-height: 1.125;
  color: #000;
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-strength .part-txt .ttl .jp {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 640px) {
  .sec-strengths .box-strength .part-txt .ttl .jp {
    font-size: 30px;
    font-size: 3rem;
  }
}

.sec-strengths .box-strength .part-txt .ttl .en {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.6;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  color: #000;
}

@media screen and (max-width: 1200px) {
  .sec-strengths .box-strength .part-txt .ttl .en {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-strength .part-txt .ttl .en {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sec-strengths .box-strength .part-txtdes {
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 48px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #2e2c2b;
}

@media screen and (max-width: 1200px) {
  .sec-strengths .box-strength .part-txtdes {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-strength .part-txtdes {
    font-size: 19px;
    font-size: 1.9rem;
    margin-bottom: 25px;
  }
}

.sec-strengths .box-strength .part-txt .txt-basic--lg {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.sec-strengths .box-strength .part-txt .txt-basic--lg p {
  margin-bottom: 48px;
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-strength .part-txt .txt-basic--lg p {
    margin-bottom: 25px;
  }
}

.sec-strengths .box-strength .part-txt .txt-basic--lg p:last-child {
  margin-bottom: 0;
}

.sec-strengths .box-liststrengths {
  background: #f4f4f4;
  padding-top: 107px;
  padding-bottom: 170px;
}

@media screen and (max-width: 1200px) {
  .sec-strengths .box-liststrengths {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-liststrengths {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item {
  padding: 92px 82px 98px 0;
  margin-bottom: 120px;
  margin-right: 124px;
  position: relative;
  background: #FFFFFF;
}

@media screen and (max-width: 1600px) {
  .sec-strengths .box-liststrengths .list-strengths .item {
    padding: 25px 25px 25px 0;
    margin-right: 25px;
  }
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-liststrengths .list-strengths .item {
    margin-right: 0;
    margin-bottom: 50px;
    padding: 25px 15px 25px 15px;
  }
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-liststrengths .list-strengths .item .ttl-02 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item:nth-child(2n) {
  margin-right: 0;
  margin-left: 122px;
  padding: 87px 0 90px 93px;
}

@media screen and (max-width: 1600px) {
  .sec-strengths .box-liststrengths .list-strengths .item:nth-child(2n) {
    padding: 25px 0 25px 25px;
    margin-left: 25px;
  }
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-liststrengths .list-strengths .item:nth-child(2n) {
    margin-left: 0;
    padding: 25px 0px 25px 15px;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item:nth-child(2n):before {
  content: '';
  height: 100%;
  width: calc((100vw - 1550px)/2);
  position: absolute;
  top: 0;
  right: calc((-1)*(100vw - 1550px)/2);
  left: 100%;
  background: #FFFFFF;
  bottom: 0;
}

@media screen and (max-width: 1600px) {
  .sec-strengths .box-liststrengths .list-strengths .item:nth-child(2n):before {
    width: 25px;
    right: -25px;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item:last-child {
  margin-bottom: 0;
}

.sec-strengths .box-liststrengths .list-strengths .item:before {
  content: '';
  height: 100%;
  width: calc((100vw - 1550px)/2);
  position: absolute;
  top: 0;
  left: calc((-1)*(100vw - 1550px)/2);
  background: #FFFFFF;
  bottom: 0;
  right: 100%;
}

@media screen and (max-width: 1600px) {
  .sec-strengths .box-liststrengths .list-strengths .item:before {
    width: 25px;
    left: -25px;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item-img {
  width: 57.5%;
  margin-top: 50px;
}

@media screen and (max-width: 1024px) {
  .sec-strengths .box-liststrengths .list-strengths .item-img {
    width: 50%;
  }
}

@media screen and (max-width: 990px) {
  .sec-strengths .box-liststrengths .list-strengths .item-img {
    width: 100%;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item-img__main {
  margin-bottom: 15px;
}

.sec-strengths .box-liststrengths .list-strengths .item-txt {
  width: 42.5%;
  padding-left: 110px;
  padding-top: 37px;
  color: #141414;
}

@media screen and (max-width: 1600px) {
  .sec-strengths .box-liststrengths .list-strengths .item-txt {
    padding-left: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .sec-strengths .box-liststrengths .list-strengths .item-txt {
    width: 50%;
  }
}

@media screen and (max-width: 990px) {
  .sec-strengths .box-liststrengths .list-strengths .item-txt {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-liststrengths .list-strengths .item-txt {
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 25px;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item-txt .txt-before {
  margin-left: 0;
  color: #656565;
}

.sec-strengths .box-liststrengths .list-strengths .item-txt__des {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 2.1;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 37px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 1024px) {
  .sec-strengths .box-liststrengths .list-strengths .item-txt__des {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-liststrengths .list-strengths .item-txt__des {
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.6;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item-txt .txt-basic {
  line-height: 2.4;
}

.sec-strengths .box-liststrengths .list-strengths .item-txt .txt-basic p {
  margin-bottom: 37px;
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-liststrengths .list-strengths .item-txt .txt-basic p {
    margin-bottom: 25px;
    line-height: 1.5;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item-txt .txt-basic p:last-child {
  margin-bottom: 0;
}

.sec-strengths .box-liststrengths .list-strengths .item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 50px;
  margin-bottom: 58px;
  border-bottom: 1px solid #dddddd;
}

@media screen and (max-width: 990px) {
  .sec-strengths .box-liststrengths .list-strengths .item-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-liststrengths .list-strengths .item-wrap {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item-wrap--nobd {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 43px;
}

.sec-strengths .box-liststrengths .list-strengths .item-wrap--nobd .item-img__main {
  margin-bottom: 0;
}

.sec-strengths .box-liststrengths .list-strengths .item-wrap--nobd .item-img {
  padding-top: 23px;
}

.sec-strengths .box-liststrengths .list-strengths .item .txt-basicsm {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.14;
  font-weight: 500;
  padding-left: 12px;
  color: #141414;
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-liststrengths .list-strengths .item .txt-basicsm {
    font-size: 12px;
    font-size: 1.2rem;
    padding-left: 0;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item .list-imgthumb {
  margin: 0 -7.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-strengths .box-liststrengths .list-strengths .item .list-imgthumb .item-imgthumb {
  width: 50%;
  padding: 0 7.5px;
  margin-bottom: 15px;
}

.sec-strengths .box-liststrengths .list-strengths .item .list-imgthumb03 {
  margin: 0 -12.5px 45px;
  padding-left: 12px;
}

@media screen and (max-width: 834px) {
  .sec-strengths .box-liststrengths .list-strengths .item .list-imgthumb03 {
    padding-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .sec-strengths .box-liststrengths .list-strengths .item .list-imgthumb03 {
    margin: 0px;
  }
}

.sec-strengths .box-liststrengths .list-strengths .item .list-imgthumb03 .item-imgthumb {
  width: 33.33%;
  padding: 0 12.5px;
  margin-bottom: 15px;
}

@media screen and (max-width: 640px) {
  .sec-strengths .box-liststrengths .list-strengths .item .list-imgthumb03 .item-imgthumb {
    width: 100%;
    padding: 0;
  }
}

.txt-before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
  margin-left: 12px;
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", serif;
}

@media screen and (max-width: 834px) {
  .txt-before {
    padding-left: 0;
  }
}

.txt-before:before {
  content: '';
  height: 1px;
  width: 52px;
  background: #666666;
  margin-right: 14px;
}

.sec-experiencemain {
  padding-top: 58px;
  padding-bottom: 319px;
}

@media screen and (max-width: 1200px) {
  .sec-experiencemain {
    padding-bottom: 150px;
  }
}

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

@media screen and (max-width: 640px) {
  .sec-experiencemain {
    padding-bottom: 10%;
  }
}

.box-experiencetop {
  margin-bottom: 325px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 1200px) {
  .box-experiencetop {
    margin-bottom: 150px;
  }
}

@media screen and (max-width: 834px) {
  .box-experiencetop {
    margin-bottom: 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.box-experiencetop .img {
  width: 60%;
  padding: 0 15px;
}

@media screen and (max-width: 1200px) {
  .box-experiencetop .img {
    padding: 0;
    width: 55%;
    margin-top: 100px;
  }
}

@media screen and (max-width: 834px) {
  .box-experiencetop .img {
    width: 100%;
    margin-bottom: 25px;
  }
}

.box-experiencetop .txt {
  width: 40%;
  padding-left: 110px;
  padding-top: 6px;
}

@media screen and (max-width: 1200px) {
  .box-experiencetop .txt {
    width: 45%;
    padding-left: 50px;
  }
}

@media screen and (max-width: 834px) {
  .box-experiencetop .txt {
    width: 100%;
    padding-left: 0;
  }
}

.box-experiencetop .txt .ttl-09 {
  margin-bottom: 43px;
  padding-left: 16px;
}

@media screen and (max-width: 1200px) {
  .box-experiencetop .txt .ttl-09 {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 834px) {
  .box-experiencetop .txt .ttl-09 {
    padding-left: 0;
  }
}

.box-experiencetop .txt-des {
  font-size: 13px;
  font-size: 1.3rem;
  color: #989898;
  font-weight: 500;
  margin-bottom: 94px;
  line-height: 2.2;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 1200px) {
  .box-experiencetop .txt-des {
    margin-bottom: 25px;
  }
}

.box-experiencetop .txt-ttl {
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #151515;
  margin-bottom: 10px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 1200px) {
  .box-experiencetop .txt-ttl {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 834px) {
  .box-experiencetop .txt-ttl {
    font-size: 23px;
    font-size: 2.3rem;
  }
}

.box-experiencetop .txt-ttl__des {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 68px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 1200px) {
  .box-experiencetop .txt-ttl__des {
    margin-bottom: 25px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.box-experiencetop .txt .txt-basic {
  color: #141414;
}

.box-experiencetop .txt .txt-basic p {
  margin-bottom: 34px;
  line-height: 2.5;
}

@media screen and (max-width: 834px) {
  .box-experiencetop .txt .txt-basic p {
    line-height: 1.9;
  }
}

.box-experiencetop .txt .txt-basic p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .box-experiencetop .txt .txt-basic p {
    margin-bottom: 15px;
  }
}

.box-story .list-story .item {
  margin-bottom: 379px;
}

@media screen and (max-width: 1200px) {
  .box-story .list-story .item {
    margin-bottom: 150px;
  }
}

.box-story .list-story .item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 834px) {
  .box-story .list-story .item:last-child {
    margin-bottom: 50px;
  }
}

.box-story .list-story .item .ttl-08 {
  margin-bottom: 85px;
}

@media screen and (max-width: 834px) {
  .box-story .list-story .item .ttl-08 {
    margin-bottom: 20px;
  }
}

.box-story .list-story .item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 170px 27px 330px;
  background: #f4f4f4;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .box-story .list-story .item-content {
    padding: 150px 15px 150px;
  }
}

@media screen and (max-width: 640px) {
  .box-story .list-story .item-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 50px 15px 70px;
  }
}

.box-story .list-story .item-content:after {
  content: '';
  height: 100%;
  width: calc((100vw - 1550px)/2);
  position: absolute;
  top: 0;
  right: calc((-1)*(100vw - 1550px)/2);
  left: 100%;
  background: #f4f4f4;
  bottom: 0;
}

@media screen and (max-width: 1600px) {
  .box-story .list-story .item-content:after {
    width: 25px;
    right: -25px;
  }
}

.box-story .list-story .item-content:before {
  content: '';
  height: 100%;
  width: calc((100vw - 1550px)/2);
  position: absolute;
  top: 0;
  left: calc((-1)*(100vw - 1550px)/2);
  background: #f4f4f4;
  bottom: 0;
  right: 100%;
}

@media screen and (max-width: 1600px) {
  .box-story .list-story .item-content:before {
    width: 25px;
    left: -25px;
  }
}

.box-story .list-story .item-content .ttl-02 {
  margin-bottom: 22px;
}

@media screen and (max-width: 640px) {
  .box-story .list-story .item-content .ttl-02 {
    margin-bottom: 0;
  }
}

.box-story .list-story .item-ttl {
  display: inline-block;
  width: 30%;
  padding-left: 45px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .box-story .list-story .item-ttl {
    width: 40%;
    padding-left: 15px;
  }
}

@media screen and (max-width: 640px) {
  .box-story .list-story .item-ttl {
    width: 100%;
    margin-bottom: 30px;
  }
}

.box-story .list-story .item-ttl:before {
  content: '';
  height: 183px;
  width: 1px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

@media screen and (max-width: 640px) {
  .box-story .list-story .item-ttl:before {
    height: 100%;
    top: -5px;
  }
}

.box-story .list-story .item-ttl .en {
  font-size: 60px;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  display: inline-block;
  width: 100%;
  position: relative;
  top: -8px;
  margin-bottom: -5px;
  color: #000;
}

@media screen and (max-width: 1200px) {
  .box-story .list-story .item-ttl .en {
    font-size: 45px;
    font-size: 4.5rem;
  }
}

@media screen and (max-width: 834px) {
  .box-story .list-story .item-ttl .en {
    font-size: 30px;
    font-size: 3rem;
  }
}

.box-story .list-story .item-ttl .jp {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  color: #656565;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.box-story .list-story .item-des {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.1em;
  width: 70%;
  padding-left: 25px;
  position: relative;
  top: -9px;
  color: #151515;
}

@media screen and (max-width: 1200px) {
  .box-story .list-story .item-des {
    width: 60%;
  }
}

@media screen and (max-width: 834px) {
  .box-story .list-story .item-des {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 640px) {
  .box-story .list-story .item-des {
    width: 100%;
    padding-left: 0;
    top: 0;
  }
}

.box-story .list-story .item-des__txt {
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.box-story .list-story .item-img {
  position: relative;
  margin-top: -278px;
}

@media screen and (max-width: 1200px) {
  .box-story .list-story .item-img {
    margin-top: -120px;
  }
}

@media screen and (max-width: 834px) {
  .box-story .list-story .item-img {
    margin-top: -100px;
  }
}

@media screen and (max-width: 640px) {
  .box-story .list-story .item-img {
    margin-top: -50px;
  }
}

.box-story .list-story .item-img .link-more {
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 834px) {
  .box-story .list-story .item-img .link-more {
    bottom: -40px;
  }
}

.writ-m {
  background: url("../img/experience/bg-wri.png") no-repeat top right;
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  width: 100%;
  position: relative;
  padding: 145px 0 270px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -93px;
}

@media screen and (max-width: 1440px) {
  .writ-m {
    padding: 5px 0 270px;
  }
}

@media screen and (max-width: 1024px) {
  .writ-m {
    padding: 100px 0 150px;
  }
}

@media screen and (max-width: 834px) {
  .writ-m {
    padding: 0 0 50px;
    margin-top: 0;
    -webkit-writing-mode: unset;
            writing-mode: unset;
    -ms-writing-mode: lr-tb;
  }
}

.writ-m .writ-inner {
  width: 1135px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .writ-m .writ-inner {
    width: 100%;
  }
}

.writ-m .box-writ-l {
  width: 67%;
  padding-top: 84px;
  padding-right: 6px;
}

@media screen and (max-width: 990px) {
  .writ-m .box-writ-l {
    width: 68%;
  }
}

@media screen and (max-width: 990px) {
  .writ-m .box-writ-l {
    width: 75%;
    padding-right: 0;
  }
}

@media screen and (max-width: 834px) {
  .writ-m .box-writ-l {
    padding-top: 30px;
    width: 100%;
  }
}

.writ-m .box-writ-l span {
  display: block;
  text-align: left;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #151515;
  font-weight: 500;
  padding: 0 7px;
  white-space: nowrap;
}

.writ-m .box-writ-l p {
  padding: 0 18px;
}

@media screen and (max-width: 990px) {
  .writ-m .box-writ-l p {
    padding: 0 5px;
  }
}

@media screen and (max-width: 834px) {
  .writ-m .box-writ-l p {
    padding: 8px 0;
  }
}

.writ-m .box-writ-r {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 35px;
  font-size: 3.5rem;
  color: #151515;
  font-weight: 500;
  width: 33%;
}

@media screen and (max-width: 1200px) {
  .writ-m .box-writ-r {
    width: 25%;
  }
}

@media screen and (max-width: 990px) {
  .writ-m .box-writ-r {
    width: 25%;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 834px) {
  .writ-m .box-writ-r {
    width: 100%;
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.writ-m .box-writ-r span {
  color: #141414;
  display: block;
  text-align: left;
  padding: 0 11px;
  letter-spacing: 2.1px;
  white-space: nowrap;
}

@media screen and (max-width: 990px) {
  .writ-m .box-writ-r span {
    padding: 0 8px;
  }
}

.contents-experience .txt-bg-ex {
  font-size: 100px;
  font-size: 10rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  white-space: nowrap;
  margin-bottom: 30px;
  opacity: .08;
}

@media screen and (max-width: 1024px) {
  .contents-experience .txt-bg-ex {
    font-size: 50px;
    font-size: 5rem;
  }
}

@media screen and (max-width: 834px) {
  .contents-experience .txt-bg-ex {
    font-size: 30px;
    font-size: 3rem;
  }
}

.contents-experience .txt-bg-ex span {
  font-family: "Cinzel", serif;
  font-weight: 500;
}

.contents-experience .viewslider {
  margin-bottom: 50px;
}

@media screen and (max-width: 834px) {
  .contents-experience .viewslider {
    margin-bottom: 50px;
  }
}

.contents-experience .viewslider .txt-basic {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #151515;
  font-weight: 500;
  margin-top: 70px;
}

@media screen and (max-width: 834px) {
  .contents-experience .viewslider .txt-basic {
    margin-top: 30px;
  }
}

.contents-experience .slick-dots {
  text-align: right;
  padding-right: 10px;
  bottom: -20px;
}

.contents-experience .slick-dots li {
  margin: 0 7px;
}

.contents-experience .slick-dots li button:before {
  background: #cccccc;
}

.contents-experience .slick-dots li.slick-active button:before {
  background: #151515;
  width: 10px;
  height: 10px;
}

.box-list {
  background: #f4f4f4 url("../img/experience/bg-list.png") no-repeat top 140px right 21%;
  padding: 175px 0 190px;
}

@media screen and (max-width: 834px) {
  .box-list {
    background-position: top 10px right 15px;
    background-size: 47%;
  }
}

.box-list.box-list03 {
  background: #f4f4f4 url("../img/experience/bg-list03.png") no-repeat top 75px right 19%;
}

.box-list.box-list04 {
  background: #f4f4f4 url("../img/experience/bg-list04.png") no-repeat top 75px right 20%;
}

.box-list-nobg {
  background: #f4f4f4;
}

@media screen and (max-width: 1024px) {
  .box-list {
    padding: 100px 0 100px;
  }
}

@media screen and (max-width: 834px) {
  .box-list {
    padding: 25px 0 50px 0;
  }
  .box-list.box-list03 {
    background: #f4f4f4 url(../img/experience/bg-list03.png) no-repeat top 10px right 15px;
    background-size: 30%;
  }
  .box-list.box-list04 {
    background: #f4f4f4 url("../img/experience/bg-list04.png") no-repeat top 10px right 15px;
    background-position: top 10px right 15px;
    background-size: 45%;
  }
}

.box-list .experience-list {
  background: #ffffff;
  position: relative;
}

.box-list .experience-list:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -50%;
  top: 0px;
  width: 50%;
  height: 100%;
  background: #ffffff;
}

@media screen and (max-width: 834px) {
  .box-list .experience-list {
    padding-bottom: 15px;
  }
  .box-list .experience-list:after {
    content: '';
    display: inline-block;
    position: absolute;
    right: -50%;
    top: 0px;
    width: 50%;
    height: 100%;
    background: #ffffff;
  }
}

.box-list .exp-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.box-list .exp-list .list-item .ttl-article {
  color: #141414;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 60px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item .ttl-article {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

.box-list .exp-list .list-item .desc {
  color: #141414;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 35px;
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item .desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
  }
}

.box-list .exp-list .list-item .img img {
  width: 100%;
}

.box-list .exp-list .list-item.list-item-first {
  margin-top: -50px;
  width: 47.5%;
  padding: 0 96px;
  margin-bottom: 138px;
}

@media screen and (max-width: 1200px) {
  .box-list .exp-list .list-item.list-item-first {
    padding: 0 50px;
  }
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item.list-item-first {
    width: 100%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item.list-item-first {
    padding: 0;
  }
}

.box-list .exp-list .list-item.list-item-first .img {
  margin-bottom: 20px;
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item.list-item-first .img {
    padding: 30px 30px 0 30px;
  }
}

.box-list .exp-list .list-item.list-item-r {
  width: 52.5%;
  padding: 130px 140px 0 150px;
}

@media screen and (max-width: 1200px) {
  .box-list .exp-list .list-item.list-item-r {
    padding: 100px 50px 0;
  }
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item.list-item-r {
    width: 100%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item.list-item-r {
    padding: 0;
  }
}

.box-list .exp-list .list-item.list-item-r .img {
  margin-top: 50px;
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item.list-item-r .img {
    display: none;
    margin-top: 0;
    padding: 0 30px;
  }
  .box-list .exp-list .list-item.list-item-r .img.sp {
    display: block;
    margin-bottom: 20px;
  }
}

.box-list .exp-list .list-item.list-item-full {
  width: 100%;
  padding: 0 170px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .box-list .exp-list .list-item.list-item-full {
    padding: 0 50px;
  }
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item.list-item-full {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item.list-item-full {
    padding: 0;
  }
}

.box-list .exp-list .list-item.list-item-full .img {
  width: 41.3%;
  margin: 100px 6% -50px 0;
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item.list-item-full .img {
    padding: 30px;
    margin: 0;
    width: 100%;
  }
}

.box-list .exp-list .list-item.list-item-full .txt-box {
  width: 37%;
  padding-top: 130px;
  padding-bottom: 20px;
}

@media screen and (max-width: 834px) {
  .box-list .exp-list .list-item.list-item-full .txt-box {
    padding-top: 0px;
    width: 100%;
  }
}

.box-other-story {
  background: #ffffff;
  padding: 115px 0 148px;
}

@media screen and (max-width: 834px) {
  .box-other-story {
    padding: 50px 0;
  }
}

.box-other-story .box-title {
  color: #232323;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-size: 3.5rem;
  margin-bottom: 61px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media screen and (max-width: 834px) {
  .box-other-story .box-title {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}

.box-other-story .other-list {
  text-align: center;
}

.box-other-story .other-list .item {
  color: #000000;
  position: relative;
  padding: 0 60px 0 70px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-size: 1.8rem;
  display: inline-block;
  font-weight: 600;
}

@media screen and (max-width: 834px) {
  .box-other-story .other-list .item {
    padding: 5px 60px 5px 70px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.box-other-story .other-list .item:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 40%;
  width: 52px;
  height: 1px;
  background: #141414;
}

.box-other-story .other-list .item a {
  cursor: pointer;
}

.box-other-story .other-list .item a span {
  color: #999999;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 12px;
  font-size: 1.2rem;
  display: inline-block;
  padding-left: 10px;
}

.box-other-story .other-list .item a span.txt-nb {
  color: #141414;
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
}

@media screen and (max-width: 834px) {
  .box-other-story .other-list .item a span.txt-nb {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-navigators {
  padding-bottom: 291px;
}

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

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

.sec-navigators .box-navigatormain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 295px;
}

@media screen and (max-width: 1200px) {
  .sec-navigators .box-navigatormain {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 990px) {
  .sec-navigators .box-navigatormain {
    margin-bottom: 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sec-navigators .box-navigatormain .item-txt {
  padding-bottom: 27px;
  width: 38.5%;
  padding-right: 50px;
  padding-left: calc((100vw - 1550px) / 2);
}

@media screen and (max-width: 1600px) {
  .sec-navigators .box-navigatormain .item-txt {
    padding-left: 25px;
  }
}

@media screen and (max-width: 1440px) {
  .sec-navigators .box-navigatormain .item-txt {
    width: 45%;
  }
}

@media screen and (max-width: 990px) {
  .sec-navigators .box-navigatormain .item-txt {
    width: 100%;
    padding: 0 15px 35px;
  }
}

.sec-navigators .box-navigatormain .item-txt__des {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 2.5;
  color: #141414;
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-navigatormain .item-txt__des {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.sec-navigators .box-navigatormain .item-txt .ttl {
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.71;
  font-weight: 500;
  color: #141414;
  letter-spacing: 0.1em;
  margin-bottom: 82px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-navigatormain .item-txt .ttl {
    font-size: 25px;
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 640px) {
  .sec-navigators .box-navigatormain .item-txt .ttl {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 640px) and (max-width: 834px) {
  .sec-navigators .box-navigatormain .item-txt .ttl {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.sec-navigators .box-navigatormain .item-txt .txt-basic {
  color: #141414;
}

.sec-navigators .box-navigatormain .item-txt .txt-basic p {
  margin-bottom: 38px;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-navigatormain .item-txt .txt-basic p {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 640px) {
  .sec-navigators .box-navigatormain .item-txt .txt-basic p {
    margin-bottom: 15px;
  }
}

.sec-navigators .box-navigatormain .item-txt .txt-basic p:last-child {
  margin-bottom: 0;
}

.sec-navigators .box-navigatormain .item-img {
  width: 61.5%;
}

@media screen and (max-width: 1440px) {
  .sec-navigators .box-navigatormain .item-img {
    width: 55%;
  }
}

@media screen and (max-width: 990px) {
  .sec-navigators .box-navigatormain .item-img {
    width: 100%;
  }
}

.sec-navigators .ttl-vertical {
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.71;
  letter-spacing: 0.1em;
  color: #141414;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 1200px) {
  .sec-navigators .ttl-vertical {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigators .ttl-vertical {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.sec-navigators .ttl-24 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 2.5;
  color: #141414;
  font-weight: 500;
  margin-bottom: 45px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 1024px) {
  .sec-navigators .ttl-24 {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigators .ttl-24 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 2;
  }
}

.sec-navigators .box-plans {
  margin-bottom: 238px;
}

@media screen and (max-width: 1200px) {
  .sec-navigators .box-plans {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-plans {
    margin-bottom: 50px;
  }
}

.sec-navigators .box-plans .txt-basic p {
  margin-bottom: 45px;
}

.sec-navigators .box-plans .txt-basic p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-plans .txt-basic p {
    margin-bottom: 22px;
  }
  .sec-navigators .box-plans .txt-basic p:last-child {
    margin-bottom: 0;
  }
}

.sec-navigators .box-plans .block-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 100px;
  background: url("../img/navigator/img-map.png") no-repeat center center;
  background-size: 933px 616px;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-plans .block-ttl {
    background-size: 100% auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sec-navigators .box-plans .block-ttl__img {
  width: 35%;
}

@media screen and (max-width: 1440px) {
  .sec-navigators .box-plans .block-ttl__img {
    margin-top: 100px;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-plans .block-ttl__img {
    width: 100%;
  }
  .sec-navigators .box-plans .block-ttl__img img {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .sec-navigators .box-plans .block-ttl__img {
    margin-top: 0;
  }
}

.sec-navigators .box-plans .block-ttl .ttl-10 {
  width: 43.5%;
  padding-top: 56px;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-plans .block-ttl .ttl-10 {
    width: 80%;
    padding-top: 0;
  }
}

.sec-navigators .box-plans .block-ttl .ttl-vertical {
  width: 21.5%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 12.8%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  .sec-navigators .box-plans .block-ttl .ttl-vertical {
    padding: 5%;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-plans .block-ttl .ttl-vertical {
    width: 20%;
    padding: 0;
  }
}

@media screen and (max-width: 640px) {
  .sec-navigators .box-plans .block-ttl .ttl-vertical {
    top: 480px;
  }
}

.sec-navigators .box-plans .block-plancontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: -17%;
}

@media screen and (max-width: 1200px) {
  .sec-navigators .box-plans .block-plancontent {
    margin-top: -11%;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-plans .block-plancontent {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 100px;
  }
}

.sec-navigators .box-plans .block-plancontent .img {
  width: 50%;
  padding-right: 5.9%;
}

@media screen and (max-width: 1200px) {
  .sec-navigators .box-plans .block-plancontent .img {
    padding-right: 15px;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-plans .block-plancontent .img {
    width: 50%;
    padding-right: 0;
  }
  .sec-navigators .box-plans .block-plancontent .img img {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .sec-navigators .box-plans .block-plancontent .img {
    width: 100%;
    position: relative;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 640px) {
  .sec-navigators .box-plans .block-plancontent .img .ttl-vertical {
    position: absolute;
    top: 0px;
    right: 0;
  }
}

@media screen and (max-width: 640px) {
  .sec-navigators .box-plans .block-plancontent .img img {
    width: calc(100% - 88px);
  }
}

.sec-navigators .box-plans .block-plancontent .txt {
  width: 50%;
}

@media screen and (max-width: 1200px) {
  .sec-navigators .box-plans .block-plancontent .txt {
    padding: 0 0 0 15px;
  }
}

@media screen and (max-width: 640px) {
  .sec-navigators .box-plans .block-plancontent .txt {
    width: 100%;
    padding: 0;
  }
}

.sec-navigators .box-community {
  margin-bottom: 317px;
}

@media screen and (max-width: 1200px) {
  .sec-navigators .box-community {
    margin-bottom: 100px;
  }
}

.sec-navigators .box-community .txt-basic p {
  margin-bottom: 35px;
}

.sec-navigators .box-community .txt-basic p:last-child {
  margin-bottom: 0;
}

.sec-navigators .box-community .block-community {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-community .block-community {
    position: relative;
  }
}

.sec-navigators .box-community .block-community .ttl-vertical {
  position: relative;
  top: -54px;
  width: 19%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-community .block-community .ttl-vertical {
    width: 80px;
    top: 50px;
    left: 0px;
    position: absolute;
  }
}

.sec-navigators .box-community .block-community__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 81%;
  padding: 150px 24px 0;
}

@media screen and (max-width: 990px) {
  .sec-navigators .box-community .block-community__wrap {
    padding: 50px 10px 0;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-community .block-community__wrap {
    width: 100%;
    padding: 50px 0px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sec-navigators .box-community .block-community__wrap .img {
  width: 40%;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-community .block-community__wrap .img {
    width: 100%;
    margin-bottom: 25px;
    padding-left: 80px;
  }
  .sec-navigators .box-community .block-community__wrap .img img {
    width: 100%;
  }
}

.sec-navigators .box-community .block-community__wrap .txt {
  width: 60%;
  padding-right: 8%;
  padding-left: 4%;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-community .block-community__wrap .txt {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}

.sec-navigators .box-community .block-community__wrap .txt .ttl-24 {
  margin-bottom: 30px;
}

.sec-navigators .box-moon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 185px;
}

@media screen and (max-width: 1200px) {
  .sec-navigators .box-moon {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 990px) {
  .sec-navigators .box-moon {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-moon {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sec-navigators .box-moon .ttl-24 {
  margin-bottom: 30px;
}

.sec-navigators .box-moon__l {
  width: 50%;
  padding-right: 6.4%;
  margin-top: -14px;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-moon__l {
    width: 100%;
    margin-top: 0;
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.sec-navigators .box-moon__l .ttl-10 {
  margin-bottom: 13%;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-moon__l .ttl-10 {
    margin-bottom: 25px;
  }
}

.sec-navigators .box-moon__l .img {
  margin-bottom: 12%;
}

.sec-navigators .box-moon__l .img img {
  width: 100%;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-moon__l .img {
    margin-bottom: 25px;
  }
}

.sec-navigators .box-moon__l .txt {
  padding-left: 22%;
}

@media screen and (max-width: 990px) {
  .sec-navigators .box-moon__l .txt {
    padding-left: 0;
  }
}

.sec-navigators .box-moon__r {
  width: 50%;
  position: relative;
}

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

@media screen and (max-width: 640px) {
  .sec-navigators .box-moon__r {
    margin-bottom: 25px;
  }
}

.sec-navigators .box-moon__r img {
  width: 100%;
  margin-top: 50px;
}

.sec-navigators .box-moon__r .ttl-vertical {
  position: absolute;
  top: 0px;
  right: 69px;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-moon__r .ttl-vertical {
    top: 0px;
    right: 15px;
  }
}

.sec-navigators .box-moon__r.sp img {
  margin-top: 10px;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-moon__r-img {
    width: calc(100% - 88px);
  }
}

.sec-navigators .box-moon .txt-basic p {
  margin-bottom: 34px;
}

.sec-navigators .box-moon .txt-basic p:last-child {
  margin-bottom: 0;
}

.sec-navigators .box-service .img-main {
  padding-left: 15.4%;
  padding-bottom: 10%;
}

@media screen and (max-width: 990px) {
  .sec-navigators .box-service .img-main {
    padding-left: 5%;
  }
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-service .img-main {
    padding-left: 0;
    padding-bottom: 25px;
  }
}

.sec-navigators .box-service .txt-basic p {
  margin-bottom: 35px;
}

.sec-navigators .box-service .txt-basic p:last-child {
  margin-bottom: 0;
}

.sec-navigators .box-service__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-service__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sec-navigators .box-service__wrap .img {
  width: 33%;
  padding-right: 3.8%;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-service__wrap .img {
    width: calc(100% - 80px);
    padding-right: 0;
  }
  .sec-navigators .box-service__wrap .img img {
    width: 100%;
  }
}

.sec-navigators .box-service__wrap .ttl-vertical {
  width: 17%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  position: relative;
  margin-top: -4.7%;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-service__wrap .ttl-vertical {
    width: 80px;
    margin-top: 0;
  }
}

.sec-navigators .box-service__wrap .txt {
  width: 50%;
  padding: 0 8% 0 5%;
}

@media screen and (max-width: 834px) {
  .sec-navigators .box-service__wrap .txt {
    width: 100%;
    padding: 0;
    margin-top: 25px;
  }
}

@media screen and (min-width: 1201px) {
  .page-experience_food .ttl-09 {
    margin-bottom: 122px;
  }
}

@media screen and (min-width: 835px) {
  .page-experience_food .box-list .exp-list-notop {
    padding: 130px 0 113px;
  }
}

.page-experience_food .box-list .exp-list-notop .list-item-first {
  margin-top: 0;
}

@media screen and (min-width: 1201px) {
  .page-experience_food .box-list .exp-list-notop .list-item-first {
    margin-bottom: 220px;
  }
  .page-experience_food .box-list .exp-list-notop .list-item-first .img {
    padding-right: 15%;
    margin-bottom: 34px;
  }
}

@media screen and (min-width: 1201px) {
  .page-experience_food .box-list .exp-list-notop .list-item-r {
    padding: 0px 129px 0 54px;
  }
  .page-experience_food .box-list .exp-list-notop .list-item-r .txt-box {
    padding-left: 17%;
  }
  .page-experience_food .box-list .exp-list-notop .list-item-r .img {
    margin-top: 27px;
  }
}

@media screen and (min-width: 1201px) {
  .page-experience_food .box-list .exp-list-notop .list-item-full .img {
    padding-right: 20px;
  }
}

@media screen and (min-width: 1201px) {
  .page-experience_food .box-list .exp-list-notop .list-item-full .txt-box {
    padding-top: 50px;
  }
}

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