@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap"); /*-- settingフォルダの中の_index.scss --*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 20px;
  height: 50px;
  z-index: 888;
  color: #fff;
  transform: translate(-50%, -50%);
  /* 線の描写 */
  /*高さ・位置・透過が変化して線が上から下に動く*/
}
.scrolldown1 span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #eee;
  letter-spacing: 0.05em;
  font-size: 1.6em;
}
.scrolldown1:after {
  content: "";
  position: absolute;
  top: 2px;
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
  left: 5px;
}
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

/* スクロールCSS */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-title-conteiner {
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.3s, opacity 1.3s, visibility 1.3s;
}

.is-fadein {
  transform: translateX(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media screen and (min-width: 1041px) {
  #stalker {
    pointer-events: none;
    position: fixed;
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    transition: transform 0.1s, top, 0.2s, left 0.2s, width 0.5s, height 0.5s, background-color 0.5s;
    transition-timing-function: ease-out;
    z-index: 999;
  }
  #stalker.hov_ {
    top: -32px;
    left: -32px;
    width: 64px;
    height: 64px;
    transition: 0.5s;
    background: rgba(255, 0, 0, 0.4);
  }
}
/*-- globalフォルダの直下の_index.scss --*/
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

section {
  padding: 0 40px;
  width: 100%;
}
@media screen and (min-width: 1281px) {
  section {
    width: 1280px;
    margin: 0 auto;
    padding-top: 10rem;
  }
}

/*-- foundationフォルダの中の_index.scss --*/
header {
  display: flex;
  justify-content: space-between;
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  align-items: center;
  padding: 25px 200px;
  transition: 0.5s ease;
  font-family: "Playfair Display", serif;
  position: fixed;
}
header .header-inner {
  display: contents;
}
header .brand {
  color: #fff;
  font-weight: 700;
  font-size: 2.2em;
  text-transform: uppercase;
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
}
header .navigation {
  position: relative;
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
}
header .navigation .navigation-items a {
  position: relative;
  color: #fff;
  font-weight: 500;
  margin-left: 30px;
  transition: 0.3s ease;
  font-size: 1.6em;
}
@media screen and (max-width: 768px) {
  header .navigation .navigation-items a {
    margin-left: 0;
    font-size: 2.2em;
  }
}
header .navigation .navigation-items a::before {
  content: "";
  position: absolute;
  background-color: #62f4ef;
  height: 3px;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.3s ease;
}
header .navigation .navigation-items a:hover:before {
  width: 100%;
}
header ul {
  display: flex;
}

@media screen and (max-width: 768px) {
  header .navigation {
    display: none;
    position: absolute;
    right: 0%;
    top: 0;
    width: 100%;
    background: rgb(35, 35, 35);
    height: 100vh;
  }
}
@media screen and (max-width: 768px) and (max-width: 540px) {
  header .navigation {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  header .menu-btn {
    height: 40px;
    width: 40px;
    position: relative;
    z-index: 999;
    cursor: pointer;
  }
  header .menu-btn .line {
    width: 30px;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
  }
  header .menu-btn .line-top {
    top: 10px;
    transition: all, 0.5s;
  }
  header .menu-btn .line-middle {
    top: 50%;
    transition: all, 0.5s;
  }
  header .menu-btn .line-bottom {
    bottom: 10px;
    transition: all, 0.5s;
  }
  header .menu-btn .line-top.close {
    transition: transform 0.5s;
    transform: translate(-50%, 10px) rotate(45deg);
  }
  header .menu-btn .line-middle.close {
    opacity: 0;
    transition: transform 0.5s;
  }
  header .menu-btn .line-bottom.close {
    transition: transform 0.5s;
    transform: translate(-50%, -8px) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  header .slide-in {
    display: block;
    right: 0;
    transition: 0.5s ease;
  }
}
@media screen and (max-width: 768px) {
  header .navigation .navigation-items {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
  }
  header .navigation .navigation-items ul {
    display: block;
  }
  header .navigation .navigation-items ul .link-item {
    margin-top: 40px;
  }
  header .navigation .navigation-items ul .link-item:first-child {
    margin-top: 0;
  }
}
footer {
  background-color: rgb(43, 43, 43);
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-size: 1.2em;
}

/*-- layoutフォルダの中の_index.scss --*/ /*-- componentフォルダの中の_index.scss --*/
.main {
  background-color: #866884;
  transition: 2.5s ease;
  transition: all 1s;
}
.main.works-active {
  background-color: #69a2ab;
  transition: all 1s;
}
.main.skill-active {
  background-color: #1e1f1f;
  transition: all 1s;
}
.main.contact-active {
  background-color: #1e3c71;
  transition: all 1s;
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 100px 200px;
  background-color: #5197cc;
}
.home::before {
  z-index: 777;
  content: "";
  position: absolute;
  background-color: rgba(3, 96, 251, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home .content {
  z-index: 888;
  width: 70%;
  margin-top: 10px;
  display: none;
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
}
.home .content .font-style {
  color: #62f4ef;
}
.home .content p {
  margin-bottom: 30px;
  font-size: 1.8em;
  color: #fff;
}
.home .content a {
  background-color: rgb(129, 66, 128);
  padding: 7px 15px;
  /* font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem); */
  font-weight: 500;
  border-radius: 2px;
  transition: 0.3s ease;
  box-shadow: 1px 2px 2px 1px #323232;
  border-radius: 2px;
  letter-spacing: 0.1rem;
}
.home .content a:hover {
  background-color: #946e9e;
}
.home .active {
  display: block;
}
.home h1 {
  font-size: 6.4em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 5px;
  margin-bottom: 20px;
  color: #fff;
}
.home h1 span {
  color: c-span;
}

.slider-navgation {
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 12px;
}
.slider-navgation .nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 2px 2px 2px rgba(30, 28, 28, 0.5);
  transition: 0.3s ease;
  background-color: #fff;
}
.slider-navgation .nav-btn:not(:last-child) {
  margin-right: 20px;
}
.slider-navgation .nav-btn:hover {
  transform: scale(1.3);
}

@media screen and (max-width: 1040px) {
  header {
    padding: 15px 20px;
  }
  .home {
    padding: 100px 20px;
  }
}
.mv video {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.mv .video-slide {
  position: absolute;
  width: 100%;
  -webkit-clip-path: circle(0% at 0 50%);
          clip-path: circle(0% at 0 50%);
}
.mv .active {
  -webkit-clip-path: circle(150% at 0 50%);
          clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}

.section-about-conteiner {
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.3s, opacity 1.3s, visibility 1.3s;
}

.section-title-conteiner {
  display: inline-block;
  margin-bottom: 5rem;
  padding-top: 100px;
}
.section-title-conteiner .section-title {
  font-size: 5.4em;
}
.section-title-conteiner .section-subtitle-conteiner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.section-title-conteiner .section-subtitle-conteiner .star {
  position: relative;
}
.section-title-conteiner .section-subtitle-conteiner .star:before, .section-title-conteiner .section-subtitle-conteiner .star:after {
  width: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  height: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  content: "";
  width: 10px;
  height: 10px;
  background: #ffffff;
  transform: rotate(45deg);
  position: absolute;
}
.section-title-conteiner .section-subtitle-conteiner .star:before {
  top: -5px;
  right: -15px;
}
.section-title-conteiner .section-subtitle-conteiner .star:after {
  bottom: -5px;
  left: -15px;
}
.section-title-conteiner .section-subtitle-conteiner .subtitle-number {
  width: clamp(2.5rem, 2.045rem + 2.27vw, 3.75rem);
  height: clamp(2.5rem, 2.045rem + 2.27vw, 3.75rem);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  padding-bottom: 5px;
}
.section-title-conteiner .section-subtitle-conteiner .section-subtitle {
  font-size: 2em;
}

.d-grid {
  display: grid;
}

.portfolio-cards {
  gap: 2.5rem;
  grid-template-columns: repeat(8, 1fr);
}
.portfolio-cards .portfolio-card {
  display: block;
  max-width: 800px;
}
.portfolio-cards .portfolio-card:hover .card-image {
  background-color: #ff7575;
  transition: background-color 0.3s;
}
.portfolio-cards .portfolio-card .card-image {
  height: 25rem;
  background-color: #b3bbce;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}
.portfolio-cards .portfolio-card .card-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 4rem 2rem;
}
.portfolio-cards .portfolio-card .card-heading .card-title {
  font-size: 2.2em;
}
.portfolio-cards .portfolio-card .card-heading .card-subtitle {
  font-size: 1.6em;
  opacity: 0.8;
  letter-spacing: 0.15rem;
}
.portfolio-cards .portfolio-card p {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 1.6em;
}
.portfolio-cards .portfolio-card-1 {
  grid-column: 1/5;
  grid-row: 1/span 10;
}
.portfolio-cards .portfolio-card-2 {
  grid-column: 5/-2;
  grid-row: 2/span 10;
}
.portfolio-cards .portfolio-card-3 {
  grid-column: 1/5;
  grid-row: 11/span 10;
}
.portfolio-cards .portfolio-card-4 {
  grid-column: 5/-1;
  grid-row: 12/span 10;
}
.portfolio-cards .portfolio-card-5 {
  grid-column: 1/5;
  grid-row: 21/span 10;
}
.portfolio-cards .portfolio-card-6 {
  grid-column: 5/8;
  grid-row: 22/span 10;
}
.portfolio-cards .portfolio-card-7 {
  grid-column: 3/7;
  grid-row: 31/span 10;
  position: relative;
}
.portfolio-cards .large-button-contauner {
  display: flex;
}
.portfolio-cards .large-button-contauner .large-button {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3em;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  margin: auto;
  border: 2px solid #fff;
}
.portfolio-cards .large-button-contauner .button-fill {
  position: relative;
  transition: color 0.3s;
  overflow: hidden;
}
.portfolio-cards .large-button-contauner .button-fill:hover {
  color: #fff;
  z-index: 2;
}
.portfolio-cards .large-button-contauner .button-fill:hover:before {
  transform: scale(1);
}
.portfolio-cards .large-button-contauner .button-fill:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #4f5052;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  transform-origin: bottom left;
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@media screen and (max-width: 768px) {
  body.active {
    height: 100%;
    overflow: hidden;
  }
  .section-wrapper {
    display: flex;
    justify-content: center;
  }
  .section-wrapper .section-title-conteiner {
    margin-bottom: 2rem;
  }
  .section-wrapper .section-title-conteiner .section-title {
    font-size: 4.4em;
  }
  .home .content {
    text-align: center;
    width: 100%;
  }
  .home .content h1 {
    font-size: 5.5em;
  }
  .portfolio-cards .portfolio-card .card-image img {
    padding: 1rem 0.5rem;
  }
}
@media screen and (max-width: 560px) {
  .section-wrapper .section-title-conteiner .section-title {
    font-size: 3.2em;
    text-align: center;
    margin-bottom: 5px;
  }
  .d-grid {
    display: block;
  }
  .portfolio-cards .portfolio-card {
    margin-top: 30px;
  }
  .portfolio-cards .portfolio-card .card-image {
    height: 20rem;
    margin-bottom: 5px;
  }
  .portfolio-cards .portfolio-card .card-heading .card-title {
    font-size: 1.8em;
  }
  .portfolio-cards .portfolio-card p {
    top: 120px;
  }
  .portfolio-cards .large-button-contauner .large-button {
    width: 6rem;
    height: 6rem;
    font-size: 2em;
  }
}
@media screen and (max-width: 560px) {
  .home .content {
    width: 100%;
  }
  .home .content h1 {
    text-align: center;
    font-size: 3.2em;
    line-height: 1.1;
  }
  .home .content .read {
    display: flex;
    justify-content: center;
  }
  .home .content p {
    margin-bottom: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
}
input[type=submit],
input[type=button] {
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.contact-form {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.3s, opacity 1.3s, visibility 1.3s;
}
.contact-form .wpcf7-form p {
  margin-top: 40px;
  font-size: 1.6em;
}
.contact-form .wpcf7-form p .required {
  background: #ac5050;
  font-size: 14px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-right: 10px;
  font-weight: bold;
}
.contact-form .wpcf7-form p .wpcf7-text, .contact-form .wpcf7-form p .wpcf7-textarea {
  width: 700px;
  color: #1e1f1f;
  margin-top: 9px;
  padding: 5px;
  border-radius: 10px;
  border: none;
}
.contact-form .wpcf7-form p .wpcf7-submit {
  width: 200px;
  color: #1e1f1f;
  margin: 0 auto;
  display: block;
  border-radius: 30px;
  height: 50px;
  border: none;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 3px 3px 3px #1d1d1d;
}
.contact-form .wpcf7-form p .wpcf7-submit:hover {
  background: rgb(48, 48, 48);
  color: #fff;
  transition: all 0.3s;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
  font-size: 1.6em;
  border-radius: 30px;
}
@media screen and (max-width: 560px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 1040px) {
  .contact-form .wpcf7-form p .wpcf7-text, .contact-form .wpcf7-form p .wpcf7-textarea {
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .contact-form {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .contact-form .wpcf7-form p .wpcf7-text, .contact-form .wpcf7-form p .wpcf7-textarea {
    width: 100%;
  }
}
.section-about-conteiner {
  display: flex;
  padding: 85px 0;
  justify-content: center;
  margin: 0 calc(50% - 50vw);
  background-color: rgb(19, 19, 19);
  gap: 100px;
}
.section-about-conteiner .section-about-conteiner-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.section-about-conteiner .section-about-conteiner-inner h4 {
  margin-bottom: 20px;
  letter-spacing: 0.2rem;
  font-size: 1.6em;
  font-family: "Noto Serif JP", serif;
}
.section-about-conteiner .section-about-conteiner-inner h4 span {
  width: 46%;
  display: inline-block;
}
.section-about-conteiner .about-right,
.section-about-conteiner .about-left {
  width: 48%;
}
.section-about-conteiner .about-right {
  margin-left: 30px;
}
.section-about-conteiner .about-left {
  margin-right: 30px;
}
.section-about-conteiner h3 {
  margin-bottom: 30px;
  font-size: 2.4em;
  color: #d1b367;
}
.section-about-conteiner p {
  line-height: 1.8;
  font-size: 1.6em;
}
.section-about-conteiner .en {
  padding-top: 20px;
}
.section-about-conteiner .ja, .section-about-conteiner .en {
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 768px) {
  .section-about-conteiner .section-about-conteiner-inner {
    display: block;
    width: 80%;
  }
  .section-about-conteiner .about-right,
.section-about-conteiner .about-left {
    width: 100%;
  }
  .section-about-conteiner .about-right {
    margin-left: 0;
  }
  .section-about-conteiner .about-left {
    margin-right: 0;
    margin-top: 30px;
    text-align: center;
  }
  .section-about-conteiner h3 {
    text-align: center;
  }
}
.skills-contentents {
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.3s, opacity 1.3s, visibility 1.3s;
}

.skills-contents-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: clamp(1.875rem, -0.355rem + 4.64vw, 3.125rem);
  color: #4f5052;
}
.skills-contents-inner .skill-card {
  position: relative;
  text-align: center;
  padding: 10px;
  /* background-color: rgba(217, 215, 220, 0.2); */
}
.skills-contents-inner .skill-card .skill-img {
  width: 150px;
  margin: 0 auto;
}
.skills-contents-inner .skill-card .skill-name {
  font-size: 1.6em;
  margin: 50px 0 10px 0;
}
.skills-contents-inner .skill-card .skill-level {
  position: absolute;
  top: 100px;
  right: clamp(1.875rem, -2.586rem + 9.28vw, 4.375rem);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}
.skills-contents-inner .skill-card .skill-info {
  font-size: 1.6em;
}

.html {
  background-color: rgba(250, 169, 97, 0.5);
  border: solid 7px #f48842;
}

.css {
  background-color: rgba(90, 185, 249, 0.5);
  border: solid 7px #42c2f4;
}

.sass {
  background-color: rgba(239, 43, 171, 0.5);
  border: solid 7px #bb51a9;
}

.javascript {
  border: solid 7px #faec5d;
  background-color: rgba(233, 230, 108, 0.5);
}

.wordpress {
  border: solid 7px #397ee6;
  background-color: rgba(66, 114, 179, 0.5);
}

.git {
  border: solid 7px #de3e0d;
  background-color: rgba(223, 91, 24, 0.5);
}

.xd {
  border: solid 7px #de2a88;
  background-color: rgba(228, 87, 166, 0.5);
}

.illustrator {
  border: solid 7px #ff5721;
  background-color: rgba(255, 110, 36, 0.5);
}

.photoshop {
  border: solid 7px #4fe6ff;
  background-color: rgba(58, 78, 149, 0.5);
}

@media screen and (max-width: 768px) {
  .skills-contents-inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .portfolio-cards .portfolio-card-2 {
    grid-column: 5/-1;
  }
  .portfolio-cards .portfolio-card-6 {
    grid-column: 5/9;
  }
}
@media screen and (max-width: 768px) {
  .skills-contents-inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .skills-contents-inner .skill-card .skill-level {
    width: 100px;
    height: 100px;
    top: 100px;
  }
}
@media screen and (max-width: 560px) {
  .skills-contents-inner {
    display: block;
  }
  .skills-contents-inner .skill-card .skill-img {
    width: 120px;
  }
  .skills-contents-inner .skill-card .skill-level {
    top: 90px;
    right: clamp(1.875rem, -8.125rem + 50vw, 9.375rem);
    width: 80px;
    height: 80px;
  }
  .card-heading {
    text-align: center;
  }
  .html {
    background-color: rgba(250, 169, 97, 0.5);
    border: solid 5px #f48842;
  }
  .css {
    background-color: rgba(90, 185, 249, 0.5);
    border: solid 5px #42c2f4;
  }
  .sass {
    background-color: rgba(239, 43, 171, 0.5);
    border: solid 5px #bb51a9;
  }
  .javascript {
    border: solid 5px #faec5d;
    background-color: rgba(233, 230, 108, 0.5);
  }
  .wordpress {
    border: solid 5px #397ee6;
    background-color: rgba(66, 114, 179, 0.5);
  }
  .git {
    border: solid 5px #de3e0d;
    background-color: rgba(223, 91, 24, 0.5);
  }
  .xd {
    border: solid 5px #de2a88;
    background-color: rgba(228, 87, 166, 0.5);
  }
  .illustrator {
    border: solid 5px #ff5721;
    background-color: rgba(255, 110, 36, 0.5);
  }
  .photoshop {
    border: solid 5px #4fe6ff;
    background-color: rgba(58, 78, 149, 0.5);
  }
}
/*-- projectフォルダの中の_index.scss --*/
video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}