@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #707070;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  position: relative;
  overflow: hidden;
}

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

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex__column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}

.ftura {
  font-family: "futura-pt", "Didact Gothic", sans-serif;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

/*===============

=================*/
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

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

.g_nav__sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: nowrap;
      -ms-flex-flow: nowrap;
          flex-flow: nowrap;
  font-size: 2rem;
  line-height: 1.8;
  gap: 2rem;
}
.g_nav__sp ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}
.g_nav__sp ul li {
  position: relative;
  margin-bottom: 2rem;
}
.g_nav__sp ul li:nth-child(n+2) {
  font-size: 1.6rem;
}
.g_nav__sp ul li::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 0;
  height: 1px;
  background: #ffffff;
  -webkit-transition: 1s;
  transition: 1s;
}
.g_nav__sp ul li:hover::after {
  width: 100%;
}

/*===============
header
=================*/
.logo {
  font-size: 3rem;
}

.header {
  position: fixed;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6588235294);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.header__active {
  top: 0;
}

.header_inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
  position: fixed;
  z-index: 20;
  -webkit-transform: translateY(-1500px);
          transform: translateY(-1500px);
  width: 100vw;
  height: 100vh;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8352941176);
  color: #ffffff;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
@media screen and (max-width: 767px) {
  .header_inner .logo {
    margin-bottom: 6rem;
    font-size: 4rem;
  }
}
.header_inner.is_active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.header_inner.is_active .logo {
  margin-bottom: 4rem;
  font-size: 4rem;
}
.header_inner.is_active .g_nav__sp li {
  gap: 2rem;
}

.g_nav {
  padding-right: 6rem;
  gap: 2rem;
}

/*===============
mv
=================*/
.mv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv video {
    height: 20vh;
  }
}
.mv video {
  width: 100%;
  height: 30vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1) brightness(1.1) blur(1px);
          filter: grayscale(1) brightness(1.1) blur(1px);
}
.mv::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-repeating-linear-gradient(332deg, rgba(233, 233, 233, 0.633), rgba(248, 249, 224, 0.399));
  background-image: repeating-linear-gradient(118deg, rgba(233, 233, 233, 0.633), rgba(248, 249, 224, 0.399));
  background-size: 200% 200%; /*サイズを大きくひきのばす*/
  -webkit-animation: bggradient 10s ease infinite;
          animation: bggradient 10s ease infinite;
}

@-webkit-keyframes bggradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes bggradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.h1_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: transparent;
  font-weight: bold;
  font-size: min(8.3vw, 70px);
  -webkit-text-stroke: 2px #fbfbfb;
}
@media screen and (max-width: 767px) {
  .h1_txt {
    font-size: 6rem;
  }
}

/*===============
共通
=================*/
.sec_title {
  position: relative;
  margin-bottom: 6rem;
  font-style: normal;
  font-weight: 400;
  font-size: 4.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_title {
    margin-bottom: 4rem;
  }
}
.sec_title::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  max-width: 500px;
  border-bottom: solid 2px #707070;
}
@media screen and (max-width: 767px) {
  .sec_title::after {
    max-width: 80%;
  }
}
.sec_title.active::after {
  -webkit-animation: border_anim 2s linear forwards;
          animation: border_anim 2s linear forwards;
}

section:nth-child(1) {
  padding-top: 6rem;
}

section:nth-child(n+2) {
  padding-top: 5rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  section:nth-child(n+2) {
    padding-top: 4rem;
  }
}

@-webkit-keyframes border_anim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.lead {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.5;
}

.about_lead {
  margin-bottom: 4rem;
  text-align: left;
}

/*===============
WORKS
=================*/
.work_wrap {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
.work_wrap li {
  width: calc((100% - 60px) / 4);
}
.work_wrap .box_title {
  margin: 1.4rem 0 0.8rem;
  font-size: 1.5rem;
}
.work_wrap p {
  font-size: 1rem;
}
.work_wrap .img {
  position: relative;
}
.work_wrap .hover_box {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7019607843);
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.work_wrap .hover_box:hover {
  opacity: 1;
}
.work_wrap .hover_box a {
  display: block;
  display: grid;
  position: relative;
  width: 100%;
  height: 100%;
  place-items: center;
}
.work_wrap .hover_box a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 22%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: url(../img/icon_window.png);
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .work_wrap .hover_box a::after {
    right: 10%;
  }
}
@media screen and (max-width: 767px) {
  .work_wrap {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .work_wrap li {
    width: calc((100% - 20px) / 2);
  }
  .work_wrap li:nth-child(-n+2) {
    margin-bottom: 2rem;
  }
}

.more {
  display: grid;
  margin: 4rem 0;
  place-items: center;
}
.more a {
  display: inline-block;
  width: 140px;
  padding: 1.5rem 2rem;
  border: solid 1px #707070;
  border-radius: 35px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.more a::after {
  content: "";
  display: inline-block;
  -webkit-transform: translateX(2rem) rotate(45deg);
          transform: translateX(2rem) rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
}
.more a:hover {
  background: rgba(199, 162, 168, 0.7490196078);
  color: #ffffff;
  border: solid 1px rgba(199, 162, 168, 0.7490196078);
}
.more a:hover::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

/*===============
skill
=================*/
.skill_wrap {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.skill_wrap li {
  width: 30%;
  margin-right: 2%;
  margin-bottom: 2rem;
  padding: 5% 3%;
  border: solid 1px #707070;
  border-radius: 40px;
  background-color: #ffffff;
}
.skill_wrap li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .skill_wrap li:nth-child(3n) {
    margin-right: 3%;
  }
}
.skill_wrap .box_title {
  margin-bottom: 1.8rem;
  font-size: 1.8rem;
  text-align: center;
}
.skill_wrap p {
  line-height: 1.5;
  text-align: justify;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .skill_wrap {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    -webkit-flex-flow: nowrap;
        -ms-flex-flow: nowrap;
            flex-flow: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: scroll;
  }
  .skill_wrap li {
    width: 280px;
    min-width: 280px;
    margin-right: 0;
    margin-right: 3%;
    padding: 3rem 2rem;
  }
  .skill_wrap p {
    text-align: justify;
    word-break: break-all;
  }
}

.section_inner {
  margin: 0 auto;
}

.skill_icon {
  height: 60px;
  margin-bottom: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.cell.is-empty {
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  .cell.is-empty {
    display: none;
  }
}

.cell {
  -webkit-box-shadow: 8px 6px 0 rgba(199, 162, 168, 0.7294117647);
          box-shadow: 8px 6px 0 rgba(199, 162, 168, 0.7294117647);
  aspect-ratio: 3/3.6;
}
.cell:nth-child(odd) {
  -webkit-box-shadow: 8px 6px 0 rgba(239, 238, 201, 0.73);
          box-shadow: 8px 6px 0 rgba(239, 238, 201, 0.73);
}

.skill {
  position: relative;
}
.skill::before, .skill::after {
  content: none;
  display: block;
  position: absolute;
  top: -10%;
  left: -30%;
  z-index: -10;
  width: 40vw;
  height: 40vw;
  background: url(../img/blobanimation.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .skill::before, .skill::after {
    top: -53px;
    left: -110px;
    width: 300px;
    height: 300px;
  }
}
.skill::after {
  top: 70%;
  left: 90%;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
@media screen and (max-width: 767px) {
  .skill::after {
    top: 84%;
    left: 60%;
    width: 400px;
    height: 400px;
  }
}

/*===============
about
=================*/
.about,
.ecshop {
  position: relative;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: url(../img/bg_about.jpg);
  background-position: 50% -10%;
  background-size: cover;
  background-attachment: fixed;
}
.about .txt,
.ecshop .txt {
  text-align: justify;
  word-break: break-all;
  text-shadow: 0 0 10px #ffffff;
}
.about .sec_inner,
.ecshop .sec_inner {
  display: grid;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.462745098);
  line-height: 2;
  place-items: center;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
@media screen and (max-width: 767px) {
  .about,
  .ecshop {
    background: -webkit-linear-gradient(45deg, #d6eaff, #fff4fb, #f1fff5);
    background: linear-gradient(45deg, #d6eaff, #fff4fb, #f1fff5); /*グラデーションを定義*/
    background-size: 200% 200%; /*サイズを大きくひきのばす*/
    -webkit-animation: bggradient 4s ease infinite;
            animation: bggradient 4s ease infinite;
  }
  @-webkit-keyframes bggradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @keyframes bggradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
}

@media screen and (max-width: 767px) {
  .about .sec_inner {
    padding: 2rem 2rem 5rem;
  }
}
.about .sec_inner {
  padding: 40px;
}
.about .sec_inner .txt {
  max-width: 580px;
}

.about_flex {
  gap: 3rem;
  margin-bottom: 5rem;
}
.about_flex .prof_img {
  width: 90%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about_flex .prof_img:hover {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
.about_flex:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
.about_flex:nth-of-type(2) .prof_img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about_flex:nth-of-type(2) {
    display: block;
  }
  .about_flex:nth-of-type(2) .prof_img {
    float: left;
    width: 50%;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .about_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .about_flex *,
  .about_flex .prof_img {
    width: 100%;
  }
}

.prof_list {
  margin-bottom: 6rem;
  gap: 2rem;
  max-width: 800px;
}
.prof_list li {
  width: 33.33%;
  border-radius: 0 0 0 30px;
  padding: 1rem 1.4rem 1.4rem 1.4rem;
  -webkit-box-shadow: 2px 2px 11px rgba(51, 51, 51, 0.1294117647);
          box-shadow: 2px 2px 11px rgba(51, 51, 51, 0.1294117647);
}
.prof_list li .inner {
  padding: 1.2em 0.5em 0.5em;
}
.prof_list .bold {
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .prof_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .prof_list li {
    width: 100%;
    min-height: 100px;
  }
}

.about .more,
.ecshop .more {
  padding: 1rem 1rem 10rem;
}
.about .more a,
.ecshop .more a {
  width: 180px;
  letter-spacing: 0.1em;
}

/*===============
pagetop
=================*/
.pagetop {
  display: none;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.pagetop__active {
  display: block;
}
.pagetop:hover {
  -webkit-filter: drop-shadow(1px 1px 4px rgba(199, 162, 168, 0.7294117647));
          filter: drop-shadow(1px 1px 4px rgba(199, 162, 168, 0.7294117647));
}

/*===============
パンくず
=================*/
.bread {
  position: absolute;
  top: 20vh;
  left: 0;
  padding: 1rem;
  z-index: 10;
  opacity: 0.7;
}
.bread ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.bread ul li:after {
  content: ">"; /* 「>」を要素間の区切り文字として表示 */
  margin-right: 10px;
  margin-left: 10px;
}
.bread ul li:last-child:after {
  content: unset;
}
.bread ul a {
  padding: 5px;
}
.bread ul a:hover {
  color: #333333;
  text-shadow: 5px 4px 10px #cbcbcb;
}

/*===============
WORKSページ
=================*/
.works_title {
  position: relative;
  height: 20vh;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background: url(../img/mv.jpg);
  background-size: cover;
}
.works_title .h1_txt {
  -webkit-text-stroke: 2px #929292;
}

.mainswiper {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-bottom: 3rem;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.swiper-slide img {
  padding: 0.4rem;
  aspect-ratio: 89/50;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiperContainer {
  position: relative;
  padding-bottom: 1rem;
}

.swiper-pagination {
  position: absolute;
  bottom: -3rem;
}

.swiper-pagination-bullet {
  background-color: rgb(179, 180, 179);
}

.swiper-button-next,
.swiper-button-prev {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  display: none;
  --swiper-navigation-color: #ffffff;
}

/*===============
website
=================*/
.website {
  position: relative;
  margin-bottom: 4rem;
}
.website .lead {
  padding: 0 2rem;
}
.website .works_wrap {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.website .works_list_item {
  width: 48%;
  margin-bottom: 3rem;
  padding: 3.5rem;
  border: solid 1px #707070;
  border-radius: 45px 0 45px 45px;
  -webkit-box-shadow: 8px 6px 0 rgba(199, 162, 168, 0.7294117647);
          box-shadow: 8px 6px 0 rgba(199, 162, 168, 0.7294117647);
  background-color: #ffffff;
  position: relative;
  gap: 2rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.website .works_list_item:nth-child(odd) {
  margin-right: 2rem;
  -webkit-box-shadow: 8px 6px 0 rgba(239, 238, 201, 0.73);
          box-shadow: 8px 6px 0 rgba(239, 238, 201, 0.73);
}
.website .works_list_item img {
  width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 0px 3px rgba(0, 0, 0, 0.9));
          filter: drop-shadow(0 0px 3px rgba(0, 0, 0, 0.9));
}
.website .works_list_item .more {
  width: 100%;
}
.website .item_txt {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .website .item_txt {
    overflow-wrap: break-word;
  }
}
.website .item_txt dt {
  margin-bottom: 1rem;
  font-weight: normal;
  font-size: 1.6rem;
}
.website .item_txt dd {
  margin-bottom: 1rem;
}
.website .item_txt dd:last-of-type {
  margin: 4rem auto;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .website .item_txt dd:last-of-type {
    margin: 2rem auto;
    padding-bottom: 3rem;
  }
}
.website .item_txt .btn__small {
  display: block;
  margin: 4rem 0 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .website .item_txt .btn__small {
    position: absolute;
    right: 50%;
    bottom: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.website .item_txt .btn__small a {
  padding: 1rem;
}
.website .item_txt .btn__small a::after {
  -webkit-transform: translateX(1rem) rotate(45deg);
          transform: translateX(1rem) rotate(45deg);
}
.website::before, .website::after {
  content: "";
  display: block;
  position: absolute;
  top: -1%;
  left: -300px;
  z-index: -10;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  width: 40vw;
  height: 40vw;
  background: url(../img/blobanimation.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .website::before, .website::after {
    top: -53px;
    left: -110px;
    width: 300px;
    height: 300px;
  }
}
.website::after {
  top: 70%;
  left: 80%;
}
@media screen and (max-width: 767px) {
  .website::after {
    top: 64%;
    left: 60%;
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .website {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .website .works_wrap {
    -webkit-flex-flow: nowrap !important;
        -ms-flex-flow: nowrap !important;
            flex-flow: nowrap !important;
    position: relative;
    padding-left: 2rem;
    overflow-x: auto;
    z-index: 10;
    gap: 2rem;
  }
  .website .works_list_item {
    display: inline-block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    min-width: 340px;
    height: 100%;
    margin-right: 2rem;
    padding: 1.5rem 1.5rem 0;
  }
  .website .works_list_item img {
    width: 100%;
    height: 50%;
    max-height: 300px;
    border-radius: 30px 0 0 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .website .works_list_item .more {
    place-items: center end;
  }
  .website .item_txt {
    margin-top: 2rem;
  }
}

.scroll {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 80px;
  z-index: 20;
}

/*===============
ec shop
=================*/
.ecshop {
  height: auto;
  padding: 6rem 2rem;
}
.ecshop dl {
  margin-bottom: 2rem;
}
.ecshop .sub_title {
  position: relative;
  font-weight: normal;
  font-size: 1.8rem;
}
.ecshop .sub_title::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 1px solid #707070;
  border-radius: 50vh;
}
.ecshop dd {
  padding-left: 1rem;
  text-indent: -1rem;
}
.ecshop .sec_inner {
  display: grid;
  max-width: 1100px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.462745098);
  place-items: center;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

/*===============
footer
=================*/
.footer {
  position: relative;
  margin-top: -1rem;
  padding: 2rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  text-align: center;
}

.footer_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: nowrap;
      -ms-flex-flow: nowrap;
          flex-flow: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  font-size: 1.8rem;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .footer_nav {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    margin-bottom: 2rem;
    row-gap: 2rem;
    margin: 0 auto;
    width: 250px;
  }
}
.footer_nav li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_nav li a:nth-child(n+2) {
  font-size: 1.4rem;
}
.footer_nav li:hover {
  text-shadow: 0 8px 7px rgba(179, 179, 179, 0.4078431373);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/*========= waveを描画するエリア設定 ===============*/
.wave_area {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  width: 100%;
}

.ecshop .wave_area {
  bottom: -6%;
}

/*===============
ハンバーガー
=================*/
.nav_icon {
  display: grid;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: 60px;
  height: 60px;
  place-items: center;
}

.nav_icon_line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #707070;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.nav_icon_line::after, .nav_icon_line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #707070;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.nav_icon_line::before {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  background-color: #707070;
}
.nav_icon_line::after {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

.nav_icon.is_active .nav_icon_line {
  -webkit-transform: rotate(365deg);
          transform: rotate(365deg);
  background-color: transparent;
}
.nav_icon.is_active .nav_icon_line::before {
  -webkit-transform: translateY(0px) rotate(135deg);
          transform: translateY(0px) rotate(135deg);
  background-color: #ffffff;
}
.nav_icon.is_active .nav_icon_line::after {
  -webkit-transform: translateY(-2px) rotate(-500deg);
          transform: translateY(-2px) rotate(-500deg);
  background-color: #ffffff;
}

.fadein,
.fadein_time {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.luxy-el_img {
  width: 100vw;
  max-width: 800px;
  position: absolute;
  z-index: 20;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  z-index: -10;
}

.luxy-el_img:nth-of-type(1) {
  top: -400px;
  left: -10%;
  opacity: 0.45;
}
.luxy-el_img:nth-of-type(1) img {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.luxy-el_img:nth-of-type(2) {
  top: -100px;
  left: 50%;
  opacity: 0.45;
}
.luxy-el_img:nth-of-type(2) img {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.luxy-el_img:nth-of-type(3) {
  width: 20vw;
  max-width: 200px;
  top: -700px;
  left: 30%;
  opacity: 0.35;
}
.luxy-el_img:nth-of-type(3) img {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.usagi {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.bg_img {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: -10;
  background-size: cover;
  min-height: 100%;
  min-width: 200%;
  background: url(../img/bg_book.jpg);
  background-size: cover;
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  background-position: 50% 70%;
  background-attachment: fixed;
  display: none;
}
@media screen and (max-width: 767px) {
  .bg_img {
    background: none;
  }
}
.bg_img.inview {
  display: block;
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

/*＝＝＝＝＝＝＝＝
モーダルの元*/
#swiperContainerr .swiper-slide {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

/***************************
*
**　モーダルのスタイル
*
***************************/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  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-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.modal-content {
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .modal-content {
    width: 100%;
  }
}

.close_btn {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  z-index: 30;
  position: absolute;
  top: 2%;
  right: 2%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .close_btn {
    font-size: 5vw;
  }
}

.design .sec_inner {
  background: rgba(193, 193, 193, 0.2196078431);
  display: grid;
  max-width: 1100px;
  padding: 2rem;
}
.design .wp_link {
  padding: 1rem;
  margin: 2rem 0;
}

.design_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.design_wrap .item {
  width: 50%;
}
.design_wrap p {
  margin-bottom: 1rem;
  text-align: center;
}
.design_wrap .tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  gap: 2rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.design_wrap .tag span {
  display: inline-block;
  background-color: #feefad;
  font-size: 10px;
  padding: 0px 5px;
}
@media screen and (max-width: 767px) {
  .design_wrap .tag {
    gap: 2%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .design_wrap .tag span {
    margin-bottom: 2%;
  }
}

.design_work .sec_inner {
  height: 500px;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .design_work .sec_inner {
    height: 300px;
  }
}

.shopify_area {
  margin-top: 8rem;
}
.shopify_area .atn {
  margin-top: 3rem;
  text-align: center;
}
.shopify_area .wp_link {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .shopify_area {
    margin-top: 4rem;
  }
}

.cta_head {
  display: inline;
}