@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&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;
  max-width: 100%;
}

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

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

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

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

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

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

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

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

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

del, ins {
  text-decoration: none;
}

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

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

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

.baz {
  width: vw(50%);
}
==================================================== */
/* ====================================================
// 隣接要素のmargin
==================================================== */
/* ====================================================
// formスタイルリセット
==================================================== */
/* ====================================================
// flexセット
==================================================== */
/* ====================================================
// 疑似クラス
==================================================== */
/* ====================================================
// hover時の透過度
==================================================== */
/* ====================================================
// グラデーション
==================================================== */
/* ====================================================
object-fit
.photo__image {
  &.-image1 {
    @include object-fit(cover);
  }

  &.-image2 {
    @include object-fit(contain, top center);
  }
}
==================================================== */
/* ====================================================
画像などを縦横比を維持したままレスポンシブ対応
*画像やGoogle Map、YouTubeの埋め込みなどを縦横比を維持したままレスポンシブ対応
.photo {
  // 画像を16:9にトリミングして縦横比を常に保つ
  @include aspect-ratio(16, 9);

  & > .image {
    @include object-fit(cover);
  }
}
==================================================== */
/* ====================================================
Margin PC and SP
==================================================== */
@media screen and (min-width: 835px) {
  .mbpc-0 {
    margin-bottom: 0px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-0 {
    margin-bottom: 0px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-1 {
    margin-bottom: 1px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-1 {
    margin-bottom: 1px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-2 {
    margin-bottom: 2px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-2 {
    margin-bottom: 2px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-3 {
    margin-bottom: 3px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-3 {
    margin-bottom: 3px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-4 {
    margin-bottom: 4px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-4 {
    margin-bottom: 4px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-5 {
    margin-bottom: 5px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-5 {
    margin-bottom: 5px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-6 {
    margin-bottom: 6px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-6 {
    margin-bottom: 6px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-7 {
    margin-bottom: 7px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-7 {
    margin-bottom: 7px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-8 {
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-8 {
    margin-bottom: 8px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-9 {
    margin-bottom: 9px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-9 {
    margin-bottom: 9px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-10 {
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-10 {
    margin-bottom: 10px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-11 {
    margin-bottom: 11px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-11 {
    margin-bottom: 11px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-12 {
    margin-bottom: 12px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-12 {
    margin-bottom: 12px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-13 {
    margin-bottom: 13px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-13 {
    margin-bottom: 13px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-14 {
    margin-bottom: 14px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-14 {
    margin-bottom: 14px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-15 {
    margin-bottom: 15px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-15 {
    margin-bottom: 15px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-16 {
    margin-bottom: 16px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-16 {
    margin-bottom: 16px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-17 {
    margin-bottom: 17px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-17 {
    margin-bottom: 17px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-18 {
    margin-bottom: 18px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-18 {
    margin-bottom: 18px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-19 {
    margin-bottom: 19px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-19 {
    margin-bottom: 19px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-20 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-20 {
    margin-bottom: 20px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-21 {
    margin-bottom: 21px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-21 {
    margin-bottom: 21px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-22 {
    margin-bottom: 22px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-22 {
    margin-bottom: 22px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-23 {
    margin-bottom: 23px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-23 {
    margin-bottom: 23px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-24 {
    margin-bottom: 24px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-24 {
    margin-bottom: 24px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-25 {
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-25 {
    margin-bottom: 25px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-26 {
    margin-bottom: 26px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-26 {
    margin-bottom: 26px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-27 {
    margin-bottom: 27px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-27 {
    margin-bottom: 27px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-28 {
    margin-bottom: 28px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-28 {
    margin-bottom: 28px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-29 {
    margin-bottom: 29px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-29 {
    margin-bottom: 29px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-30 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-30 {
    margin-bottom: 30px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-31 {
    margin-bottom: 31px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-31 {
    margin-bottom: 31px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-32 {
    margin-bottom: 32px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-32 {
    margin-bottom: 32px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-33 {
    margin-bottom: 33px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-33 {
    margin-bottom: 33px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-34 {
    margin-bottom: 34px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-34 {
    margin-bottom: 34px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-35 {
    margin-bottom: 35px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-35 {
    margin-bottom: 35px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-36 {
    margin-bottom: 36px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-36 {
    margin-bottom: 36px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-37 {
    margin-bottom: 37px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-37 {
    margin-bottom: 37px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-38 {
    margin-bottom: 38px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-38 {
    margin-bottom: 38px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-39 {
    margin-bottom: 39px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-39 {
    margin-bottom: 39px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-40 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-40 {
    margin-bottom: 40px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-41 {
    margin-bottom: 41px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-41 {
    margin-bottom: 41px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-42 {
    margin-bottom: 42px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-42 {
    margin-bottom: 42px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-43 {
    margin-bottom: 43px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-43 {
    margin-bottom: 43px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-44 {
    margin-bottom: 44px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-44 {
    margin-bottom: 44px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-45 {
    margin-bottom: 45px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-45 {
    margin-bottom: 45px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-46 {
    margin-bottom: 46px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-46 {
    margin-bottom: 46px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-47 {
    margin-bottom: 47px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-47 {
    margin-bottom: 47px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-48 {
    margin-bottom: 48px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-48 {
    margin-bottom: 48px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-49 {
    margin-bottom: 49px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-49 {
    margin-bottom: 49px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-50 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-50 {
    margin-bottom: 50px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-51 {
    margin-bottom: 51px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-51 {
    margin-bottom: 51px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-52 {
    margin-bottom: 52px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-52 {
    margin-bottom: 52px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-53 {
    margin-bottom: 53px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-53 {
    margin-bottom: 53px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-54 {
    margin-bottom: 54px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-54 {
    margin-bottom: 54px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-55 {
    margin-bottom: 55px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-55 {
    margin-bottom: 55px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-56 {
    margin-bottom: 56px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-56 {
    margin-bottom: 56px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-57 {
    margin-bottom: 57px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-57 {
    margin-bottom: 57px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-58 {
    margin-bottom: 58px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-58 {
    margin-bottom: 58px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-59 {
    margin-bottom: 59px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-59 {
    margin-bottom: 59px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-60 {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-60 {
    margin-bottom: 60px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-61 {
    margin-bottom: 61px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-61 {
    margin-bottom: 61px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-62 {
    margin-bottom: 62px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-62 {
    margin-bottom: 62px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-63 {
    margin-bottom: 63px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-63 {
    margin-bottom: 63px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-64 {
    margin-bottom: 64px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-64 {
    margin-bottom: 64px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-65 {
    margin-bottom: 65px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-65 {
    margin-bottom: 65px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-66 {
    margin-bottom: 66px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-66 {
    margin-bottom: 66px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-67 {
    margin-bottom: 67px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-67 {
    margin-bottom: 67px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-68 {
    margin-bottom: 68px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-68 {
    margin-bottom: 68px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-69 {
    margin-bottom: 69px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-69 {
    margin-bottom: 69px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-70 {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-70 {
    margin-bottom: 70px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-71 {
    margin-bottom: 71px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-71 {
    margin-bottom: 71px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-72 {
    margin-bottom: 72px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-72 {
    margin-bottom: 72px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-73 {
    margin-bottom: 73px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-73 {
    margin-bottom: 73px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-74 {
    margin-bottom: 74px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-74 {
    margin-bottom: 74px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-75 {
    margin-bottom: 75px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-75 {
    margin-bottom: 75px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-76 {
    margin-bottom: 76px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-76 {
    margin-bottom: 76px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-77 {
    margin-bottom: 77px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-77 {
    margin-bottom: 77px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-78 {
    margin-bottom: 78px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-78 {
    margin-bottom: 78px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-79 {
    margin-bottom: 79px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-79 {
    margin-bottom: 79px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-80 {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-80 {
    margin-bottom: 80px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-81 {
    margin-bottom: 81px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-81 {
    margin-bottom: 81px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-82 {
    margin-bottom: 82px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-82 {
    margin-bottom: 82px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-83 {
    margin-bottom: 83px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-83 {
    margin-bottom: 83px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-84 {
    margin-bottom: 84px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-84 {
    margin-bottom: 84px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-85 {
    margin-bottom: 85px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-85 {
    margin-bottom: 85px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-86 {
    margin-bottom: 86px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-86 {
    margin-bottom: 86px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-87 {
    margin-bottom: 87px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-87 {
    margin-bottom: 87px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-88 {
    margin-bottom: 88px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-88 {
    margin-bottom: 88px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-89 {
    margin-bottom: 89px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-89 {
    margin-bottom: 89px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-90 {
    margin-bottom: 90px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-90 {
    margin-bottom: 90px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-91 {
    margin-bottom: 91px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-91 {
    margin-bottom: 91px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-92 {
    margin-bottom: 92px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-92 {
    margin-bottom: 92px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-93 {
    margin-bottom: 93px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-93 {
    margin-bottom: 93px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-94 {
    margin-bottom: 94px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-94 {
    margin-bottom: 94px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-95 {
    margin-bottom: 95px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-95 {
    margin-bottom: 95px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-96 {
    margin-bottom: 96px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-96 {
    margin-bottom: 96px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-97 {
    margin-bottom: 97px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-97 {
    margin-bottom: 97px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-98 {
    margin-bottom: 98px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-98 {
    margin-bottom: 98px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-99 {
    margin-bottom: 99px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-99 {
    margin-bottom: 99px !important;
  }
}
@media screen and (min-width: 835px) {
  .mbpc-100 {
    margin-bottom: 100px !important;
  }
}
@media screen and (max-width: 834px) {
  .mbsp-100 {
    margin-bottom: 100px !important;
  }
}
/*----------------------
min(), max(), clamp()
----------------------*/
/* ====================================================
MODULE
==================================================== */
.c-fc__ff {
  color: #fff;
}
.c-fc__bl {
  color: #63bfe8;
}
.c-fc__gr {
  color: #ccdd39;
}

.c-ft__en {
  font-family: "Inter", sans-serif;
}

.c-fw__lt {
  font-weight: 300 !important;
}
.c-fw__rg {
  font-weight: 400 !important;
}
.c-fw__md {
  font-weight: 500 !important;
}
.c-fw__sbd {
  font-weight: 600 !important;
}
.c-fw__bd {
  font-weight: 700 !important;
}
.c-fw__bk {
  font-weight: 900 !important;
}

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

.c-shadow {
  -webkit-box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.3);
}

.c-al__c {
  text-align: center !important;
}
.c-al__r {
  text-align: right !important;
}
.c-al__l {
  text-align: left;
}

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

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

/*テキストMODULE*/
.c-txt01 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .c-txt01 {
    line-height: 1.8;
  }
}

.c-ttl-cap {
  display: inline-block;
  color: #009de2;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .c-ttl-cap {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-ttl01 {
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.125;
}
@media screen and (max-width: 1200px) {
  .c-ttl01 {
    font-size: max(30px, 3.33vw);
  }
}
@media screen and (max-width: 834px) {
  .c-ttl01 {
    font-size: 27px;
    font-size: 2.7rem;
  }
}
.c-ttl01 .small {
  font-size: 73%;
}
.c-ttl02 {
  color: #009de2;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 834px) {
  .c-ttl02 {
    font-size: 30px;
    font-size: 3rem;
  }
}

/*ボタンMODULE*/
.c-btn01 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  padding: 8px 0;
  width: 157px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-btn01 .arrow {
  display: inline-block;
  width: 42px;
  height: 42px;
  color: #fff;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn01 .arrow:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.c-btn01 .arrow:before {
  left: 0;
  top: 0;
  background: #c6d53e;
  border-radius: 50%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn01 .arrow i {
  position: relative;
}
@media screen and (min-width: 835px) {
  .c-btn01:hover .arrow:before {
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3);
  }
}
.c-btn02 {
  position: relative;
  display: inline-block;
  padding: 15px 10px 15px 0;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  background: #c6d53e;
  border: 1px solid #c6d53e;
  border-radius: 50px;
  -webkit-transition: all 0.3s cubic-bezier(0.48, 0.08, 0.35, 1.02);
  -o-transition: all 0.3s cubic-bezier(0.48, 0.08, 0.35, 1.02);
  transition: all 0.3s cubic-bezier(0.48, 0.08, 0.35, 1.02);
}
.c-btn02:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 14px;
  height: 12px;
}
.c-btn02:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  content: "arrow-r";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
}
.c-btn02:hover {
  color: #c6d53e;
  background: #fff;
}

/* hover style */
.fn-hover {
  display: inline-block;
}
@media screen and (min-width: 835px) {
  .fn-hover {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  .fn-hover:hover {
    opacity: 0.7;
  }
}

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

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

.scrollin-wrap {
  overflow: hidden;
}
.scrollin-inner, .scrollin-fadeUp {
  opacity: 0;
  -webkit-transform: translate(0, 70px);
  -ms-transform: translate(0, 70px);
  transform: translate(0, 70px);
}

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

.-delay01 {
  -webkit-transition-delay: 0.1s !important;
  -o-transition-delay: 0.1s !important;
     transition-delay: 0.1s !important;
}

.-delay02 {
  -webkit-transition-delay: 0.2s !important;
  -o-transition-delay: 0.2s !important;
     transition-delay: 0.2s !important;
}

.-delay03 {
  -webkit-transition-delay: 0.3s !important;
  -o-transition-delay: 0.3s !important;
     transition-delay: 0.3s !important;
}

.-delay04 {
  -webkit-transition-delay: 0.4s !important;
  -o-transition-delay: 0.4s !important;
     transition-delay: 0.4s !important;
}

.-delay05 {
  -webkit-transition-delay: 0.5s !important;
  -o-transition-delay: 0.5s !important;
     transition-delay: 0.5s !important;
}

.-delay06 {
  -webkit-transition-delay: 0.6s !important;
  -o-transition-delay: 0.6s !important;
     transition-delay: 0.6s !important;
}

.-delay07 {
  -webkit-transition-delay: 0.7s !important;
  -o-transition-delay: 0.7s !important;
     transition-delay: 0.7s !important;
}

.-delay08 {
  -webkit-transition-delay: 0.8s !important;
  -o-transition-delay: 0.8s !important;
     transition-delay: 0.8s !important;
}

.-delay09 {
  -webkit-transition-delay: 0.9s !important;
  -o-transition-delay: 0.9s !important;
     transition-delay: 0.9s !important;
}

.-delay10 {
  -webkit-transition-delay: 1s !important;
  -o-transition-delay: 1s !important;
     transition-delay: 1s !important;
}

.-delay11 {
  -webkit-transition-delay: 1.1s !important;
  -o-transition-delay: 1.1s !important;
     transition-delay: 1.1s !important;
}

.-delay12 {
  -webkit-transition-delay: 1.2s !important;
  -o-transition-delay: 1.2s !important;
     transition-delay: 1.2s !important;
}

.-delay13 {
  -webkit-transition-delay: 1.3s !important;
  -o-transition-delay: 1.3s !important;
     transition-delay: 1.3s !important;
}

.-delay14 {
  -webkit-transition-delay: 1.4s !important;
  -o-transition-delay: 1.4s !important;
     transition-delay: 1.4s !important;
}

.-delay15 {
  -webkit-transition-delay: 1.5s !important;
  -o-transition-delay: 1.5s !important;
     transition-delay: 1.5s !important;
}

.-delay16 {
  -webkit-transition-delay: 1.6s !important;
  -o-transition-delay: 1.6s !important;
     transition-delay: 1.6s !important;
}

.-delay17 {
  -webkit-transition-delay: 1.7s !important;
  -o-transition-delay: 1.7s !important;
     transition-delay: 1.7s !important;
}

.-delay18 {
  -webkit-transition-delay: 1.8s !important;
  -o-transition-delay: 1.8s !important;
     transition-delay: 1.8s !important;
}

.-delay19 {
  -webkit-transition-delay: 1.9s !important;
  -o-transition-delay: 1.9s !important;
     transition-delay: 1.9s !important;
}

.-delay20 {
  -webkit-transition-delay: 2s !important;
  -o-transition-delay: 2s !important;
     transition-delay: 2s !important;
}

.c-list01 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-list01 .item {
  margin-bottom: 38px;
  width: 30%;
}
@media screen and (max-width: 834px) {
  .c-list01 .item {
    margin-bottom: 25px;
    width: 48%;
  }
}
.c-list01 .item .img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.c-list01 .item .img-wrap {
  position: relative;
}
.c-list01 .item .img-wrap img {
  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;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.c-list01 .item .no {
  position: absolute;
  left: -3px;
  bottom: 0;
  color: #fff;
  font-size: 40px;
  font-size: 4rem;
  line-height: 0.7;
}
@media screen and (max-width: 834px) {
  .c-list01 .item .no {
    left: -2px;
    font-size: 30px;
    font-size: 3rem;
  }
}
.c-list01 .item .head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 15px;
  padding: 10px 0 25px 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 990px) {
  .c-list01 .item .head {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .c-list01 .item .head {
    margin-top: 5px;
    padding: 10px 0;
  }
}
.c-list01 .item .head .txt {
  padding-right: 10px;
  width: calc(100% - 47px);
}
@media screen and (max-width: 640px) {
  .c-list01 .item .head .txt {
    width: calc(100% - 40px);
  }
}
.c-list01 .item .head .arrow {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  color: #fff;
  line-height: 42px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .c-list01 .item .head .arrow {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.c-list01 .item .head .arrow:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.c-list01 .item .head .arrow:before {
  left: 0;
  top: 0;
  background: #c6d53e;
  border-radius: 50%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-list01 .item .head .arrow i {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-list01 .item a {
  display: block;
}
@media screen and (min-width: 835px) {
  .c-list01 .item a:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
  .c-list01 .item a:hover .arrow:before {
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3);
  }
}

.breadcrumb {
  margin: -38px 65px 0;
  position: relative;
  text-align: right;
}
.breadcrumb a, .breadcrumb span {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #999999;
}
.breadcrumb a {
  position: relative;
}
.breadcrumb a::after {
  content: "";
  height: 6px;
  width: 6px;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  display: inline-block;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 9px;
}

/* ====================================================
Base style & container
==================================================== */
body {
  color: #18242a;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: 400;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  background: #fff;
  overflow-x: hidden;
}

.wrapper {
  padding-top: 92px;
}
@media screen and (max-width: 1024px) {
  .wrapper {
    padding-top: 65px;
  }
}

.inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
}
@media screen and (max-width: 834px) {
  .inner {
    width: 100%;
    padding: 0 5%;
  }
}

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

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

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

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

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* ====================================================
Header
==================================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 20px;
  width: 100%;
  height: 74px;
  background: #fff;
  z-index: 1000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  #main-header {
    padding-top: 0;
    height: 65px;
  }
}
#main-header > .container {
  max-width: 1225px;
  margin: 0 auto;
}
#main-header .logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 27px;
  width: 200px;
  text-align: center;
  background: #fff;
  border-radius: 0 0 21px 21px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1070px) {
  #main-header .logo {
    -webkit-transform: translateX(-4%);
        -ms-transform: translateX(-4%);
            transform: translateX(-4%);
  }
}
@media screen and (max-width: 1024px) {
  #main-header .logo {
    margin-left: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 140px;
    border-radius: 0 0 21px 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
#main-header .logo img {
  width: 167px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  #main-header .logo img {
    width: 110px;
  }
}
@media screen and (min-width: 1025px) {
  #main-header.active .logo, #main-header.is-animation .logo {
    padding-top: 15px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  #main-header.active .logo img, #main-header.is-animation .logo img {
    width: 84px;
  }
}
@media screen and (min-width: 1025px) {
  #main-header.active, #main-header.is-animation {
    position: fixed;
    top: 0;
    left: 0;
  }
}

.navGlobal {
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 1024px) {
  .navGlobal {
    text-align: center;
    background: #00a0e9;
  }
}
.navGlobalIn {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 95px;
}
@media screen and (max-width: 1100px) {
  .navGlobalIn {
    padding-left: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.navGlobalIn > li {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .navGlobalIn > li:not(:last-child) {
    margin-right: 2em;
  }
}
@media screen and (min-width: 1025px) {
  .navGlobalIn > li:nth-child(4) {
    margin-right: 5.5%;
    padding-right: 8.16%;
    padding-right: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .navGlobalIn > li:nth-child(4) {
    margin-right: 1em;
  }
}
@media screen and (min-width: 1025px) {
  .navGlobalIn > li:nth-child(5) {
    margin-left: 5.5%;
    padding-left: 8.16%;
    padding-left: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .navGlobalIn > li:nth-child(5) {
    margin-left: 1em;
  }
}
@media screen and (max-width: 1024px) {
  .navGlobalIn > li {
    margin-right: 0 !important;
    margin-left: 0 !important;
    text-align: left;
    width: 100%;
    border-top: 1px solid #fff;
  }
}
.navGlobalIn > li .nav-sub .nav-subTtl,
.navGlobalIn > li > a {
  display: block;
  position: relative;
  padding: 11px 0;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .navGlobalIn > li .nav-sub .nav-subTtl:before,
.navGlobalIn > li > a:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0;
    height: 2px;
  }
  .navGlobalIn > li .nav-sub .nav-subTtl:before,
.navGlobalIn > li > a:before {
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .navGlobalIn > li .nav-sub .nav-subTtl:hover:before,
.navGlobalIn > li > a:hover:before {
    width: 100%;
    background: #18242a;
  }
}
@media screen and (max-width: 1024px) {
  .navGlobalIn > li .nav-sub .nav-subTtl,
.navGlobalIn > li > a {
    padding: 1.5em 25px;
    color: #fff;
  }
  .navGlobalIn > li .nav-sub .nav-subTtl:before,
.navGlobalIn > li > a:before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    content: "";
    color: #63bfe8;
    font-size: 11px;
    font-size: 1.1rem;
    content: "arrow-r";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
  }
}
@media screen and (max-width: 1024px) {
  .navGlobalIn > li.contact {
    padding: 35px 0 0 45px;
  }
}
.navGlobalIn > li.contact a {
  display: inline-block;
  padding: 10px 0;
  width: 124px;
  height: 35px;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  background: #ccdd39;
  border-radius: 30px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  z-index: 100;
  border: 1px solid #ccdd39;
}
@media screen and (max-width: 1024px) {
  .navGlobalIn > li.contact a {
    padding: 15px 0;
    width: 188px;
    height: auto;
  }
}
.navGlobalIn > li.contact a:before {
  display: none;
}
.navGlobalIn > li.contact a:hover {
  color: #ccdd39;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .navGlobalIn__sub {
    display: none;
    border-top: 1px solid #fff;
  }
}
@media screen and (min-width: 1025px) {
  .navGlobalIn__sub {
    display: block !important;
    position: absolute;
    top: 36px;
    left: 50%;
    padding-top: 10px;
    width: 168px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, 30px);
        -ms-transform: translate(-50%, 30px);
            transform: translate(-50%, 30px);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
}
.navGlobalIn__sub-list {
  font-size: 13px;
  font-size: 1.3rem;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .navGlobalIn__sub-list {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 1024px) {
  .navGlobalIn__sub-list {
    margin-left: 25px;
    padding: 25px 0 5px;
    color: #fff;
  }
}
.navGlobalIn__sub a {
  position: relative;
  display: block;
}
@media screen and (min-width: 1025px) {
  .navGlobalIn__sub a {
    padding: 15px 23px;
  }
  .navGlobalIn__sub a:nth-of-type(2) {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  .navGlobalIn__sub a:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 4px;
    height: 4px;
  }
  .navGlobalIn__sub a:before {
    top: 50%;
    right: 15px;
    margin-top: -2px;
    border-top: 2px solid #c7d642;
    border-left: 2px solid #c7d642;
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1024px) {
  .navGlobalIn__sub a:before {
    right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .navGlobalIn__sub a {
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .navGlobalIn__sub a:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 8px;
    height: 1px;
  }
  .navGlobalIn__sub a:before {
    top: 50%;
    margin-top: -1px;
    left: 0;
    background: #fff;
  }
}
@media screen and (min-width: 1025px) and (min-width: 835px) {
  .navGlobalIn__sub a:hover {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  .navGlobalIn__sub a:hover:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1025px) {
  .navGlobalIn .nav-sub:hover > .navGlobalIn__sub {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .navGlobalIn .nav-sub:hover > .nav-subTtl:before {
    width: 100%;
    background: #18242a;
  }
}
@media screen and (max-width: 1024px) {
  .navGlobalIn .nav-sub > .nav-subTtl:before {
    display: none;
  }
  .navGlobalIn .nav-sub .btn-subNav-icn {
    display: block;
    position: absolute;
    top: 1px;
    right: 0;
    width: 50px;
    height: 55px;
    color: #68BFE8;
    line-height: 55px;
    text-align: center;
    z-index: 1;
  }
  .navGlobalIn .nav-sub .btn-subNav-icn .fa-minus {
    display: none;
  }
  .navGlobalIn .nav-sub .btn-subNav-icn.active .fa-plus {
    display: none;
  }
  .navGlobalIn .nav-sub .btn-subNav-icn.active .fa-minus {
    display: inline-block;
  }
}
.navGlobal .copyright {
  margin-top: 35px;
  margin-left: 45px;
  color: #63bfe8;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .navGlobal .copyright {
    display: none;
  }
}

.mobile-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  width: 65px;
  height: 65px;
  -webkit-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
  z-index: 102;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .mobile-icon {
    display: block;
  }
}
.mobile-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 26px;
  height: 2px;
  font-size: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #00a0e9;
}
.mobile-icon span:before, .mobile-icon span:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00a0e9;
  content: "";
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 3px;
}
.mobile-icon span:before {
  top: -10px;
}
.mobile-icon span:after {
  bottom: -10px;
}
.mobile-icon.mobile-close span {
  background: transparent;
}
.mobile-icon.mobile-close span:before, .mobile-icon.mobile-close span:after {
  width: 100%;
  background: #fff;
}
.mobile-icon.mobile-close span:before {
  -webkit-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
      transform: translateY(0) rotate(45deg);
  top: 0;
}
.mobile-icon.mobile-close span:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
      transform: translateY(0) rotate(-45deg);
  bottom: 0;
}

@media screen and (max-width: 1024px) {
  .js-nav {
    position: fixed;
    top: 0;
    right: -100%;
    padding-top: 65px;
    width: 78.66%;
    max-width: 590px;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
  }
  .js-nav.active {
    right: 0;
    opacity: 1;
  }

  .navGlobal-inner {
    height: 100vh;
    overflow-y: scroll;
    padding-bottom: 60px;
  }
}
/* ====================================================
Footer
==================================================== */
#main-footer .nav-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 87px 0 65px;
}
@media screen and (max-width: 834px) {
  #main-footer .nav-wrap {
    padding: 50px 0 40px;
  }
}
#main-footer .logo {
  width: 122px;
}
@media screen and (max-width: 834px) {
  #main-footer .logo {
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
  }
  #main-footer .logo img {
    width: 122px;
  }
}
#main-footer .ft-nav {
  width: calc(100% - 150px);
  max-width: 775px;
}
@media screen and (max-width: 834px) {
  #main-footer .ft-nav {
    width: 100%;
    max-width: 100%;
  }
}
#main-footer .ft-nav .ft-nav__list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  #main-footer .ft-nav .ft-nav__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#main-footer .ft-nav .ft-nav__list > li {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 834px) {
  #main-footer .ft-nav .ft-nav__list > li {
    margin-bottom: 25px;
    width: 50%;
  }
}
@media screen and (max-width: 834px) {
  #main-footer .ft-nav .ft-nav__list > li.contact {
    margin-top: 10px;
    margin-bottom: 0;
    width: 100%;
  }
}
#main-footer .ft-nav .ft-nav__list > li.contact a {
  display: inline-block;
  padding: 10px 15px;
  color: #fff;
  background: #c6d53e;
  border-radius: 20px;
  border: 1px solid #c6d53e;
}
@media screen and (max-width: 834px) {
  #main-footer .ft-nav .ft-nav__list > li.contact a {
    width: 200px;
  }
}
#main-footer .ft-nav .ft-nav__list > li.contact a:hover {
  opacity: 1;
  color: #c6d53e;
  background: #fff;
}
@media screen and (min-width: 835px) {
  #main-footer .ft-nav .ft-nav__list a {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  #main-footer .ft-nav .ft-nav__list a:hover {
    opacity: 0.7;
  }
}
#main-footer .copyright {
  padding: 25px 0;
  color: #999;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
  border-top: 1px solid #eaeaea;
}
@media screen and (max-width: 834px) {
  #main-footer .copyright {
    padding: 20px 0;
    text-align: center;
  }
}

/*==================
#loading
==================*/
#splash {
  position: fixed;
  z-index: 10001;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  color: #fff;
}
#splash .bar {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#splash #splash_logo {
  margin: 0 auto 20px;
  width: 200px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  #splash #splash_logo {
    width: 150px;
  }
}
#splash #splash_logo img {
  -webkit-transition-duration: 1s;
       -o-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
#splash #splash_logo.on img {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
#splash #splash_text {
  overflow: hidden;
}
#splash #splash_text svg {
  height: 0;
}
#splash #splash_text.on .progressbar-text {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
#splash #splash_text .progressbar-text {
  color: #555 !important;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.js-rellax-wrap {
  position: relative;
  overflow: hidden;
  background: #ccc;
  border-radius: 28px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .js-rellax-wrap {
    border-radius: 14px;
  }
}
.js-rellax-wrap img {
  position: relative;
  max-width: none;
}

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #e2ea9e;
  background: -o-linear-gradient(315deg, #e2ea9e 0%, #7fcef0 100%);
  background: linear-gradient(135deg, #e2ea9e 0%, #7fcef0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e2ea9e", endColorstr="#7fcef0",GradientType=1 );
  -webkit-transition: all 0.3s cubic-bezier(0.48, 0.08, 0.35, 1.02);
  -o-transition: all 0.3s cubic-bezier(0.48, 0.08, 0.35, 1.02);
  transition: all 0.3s cubic-bezier(0.48, 0.08, 0.35, 1.02);
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

.is-visible .img-cover {
  -webkit-animation: imgCover 1.5s cubic-bezier(0.48, 0.08, 0.35, 1.02) forwards;
          animation: imgCover 1.5s cubic-bezier(0.48, 0.08, 0.35, 1.02) forwards;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
      transform: scaleY(1);
}

@-webkit-keyframes imgCover {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  49% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  54% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  55% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}
@keyframes imgCover {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  49% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  54% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  55% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}
.c-clm01 {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .c-clm01 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-clm01 .clm-txt {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .c-clm01 .clm-txt {
    width: 100%;
  }
}
@media screen and (min-width: 835px) {
  .c-clm01 .clm-img {
    width: 50%;
  }
}
@media screen and (max-width: 834px) {
  .c-clm01 .clm-img {
    width: 110%;
    margin-left: -6%;
    margin-right: -6%;
  }
}

/* ====================================================
content style
==================================================== */
.page-index .ttl-sec {
  margin: 40px 0;
}
@media screen and (max-width: 834px) {
  .page-index .ttl-sec {
    margin: 20px 0;
  }
}
.page-index .c-btn01 {
  margin-top: 20px;
}
@media screen and (max-width: 834px) {
  .page-index .c-btn01 {
    margin-top: 10px;
  }
}
.page-index .mv-wrap {
  position: relative;
  margin-bottom: 55px;
}
.page-index .mv-wrap {
  position: relative;
  margin: 0 auto 55px;
  width: 90%;
  max-width: 1300px;
}
@media screen and (max-width: 834px) {
  .page-index .mv-wrap {
    width: 100%;
  }
}
.page-index .mv-wrap .news-block {
  position: absolute;
  right: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 25px 55px 25px 35px;
  width: 85%;
  max-width: 450px;
  background: #fff;
  border-radius: 40px 0 0 40px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .page-index .mv-wrap .news-block {
    padding: 20px 40px 20px 5%;
  }
}
.page-index .mv-wrap .news-block .arrow {
  position: absolute;
  right: 0;
  display: block;
  color: #009de2;
  font-size: 12px;
  font-size: 1.2rem;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-size: 10px 8px;
}
.page-index .mv-wrap .news-block .arrow:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
}
.page-index .mv-wrap .news-block .arrow:before {
  left: 0;
  top: 0;
  border: 1px solid #c6e0ec;
  border-radius: 50%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-index .mv-wrap .news-block .arrow i {
  margin-left: 3px;
  position: relative;
}
@media screen and (max-width: 834px) {
  .page-index .mv-wrap .news-block .arrow {
    right: 15px;
  }
}
.page-index .mv-wrap .news-block .news-line {
  overflow: hidden;
}
.page-index .mv-wrap .news-block .news-line a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (min-width: 835px) {
  .page-index .mv-wrap .news-block .news-line a:hover .arrow {
    color: #fff;
  }
  .page-index .mv-wrap .news-block .news-line a:hover .arrow:before {
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3);
    background: #009de2;
    border-color: #009de2;
  }
}
.page-index .mv-wrap .news-block .txt {
  width: calc(100% - 100px);
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .page-index .mv-wrap .news-block .txt {
    width: calc(100% - 80px);
  }
}
.page-index .mv-wrap .news-block .date {
  width: 94px;
  color: #999;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 834px) {
  .page-index .mv-wrap .news-block .date {
    width: 80px;
  }
}
.page-index .mv .mv-ttl {
  position: absolute;
  top: 125px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 240px;
  height: 120px;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .page-index .mv .mv-ttl {
    top: 8.5vw;
    width: 20vw;
    font-size: 2vw;
  }
}
@media screen and (max-width: 834px) {
  .page-index .mv .mv-ttl {
    top: 14vw;
    font-size: 2.877vw;
    width: 28.77vw;
  }
}
@media screen and (max-width: 640px) {
  .page-index .mv .mv-ttl {
    width: 39.06vw;
    font-size: 4.0625vw;
  }
}
.page-index .mv .mv-ttl .dot {
  display: inline-block;
  position: relative;
}
.page-index .mv .mv-ttl .dot:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 5px;
  height: 5px;
}
.page-index .mv .mv-ttl .dot:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 640px) {
  .page-index .mv .mv-ttl .dot:before {
    width: 3px;
    height: 3px;
  }
}
.page-index .sec-about {
  position: relative;
  margin-bottom: -30px;
  padding-top: 55px;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .page-index .sec-about {
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 50px;
  }
}
.page-index .sec-about:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.page-index .sec-about:before {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/index/logo-lead.svg) no-repeat center top;
  background-size: 1138px auto;
  opacity: 0.1;
}
@media screen and (max-width: 1200px) {
  .page-index .sec-about:before {
    background-size: 94.83% auto;
  }
}
@media screen and (max-width: 834px) {
  .page-index .sec-about:before {
    background-size: 100%;
  }
}
.page-index .sec-about .clm-img {
  margin-left: calc((100vw - 100%) / 2 * -1);
  padding-right: 4.9%;
  width: calc(56.18% + (100vw - 100%) / 2);
}
@media screen and (max-width: 834px) {
  .page-index .sec-about .clm-img {
    margin-left: -6%;
    width: 110%;
  }
}
.page-index .sec-about .clm-img .js-rellax-wrap {
  border-radius: 0 28px 28px 0;
  max-height: 566px;
}
.page-index .sec-about .clm-txt {
  margin-top: 50px;
  width: 50%;
}
@media screen and (max-width: 834px) {
  .page-index .sec-about .clm-txt {
    margin-top: 0;
    width: 100%;
  }
}
.page-index .sec-about .clm-txt .img {
  margin-top: 60px;
  margin-left: auto;
  width: 81.851%;
}
@media screen and (max-width: 834px) {
  .page-index .sec-about .clm-txt .img {
    margin-top: 0;
    width: 43%;
  }
}
@media screen and (max-width: 834px) {
  .page-index .sec-about .img-sp {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    margin-top: 15px;
  }
  .page-index .sec-about .img-sp .img-L {
    margin-top: 15px;
    margin-left: -6%;
    width: 55.5%;
  }
  .page-index .sec-about .img-sp .img-L .js-rellax-wrap {
    border-radius: 0 14px 14px 0;
  }
}
.page-index .sec-business {
  position: relative;
  padding: 130px 0 90px;
  background: #ffffff;
  background: -o-linear-gradient(45deg, #ffffff 0%, #ecf4f8 100%);
  background: linear-gradient(45deg, #ffffff 0%, #ecf4f8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ecf4f8",GradientType=1 );
}
@media screen and (max-width: 834px) {
  .page-index .sec-business {
    top: -45vw;
    padding: 45vw 0 50px;
    margin-bottom: -45vw;
    background: #fafafb;
    background: -webkit-gradient(linear, left top, left bottom, from(#fafafb), to(#ecf4f8));
    background: -o-linear-gradient(top, #fafafb 0%, #ecf4f8 100%);
    background: linear-gradient(to bottom, #fafafb 0%, #ecf4f8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fafafb", endColorstr="#ecf4f8",GradientType=0 );
  }
}
@media screen and (min-width: 835px) {
  .page-index .sec-business .clm-txt {
    margin-top: 20px;
    width: 40.9%;
    margin-right: -4.895%;
    z-index: 1;
  }
}
@media screen and (max-width: 1024px) {
  .page-index .sec-business .clm-txt {
    width: 45%;
  }
}
@media screen and (max-width: 834px) {
  .page-index .sec-business .clm-txt {
    width: 100%;
  }
}
.page-index .sec-business .clm-img {
  margin-right: -8.545%;
  width: 72.54%;
}
@media screen and (max-width: 1200px) {
  .page-index .sec-business .clm-img {
    margin-right: -5%;
  }
}
@media screen and (max-width: 834px) {
  .page-index .sec-business .clm-img {
    margin: 0;
    width: 100%;
  }
}
.page-index .sec-service {
  position: relative;
  padding: 115px 0 104px;
  background: url(../img/index/bg-service.jpg) no-repeat center top;
  background-size: 100%;
}
@media screen and (max-width: 1200px) {
  .page-index .sec-service {
    background-size: cover;
  }
}
@media screen and (max-width: 834px) {
  .page-index .sec-service {
    padding: 50px 0;
  }
}
.page-index .sec-service .service-block {
  padding: 80px 6.81% 40px;
  background: #fff;
  border-radius: 28px;
}
@media screen and (max-width: 834px) {
  .page-index .sec-service .service-block {
    padding: 5% 5% 20px;
    border-radius: 15px;
  }
}
.page-index .sec-service .ttl-sec {
  margin: 20px 0 70px;
}
@media screen and (max-width: 834px) {
  .page-index .sec-service .ttl-sec {
    margin: 10px 0 30px;
  }
}
.page-index .sec-sdgs {
  padding: 195px 0 148px;
}
@media screen and (max-width: 1200px) {
  .page-index .sec-sdgs {
    padding: 70px 0 50px;
  }
}
.page-index .sec-sdgs .c-clm01 {
  position: relative;
  margin-left: auto;
  padding-bottom: 68px;
  max-width: calc(100% - 65px);
  background: #ecf4f8;
  background: -o-linear-gradient(45deg, #ecf4f8 0%, #f6f7ef 100%);
  background: linear-gradient(45deg, #ecf4f8 0%, #f6f7ef 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ecf4f8", endColorstr="#f6f7ef",GradientType=1 );
  border-radius: 28px;
}
@media screen and (max-width: 1200px) {
  .page-index .sec-sdgs .c-clm01 {
    max-width: 94.6%;
  }
}
@media screen and (max-width: 834px) {
  .page-index .sec-sdgs .c-clm01 {
    margin-left: 0;
    padding: 8% 5% 0;
    max-width: 100%;
    border-radius: 14px;
  }
}
.page-index .sec-sdgs .c-clm01 .txt-deco {
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 90px;
  font-size: 9rem;
  line-height: 0.7;
}
@media screen and (max-width: 834px) {
  .page-index .sec-sdgs .c-clm01 .txt-deco {
    font-size: max(60px, 10.79vw);
  }
}
@media screen and (min-width: 835px) {
  .page-index .sec-sdgs .clm-txt {
    margin-top: -25px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 834px) {
  .page-index .sec-sdgs .clm-txt {
    -webkit-transform: translateY(calc((16% + 30px) * -1));
        -ms-transform: translateY(calc((16% + 30px) * -1));
            transform: translateY(calc((16% + 30px) * -1));
  }
}
@media screen and (max-width: 640px) {
  .page-index .sec-sdgs .clm-txt {
    -webkit-transform: translateY(calc((8% + 30px) * -1));
        -ms-transform: translateY(calc((8% + 30px) * -1));
            transform: translateY(calc((8% + 30px) * -1));
  }
}
.page-index .sec-sdgs .clm-txt .logo-sdgs {
  width: 129px;
}
.page-index .sec-sdgs .clm-txt .sec-ttl {
  margin: 30px 0 25px;
  line-height: 1.375;
}
@media screen and (min-width: 835px) {
  .page-index .sec-sdgs .clm-txt .desc {
    width: 90%;
    max-width: 430px;
  }
}
@media screen and (min-width: 835px) {
  .page-index .sec-sdgs .clm-img {
    margin-top: -60px;
    margin-left: -65px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 1200px) {
  .page-index .sec-sdgs .clm-img {
    margin-left: -5.4%;
  }
}
@media screen and (max-width: 834px) {
  .page-index .sec-sdgs .clm-img {
    margin-top: 20px;
    margin-left: auto;
    margin-right: -8%;
    margin-bottom: -8%;
    width: 105%;
  }
}
.page-index .sec-topics {
  padding-bottom: 138px;
}
@media screen and (max-width: 834px) {
  .page-index .sec-topics {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.page-index .sec-topics .topics-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-index .sec-topics .topics-block .ttl-block {
  width: 155px;
}
@media screen and (max-width: 834px) {
  .page-index .sec-topics .topics-block .ttl-block {
    width: 100%;
  }
}
.page-index .sec-topics .topics-block .ttl-block .sec-ttl {
  margin-bottom: 35px;
}
.page-index .sec-topics .topics-block .c-btn02 {
  max-width: 155px;
}
.page-index .sec-topics .topics-block .topics-list {
  width: calc(100% - 200px);
  max-width: 844px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 834px) {
  .page-index .sec-topics .topics-block .topics-list {
    width: 100%;
    max-width: 100%;
  }
}
.page-index .sec-topics .topics-block .topics-list__item {
  border-bottom: 1px solid #e0e0e0;
}
.page-index .sec-topics .topics-block .topics-list__item a {
  position: relative;
  display: block;
  padding: 45px 55px 40px 0;
}
@media screen and (max-width: 834px) {
  .page-index .sec-topics .topics-block .topics-list__item a {
    padding: 20px 30px 15px 0;
  }
}
.page-index .sec-topics .topics-block .topics-list__item a .head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #999;
}
@media screen and (max-width: 834px) {
  .page-index .sec-topics .topics-block .topics-list__item a .head {
    margin-bottom: 10px;
  }
}
.page-index .sec-topics .topics-block .topics-list__item a .head .date {
  display: inline-block;
  width: 100px;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 834px) {
  .page-index .sec-topics .topics-block .topics-list__item a .head .date {
    width: 90px;
  }
}
.page-index .sec-topics .topics-block .topics-list__item a .head .label {
  display: inline-block;
  padding: 5px 10px;
  min-width: 98px;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
}
@media screen and (max-width: 834px) {
  .page-index .sec-topics .topics-block .topics-list__item a .head .label {
    min-width: 70px;
  }
}
.page-index .sec-topics .topics-block .topics-list__item a .desc {
  display: inline-block;
  max-width: calc(100% - 1em);
}
.page-index .sec-topics .topics-block .topics-list__item a .desc span {
  display: inline-block;
  position: relative;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.page-index .sec-topics .topics-block .topics-list__item a .desc span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #171717;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.page-index .sec-topics .topics-block .topics-list__item a:before {
  position: absolute;
  display: block;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #009de2;
  font-size: 12px;
  font-size: 1.2rem;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .page-index .sec-topics .topics-block .topics-list__item a:before {
    right: 10px;
  }
}
.page-index .sec-topics .topics-block .topics-list__item a:hover .desc span:before {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}
.page-index .sec-topics .topics-block .btn-box {
  margin-top: 40px;
  width: 100%;
  text-align: center;
}
.page-index .sec-links {
  padding: 107px 0;
  background: url(../img/index/bg-function.jpg) no-repeat center center;
  background-size: 100%;
}
@media screen and (max-width: 1200px) {
  .page-index .sec-links {
    background-size: cover;
  }
}
@media screen and (max-width: 834px) {
  .page-index .sec-links {
    padding: 50px 0 35px;
  }
}
.page-index .sec-links .common-sec-links {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-index .sec-links .common-sec-links li {
  width: 31.4%;
}
@media screen and (max-width: 834px) {
  .page-index .sec-links .common-sec-links li {
    margin-bottom: 15px;
    width: 100%;
  }
}
.page-index .sec-links .common-sec-links li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 30px 8.6%;
  background: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 990px) {
  .page-index .sec-links .common-sec-links li a {
    padding: 25px 5%;
  }
}
@media screen and (max-width: 834px) {
  .page-index .sec-links .common-sec-links li a {
    padding: 15px 5%;
  }
}
.page-index .sec-links .common-sec-links li a .icn {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
}
.page-index .sec-links .common-sec-links li a .icn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c6d53e;
  background: -o-linear-gradient(315deg, #c6d53e 0%, #009edf 100%);
  background: linear-gradient(135deg, #c6d53e 0%, #009edf 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$color-gr02", endColorstr="#009edf",GradientType=1 );
  border-radius: 50%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-index .sec-links .common-sec-links li a .icn img {
  position: relative;
}
.page-index .sec-links .common-sec-links li a .txt {
  display: block;
  width: calc(100% - 70px);
  color: #16a4e4;
  text-align: center;
}
.page-index .sec-links .common-sec-links li a .txt span {
  display: block;
}
.page-index .sec-links .common-sec-links li a .txt .en {
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 990px) {
  .page-index .sec-links .common-sec-links li a .txt .en {
    font-size: 20px;
    font-size: 2rem;
  }
}
.page-index .sec-links .common-sec-links li a .txt .jp {
  margin-top: 5px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 990px) {
  .page-index .sec-links .common-sec-links li a .txt .jp {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 835px) {
  .page-index .sec-links .common-sec-links li a:hover .icn:before {
    background: #c6d53e;
    background: -o-linear-gradient(315deg, #c6d53e 0%, #5dc0ec 100%);
    background: linear-gradient(135deg, #c6d53e 0%, #5dc0ec 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$color-gr02", endColorstr="#5dc0ec",GradientType=1 );
    -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
            transform: scale(1.15);
  }
}

.check-privacy {
  position: relative;
  cursor: pointer;
  margin: 20px auto 26px;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  color: #18242c;
  font-weight: 500;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .check-privacy {
    margin: 13px 0 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.check-privacy .mwform-checkbox-field {
  width: 100%;
}
.check-privacy .mwform-checkbox-field + .msg-error {
  min-width: 302px;
  text-align: left;
  padding-left: 0px;
  margin-top: -10px;
}
@media screen and (max-width: 834px) {
  .check-privacy .mwform-checkbox-field + .msg-error {
    text-align: center;
  }
}
.check-privacy label {
  margin-bottom: 10px;
  display: inline-block;
}
.check-privacy label input {
  border: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
}
.check-privacy label input:checked + span:after {
  opacity: 1;
  visibility: visible;
}
.check-privacy label span {
  display: block;
  position: relative;
  letter-spacing: 0;
  padding: 0px 0 0 32px;
}
.check-privacy label span:before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #767676;
  display: block;
  position: absolute;
  top: 6px;
  left: 0px;
}
.check-privacy label span:after {
  content: "";
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: #bca474;
  top: 6px;
  left: 1px;
  width: 12px;
  height: 5px;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  background-color: transparent;
  border-style: solid;
  border-color: #bca474;
  border-width: 0 0 4px 4px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sec-mvpage {
  margin: -30px 28px 0;
  height: 276px;
  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;
  border-radius: 12px;
  background: -o-linear-gradient(60deg, #ecf4f8, #f6f7ef);
  background: linear-gradient(30deg, #ecf4f8, #f6f7ef);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .sec-mvpage {
    margin-top: 20px;
  }
}
.sec-mvpage .ttl-mvpage {
  text-align: center;
  padding-top: 57px;
}
@media screen and (max-width: 834px) {
  .sec-mvpage .ttl-mvpage {
    padding-top: 0;
  }
}
.sec-mvpage .ttl-mvpage .en {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #009de2;
  margin-bottom: 12px;
  display: inline-block;
}
.sec-mvpage .ttl-mvpage .jp {
  font-size: 13px;
  font-size: 1.3rem;
  color: #009de2;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}

.list-ctsteps {
  max-width: 595px;
  margin: 0 auto 120px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 834px) {
  .list-ctsteps {
    margin-bottom: 50px;
  }
}
.list-ctsteps .item {
  width: calc(33.33% - 24px);
  margin-right: 30px;
  text-align: center;
}
.list-ctsteps .item:last-child, .list-ctsteps .item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 834px) {
  .list-ctsteps .item {
    width: calc(33.33% - 12px);
    margin-right: 24px;
  }
}
.list-ctsteps .item-w {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 5px;
  position: relative;
  border-right: 0;
  padding: 3px 5px;
}
.list-ctsteps .item-w > * {
  position: relative;
  z-index: 2;
}
.list-ctsteps .item-w:before {
  content: "";
  width: 33.5px;
  height: 33.5px;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-radius: 5px;
  -webkit-transform: rotate(45deg) skew(10deg, 10deg);
      -ms-transform: rotate(45deg) skew(10deg, 10deg);
          transform: rotate(45deg) skew(10deg, 10deg);
  display: inline-block;
  position: absolute;
  left: calc(100% - 20px);
  top: 8px;
  bottom: 0;
}
@media screen and (max-width: 834px) {
  .list-ctsteps .item-w:before {
    width: 29px;
    height: 29px;
    left: calc(100% - 17px);
    top: 7px;
  }
}
.list-ctsteps .item.active .item-w {
  background: #009de2;
  border-color: #009de2;
}
.list-ctsteps .item.active .item-w:before {
  background: #009de2;
  border-color: #009de2;
}
.list-ctsteps .item.active .item-w .txt {
  color: #ffffff;
}
.list-ctsteps .item.active .item-w .nb {
  color: rgba(255, 255, 255, 0.502);
}
.list-ctsteps .nb {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.777;
  font-family: "Inter", sans-serif;
  color: #cdcdcd;
  margin-right: 15px;
}
@media screen and (max-width: 834px) {
  .list-ctsteps .nb {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 8px;
  }
}
.list-ctsteps .txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.8125;
  font-weight: 700;
  color: #cdcdcd;
}
@media screen and (max-width: 834px) {
  .list-ctsteps .txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sec-contact {
  padding-top: 146px;
  margin-bottom: 50px;
}
@media screen and (max-width: 834px) {
  .sec-contact {
    padding-top: 50px;
    margin-bottom: 50px;
  }
}

.request {
  font-size: 13px;
  font-size: 1.3rem;
  color: #ffffff;
  background: #c6d53e;
  padding: 5px 5px;
  height: 27px;
  width: 70px;
  font-weight: 500;
  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;
  border-radius: 30px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .request {
    padding: 10px 5px 5px;
  }
}
@media screen and (max-width: 1024px) {
  .request {
    min-width: 50px;
    height: 27px;
    margin-left: 35px;
  }
}
@media screen and (max-width: 834px) {
  .request {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.form-inforct {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  padding: 0 40px;
}
@media screen and (max-width: 834px) {
  .form-inforct {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0;
  }
}
.form-inforct .item-cf {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 29.5px;
}
@media screen and (max-width: 1024px) {
  .form-inforct .item-cf {
    margin-bottom: 25px;
    display: block;
  }
}
.form-inforct .item-cf__label {
  font-weight: 700;
  width: 290px;
  padding: 0 22px 0 0px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  margin-top: 12px;
}
@media screen and (max-width: 1024px) {
  .form-inforct .item-cf__label {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    margin-bottom: 15px;
    margin-top: 0;
  }
}
.form-inforct .item-cf__ip {
  font-weight: 500;
  width: calc(100% - 290px);
}
@media screen and (max-width: 1024px) {
  .form-inforct .item-cf__ip {
    width: 100%;
  }
}
.form-inforct .item-cf__ip-w {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 640px) {
  .form-inforct .item-cf__ip-w {
    display: block;
  }
  .form-inforct .item-cf__ip-w__sp {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
  }
  .form-inforct .item-cf__ip-w__sp .input-half {
    margin-bottom: 0 !important;
    width: 50% !important;
  }
}
.form-inforct select {
  background-image: url("../img/contact/img-arr.png");
  background-repeat: no-repeat;
  background-position: center right 25px;
  background-size: 18px 11px;
}
.form-inforct .input-cf {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
  padding: 17px 34px;
  background-color: #f5f5f5;
  border-radius: 5px;
}
.form-inforct .input-cf:hover {
  opacity: 0.75;
}
.form-inforct .input-cf::-ms-expand {
  display: none;
}
.form-inforct .input-cf::-webkit-input-placeholder {
  color: #999999;
}
.form-inforct .input-cf::-moz-placeholder {
  color: #999999;
}
.form-inforct .input-cf:-ms-input-placeholder {
  color: #999999;
}
.form-inforct .input-cf::-ms-input-placeholder {
  color: #999999;
}
.form-inforct .input-cf::placeholder {
  color: #999999;
}
@media screen and (max-width: 834px) {
  .form-inforct .input-cf {
    padding: 11px 17px;
  }
}
.form-inforct .input-cf.input-half {
  width: calc(50% - 12.5px);
  margin-right: 25px;
}
.form-inforct .input-cf.input-half:nth-child(2n), .form-inforct .input-cf.input-half:last-child {
  margin-right: 0;
}
@media screen and (max-width: 640px) {
  .form-inforct .input-cf.input-half {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .form-inforct .input-cf.input-half:last-child {
    margin-bottom: 0;
  }
}
.form-inforct .btn-fill {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.285;
  color: #18242a;
  background: #ffffff;
  border-radius: 30px;
  min-width: 150px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  height: 45px;
  padding: 5px 5px;
  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;
  text-align: center;
  border: 1px solid #cccccc;
  margin-left: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.form-inforct .btn-fill:hover {
  opacity: 0.75;
}
.form-inforct .btn-fill::-ms-expand {
  display: none;
}
@media screen and (max-width: 834px) {
  .form-inforct .btn-fill {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 640px) {
  .form-inforct .btn-fill {
    min-width: 100px;
  }
}
.form-inforct .item-dates {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 834px) {
  .form-inforct .item-dates {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.form-inforct .item-dates:last-child {
  margin-bottom: 0;
}
.form-inforct .item-dates .label-pr {
  margin-right: 31px;
}
@media screen and (max-width: 1200px) {
  .form-inforct .item-dates .label-pr {
    margin-right: 10px;
  }
}
@media screen and (max-width: 834px) {
  .form-inforct .item-dates .label-pr {
    margin-right: 0;
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.form-inforct .item-dates__w {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-right: 15px;
}
.form-inforct .item-dates__w:last-child {
  margin-right: 0;
}
@media screen and (max-width: 834px) {
  .form-inforct .item-dates__w {
    margin-right: 8px;
  }
}
.form-inforct .item-dates__w label {
  margin-left: 15px;
}
@media screen and (max-width: 834px) {
  .form-inforct .item-dates__w label {
    margin-left: 8px;
  }
}
.form-inforct .item-dates .input-w01 {
  width: 130px;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 1200px) {
  .form-inforct .item-dates .input-w01 {
    width: 90px;
  }
}
@media screen and (max-width: 834px) {
  .form-inforct .item-dates .input-w01 {
    width: 60px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media screen and (max-width: 374px) {
  .form-inforct .item-dates .input-w01 {
    width: 50px;
  }
}
.form-inforct .item-dates .input-w02 {
  width: 65px;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 834px) {
  .form-inforct .item-dates .input-w02 {
    width: 45px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media screen and (max-width: 374px) {
  .form-inforct .item-dates .input-w02 {
    width: 37px;
  }
}
.form-inforct textarea {
  min-height: 230px;
}
.form-inforct .contact-form__txt {
  margin-top: 74px;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .form-inforct .contact-form__txt {
    margin-top: 40px;
  }
}
.form-inforct .contact-form__txt a {
  text-decoration: underline;
  margin-right: 5px;
}
.form-inforct .contact-form__txt a:hover {
  opacity: 0.75;
}
.form-inforct .contact-form__txt a .fa-external-link-alt {
  position: relative;
  bottom: 2px;
  margin-left: 2px;
}

.contact-btn {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  letter-spacing: 0.05em;
  color: #ffffff;
  width: 476px;
  height: 105px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  background: -o-linear-gradient(315deg, #c6d53e, #009de2);
  background: linear-gradient(135deg, #c6d53e, #009de2);
  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;
  border-radius: 50px;
}
.contact-btn::-ms-expand {
  display: none;
}
.contact-btn:hover {
  opacity: 0.75;
}
@media screen and (max-width: 834px) {
  .contact-btn {
    width: 300px;
    height: 60px;
    font-size: 20px;
    font-size: 2rem;
  }
}
.contact-btn--gray {
  background: #d7d7d7;
}

.privacy-popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  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;
  background: rgba(0, 0, 0, 0.2);
}
.privacy-popup__w {
  background: #ffffff;
  max-width: 1100px;
  width: 90%;
  height: 600px;
  max-height: calc(100vh - 80px);
  padding: 90px 76px;
  position: relative;
}
@media screen and (max-width: 834px) {
  .privacy-popup__w {
    padding: 50px 25px;
    height: 450px;
  }
}
.privacy-popup__w .btn-close {
  position: absolute;
  top: 32px;
  right: 32px;
}
@media screen and (max-width: 834px) {
  .privacy-popup__w .btn-close {
    top: 15px;
    right: 15px;
  }
  .privacy-popup__w .btn-close img {
    width: 35px;
  }
}
.privacy-popup__ct {
  border-radius: 10px;
  overflow: hidden;
  height: 100% !important;
}
.privacy-popup .slimScrollDiv {
  height: 100% !important;
}
.privacy-popup .ttl-privacy {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .privacy-popup .ttl-privacy {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 25px;
  }
}
.privacy-popup p {
  margin-bottom: 22px;
  line-height: 1.875;
}
.privacy-popup p:first-child {
  margin-bottom: 26px;
  line-height: 2;
}
.privacy-popup p .fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.privacy-popup p .fl:before {
  content: "・";
}
.privacy-popup h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .privacy-popup h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.privacy-popup .ct-privacy {
  padding-left: 5px;
}

.btn-links {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-top: 120px;
  padding: 0 30px;
}
@media screen and (max-width: 640px) {
  .btn-links {
    display: block;
    text-align: center;
    margin-top: 50px;
  }
}
.btn-links .btn-link {
  margin-right: 20px;
  width: calc(50% - 10px);
}
.btn-links .btn-link:last-child, .btn-links .btn-link:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 834px) {
  .btn-links .btn-link {
    margin-right: 10px;
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 640px) {
  .btn-links .btn-link {
    width: 100%;
    max-width: 300px;
    margin-bottom: 25px;
  }
  .btn-links .btn-link:last-child {
    margin-bottom: 0;
  }
}

.box-ctthanks {
  text-align: center;
  margin-bottom: 55px;
  padding-top: 23px;
}
.box-ctthanks .ttl-thanks {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 47px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .box-ctthanks .ttl-thanks {
    font-size: 20px;
    font-size: 2rem;
  }
}
.box-ctthanks .c-txt01 {
  max-width: 762px;
  margin: 0 auto 57px;
  line-height: 1.4666;
}
@media screen and (max-width: 834px) {
  .box-ctthanks .c-txt01 {
    text-align: left !important;
  }
}
.box-ctthanks + .c-al__c .c-btn01 {
  margin: 0 auto;
}

.mw_wp_form_confirm .form-inforct {
  padding: 0;
  line-height: 2.625;
}
.mw_wp_form_confirm .form-inforct .item-cf {
  border: 1px solid #dddddd;
  margin-top: -1px;
  margin-bottom: 0;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .mw_wp_form_confirm .form-inforct .item-cf {
    border: none;
  }
}
.mw_wp_form_confirm .form-inforct .item-cf .item-dates {
  margin-bottom: 0px;
}
.mw_wp_form_confirm .form-inforct .item-cf .item-dates:last-child {
  margin-bottom: 0;
}
.mw_wp_form_confirm .form-inforct .item-cf__label {
  width: 265px;
  background: #ecf4f8;
  padding: 23px 10px 22px 40px;
  margin-top: 0;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .mw_wp_form_confirm .form-inforct .item-cf__label {
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 0;
  }
}
.mw_wp_form_confirm .form-inforct .item-cf__ip {
  width: calc(100% - 265px);
  padding: 23px 10px 22px 46px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .mw_wp_form_confirm .form-inforct .item-cf__ip {
    width: 100%;
    padding: 15px 10px;
  }
}
.mw_wp_form_confirm .form-inforct .item-cf:first-child {
  border-radius: 10px 10px 0 0;
  margin-top: 0;
}
.mw_wp_form_confirm .form-inforct .item-cf:last-child {
  border-radius: 0 0 10px 10px;
}

.msg-error {
  color: red;
}
/*# sourceMappingURL=maps/styles.css.map */
