@charset "UTF-8";
/*-- globalフォルダの中の_index.scss --*/
html {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  font-size: 1.6rem;
  color: #333333;
  background: #ffffff;
}

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

li {
  list-style: none;
}

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

/* main設定
--------------------------------------------- */
main {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 120px;
}
@media screen and (max-width: 599px) {
  main {
    padding-bottom: 80px;
  }
}

/* コンテナ設定
--------------------------------------------- */
.l-container {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 599px) {
  .l-container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* グリッド
---------------------------------------------- */
.l-grid-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 60px;
  place-items: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .l-grid-info {
    grid-column-gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .l-grid-info {
    display: block;
  }
}

.l-grid-with {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 80px;
  place-items: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .l-grid-with {
    grid-column-gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .l-grid-with {
    display: block;
  }
}

/*-- layoutフォルダの中の_index.scss --*/
/* ローディングアニメーション
------------------------------------------ */
/* ローディング画面
----------------------------- */
#js-loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9999;
}

/* ローディングアニメーション部分
---------------------------- */
.js-loader {
  margin: 100px auto;
  font-size: 20px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@-webkit-keyframes load5 {
  0%, 100% {
    -webkit-box-shadow: 0em -2.6em 0em 0em #7d7d7d, 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.5), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.7);
            box-shadow: 0em -2.6em 0em 0em #7d7d7d, 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.5), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.7);
  }
  12.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.7), 1.8em -1.8em 0 0em #7d7d7d, 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.5);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.7), 1.8em -1.8em 0 0em #7d7d7d, 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.5);
  }
  25% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.5), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.7), 2.5em 0em 0 0em #7d7d7d, 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.5), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.7), 2.5em 0em 0 0em #7d7d7d, 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
  }
  37.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.5), 2.5em 0em 0 0em rgba(125, 125, 125, 0.7), 1.75em 1.75em 0 0em #7d7d7d, 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.5), 2.5em 0em 0 0em rgba(125, 125, 125, 0.7), 1.75em 1.75em 0 0em #7d7d7d, 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
  }
  50% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.5), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.7), 0em 2.5em 0 0em #7d7d7d, -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.5), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.7), 0em 2.5em 0 0em #7d7d7d, -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
  }
  62.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.5), 0em 2.5em 0 0em rgba(125, 125, 125, 0.7), -1.8em 1.8em 0 0em #7d7d7d, -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.5), 0em 2.5em 0 0em rgba(125, 125, 125, 0.7), -1.8em 1.8em 0 0em #7d7d7d, -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
  }
  75% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.5), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.7), -2.6em 0em 0 0em #7d7d7d, -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.5), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.7), -2.6em 0em 0 0em #7d7d7d, -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
  }
  87.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.5), -2.6em 0em 0 0em rgba(125, 125, 125, 0.7), -1.8em -1.8em 0 0em #7d7d7d;
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.5), -2.6em 0em 0 0em rgba(125, 125, 125, 0.7), -1.8em -1.8em 0 0em #7d7d7d;
  }
}
@keyframes load5 {
  0%, 100% {
    -webkit-box-shadow: 0em -2.6em 0em 0em #7d7d7d, 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.5), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.7);
            box-shadow: 0em -2.6em 0em 0em #7d7d7d, 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.5), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.7);
  }
  12.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.7), 1.8em -1.8em 0 0em #7d7d7d, 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.5);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.7), 1.8em -1.8em 0 0em #7d7d7d, 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.5);
  }
  25% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.5), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.7), 2.5em 0em 0 0em #7d7d7d, 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.5), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.7), 2.5em 0em 0 0em #7d7d7d, 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
  }
  37.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.5), 2.5em 0em 0 0em rgba(125, 125, 125, 0.7), 1.75em 1.75em 0 0em #7d7d7d, 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.5), 2.5em 0em 0 0em rgba(125, 125, 125, 0.7), 1.75em 1.75em 0 0em #7d7d7d, 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
  }
  50% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.5), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.7), 0em 2.5em 0 0em #7d7d7d, -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.5), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.7), 0em 2.5em 0 0em #7d7d7d, -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.2), -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
  }
  62.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.5), 0em 2.5em 0 0em rgba(125, 125, 125, 0.7), -1.8em 1.8em 0 0em #7d7d7d, -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.5), 0em 2.5em 0 0em rgba(125, 125, 125, 0.7), -1.8em 1.8em 0 0em #7d7d7d, -2.6em 0em 0 0em rgba(125, 125, 125, 0.2), -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
  }
  75% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.5), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.7), -2.6em 0em 0 0em #7d7d7d, -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.5), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.7), -2.6em 0em 0 0em #7d7d7d, -1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2);
  }
  87.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.5), -2.6em 0em 0 0em rgba(125, 125, 125, 0.7), -1.8em -1.8em 0 0em #7d7d7d;
            box-shadow: 0em -2.6em 0em 0em rgba(125, 125, 125, 0.2), 1.8em -1.8em 0 0em rgba(125, 125, 125, 0.2), 2.5em 0em 0 0em rgba(125, 125, 125, 0.2), 1.75em 1.75em 0 0em rgba(125, 125, 125, 0.2), 0em 2.5em 0 0em rgba(125, 125, 125, 0.2), -1.8em 1.8em 0 0em rgba(125, 125, 125, 0.5), -2.6em 0em 0 0em rgba(125, 125, 125, 0.7), -1.8em -1.8em 0 0em #7d7d7d;
  }
}
/* ローディングアニメーション操作CSS
---------------------------------------- */
.js-completed {
  opacity: 0;
  visibility: hidden;
}

/*ヘッダースクロール背景色変化
-----------------------------------------------*/
.l-header__hamburger.js-header__bg-color {
  background-color: #FFE85A;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.p-header__logo--hidden.js-header__active {
  visibility: visible;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.p-gnav__menu--hidden.js-header__active {
  visibility: visible;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

/*-- jsフォルダの中の_index.scss --*/ /* パンくずリスト */
/* パンくずリストmargin-top調整 */
.l-breadcrumb {
  margin-top: 20px;
}

.breadcrumb {
  max-width: 1920px;
  width: 100%;
  padding: 10px 15px;
  font-size: 1.2rem;
  margin: 0 auto;
  text-decoration: initial;
}

.breadcrumb__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  list-style: none;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.breadcrumb__list:not(:last-child) {
  margin-right: 15px;
}

.breadcrumb__list:not(:last-child):after {
  content: "";
  display: inline-block;
  margin-left: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #333;
}

.breadcrumb__list--text {
  display: inline;
}

.breadcrumb__list--text_link {
  text-decoration: underline;
}

/* Top
----------------------------------------------- */
.p-top {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.p-movie {
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: url(../images/remyu_bg.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.p-movie::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}

.p-movie__body {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.p-content {
  margin-top: 80px;
}

.p-content__wrap {
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-logo-area {
  text-align: center;
  height: 80px;
  width: 80px;
  background: #FFE85A;
}

.p-logo-area__img {
  max-width: 60px;
  width: 100%;
  height: 100%;
}

.p-arrow-area {
  margin-top: 10px;
}
.p-arrow-area--under {
  margin-top: 60px;
}

.p-copy-area {
  margin-top: 60px;
}

.p-copy__txt {
  margin-top: 40px;
  line-height: 2.875;
}

.p-plus-area {
  margin-top: 60px;
}

.p-company-info {
  margin-top: 80px;
  max-width: 320px;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-company-info:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .p-company-info {
    max-width: 280px;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .p-company-info {
    margin: 80px auto 0 auto;
    max-width: 320px;
    width: 100%;
  }
}

.p-company-info__txt {
  margin-top: 20px;
  line-height: 2.25;
}

.p-company-info__txt2 {
  margin-top: 10px;
}

.p-spacer {
  padding-bottom: 80px;
}

/* スクロールアニメーション
------------------------------------------ */
/* 縦棒が下に伸びる
------------------------------------------ */
.c-scrolldown-txt {
  font-size: 1.4rem;
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0 auto;
  font-weight: 300;
}

.l-scrolldown-area {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  -webkit-animation: scrolldown-appearance 15s ease forwards;
          animation: scrolldown-appearance 15s ease forwards;
}

/* 子ページ用スクロールアニメーション設定 */
.l-scrolldown-area2 {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  -webkit-animation: scrolldown-appearance 7s ease forwards;
          animation: scrolldown-appearance 7s ease forwards;
}

@-webkit-keyframes scrolldown-appearance {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes scrolldown-appearance {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.c-scrolldown {
  width: 1px;
  height: 60px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
}

.c-scrollbar {
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #333), color-stop(50%, #FFE85A));
  background: -webkit-linear-gradient(top, #333 50%, #FFE85A 50%);
  background: linear-gradient(to bottom, #333 50%, #FFE85A 50%);
  background-position: 0 -60px;
  background-size: 100% 200%;
  -webkit-animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
          animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@-webkit-keyframes scrolldown {
  0% {
    background-position: 0 -60px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 60px;
  }
}

@keyframes scrolldown {
  0% {
    background-position: 0 -60px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 60px;
  }
}
/* ABOUT
-----------------------------------------*/
.p-about-ttl {
  text-align: center;
}

.p-company-desc {
  margin-top: 60px;
  line-height: 1.875;
}

.p-contact {
  margin-top: 60px;
}

.p-contact-btn {
  margin-top: 20px;
  text-align: center;
  background: #FFE85A;
  padding: 16px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-contact-btn:hover {
  opacity: 0.7;
}

/* BRAND
-----------------------------------------*/
.p-content__wrap--brand {
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-brand-image {
  margin-top: 100px;
  text-align: center;
}

.p-shopping {
  margin-top: 60px;
  max-width: 320px;
  width: 100%;
}

.p-shopping-btn {
  text-align: center;
  border: solid 1px #333;
  padding: 16px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-shopping-btn:hover {
  opacity: 0.7;
}

/* WITH BEAMS BRAND
-----------------------------------------*/
.p-with-image {
  margin-top: 100px;
  text-align: center;
}

.p-with-image img {
  height: 120px;
}

.p-with-item {
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .p-with-item:nth-child(2) {
    margin-top: 80px;
  }
}

.p-with-item__img {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.p-with-item__txt {
  margin-top: 20px;
}

.p-shopping__with {
  margin: 20px auto 0;
  max-width: 320px;
  width: 100%;
}

/* ヘッダー
-----------------------------------------*/
.l-header {
  position: relative;
  z-index: 50;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.l-header__hamburger {
  height: 60px;
  position: fixed;
  z-index: 2;
  max-width: 1920px;
  width: 100%;
}

.p-header {
  height: 60px;
  position: fixed;
  max-width: 1920px;
  width: calc(100vw - 15px);
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}

.p-header__logo {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-header__logo:hover {
  opacity: 0.7;
}

.p-logo {
  max-width: 100px;
  width: 100%;
  height: 60px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.p-gnav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

.p-gnav__menu {
  margin-right: 45px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-gnav__menu:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .p-gnav__menu {
    margin-right: 28px;
  }
}
@media screen and (max-width: 768px) {
  .p-gnav__menu {
    display: none;
  }
}

/* ハンバーガーメニュー
-------------------------------------------------- */
/* ハンバーガー ナビゲーションのためのCSS */
.sp-gnav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  display: none;
  width: 420px;
  min-height: 100vh;
  min-height: 100dvh;
  /*ナビの高さ*/
  background: #fff;
  /*動き*/
  -webkit-animation: fadein 0.1s;
          animation: fadein 0.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media screen and (max-width: 768px) {
  .sp-gnav {
    width: 100%;
  }
}

/*アクティブクラスがついたら位置を0に*/
.sp-gnav.panel-active {
  display: block;
  right: 0;
}

/* hide-menuクラスが付与されたらメニューを消す */
.sp-gnav.hide-menu {
  /* display: none; ではなくvisibility: hidden;を使用。スムースに開閉が行われる*/
  visibility: hidden;
  -webkit-transition: 0.05s;
  transition: 0.05s;
}

/* hide-menuクラスが付与されたらメニューを消す */
.p-gnav__menu.hide-menu__body {
  /* display: none; ではなくvisibility: hidden;を使用。スムースに開閉が行われる*/
  visibility: hidden;
  -webkit-transition: 0.05s;
  transition: 0.05s;
}

/*スマホ グローバルナビゲーション*/
.sp-menu__block {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: left;
}

/*リストのレイアウト設定*/
.p-gnav__menu--sp {
  width: 320px;
  padding: 5px;
  display: block;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  margin-top: 15px;
}
.p-gnav__menu--sp:hover {
  opacity: 0.7;
}

.p-gnav__menu--sp-img2 {
  width: 50px;
  padding: 8px;
  display: block;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  margin-top: 15px;
}
.p-gnav__menu--sp-img2:hover {
  opacity: 0.7;
}

.p-gnav__sp-big {
  margin-top: 10px;
  font-size: 2.4rem;
}

.p-gnav__sp-big2 {
  padding: 8px;
  display: block;
  letter-spacing: 0.05em;
  width: 300px;
  font-size: 2.4rem;
}

/* modalの設定
---------------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 998;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  /* モーダルをフェードインさせる */
  -webkit-animation: fadein 0.1s;
          animation: fadein 0.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media screen and (max-width: 599px) {
  .modal {
    display: none;
  }
}

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

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal-bg {
  background: rgba(0, 0, 0, 0.1);
  min-height: 100vh;
  min-height: 100dvh;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .modal-bg {
    display: none;
  }
}

/*panel-activeがついたら出現（普段はdisplay:none）*/
.modal.modal-active {
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .modal.modal-active {
    display: none;
  }
}

/* モーダルの背景をスクロールさせない */
.body.modal-active-bg {
  /* overflow-y: hidden;でスクロールを禁止 */
  overflow-y: hidden;
}

/* スクロールバーガタつき対策 */
.scrollbar-wrap.scrollbar {
  overflow: auto;
  scrollbar-gutter: stable;
}

/*========= ボタンのためのCSS ===============*/
.open-btn {
  position: relative;
  /*ボタンを最前面に*/
  z-index: 9999;
  cursor: pointer;
  width: 50px;
  height: 30px;
}

/*×に変化*/
.open-btn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 12px;
  height: 1px;
  background-color: #333;
}

.open-btn span:nth-of-type(1) {
  top: 12px;
  width: 50%;
}

.open-btn span:nth-of-type(2) {
  top: 19px;
  width: 50%;
}

.open-btn.active span:nth-of-type(1) {
  top: 12px;
  left: 12px;
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(3px) rotate(-20deg);
  width: 50%;
}

.open-btn.active span:nth-of-type(2) {
  top: 18px;
  left: 12px;
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-3px) rotate(20deg);
  width: 50%;
}

/* フッター
-----------------------------------------------*/
.l-footer {
  margin: 0 auto;
  height: 47px;
  max-width: 1920px;
  width: 100%;
}

.l-footer__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  line-height: 46px;
}

.p-copy-right {
  text-align: center;
}

/* 調整用
--------------------------------------------------*/
/* 全角スペース（右に全角） */
.u-full-width {
  margin-right: 1em;
}

/* 全角1.5スペース（右に1.5全角） */
.u-full-half-width {
  margin-right: 1.5em;
}

/* 半角スペース（右に半角） */
.u-half-width {
  margin-right: 0.5em;
}

/* 半角スペース（左に半角） */
.u-half-width-left {
  margin-left: 0.5em;
}

/* 改行禁止 */
.u-no-wrap {
  white-space: nowrap;
}

/* PC改行 */
.u-tablet-br__1024 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-tablet-br__1024 {
    display: block;
  }
}

/* タブレットのみ改行 */
.u-tablet-br__768 {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-tablet-br__768 {
    display: block;
  }
}

/* タブレットは改行しない */
@media screen and (max-width: 768px) {
  .u-tablet-br__768--none {
    display: none;
  }
}

/* スマホのみ改行 */
.u-sp-br__599 {
  display: none;
}
@media screen and (max-width: 599px) {
  .u-sp-br__599 {
    display: block;
  }
}

/* ホバーアクション（アイテムが薄くなる） */
.u-hover-action {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.u-hover-action:hover {
  opacity: 0.7;
}

/*-- utilityフォルダの中の_index.scss --*//*# sourceMappingURL=style.css.map */