@charset "UTF-8";
/***********************************
* variable & function *
***********************************/
/***********************************
* variable & function end *
***********************************/
html {
  font-size: 62.5%;
  letter-spacing: 0.1rem;
}

.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #010025;
  z-index: 9999;
  -webkit-animation: byeShutter 2.6s forwards;
  animation: byeShutter 2.6s forwards;
}
.shutter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen 2.6s forwards;
  animation: shutterOpen 2.6s forwards;
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -101;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
#wrapper {
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  z-index: -100;
  top: 0;
}

.line-box {
  position: absolute;
  margin: 0;
  line-height: 0;
  z-index: 999;
}
.line-box::after {
  width: 1px;
  height: 100px;
}
@media only screen and (max-width: 559px) {
  .line-box::after {
    height: 5rem;
  }
}
.line-box::before {
  height: 1px;
  width: 100px;
}
@media only screen and (max-width: 559px) {
  .line-box::before {
    width: 5rem;
  }
}

.line-box::after, .line-box::before {
  content: "";
  position: fixed;
  top: 40;
  left: 40;
  background: #c0bfc7;
}

.line1::before, .line2::before {
  animation: line_hr 2s ease-in-out 0s infinite normal;
}
@media only screen and (max-width: 559px) {
  .line1::before, .line2::before {
    animation: line_hr_s 2s ease-in-out 0s infinite normal;
  }
}

.line3::before, .line4::before {
  animation: line_hl 2s ease-in-out 0s infinite normal;
}
@media only screen and (max-width: 559px) {
  .line3::before, .line4::before {
    animation: line_hl_s 2s ease-in-out 0s infinite normal;
  }
}

.line2::after, .line4::after {
  animation: line_vt 2.5s ease-in-out 0s infinite normal;
}
@media only screen and (max-width: 559px) {
  .line2::after, .line4::after {
    animation: line_vt_s 2.5s ease-in-out 0s infinite normal;
  }
}

.line1::after, .line3::after {
  animation: line_vt 2.5s ease-in-out 0s infinite normal;
}
@media only screen and (max-width: 559px) {
  .line1::after, .line3::after {
    animation: line_vt_s 2.5s ease-in-out 0s infinite normal;
  }
}

.line1 {
  top: 8rem;
  left: 8rem;
}
@media only screen and (max-width: 959px) {
  .line1 {
    top: 2rem;
    left: 2rem;
  }
}

.line2 {
  top: 8rem;
  right: 8rem;
}
@media only screen and (max-width: 959px) {
  .line2 {
    top: 2rem;
    right: 2rem;
  }
}
.line2::before {
  right: 80px;
}
@media only screen and (max-width: 959px) {
  .line2::before {
    right: 2rem;
  }
}

.line3 {
  bottom: 8rem;
  left: 8rem;
}
@media only screen and (max-width: 959px) {
  .line3 {
    bottom: 2rem;
    left: 2rem;
  }
}
.line3::after {
  bottom: 80px;
}
@media only screen and (max-width: 959px) {
  .line3::after {
    bottom: 2rem;
  }
}

.line4 {
  bottom: 8rem;
  right: 8rem;
}
@media only screen and (max-width: 959px) {
  .line4 {
    bottom: 2rem;
    right: 2rem;
  }
}
.line4::after {
  bottom: 80px;
}
@media only screen and (max-width: 959px) {
  .line4::after {
    bottom: 2rem;
  }
}
.line4::before {
  right: 80px;
}
@media only screen and (max-width: 959px) {
  .line4::before {
    right: 2rem;
  }
}

@keyframes line_hr {
  0% {
    opacity: 0;
    width: 0px;
  }
  100% {
    opacity: 1;
    width: 100px;
  }
}
@keyframes line_hr_s {
  0% {
    opacity: 0;
    width: 0px;
  }
  100% {
    opacity: 1;
    width: 50px;
  }
}
@keyframes line_hl {
  0% {
    opacity: 1;
    width: 100px;
  }
  100% {
    opacity: 0;
    width: 0px;
  }
}
@keyframes line_hl_s {
  0% {
    opacity: 1;
    width: 50px;
  }
  100% {
    opacity: 0;
    width: 0px;
  }
}
@keyframes line_vt {
  0% {
    opacity: 0;
    height: 0px;
  }
  100% {
    opacity: 1;
    height: 100px;
  }
}
@keyframes line_vt_s {
  0% {
    opacity: 0;
    height: 0px;
  }
  100% {
    opacity: 1;
    height: 50px;
  }
}
@keyframes line_vb {
  0% {
    opacity: 1;
    height: 100px;
  }
  100% {
    opacity: 0;
    height: 0px;
  }
}
@keyframes line_vb_s {
  0% {
    opacity: 1;
    height: 50px;
  }
  100% {
    opacity: 0;
    height: 0px;
  }
}
.content-box {
  margin: 121px 0;
  padding: 0 121px;
}
@media only screen and (max-width: 959px) {
  .content-box {
    padding: 0 4.1rem;
  }
}
@media only screen and (max-width: 559px) {
  .content-box {
    margin: 90px 0;
    padding: 0 2em;
  }
}

.detail_skill {
  font-size: 1.6rem;
  background-color: #efefef;
  padding: 1em;
  margin-top: 1em;
  line-height: 1.6em;
}
@media only screen and (max-width: 559px) {
  .detail_skill {
    font-size: 1.4rem;
  }
}

header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1001;
}
@media only screen and (max-width: 959px) {
  header {
    top: 4.1rem;
  }
}
header .header-inner {
  margin: 121px 121px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 959px) {
  header .header-inner {
    top: 4.1rem;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 41px;
  }
}
header .header-inner h1 a {
  display: block;
}

h1 {
  width: 146px;
}
@media only screen and (max-width: 959px) {
  h1 {
    width: 105px;
  }
}
h1 svg {
  fill: #010025;
  transition: ease 0.7s;
}
h1 svg:hover {
  fill: #0a06b6;
}

.top_cont {
  /* 背景の枠とはみ出た部分を非表示に設定 */
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  background-image: linear-gradient(transparent, rgba(255, 255, 255, 0.6117647059) 6%, rgba(255, 255, 255, 0.6901960784) 12%, #ffffff 18%, #ffffff);
}

.item {
  /* 回転位置の設定 */
  position: absolute;
  top: 70%;
  left: 50%;
  width: 50%;
  height: 50%;
  /* 回転アニメーション */
  transform-origin: 0 0;
  animation-name: rotate-item;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.item-01 {
  z-index: 3; /* 円の重ね順の設定 */
  animation-duration: 15s; /* 15秒かけて回転 */
}

.item-02 {
  z-index: 2;
  left: 45%;
  animation-duration: 20s;
  animation-direction: reverse; /* 回転アニメーション反転 */
}

.item-03 {
  z-index: 4;
  left: 40%;
  animation-duration: 8s;
}

.item-04 {
  z-index: 1;
  animation-duration: 10s;
}

/* 円の設定 */
.round {
  position: relative;
  border-radius: 50%;
}

.round-01 {
  z-index: 3;
  top: 0%;
  width: 18vw;
  height: 18vw;
  background: rgba(245, 115, 121, 0.5450980392);
  filter: blur(50px); /* ぼかし具合 */
  animation: flash 5s linear infinite; /* 5秒かけて点滅 */
}

.round-02 {
  top: 7%;
  width: 30vw;
  height: 30vw;
  background-color: rgba(171, 237, 244, 0.7725490196);
  filter: blur(20px);
  animation: flash 3s linear infinite;
}

.round-03 {
  top: 40%;
  width: 3vw;
  height: 3vw;
  background-color: #FADC90;
  filter: blur(10px);
  animation: flash 3s linear infinite;
}

.round-04 {
  top: 8%;
  left: -60%;
  width: 40vw;
  height: 40vw;
  background-color: rgba(144, 255, 125, 0.1882352941);
  filter: blur(40px);
  animation: flash 10s linear infinite;
}

/* 回転アニメーション */
@keyframes rotate-item {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 点滅アニメーション */
@keyframes flash {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
}
.top_cont {
  position: relative;
  margin-top: 100vh;
  backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}

.top_cont_inner {
  padding: 26rem 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 959px) {
  .top_cont_inner {
    padding: 14rem 0;
  }
}
@media only screen and (max-width: 559px) {
  .top_cont_inner {
    padding: 12rem 0;
  }
}

.top_cont_ttl {
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 2em;
}
@media only screen and (max-width: 959px) {
  .top_cont_ttl {
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 559px) {
  .top_cont_ttl {
    font-size: 5rem;
    margin-bottom: 0.5em;
  }
}

.top_about_inner {
  display: flex;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.3803921569);
  padding: 6rem 3rem;
  margin-bottom: 12rem;
}
@media only screen and (max-width: 959px) {
  .top_about_inner {
    flex-direction: column;
    padding: 4rem 3rem;
    gap: 2em;
    margin-bottom: 8rem;
  }
}
@media only screen and (max-width: 559px) {
  .top_about_inner {
    padding: 4rem 2rem;
    margin-bottom: 6rem;
  }
}

.top_about_l {
  font-family: "Kiwi Maru", serif;
  width: 50%;
  font-size: 6.4rem;
  line-height: 1.2em;
}
@media only screen and (max-width: 959px) {
  .top_about_l {
    width: 100%;
    font-size: 5rem;
  }
}
@media only screen and (max-width: 559px) {
  .top_about_l {
    font-size: 4.6rem;
  }
}

.top_about_r {
  width: 50%;
  font-size: 1.6rem;
  line-height: 2.4em;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 959px) {
  .top_about_r {
    width: 100%;
    font-size: 1.4rem;
  }
}

.top_work {
  padding: 2em;
}
.top_work ul {
  display: flex;
}
.top_work ul li {
  list-style-type: none;
  background-color: rgba(234, 234, 234, 0.431372549);
  padding: 0;
}
.top_work ul li a {
  border: 1px solid #000;
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 410/475;
  width: 100%;
}
.top_work ul li a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.top_work ul li a:hover img {
  transform: scale(1.05);
}
.top_work ul li a:hover .top_work_txt {
  opacity: 1;
  visibility: visible;
}
.top_work .swiper {
  margin-right: calc(50% - 50vw);
}

.top_work_txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-family: "Kiwi Maru", serif;
  line-height: 1.4em;
}

.swiper-pagination {
  display: flex;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 3em !important;
}

.swiper-pagination-bullet-active {
  background-color: #000 !important;
}

.swiper-pagination-bullet {
  width: 20px !important;
  border-radius: 0 !important;
}

.more_btn {
  width: 100%;
  display: flex;
  justify-content: end;
  margin-top: 3em;
}
.more_btn a {
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
  position: relative;
  transition: all 0.5s;
}
.more_btn a:hover {
  opacity: 0.8;
}
.more_btn a:hover::after {
  width: 100%;
}
.more_btn a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  top: 130%;
  left: 0;
  background-color: #000;
  transition: all 0.5s;
}

.triangle {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin-right: 0.5em;
  background: #000;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

@media only screen and (max-width: 959px) {
  .menu-trigger {
    display: block !important;
  }
}
.menu-trigger {
  display: none;
  position: fixed;
  top: 4.1rem;
  right: 4.1rem;
  width: 27px;
  height: 25px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  z-index: 1001;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}
.menu-trigger span {
  background-color: black;
  display: inline-block;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

nav ul {
  display: flex;
}
@media only screen and (max-width: 959px) {
  nav ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    margin: auto;
    flex-direction: column;
  }
}
@media only screen and (max-width: 959px) {
  nav ul li {
    margin-bottom: 20px;
  }
}
nav ul li a {
  font-weight: 300;
  font-size: 1.8rem;
  display: block;
  padding: 15px 25px;
  color: #010025;
  text-decoration: none;
  transition: ease 0.7s;
}
nav ul li a:hover {
  color: #0a06b6;
}
@media only screen and (max-width: 959px) {
  nav ul li a {
    text-align: center;
    padding: 20px 35px;
  }
}

#navigation {
  position: relative;
}
@media only screen and (max-width: 959px) {
  #navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    display: none;
  }
  #navigation.set {
    display: block;
  }
}

#slide-line {
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: #0a06b6;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.content {
  padding-top: 88px;
}
@media only screen and (max-width: 959px) {
  .content {
    padding-top: 40px;
  }
}

.pcOnly {
  display: block;
}
@media only screen and (max-width: 559px) {
  .pcOnly {
    display: none;
  }
}

.spOnly {
  display: none;
}
@media only screen and (max-width: 559px) {
  .spOnly {
    display: block;
  }
}/*# sourceMappingURL=base.css.map */