@charset "UTF-8";
/*
 Share Style <
-------------------------------------------------
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
div,
p,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
table {
  padding: 0;
  margin: 0;
}
#wrap img {
  max-width: 100%;
  width: auto;
  height: auto;
}
#wrap {
  padding: 0 0 1px;
  position: relative;
  background-color: #e9ecf0;
  background-image: url("../images/BackOver.png"), url("../images/Back.png");
  background-repeat: no-repeat, no-repeat;
  background-position:
    top left,
    top right;
  background-size: 100%, 80%;
}

#wrap a,
#wrap a:link {
  color: #d87624;
}
#wrap a:hover {
  color: #df3214;
}

/* header */
#wrap header {
  position: relative;
  max-width: 1600px;
  padding: 50px 0;
  width: 95%;
  margin: 0 auto;
  z-index: 100;
}
#wrap header h1 {
  position: relative;
  max-width: 1600px;
  width: 60%;
  margin: 0;
  z-index: 2;
  animation: h1animation 0.8s ease-in-out;
}

@keyframes h1animation {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#wrap header ul {
  position: relative;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1%;
  z-index: 2;
  perspective: 1000px;
}
#wrap header ul li {
  position: relative;
  width: 32%;
  border-radius: 30px;
  margin-block: 10px;
  line-height: 0;
  display: block;
  overflow: hidden;
  border: 3px solid #000;
}
#wrap header ul li img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
#wrap header ul li img:hover {
  transform: scale(1.15);
}

#wrap header p {
  text-align: center;
  color: #1e2b34;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
}
.hcard {
  opacity: 0;
}
.flip {
  animation: floating-y2 1s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}
@keyframes floating-y2 {
  0% {
    opacity: 0;
    transform: translateX(0) translateZ(0) rotateY(100deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

#wrap .backImg {
  background-image: url("../images/BackDecoration.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  position: absolute;
  width: 100%;
  height: 150%;
  top: 0;
  left: 0;
  transform: translateY(0);
  transition: transform 0.1s linear;
  will-change: transform;
}

@media screen and (max-width: 750px) {
  #wrap header {
    padding: 30px 0;
  }
  #wrap header ul {
    margin: 30px auto;
    gap: 10px;
  }
  #wrap header ul li {
    width: calc((100% - 10px) / 2);
    margin-block: 0;
  }
}

/* ------------------
    parallax
--------------------- */
.parallax-wrapper {
  position: absolute;
  height: 200vh;
  overflow: hidden;
  perspective: 1000px;
  width: 100%;
  top: 0;
}
.layer {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 150%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  will-change: transform;
  pointer-events: none;
}
.background {
  background-image: url("../images/backb.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  z-index: 1;
}
.foreground {
  background-image: url("../images/front.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  z-index: 2;
}

@media screen and (max-width: 750px) {
  .background {
    background-image: url("../images/sp_backb.png");
    /* background-size: 200%; */
  }
  .foreground {
    background-image: url("../images/sp_front.png");
    /* background-size: 250%; */
  }
}

/* ------------------
    scroll
--------------------- */
#wrap #scroll {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  line-height: 0;
  z-index: 100;
}

/* ------------------
    categoryLink
--------------------- */
.categoryLink {
  position: relative;
  max-width: 1300px;
  width: 95%;
  margin-inline: auto;
  margin-bottom: 30px;
  z-index: 100;
}
.categoryLink ul {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4列 */
  grid-template-rows: repeat(2, auto); /* 2行（高さは自動） */
  gap: 20px; /* カード間の余白 */
}
.categoryLink ul li a {
  transition: all 0.3s ease;
  transform: scale(1);
  display: block;
  line-height: 0;
}
.categoryLink ul li a:hover {
  filter: blur(1px) brightness(1.1);
  transform: scale(1.05);
}

@media screen and (max-width: 1000px) {
  .categoryLink ul {
    gap: 10px;
  }
}

@media screen and (max-width: 750px) {
  .categoryLink {
    max-width: 400px;
    margin-bottom: 20px;
  }
  .categoryLink ul {
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ------------------
    archiveSection
--------------------- */
#wrap .archiveSection::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  width: 3px;
  height: 60px;
  background-color: #000;
  margin: 0 auto;
}
#wrap .archiveSection {
  background-color: #43cfb2;
  max-width: 1600px;
  width: 95%;
  padding: 50px;
  margin: 55px auto 0;
  border-radius: 30px;
  border: 3px solid #000;
  display: flex;
  position: relative;
}

#wrap .archiveSection h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(3.3rem, 2.5vw, 3.5rem);
  font-weight: 900;
  margin-right: 50px;
  width: 180px;
  margin-top: -15px;
}
#wrap .archiveSection h2 span {
  font-size: 2rem;
}

#wrap .archiveSection ul {
  width: 82%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
#wrap .archiveSection ul li {
  position: relative;
  width: calc((100% - 60px) / 3);
  background-color: #fff;
  padding: 30px;
  border-radius: 30px;
}

.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes archivesanime {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

#wrap .archiveSection ul li a {
  display: block;
  line-height: 0;
  border-radius: 30px;
  border: 2px solid #000;
  transform: rotate(0.03deg);
  overflow: hidden;
}
#wrap .archiveSection ul li p {
  padding-block: 30px 60px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
}
#wrap .archiveSection ul li span {
  display: block;
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #43cfb2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: right;
}

@media screen and (max-width: 1300px) {
  #wrap .archiveSection {
    padding: 30px;
  }
  #wrap .archiveSection ul {
    gap: 20px;
  }
  #wrap .archiveSection ul li {
    width: calc((100% - 40px) / 3);
    padding: 20px;
  }

  #wrap .archiveSection ul li p {
    padding-block: 20px 40px;
  }

  #wrap .archiveSection ul li a {
    border-radius: 20px;
  }

  #wrap .archiveSection ul li span {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 1000px) {
  #wrap .archiveSection {
    display: block;
  }
  #wrap .archiveSection h2 {
    width: auto;
    margin: -0.3em 5px 20px;
  }

  #wrap .archiveSection ul {
    width: 100%;
    gap: 20px;
  }
  #wrap .archiveSection ul li {
    width: calc((100% - 40px) / 3);
  }
  #wrap .archiveSection ul li p {
    font-size: clamp(0.7rem, 3.5vw, 0.8rem);
  }
  #wrap .archiveSection ul li span {
    font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  }
}

@media screen and (max-width: 750px) {
  #wrap .archiveSection ul li {
    width: 49%;
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 550px) {
  #wrap .archiveSection {
    padding: 15px;
  }
  #wrap .archiveSection h2 {
    width: auto;
    margin: -0.1em 3px 15px;
  }

  #wrap .archiveSection ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  #wrap .archiveSection ul li {
    border-radius: 20px;
    width: auto;
    display: flex;
    gap: 15px;
    padding: 15px;
  }
  #wrap .archiveSection ul li a {
    border-radius: 10px;
    width: 46%;
    height: fit-content;
    margin-top: 2px;
  }
  #wrap .archiveSection ul li .cardTxt {
    width: 48%;
  }
  #wrap .archiveSection ul li .cardTxt p {
    padding-block: 0 30px;
  }
  #wrap .archiveSection ul li span {
    bottom: 15px;
    right: 20px;
  }
}

/* ------------------
    oldArchiveSection
--------------------- */
#wrap .oldArchiveSection::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  width: 3px;
  height: 60px;
  background-color: #000;
  margin: 0 auto;
}
#wrap .oldArchiveSection,
#wrap .categoryArchiveSection {
  background-color: #fff;
  max-width: 1600px;
  width: 95%;
  padding: 50px;
  margin: 55px auto 0;
  border-radius: 30px;
  border: 3px solid #000;
  position: relative;
}
#wrap .oldArchiveCards,
#wrap .categoryArchiveSection .oldArchiveCards {
  margin-bottom: 40px;
}

#wrap .oldArchiveSection h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  width: 180px;
  margin: 0 0 20px;
}
#wrap .oldArchiveSection h2 span {
  font-size: 2rem;
}

#wrap .oldArchiveSection ul,
#wrap .categoryArchiveSection ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
#wrap .oldArchiveSection ul li,
#wrap .categoryArchiveSection ul li {
  position: relative;
  width: 31%;
  width: calc((100% - 120px) / 4);
  background-color: #fff;
  padding: 0;
}

#wrap .oldArchiveSection ul li a,
#wrap .categoryArchiveSection ul li a {
  display: block;
  line-height: 0;
  border-radius: 30px;
  border: 1px solid #000;
  transform: rotate(0.03deg);
  overflow: hidden;
}
#wrap .oldArchiveSection ul li img,
#wrap .categoryArchiveSection ul li img {
  width: 110%;
}
#wrap .oldArchiveSection ul li p,
#wrap .categoryArchiveSection ul li p {
  padding-block: 20px 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.6;
}
#wrap .oldArchiveSection ul li span,
#wrap .categoryArchiveSection ul li span {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: block;
  color: #43cfb2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: right;
}

@media screen and (max-width: 1000px) {
  #wrap .oldArchiveSection h2 {
    font-size: 2rem;
    width: auto;
    margin: 0 0 10px;
  }
  #wrap .oldArchiveSection h2 span {
    font-size: 1.5rem;
  }

  #wrap .oldArchiveCards,
  #wrap .categoryArchiveSection .oldArchiveCards {
    margin-bottom: 20px;
  }

  #wrap .oldArchiveSection,
  #wrap .categoryArchiveSection {
    padding: 30px;
    margin: 55px auto 0;
  }

  #wrap .oldArchiveSection ul,
  #wrap .categoryArchiveSection ul {
    gap: 20px;
  }
  #wrap .oldArchiveSection ul li,
  #wrap .categoryArchiveSection ul li {
    width: 31%;
    width: calc((100% - 60px) / 4);
  }

  #wrap .oldArchiveSection ul li p,
  #wrap .categoryArchiveSection ul li p {
    padding-block: 10px 30px;
    font-size: clamp(0.7rem, 1vw, 0.8rem);
  }
  #wrap .oldArchiveSection ul li span,
  #wrap .categoryArchiveSection ul li span {
    font-size: clamp(0.6rem, 1vw, 0.7rem);
  }

  #wrap .oldArchiveSection ul li a,
  #wrap .categoryArchiveSection ul li a {
    border-radius: 20px;
  }
}

@media screen and (max-width: 750px) {
  #wrap .oldArchiveSection,
  #wrap .categoryArchiveSection {
    padding: 20px;
  }
  #wrap .oldArchiveSection ul,
  #wrap .categoryArchiveSection ul,
  #wrap .cv ul {
    gap: 20px;
  }
  #wrap .oldArchiveSection ul li,
  #wrap .categoryArchiveSection ul li {
    width: 49%;
    width: calc((100% - 20px) / 2);
  }
  #wrap .oldArchiveSection ul li img,
  #wrap .categoryArchiveSection ul li img {
    width: auto;
  }
}

@media screen and (max-width: 550px) {
  #wrap .oldArchiveSection #wrap .categoryArchiveSection {
    padding: 15px;
  }

  #wrap .oldArchiveSection ul,
  #wrap .categoryArchiveSection ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  #wrap .oldArchiveSection ul li,
  #wrap .categoryArchiveSection ul li {
    border-radius: 20px;
    width: auto;
    display: flex;
    gap: 20px;
    padding: 0;
    margin-bottom: 10px;
  }
  #wrap .oldArchiveSection ul li a,
  #wrap .categoryArchiveSection ul li a {
    border-radius: 10px;
    width: 46%;
    height: fit-content;
    margin-top: 2px;
  }
  #wrap .oldArchiveSection ul li .cardTxt,
  #wrap .categoryArchiveSection ul li .cardTxt {
    width: 48%;
  }
  #wrap .oldArchiveSection ul li .cardTxt p,
  #wrap .categoryArchiveSection ul li .cardTxt p {
    padding-block: 0 20px;
  }
  #wrap .oldArchiveSection ul li span,
  #wrap .categoryArchiveSection ul li span {
    bottom: 0;
  }
}

/* ------------------
    categoryArchiveSection
--------------------- */
#wrap .categoryArchiveSection::before {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  background-color: transparent;
  margin: 0 auto;
}

#wrap .categoryArchiveSection h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  width: auto;
  margin: 0 0 50px;
  line-height: 1;
}
#wrap .categoryArchiveSection h2 span {
  font-size: 2rem;
  color: #30cffa;
}

@media screen and (max-width: 1000px) {
  #wrap .categoryArchiveSection {
    margin-top: 30px;
  }
  #wrap .categoryArchiveSection h2 {
    font-size: clamp(1.57rem, 4vw, 2.5rem);
    width: auto;
    margin: 0 0 30px;
  }
  #wrap .categoryArchiveSection h2 span {
    font-size: clamp(1rem, 3vw, 1.7rem);
  }
}

@media screen and (max-width: 550px) {
  #wrap .categoryArchiveSection {
    padding: 20px;
  }
}

/* TOPページへもどるリンク */
#wrap .topLinkBtn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  display: block;
  width: fit-content;
  margin: 50px auto;
  background-color: #1e2b34;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 8px 25px;
  border-radius: 50px;
}
#wrap .topLinkBtn:hover {
  background-color: #3f5564;
  color: #fff;
}
