@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;500&family=Kosugi&display=swap");
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap");
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  color: #333;
}

main {
  background-image: url(../images/background.png);
  background-repeat: repeat;
  margin: 0;
  padding: 50px 10px;
  min-height: 100vh;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

img {
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  touch-callout:none;
  user-select:none;
}

a {
  text-decoration: none;
  color: #333;
}

ol,
ul {
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background: #f1eded;
  margin: 2em auto;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6em;
}
p, tr {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.flex {
  display: -webkit-box;
  display: flex;
}

.wrap {
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-box {
  background: white;
  border-radius: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
}

.main-box::after {
  content: '';
  position: absolute;
  bottom: -49px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 50px solid white;
}

h2 {
  font-size: 30px;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  font-family: "Comic Relief", "Josefin Sans", "Kosugi", "san-serif",
  cursive;
}

h2 figure {
  width: 50px;
  margin: 0;
}

.link-box {
  gap: 30px;
  justify-content: center;
  margin-bottom: 80px;
}

.link-set {
  text-align: center;
}

.link-wrapper {
  position: relative;
  text-align: center;
  display: inline-block;
}

.link-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -41px;
  width: 66px;
  height: 84px;
  transform: translate(-50%, 35%) scale(0.7);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shiba .link-wrapper::before {
  left: 50%;
}

.link-wrapper:hover::before {
  transform: translate(-50%, -35%) scale(0.7);
}

.link-set a {
  display: flex;
  width: 200px;
  height: 60px;
  padding: 10px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-decoration: none;
  box-shadow: none;
  font-family: "Comic Relief", "Josefin Sans", "Kosugi", "san-serif",
  cursive;
}

.link-wrapper.xfolio::before,
.link-wrapper.misskey::before,
.link-wrapper.googleform::before,
.link-wrapper.creema::before,
.link-wrapper.game::before,
.link-wrapper.anime::before {
   background-image: url('../images/btnshiba01.png');
 }
.link-wrapper.bluesky::before,
.link-wrapper.skeb::before,
.link-wrapper.booth::before,
.link-wrapper.book::before {
   background-image: url('../images/btnshiba02.png');
  }

.link-set a img {
  width: 140px;
}

.link-set a.googleform img {
  width: 35px;
  margin-right: 10px;
}

.link-set p {
  margin-top: 10px;
}

a.xfolio {
  border: 2px solid #4AB0FF;
  background-color: white;
}

a.bluesky {
  border: 2px solid #1188E2;
  background-color: #1188E2;
}

a.misskey {
  border: 2px solid #4ECE5C;
  background-color: #4ECE5C;
}

a.misskey img {
  width: 120px;
}

a.skeb {
  border: 2px solid #30B396;
  background-color: white;
}

a.googleform {
  border: 2px solid #754DBE;
  background-color: white;
  font-size: 20px;
  font-weight: bold;
}

a.booth {
  border: 2px solid #fc4d50;
  background-color: #fc4d50;
}

a.creema {
  border: 2px solid #828282;
  background-color: white;
  font-size: 20px;
  letter-spacing: 0.2em;
  font-weight: bold;
}

@media (min-width: 720px) {
  .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}

.shiba {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.shiba .gif {
  margin: 80px auto 0;
  width: clamp(200px, 20vw, 300px);
}

.profile {
  width: 30%;
  max-width: 370px;
  background-color: #FFF1CA;
  padding: 20px;
  border-radius: 30px;
  position: absolute;
  top: 0;
  right: 0;
}

.profile::before {
  content: '';
  position: absolute;
  left: -25%;
  top: 127px;
  width: 100px;
  height: 2px;
  background: #FFF1CA;
  border-radius: 3px;
  transform-origin: right center;
  transform: rotate(-25deg);
}

.profile::after {
  content: '';
  position: absolute;
  left: -25%;
  top: 166px;
  width: 12px;
  height: 12px;
  background: #FFF1CA;
  border-radius: 50%;
}

.profile h2 {
  margin-bottom: 2px;
}

.profile-table {
  border: none;
  border-collapse: collapse;
  width: auto;
  table-layout: fixed;
}

.profile-table td {
  padding: 4px 0 4px 12px;
  text-align: left;
  vertical-align: top;
  border: none;
  width: 82px;
}

.profile-table td:nth-child(2) {
  width: auto;
  padding-left: 4px;
}

.profile-table .label {
  position: relative;
  padding-right: 16px;
}

.profile-table .label::after {
  content: '：';
  position: absolute;
  right: 4px;
  top: 4px;
}

.favorite {
  width: 30%;
  max-width: 370px;
  background-color: #FFF1CA;
  padding: 20px;
  border-radius: 30px;
  position: absolute;
  top: 24%;
  left: 0;
}

.favorite::before {
  content: '';
  position: absolute;
  right: -27%;
  top: 67px;
  width: 100px;
  height: 2px;
  background: #FFF1CA;
  border-radius: 3px;
  transform-origin: left center;
  transform: rotate(-25deg);
}

.favorite::after {
  content: '';
  position: absolute;
  right: -26%;
  top: 20px;
  width: 12px;
  height: 12px;
  background: #FFF1CA;
  border-radius: 50%;
}


.favorite .link-box {
  gap: 4px;
  margin: 0;
}

.favorite .link-set a {
  width: 100%;
}

.favorite .link-set a img {
  width: 80px;
}

.favorite .link-set p {
  margin: 0;
}

@media (min-width: 1101px) {
  .profile p br,
  .favorite p br {
    display: none;
  }
}

@media (max-width: 1100px) {
  .link-wrapper.game::before,
  .link-wrapper.book::before,
  .link-wrapper.anime::before {
    display: none;
  }
  .profile p br,
  .favorite p br {
    display: inline;
  }
  .favorite h2 {
    margin-bottom: 2px;
  }
}

@media (max-width: 1024px) {
  .profile,
  .favorite {
    padding: 10px;
  }

  .profile h2,
  .favorite h2 {
    font-size: 25px;
  }

  .profile h2 figure,
  .favorite h2 figure {
    width: 35px;
  }
  .profile tr,
  .favorite p {
    font-size: 14px;
  }

  .profile-table td {
    width: 70px;
  }

  .profile-table td:nth-child(2) {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  main {
    padding: 20px 10px;
  }

  .main-box {
    padding: 20px 10px;
  }

  .main-box h2 {
    margin-bottom: 10px;
  }

  .main-box::after {
    content: '';
    position: absolute;
    bottom: -29px;
    left: 29%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid white;
  }

  .link-box {
    margin-bottom: 40px;
  }

.link-wrapper.xfolio::before,
.link-wrapper.misskey::before,
.link-wrapper.googleform::before,
.link-wrapper.creema::before,
.link-wrapper.game::before,
.link-wrapper.anime::before,
.link-wrapper.bluesky::before,
.link-wrapper.skeb::before,
.link-wrapper.booth::before,
.link-wrapper.book::before {
   display: none;
  }

  .shiba {
    display: flex;
    margin: 0;
    gap: 10px;
  }

  .profile,
  .favorite {
    display: block;
    position: static;
    width: 100%;
    max-width: 310px;
    margin-top: 20px;
    padding: 20px 10px;
  }

  .favorite h2 {
    margin-bottom: 20px;
  }

.profile::before {
  left: -25%;
  top: 127px;
  width: 100px;
  height: 2px;
  transform: rotate(-25deg);
}

  .profile::before,
  .profile::after {
    position: static;
    display: none;
  }

  .favorite::before,
  .favorite::after {
    position: static;
    display: none;
  }
}
@media (min-width: 469px) {
  .sp {
    display: none;
  }
}
@media (max-width: 468px) {
  main {
    background-image: url(../images/background-sp.png);
  }
  .shiba {
    display: block;
  }

  .shiba .gif {
    margin: 50px auto 0;
  }

  .profile,
  .favorite {
    max-width: 100%;
  }

  .main-box::after {
    left: 50%;
  }
  
  .link-box.flex.wrap {
    display: block;
  }

  .link-wrapper {
    width: 100%;
  }

  .link-set a {
    width: 100%;
  }

  .pc {
    display: none;
  }

  .sp {
    display: flex;
    align-items: flex-end;
  }

  .sp figure {
    width: 46px;
    height: 59px;
    margin: 0 15px 0 10px;
  }

  .sp p {
    margin: 0 0 10px;
    padding: 10px 20px;
    background-color: #FFF1CA;
    color: #897368;
    border-radius: 10px;
    position: relative;
  } 

  .sp p::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -9px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 10px solid #FFF1CA;
  }

  .main-box .link-set {
    margin-bottom: 50px;
  }

  .main-box .link-set:last-child {
    margin-bottom: 0;
  }

  .main-box .link-box:last-child {
    margin-bottom: 25px;
  }

  .profile tr,
  .favorite p {
    font-size: 16px;
  }

}
/*----------------------------------
JS用
----------------------------------*/
.reveal-btn {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.link-wrapper.is-hover-ready:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -35%) scale(0.7);
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0s linear 0s;
}
