@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sevillana&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
  color: #fefefe;
  transition: 0.7s;
  background-image: url("../images/kariBG.png");
  background-size: contain;
}
@media (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #fefefe;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

.wrapper {
  max-width: 1500px;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  background: rgba(17, 0, 51, 0.5);
  box-shadow: 0 0 10px 15px rgba(17, 0, 51, 0.5);
  transition: 0.7s;
}

.darkWrapper {
  max-width: 1500px;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  background: rgba(254, 254, 254, 0.8);
  color: #110033;
  box-shadow: 0 0 10px 15px rgba(254, 254, 254, 0.8);
  transition: 0.7s;
}

.header {
  display: flex;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 770px) {
  .header {
    height: 40px;
  }
}

.logo {
  margin-left: 20px;
  font-family: "Sevillana", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  color: #fefefe;
  transition: 0.7s;
}
@media (max-width: 770px) {
  .logo {
    font-size: 30px;
  }
}

.change-button {
  height: 80px;
}
@media (max-width: 770px) {
  .change-button {
    height: 40px;
  }
}

#btn {
  background: #fefefe;
  padding: 10px;
  color: #110033;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
}

/* === ボタンを表示するエリア ============================== */
.switchArea {
  line-height: 34px; /* 1行の高さ          */
  letter-spacing: 0; /* 文字間             */
  text-align: center; /* 文字位置は中央     */
  font-size: 14px; /* 文字サイズ         */
  position: relative; /* 親要素が基点       */
  margin: 20px; /* 中央寄せ           */
  width: 100px; /* ボタンの横幅       */
  background: transparent; /* デフォルト背景色   */
}
@media (max-width: 770px) {
  .switchArea {
    margin: 10px;
    width: 80px;
    line-height: 28px;
  }
}

/* === チェックボックス ==================================== */
.switchArea input[type=checkbox] {
  display: none; /* チェックボックス非表示 */
}

/* === チェックボックスのラベル（標準） ==================== */
.switchArea label {
  display: block; /* ボックス要素に変更 */
  box-sizing: border-box; /* 枠線を含んだサイズ */
  height: 34px; /* ボタンの高さ       */
  border: 2px solid #fefefe; /* 未選択タブのの枠線 */
  border-radius: 17px; /* 角丸               */
}
@media (max-width: 770px) {
  .switchArea label {
    height: 30px;
  }
}

/* === チェックボックスのラベル（ONのとき） ================ */
.switchArea input[type=checkbox]:checked + label {
  border-color: #110033; /* 選択タブの枠線     */
}

/* === 表示する文字（標準） ================================ */
.switchArea label span:after {
  content: "OFF"; /* 表示する文字       */
  padding: 0 0 0 20px; /* 表示する位置       */
  color: #fefefe; /* 文字色             */
}
@media (max-width: 770px) {
  .switchArea label span:after {
    padding-left: 15px;
  }
}

/* === 表示する文字（ONのとき） ============================ */
.switchArea input[type=checkbox]:checked + label span:after {
  content: "ON"; /* 表示する文字       */
  padding: 0 20px 0 0; /* 表示する位置       */
  color: #110033; /* 文字色             */
}

/* === 丸部分のSTYLE（標準） =============================== */
.switchArea #swImg {
  position: absolute; /* 親要素からの相対位置*/
  width: 26px; /* 丸の横幅           */
  height: 26px; /* 丸の高さ           */
  background: #fefefe; /* カーソルタブの背景 */
  top: 4px; /* 親要素からの位置   */
  left: 4px; /* 親要素からの位置   */
  border-radius: 13px; /* 角丸               */
  transition: 0.2s; /* 滑らか変化         */
}
@media (max-width: 770px) {
  .switchArea #swImg {
    width: 22px;
    height: 22px;
  }
}

/* === 丸部分のSTYLE（ONのとき） =========================== */
.switchArea input[type=checkbox]:checked ~ #swImg {
  transform: translateX(65px); /* 丸も右へ移動       */
  background: #110033; /* カーソルタブの背景 */
}
@media (max-width: 770px) {
  .switchArea input[type=checkbox]:checked ~ #swImg {
    transform: translateX(48px);
  }
}

main {
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 770px) {
  main {
    margin: 30px auto 0;
  }
}

.sec-top {
  display: flex;
  justify-content: space-between;
  height: 90vh;
  margin-bottom: 100px;
}
@media (max-width: 770px) {
  .sec-top {
    margin: 0 2rem 100px;
    justify-content: flex-start;
    flex-direction: column;
  }
}

.title-box {
  width: 49%;
  margin-top: 10%;
  line-height: 100px;
}

h1 {
  margin: 0;
  font-size: 100px;
  font-weight: 400;
}
@media (max-width: 770px) {
  h1 {
    font-size: 60px;
  }
}

.top-menu {
  width: 40%;
  margin-top: 20%;
  position: relative;
}
.top-menu nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.top-menu ul {
  position: relative;
  margin: 0;
  padding: 0;
}
.top-menu li {
  font-size: 40px;
  font-weight: 300;
}
@media (max-width: 770px) {
  .top-menu li {
    font-size: 35px;
  }
}
@media (max-width: 770px) {
  .top-menu {
    width: 100%;
    margin-top: 10%;
  }
}

.li1,
.li2,
.li3 {
  border-radius: 50%;
  transition: 0.7s;
  opacity: 0.7;
}
.li1:hover,
.li2:hover,
.li3:hover {
  background-color: #110033;
  opacity: 1;
}
@media (max-width: 770px) {
  .li1,
  .li2,
  .li3 {
    background-color: transparent;
  }
}

.grid {
  width: 450px;
  height: 450px;
  display: grid;
  margin: 0 auto;
}
@media (max-width: 770px) {
  .grid {
    width: 340px;
    height: 340px;
  }
}

.box-a {
  display: none;
}
@media (max-width: 770px) {
  .box-a {
    grid-column: 1/2;
    gird-row: 1/2;
  }
}

.box-b {
  grid-column: 1/3;
  grid-row: 1/2;
  margin-left: 10px;
}
@media (max-width: 770px) {
  .box-b {
    grid-column: 2/3;
    gird-row: 1/2;
    text-align: left;
    line-height: 40px;
  }
}

.box-c {
  grid-column: 3/4;
  grid-row: 1/2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 770px) {
  .box-c {
    justify-content: flex-start;
  }
}

.box-d {
  grid-column: 1/3;
  grid-row: 2/3;
  text-align: left;
  padding-top: 70px;
}
@media (max-width: 770px) {
  .box-d {
    text-align: center;
    padding-top: 20px;
  }
}

.box-e {
  grid-column: 3/4;
  grid-row: 2/3;
  padding-top: 30px;
  padding-left: 20px;
}

.circle-line {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: solid 1px #fefefe;
  transition: 0.7s;
}
@media (max-width: 770px) {
  .circle-line {
    width: 250px;
    height: 250px;
    margin-left: 25px;
  }
}

.circle-fillin {
  position: absolute;
  top: 300px;
  left: 300px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fefefe;
  transition: 0.7s;
}
@media (max-width: 770px) {
  .circle-fillin {
    position: static;
    width: 50px;
    height: 50px;
  }
}

.sec-title-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}
.sec-title-box h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 300;
}
@media (max-width: 770px) {
  .sec-title-box {
    flex-direction: column;
  }
  .sec-title-box h2 {
    margin: 0 auto;
    font-size: 40px;
  }
}

.sec-works {
  margin-bottom: 300px;
}
@media (max-width: 770px) {
  .sec-works {
    margin: 0 auto 100px;
  }
}

.works-menu ul {
  display: flex;
}
.works-menu li {
  margin-right: 1rem;
}
@media (max-width: 770px) {
  .works-menu {
    margin: 0 auto;
  }
}

.works-box {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 770px) {
  .works-box {
    flex-direction: column;
  }
}

.works-content {
  position: relative;
  width: 33%;
}
@media (max-width: 770px) {
  .works-content {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
}

.work-img {
  width: 250px;
}
@media (max-width: 770px) {
  .work-img {
    width: 80%;
  }
}

/*.txt-box {
    position: absolute;
    top: 80%;
    right: 10%;
    width: 60%;
    height: 40%;
    margin: 0;
    padding: 10px;
    border: $white1 solid 1px;
    border-radius: 20px;
    background: $navy2;
    p {
        margin: 0;
        font-size: 15px;
    }
    span {
        font-size: 13px;
    }
    @media (max-width: 770px) {
        left: 10%;
        width: 80%;
        height: 25%;
    }
}*/
.work-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 350px;
  display: grid;
  margin: 0 auto;
  z-index: 100;
}
@media (max-width: 770px) {
  .work-grid {
    width: 100%;
    height: 100%;
  }
}

.txt-box {
  margin: 0;
  padding: 10px;
  width: 220px;
  border: #fefefe solid 1px;
  border-radius: 20px;
  background: rgba(17, 0, 51, 0.5);
}
.txt-box p {
  margin: 0;
  font-size: 15px;
}
.txt-box span {
  font-size: 13px;
}

.box-f {
  grid-column: 1/3;
  grid-row: 1/2;
  height: 100px;
}

.box-g {
  grid-column: 1/2;
  grid-row: 2/3;
  width: 100px;
  height: 75px;
}
.box-g:after {
  display: inline-block;
  content: "";
  width: 51%;
  height: 1px;
  margin-top: 95px;
  background: #fefefe;
  transform: rotate(-30deg);
}

.box-h {
  grid-column: 2/3;
  grid-row: 2/4;
  height: 125px;
  width: 250px;
  display: flex;
  align-items: flex-end;
}

.box-i {
  grid-column: 1/2;
  grid-row: 3/4;
  width: 100px;
  height: 75px;
  border-top: solid 1px #fefefe;
}

@media (max-width: 770px) {
  .box-f {
    width: 100%;
    height: 100%;
  }
  .box-g {
    width: 100%;
    height: 100%;
  }
  .box-g:after {
    display: none;
  }
  .box-h {
    width: 100%;
    height: 100%;
  }
  .box-i {
    width: 100%;
    height: 100%;
    border: 0;
  }
}
aside {
  position: fixed;
  right: 15px;
  bottom: 5px;
}
aside ul {
  margin-bottom: 0;
}

.li4 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: 1s;
  opacity: 0.7;
}
.li4:hover {
  opacity: 1;
}
.li4:after {
  display: inline-block;
  content: "";
  width: 25px;
  height: 1px;
  margin-left: 5px;
  background: #fefefe;
}

.li5 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0.7;
}
.li5:after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 1px;
  margin-left: 5px;
  background: #fefefe;
}

@media (max-width: 770px) {
  aside {
    right: 0;
    bottom: 0;
  }
}
.sec-about {
  margin-bottom: 300px;
}
@media (max-width: 770px) {
  .sec-about {
    margin-bottom: 100px;
  }
}

.about-box {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 770px) {
  .about-box {
    flex-direction: column;
    margin: 20px auto 0;
  }
}

.about-photo {
  width: 49%;
  text-align: center;
}
@media (max-width: 770px) {
  .about-photo {
    width: 100%;
  }
}

.about-img {
  width: 400px;
}
@media (max-width: 770px) {
  .about-img {
    width: 80%;
  }
}

.about-txt-box {
  width: 49%;
}
.about-txt-box h3 {
  font-size: 50px;
  margin: 0;
}
@media (max-width: 770px) {
  .about-txt-box {
    width: 100%;
    margin: 0 auto;
  }
  .about-txt-box h3 {
    font-size: 35px;
    text-align: center;
  }
  .about-txt-box p {
    margin: 2rem;
  }
}

.more-button {
  position: relative;
  font-size: 40px;
  font-weight: 300;
  width: 130px;
}
.more-button p {
  position: relative;
  margin: 0;
}
@media (max-width: 770px) {
  .more-button {
    margin: 0 auto;
    text-align: center;
  }
}

.s-circle-line {
  position: absolute;
  top: 10px;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: solid 1px #fefefe;
}
@media (max-width: 770px) {
  .s-circle-line {
    top: 10%;
    left: 50%;
  }
}

.s-circle-fillin {
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fefefe;
}
@media (max-width: 770px) {
  .s-circle-fillin {
    bottom: 5%;
    left: 50%;
    width: 20px;
    height: 20px;
  }
}

.sub-about {
  display: flex;
  flex-direction: column;
  margin-bottom: 150px;
}
@media (max-width: 770px) {
  .sub-about {
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
}

.sub-about-photo,
.sub-about-txt-box {
  margin: 0 auto;
}

.sub-about-photo {
  text-align: center;
}

.sub-about-img {
  width: 400px;
}
@media (max-width: 770px) {
  .sub-about-img {
    width: 90%;
  }
}

.sub-about-txt-box {
  width: 50%;
}
.sub-about-txt-box h3 {
  margin: 0;
  text-align: center;
  font-size: 50px;
  font-weight: 300;
}
@media (max-width: 770px) {
  .sub-about-txt-box {
    width: 100%;
  }
  .sub-about-txt-box h3 {
    font-size: 40px;
  }
  .sub-about-txt-box p {
    margin: 1rem;
  }
}

@media (max-width: 770px) {
  .sec-skill {
    margin-bottom: 50px;
  }
}

.skill-box {
  display: flex;
  justify-content: space-around;
  max-width: 1100px;
  margin: 0 auto 70px;
}
@media (max-width: 770px) {
  .skill-box {
    flex-direction: column;
  }
}

.skill-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 49%;
}
.skill-content h3 {
  margin: 0;
  text-align: center;
  font-size: 40px;
  font-weight: 300;
}
.skill-content p {
  margin: 0 auto;
  width: 60%;
}
@media (max-width: 770px) {
  .skill-content {
    width: 100%;
    margin-bottom: 50px;
  }
  .skill-content p {
    width: 85%;
  }
}

.skill-img {
  text-align: center;
  width: 350px;
}
@media (max-width: 770px) {
  .skill-img {
    width: 300px;
  }
}

.sec-bio {
  width: 100%;
}

.bio-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 100px;
}
@media (max-width: 770px) {
  .bio-box {
    flex-direction: column;
  }
}

.s-bio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  width: 30%;
}
@media (max-width: 770px) {
  .s-bio-content {
    width: 100%;
    margin-top: 0;
    flex-direction: row;
    align-items: stretch;
  }
}

.plustop {
  margin-top: 100px;
}
@media (max-width: 770px) {
  .plustop {
    margin-top: 0;
  }
}

.bio-contents {
  width: 30%;
  margin: 90px 0 80px;
}
@media (max-width: 770px) {
  .bio-contents {
    width: 100%;
    margin: 30px 0;
  }
}

.plustop2 {
  margin-top: 120px;
}
@media (max-width: 770px) {
  .plustop2 {
    margin-top: 30px;
  }
}

.blue-star {
  transition: 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fefefe;
}
@media (max-width: 770px) {
  .blue-star {
    width: 30px;
    height: 30px;
    margin-left: 10px;
  }
}

.pink-star {
  transition: 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fefefe;
}
@media (max-width: 770px) {
  .pink-star {
    width: 30px;
    height: 30px;
    margin-left: 10px;
  }
}

.s-bio-content .bio-txt {
  width: 140px;
}
.s-bio-content .bio-txt p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 770px) {
  .s-bio-content .bio-txt p {
    text-align: left;
  }
}
.s-bio-content .bio-txt span {
  font-size: 12px;
}
@media (max-width: 770px) {
  .s-bio-content .bio-txt {
    width: 80%;
    margin-left: 1rem;
  }
}

.bio-content {
  transition: 0.3s;
  margin: 0 auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px dashed #ddd;
  color: #110033;
}
.bio-content:hover .bio-txt {
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  transform: translate(0, 0);
  filter: blur(0px);
}
@media (max-width: 770px) {
  .bio-content {
    background: #fefefe;
  }
}

.bio-content .bio-txt {
  margin: 0 auto;
  width: 290px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
  border-radius: 50%;
  background: #fefefe;
  transition: 0.5s;
  transform: translate(0, 60px);
  filter: blur(8px);
}
.bio-content .bio-txt .span {
  margin-top: 2.5rem;
  font-size: 14px;
}
.bio-content .bio-txt h3 {
  font-size: 20px;
  font-weight: normal;
  margin: 1.25rem 0;
}
.bio-content .bio-txt p {
  margin: 0 1rem;
  line-height: 1.25;
}
@media (max-width: 770px) {
  .bio-content .bio-txt {
    transform: none;
    filter: none;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .bio-content .bio-txt h3 {
    font-size: 18px;
  }
  .bio-content .bio-txt p {
    font-size: 15px;
    margin: 0 1.5rem;
  }
}

.sec-contact {
  padding-bottom: 200px;
}

.contact-box {
  margin-top: 20px;
}

.mail-box {
  margin: 0 auto 30px;
  width: 500px;
}
@media (max-width: 770px) {
  .mail-box {
    width: 80%;
  }
}

.sns-box {
  display: flex;
  justify-content: space-around;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 770px) {
  .sns-box {
    width: 80%;
  }
}

.sns-twitter,
.sns-instagram,
.sns-facebook {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: solid 1px #fefefe;
  background: rgba(255, 255, 255, 0.3);
  font-size: 30px;
  text-align: center;
  line-height: 58px;
}

.oshimai-button {
  margin: 0 auto;
}

.copy-link {
  position: relative;
  margin: 0 auto 30px;
  width: 500px;
}
@media (max-width: 770px) {
  .copy-link {
    width: 100%;
  }
}
.copy-link button {
  position: absolute;
  top: 30%;
  left: 38%;
  width: 125px;
  height: 90px;
  border-radius: 45% 35% 50% 40%;
  border: solid 4px #1a004d;
  outline: solid 2px #110033;
  background: #110033;
  color: #fefefe;
  font-size: 26px;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 770px) {
  .copy-link button {
    width: 120px;
    height: 80px;
    font-size: 22px;
  }
}
.copy-link button:active {
  background: #ddd;
}
.copy-link button:before {
  content: "コピーしました！";
  position: absolute;
  top: -35px;
  right: 0px;
  background: transparent;
  padding: 0;
  font-size: 14px;
  display: none;
}
.copy-link.active button::before {
  display: block;
}

input {
  position: absolute;
  top: 65%;
  left: 25%;
  border: none;
  outline: none;
  width: 60%;
  background: transparent;
  color: #fefefe;
  font-size: 20px;
}
@media (max-width: 770px) {
  input {
    top: 70%;
    left: 20%;
    width: 65%;
    font-size: 16px;
  }
}

.footer {
  width: 100%;
  height: 100px;
  background: #110033;
}

.copyright {
  margin: 0 auto;
  text-align: center;
  line-height: 100px;
}

.oshimai-button {
  display: none;
}

.darkText {
  color: #110033;
  transition: 0.7s;
}
.darkText:hover {
  background-color: transparent;
  opacity: 1;
}

.darkArea {
  background: rgba(254, 254, 254, 0.8);
  transition: 0.7s;
}

.darkBorder {
  border: solid 1px #110033;
  transition: 0.7s;
}

.darkBorder2 {
  border: dashed 1px #110033;
}

.navyArea {
  background: #110033;
  transition: 0.7s;
}

.whiteText {
  color: #fefefe;
}/*# sourceMappingURL=style.css.map */