@charset "UTF-8";
/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  overflow-y: scroll;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul {
  list-style: none;
  padding-left: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, select, textarea {
  box-sizing: border-box;
}

html {
  /* Sets a specific default `font-size` for user with `rem` type scales.*/
  font-size: 62.5%;
  /* Changes the default tap highlight to be completely transparent in iOS.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #4F5C5B;
  line-height: 1.6;
  background: #fff;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 980px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  body {
    min-width: inherit;
  }
}

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

strong {
  font-weight: bold;
}

a:link {
  color: #4F5C5B;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: #4F5C5B;
  text-decoration: none;
}
a:hover {
  color: #4F5C5B;
  text-decoration: none;
}
a:active {
  color: c;
  text-decoration: none;
}

a[href^=tel] {
  color: #4F5C5B;
}

.contain {
  width: 980px;
  min-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* input */
input, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  -o-border-image: none;
     border-image: none;
  background: transparent;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #4F5C5B;
}

input:placeholder-shown, textarea:placeholder-shown {
  color: #4F5C5B;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #4F5C5B;
}
input::placeholder, textarea::placeholder {
  color: #4F5C5B;
}
input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: #4F5C5B;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #4F5C5B;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #4F5C5B;
}
input:focus::placeholder, textarea:focus::placeholder {
  color: #4F5C5B;
}

@media screen and (min-width: 769px) {
  .u_pc {
    display: block;
  }
  .u_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u_pc {
    display: none;
  }
  .u_sp {
    display: block;
  }
}
@keyframes bottom-top {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes top-bottom {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes big-small {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* トップに戻るボタン */
#return-top {
  background-color: #d66262;
  border-radius: 50%;
  bottom: 10px;
  color: #fff;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  outline: 0;
  position: fixed;
  right: 10px;
  text-align: center;
  width: 50px;
  opacity: 0;
  cursor: pointer;
}
#return-top.fade-in {
  opacity: 1;
  transition: opacity 1s;
}

.sa {
  opacity: 0;
  transition: all 1s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

.alpha {
  font-family: "Alice", serif;
}

.p_index .key {
  margin-bottom: -100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p_index .key {
    margin-bottom: -8vw;
  }
}
.p_index .key_img img {
  width: 100%;
  height: 750px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p_index .key_img img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.p_index .key_ttl {
  font-family: "Alice", serif;
  font-size: 4.8rem;
  text-align: center;
  position: absolute;
  top: calc(50% - 38px);
  left: calc(50% - 94px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p_index .key_ttl {
    font-size: 6vw;
    top: calc(50% - 5vw);
    left: calc(50% - 14vw);
  }
}
.p_index .key_ttl span {
  display: inline-block;
}
.p_index .skill {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p_index .skill {
    margin-bottom: 10vw;
  }
}
.p_index .skill_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p_index .skill_list {
    display: block;
  }
}
.p_index .skill_item {
  background: #fff;
  border: 1px solid #4F5C5B;
  position: relative;
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .p_index .skill_item {
    width: 29vw;
  }
}
@media screen and (max-width: 768px) {
  .p_index .skill_item {
    width: inherit;
  }
  .p_index .skill_item + .skill_item {
    margin-top: 5vw;
  }
}
.p_index .skill_item:before {
  content: "";
  border: 2px solid #E5EFE3;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 280px;
  height: calc(100% - 20px);
}
@media screen and (max-width: 1024px) {
  .p_index .skill_item:before {
    width: calc(29vw - 20px);
  }
}
@media screen and (max-width: 768px) {
  .p_index .skill_item:before {
    width: 86vw;
  }
}
.p_index .skill_item-ttl {
  font-family: "Alice", serif;
  font-size: 2.4rem;
  text-align: center;
  padding: 23px 0 0;
}
@media screen and (max-width: 768px) {
  .p_index .skill_item-ttl {
    font-size: 5vw;
  }
}
.p_index .skill_item-icon {
  font-size: 6.6rem;
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .p_index .skill_item-icon {
    font-size: 10.2vw;
  }
}
.p_index .skill_item-text {
  font-size: 1.6rem;
  margin: 0 30px 40px;
}
@media screen and (max-width: 768px) {
  .p_index .skill_item-text {
    font-size: 3vw;
  }
}
.p_index .contents_ttl {
  font-size: 4rem;
  font-family: "Alice", serif;
  padding: 100px 0 62px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_index .contents_ttl {
    font-size: 7vw;
    padding: 10vw 0 5vw;
  }
}
.p_index .contents_subttl {
  margin: 30px 0 7px;
  font-size: 3.2rem;
  font-family: "Alice", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_index .contents_subttl {
    font-size: 5vw;
    padding: 5vw 0 1vw;
  }
}
.p_index .works {
  background: #E6F0ED;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p_index .works {
    padding-bottom: 10vw;
  }
}
.p_index .works_text {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .p_index .works_text {
    text-align: left;
    font-size: 3vw;
    margin-bottom: 8vw;
  }
}
.p_index .works_btn a {
  border: 1px solid #A9882F;
  background: #fff;
  font-size: 2.4rem;
  font-family: "Lato", sans-serif;
  color: #A9882F;
  display: block;
  text-align: center;
  width: 290px;
  height: 70px;
  line-height: 68px;
  margin: 0 auto;
  transition: background 0.5s ease, color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .p_index .works_btn a {
    font-size: 3vw;
    width: 80vw;
    height: 50px;
    line-height: 48px;
  }
}
.p_index .works_btn a:hover {
  background: #A9882F;
  color: #fff;
}
.p_index .about {
  padding-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .p_index .about {
    padding-bottom: 10vw;
  }
}
.p_index .about_text {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_index .about_text {
    font-size: 3vw;
  }
}

.subcon .key {
  background: #E5EFE3;
  min-height: 300px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .subcon .key {
    min-height: 40vw;
  }
}
.subcon .key_ttl {
  font-family: "Alice", serif;
  font-size: 4.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .subcon .key_ttl {
    font-size: 6vw;
  }
}

.p_works .works_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 120px 0 80px;
}
@media screen and (max-width: 768px) {
  .p_works .works_list {
    display: block;
    margin: 10vw 0 6vw;
  }
}
.p_works .works_item {
  width: 460px;
  margin-bottom: 40px;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p_works .works_item {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .p_works .works_item {
    width: inherit;
    margin-bottom: 10vw;
    box-shadow: none;
    overflow: inherit;
  }
}
.p_works .works_item-img {
  transition: transform 0.8s ease;
}
@media screen and (max-width: 768px) {
  .p_works .works_item-img {
    width: 65vw;
    margin: 0 auto 4vw;
  }
}
.p_works .works_item-img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .p_works .works_item-img:hover {
    transform: none;
  }
}
.p_works .works_item-info {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p_works .works_item-info {
    padding: 4vw;
    background: #fff;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  }
}
.p_works .works_item-meta {
  display: flex;
  font-size: 1.2em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p_works .works_item-meta {
    font-size: 3vw;
    margin-bottom: 3vw;
  }
}
.p_works .works_item-tag {
  padding-right: 1em;
  border-right: 1px solid #4F5C5B;
}
.p_works .works_item-day {
  padding-left: 1em;
}
.p_works .works_item-ttl {
  font-size: 2rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p_works .works_item-ttl {
    font-size: 4vw;
    margin-bottom: 3vw;
  }
}
.p_works .works_item-ttl a {
  transition: color 0.5s ease;
}
.p_works .works_item-ttl a:hover {
  color: #A9882F;
}
.p_works .works_item-skill {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p_works .works_item-skill {
    font-size: 3vw;
    margin-bottom: 3vw;
  }
}
.p_works .works_item-text {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p_works .works_item-text {
    font-size: 3vw;
  }
}

.p_contact .form {
  margin: 120px 0;
}
@media screen and (max-width: 768px) {
  .p_contact .form {
    margin: 10vw 0;
  }
}
.p_contact .form form {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p_contact .form form {
    width: inherit;
  }
}
.p_contact .form table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ccc;
}
.p_contact .form tr:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .p_contact .form tr:not(:last-child) {
    border-bottom: none;
  }
}
.p_contact .form th {
  width: 250px;
  padding: 20px;
  font-size: 1.4rem;
  -moz-text-align-last: left;
       text-align-last: left;
  background: #E5EFE3;
}
@media screen and (max-width: 768px) {
  .p_contact .form th {
    width: 100%;
    display: block;
    font-size: 3vw;
    padding: 4vw;
  }
}
.p_contact .form td {
  width: 550px;
  padding: 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p_contact .form td {
    width: 100%;
    display: block;
    font-size: 3vw;
    padding: 4vw;
  }
}
.p_contact .form td .error {
  color: #d66262;
}
.p_contact .form input[type=text] {
  width: 100%;
  border: 1px solid #ccc;
  font-size: 1.8rem;
  padding: 4px 10px;
}
@media screen and (max-width: 768px) {
  .p_contact .form input[type=text] {
    font-size: 1.6rem;
  }
}
.p_contact .form textarea {
  width: 100%;
  border: 1px solid #ccc;
  font-size: 1.8rem;
  padding: 4px 10px;
}
@media screen and (max-width: 768px) {
  .p_contact .form textarea {
    font-size: 1.6rem;
  }
}
.p_contact .form .required {
  background: #d66262;
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 7px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .p_contact .form .required {
    font-size: 3vw;
  }
}
.p_contact .form_submit button, .p_contact .form_btn button {
  border: 1px solid #A9882F;
  background: #fff;
  font-size: 2.4rem;
  font-family: "Lato", sans-serif;
  color: #A9882F;
  display: block;
  text-align: center;
  width: 290px;
  height: 70px;
  line-height: 68px;
  margin: 40px auto 0;
  transition: background 0.5s ease, color 0.5s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p_contact .form_submit button, .p_contact .form_btn button {
    font-size: 3vw;
    width: 80vw;
    height: 50px;
    line-height: 48px;
    margin-top: 6vw;
  }
}
.p_contact .form_submit button:hover, .p_contact .form_btn button:hover {
  background: #A9882F;
  color: #fff;
}
.p_contact .form_submit .historyback, .p_contact .form_btn .historyback {
  border: 1px solid #9fa0a0;
  background: #fff;
  font-size: 2.4rem;
  font-family: "Lato", sans-serif;
  color: #9fa0a0;
  display: block;
  text-align: center;
  width: 290px;
  height: 70px;
  line-height: 68px;
  margin: 40px auto 0;
  transition: background 0.5s ease, color 0.5s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p_contact .form_submit .historyback, .p_contact .form_btn .historyback {
    font-size: 3vw;
    width: 80vw;
    height: 50px;
    line-height: 48px;
    margin-top: 6vw;
  }
}
.p_contact .form_submit .historyback:hover, .p_contact .form_btn .historyback:hover {
  background: #9fa0a0;
  color: #fff;
}
.p_contact .form_btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p_contact .form_btn {
    display: block;
  }
}
.p_contact .form_btn button {
  margin-left: 40px;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .p_contact .form_btn button {
    margin-left: auto;
    margin-right: auto;
  }
}
.p_contact .form_btn .historyback {
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .p_contact .form_btn .historyback {
    margin-left: auto;
    margin-right: auto;
  }
}
.p_contact .form_attend {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p_contact .form_attend {
    font-size: 3vw;
  }
}
.p_contact .form_text {
  font-size: 1.4rem;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_contact .form_text {
    font-size: 3vw;
    margin-bottom: 6vw;
  }
}
.p_contact .form_top a {
  border: 1px solid #A9882F;
  background: #fff;
  font-size: 2.4rem;
  font-family: "Lato", sans-serif;
  color: #A9882F;
  display: block;
  text-align: center;
  width: 290px;
  height: 70px;
  line-height: 68px;
  margin: 40px auto 0;
  transition: background 0.5s ease, color 0.5s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p_contact .form_top a {
    font-size: 3vw;
    width: 80vw;
    height: 50px;
    line-height: 48px;
    margin-top: 6vw;
  }
}
.p_contact .form_top a:hover {
  background: #A9882F;
  color: #fff;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_content_size
================================= */
.l_content_size_sp_1 {
  padding: 0 4%;
}
@media screen and (min-width: 1025px) {
  .l_content_size_sp_1 {
    max-width: 980px;
    margin: 0 auto;
  }
}

.l_content_size_pc_1 {
  width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .l_content_size_pc_1 {
    width: auto;
    padding: 0 4%;
  }
}
@media screen and (max-width: 768px) {
  .l_content_size_pc_1 {
    padding: 0 4vw;
  }
}

/* =================================
 l_container
================================= */
.l_container {
  position: relative;
}

/* =================================
 l_header
================================= */
.l_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 25px;
}
@media screen and (max-width: 768px) {
  .l_header {
    display: none;
  }
}
.l_header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l_header .logo a {
  font-family: "Alice", serif;
  font-size: 4rem;
  color: #4F5C5B;
}
.l_header .gNav {
  display: flex;
}
.l_header a {
  color: #333333;
  display: inline-block;
  padding: 0 10px;
  font-size: 2rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  transition: color 0.5s ease;
}
.l_header a:hover {
  color: #A9882F;
}

/* =================================
 l_header_sp
================================= */
.l_header_sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  padding: 3vw 2vw;
}
@media screen and (max-width: 768px) {
  .l_header_sp {
    display: block;
  }
}
.l_header_sp .logo a {
  font-family: "Alice", serif;
  font-size: 5vw;
  color: #4F5C5B;
}
.l_header_sp #toggle {
  justify-content: center;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .l_header_sp #toggle {
    display: flex;
  }
}
.l_header_sp #toggle > div {
  width: 8vw;
  position: relative;
}
.l_header_sp #toggle span {
  width: 100%;
  height: 1px;
  background: #4F5C5B;
  display: block;
  position: absolute;
  left: 0;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
  width: 80%;
}
.l_header_sp #toggle span:nth-of-type(1) {
  top: 5.0666666667vw;
}
.l_header_sp #toggle span:nth-of-type(2) {
  top: 7.4666666667vw;
}
.l_header_sp #toggle span:nth-of-type(3) {
  top: 9.6vw;
}
.l_header_sp #toggle.active span:nth-of-type(1) {
  top: 6.6666666667vw;
  transform: rotate(45deg);
}
.l_header_sp #toggle.active span:nth-of-type(2) {
  top: 6.6666666667vw;
  width: 0;
  transform: rotate(-45deg);
}
.l_header_sp #toggle.active span:nth-of-type(3) {
  top: 6.6666666667vw;
  transform: rotate(-45deg);
}

#js-header[data-js-scroll=true] .l_header, #js-header[data-js-scroll=true] .l_header_sp {
  background: rgba(255, 255, 255, 0.5);
}

/* =================================
 l_menu_sp
================================= */
.l_menu_sp {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: 0.4s;
}
.l_menu_sp.is-open {
  line-height: normal;
  height: 100vh;
  padding: 20vw 0 15vw;
  overflow-y: scroll;
  opacity: 1;
}
.l_menu_sp .gNav {
  font-size: 6vw;
  text-align: center;
}
.l_menu_sp .gNav li {
  margin-bottom: 2vw;
}

/* =================================
 l_breadcrumbs
================================= */
/* =================================
 l_main_visual
================================= */
/* =================================
 l_content
================================= */
/* =================================
 l_main
================================= */
/* =================================
 l_side
================================= */
/* =================================
 l_footer
================================= */
.l_footer {
  background: #333333;
  color: #fff;
  padding: 20px 0;
}
.l_footer .footer_copy {
  font-size: 1.2rem;
  text-align: center;
}

/* =================================
 l_hoge
================================= */
/* ======================================================================
 layout p_top
====================================================================== */
/* =================================
 l_container_top
================================= */
.l_container_top {
  position: relative;
}

/* =================================
 l_header_top
================================= */
/* =================================
 l_header_sp_top
================================= */
/* =================================
 l_main_visual_top
================================= */
/* =================================
 l_content_top
================================= */
/* =================================
 l_main_top
================================= */
/* =================================
 l_side_top
================================= */
/* =================================
 l_footer_top
================================= */
/* =================================
 l_hoge_top
================================= */
/* ======================================================================
 z-index
====================================================================== */
.l_loader {
  z-index: 1000;
}

.l_menu_sp {
  z-index: 998;
}

.l_header {
  z-index: 999;
}

.l_header_sp {
  z-index: 999;
}

.c_btn_p_top {
  z-index: 997;
}

.l_side {
  z-index: 996;
}

/* =================================
 p_top
================================= */
.l_menu_sp_top {
  z-index: 999;
}

.l_header_top {
  z-index: 998;
}

.l_header_sp_top {
  z-index: 998;
}

.c_btn_p_top_top {
  z-index: 997;
}

.l_side_top {
  z-index: 996;
}