@charset "UTF-8";
html {
  font-size: 62.5%;
}

h2 {
  font-size: 1.8rem;
}

p {
  font-size: 1.2rem;
}

.card a:hover {
  transform: scale(1.1);
  transition: all 0.5s;
}

button {
  font-size: 1.2rem;
  background-color: #FFFFFF;
  color: #222222;
  padding: 20px;
  position: absolute;
  right: 0;
}
button img {
  width: 15% !important;
  vertical-align: bottom;
  margin-left: 12px;
}

body {
  font-family: YuMincho, "Yu Mincho", serif;
}

menu {
  font-family: "Bodoni Moda", serif;
}

.wrapper {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  padding-top: 1px;
  padding-bottom: 110px;
  position: relative;
}
@media (min-width: 375px) and (max-width: 679px) {
  .wrapper {
    width: 90%;
  }
}

.pc-header {
  position: fixed;
  transform: rotate(-90deg);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  margin-left: -250px;
  margin-top: 300px;
  mix-blend-mode: difference;
  z-index: 2;
}
.pc-header menu {
  position: relative;
  margin: 0 150px;
}
@media (min-width: 375px) and (max-width: 679px) {
  .pc-header menu {
    display: none;
  }
}
.pc-header menu::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 150px;
  height: 1px;
  background-color: #FFFFFF;
}
.pc-header menu li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
}
.pc-header menu li:first-child {
  margin-left: 20px;
}
.pc-header menu li a {
  font-size: 1.4rem;
  color: #FFFFFF;
  display: inline-block;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.pc-header menu li .menuhover:hover {
  color: #EEEEEE;
  transform: scale(1.2);
  transform: rotate(45deg);
}

.sp-header {
  display: none;
}
@media (min-width: 375px) and (max-width: 679px) {
  .sp-header {
    display: block;
    position: relative;
  }
  .sp-header #nav {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, #FD96D5, #97E6FD);
    padding-top: 15rem;
    z-index: 4;
    transition: opacity 0.5s, visibility 0.5s;
  }
  .sp-header #nav li {
    list-style: none;
    text-align: center;
    margin-bottom: 4rem;
  }
  .sp-header #nav li a {
    color: #FFFFFF;
    font-family: "Bodoni Moda", serif;
    font-size: 4rem;
    letter-spacing: 10px;
  }
  .sp-header #nav.active {
    display: block;
    transition: opacity 0.5s, visibility 0.5s;
  }
}

.openbtn1 {
  position: fixed;
  cursor: pointer;
  width: 10%;
  z-index: 5;
  right: 30px;
  top: 20px;
  height: 7%;
}

/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  height: 2px;
  background: #fff;
  width: 100%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 24px;
}

.openbtn1 span:nth-of-type(3) {
  top: 33px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

/*ボタンホバー枠*/
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border: 1px solid transparent;
}

.button::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border: 1px solid transparent;
}

.button:hover::before {
  width: 100%;
  height: 100%;
  border-top-color: #222222;
  border-right-color: #222222;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button:hover::after {
  width: 100%;
  height: 100%;
  border-bottom-color: #222222;
  border-left-color: #222222;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

.ellip {
  position: fixed;
  top: -114px;
  right: -404px;
  z-index: 2;
  mix-blend-mode: difference;
}
@media (min-width: 375px) and (max-width: 679px) {
  .ellip {
    top: -100px;
    left: -100px;
  }
}
.ellip img {
  width: 50%;
  animation: 15s linear infinite rotation1;
  vertical-align: top;
}
@media (min-width: 375px) and (max-width: 679px) {
  .ellip img {
    width: 27%;
  }
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
footer {
  background-color: #EEEEEE;
  color: #222222;
  height: 220px;
  position: relative;
  z-index: 4;
}
@media (min-width: 375px) and (max-width: 679px) {
  footer {
    height: 170px;
  }
}
footer .wrapper {
  padding-bottom: 10px;
  height: 220px;
}
@media (min-width: 375px) and (max-width: 679px) {
  footer .wrapper {
    height: 170px;
  }
}
footer .wrapper .footer_top {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 10px;
  align-items: flex-start;
}
@media (min-width: 375px) and (max-width: 679px) {
  footer .wrapper .footer_top {
    margin-top: 30px;
  }
}
footer .wrapper .footer_top a {
  display: block;
  color: #222222;
}
footer .wrapper .footer_top h1 {
  font-family: "Bodoni Moda", serif;
  font-size: 4rem;
  letter-spacing: 8px;
  display: inline-block;
}
@media (min-width: 375px) and (max-width: 679px) {
  footer .wrapper .footer_top h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
@media (min-width: 680px) and (max-width: 1023px) {
  footer .wrapper .footer_top h1 {
    font-size: 2rem;
  }
}
footer .wrapper .footer_top img {
  width: 7%;
}
footer .wrapper .inst {
  margin-top: 12px;
}
footer .wrapper .inst a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
footer .wrapper .inst a p {
  color: #222222;
}
footer .wrapper .inst a img {
  width: 6%;
  margin-left: 7px;
}
footer .wrapper > p {
  font-size: 1rem;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
}

a {
  text-decoration: none;
}

.heading {
  width: 50%;
  display: block;
  margin: 70px auto;
}
@media (min-width: 375px) and (max-width: 679px) {
  .heading {
    width: 100%;
    margin: 70px auto 50px;
  }
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  flex-wrap: wrap;
}
@media (min-width: 375px) and (max-width: 679px) {
  .container {
    flex-direction: column;
  }
}
.container .card {
  width: 32%;
  margin-bottom: 40px;
}
@media (min-width: 375px) and (max-width: 679px) {
  .container .card {
    width: 100%;
    margin-bottom: 50px;
  }
}
.container .card img {
  width: 100%;
  transition: 0.5s;
}
.container .card p {
  color: #FFFFFF;
  margin-top: -10px;
  color: #222222;
}
.container .card a {
  display: block;
}

/*フェードイン*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

.about {
  background-color: #EEEEEE;
  color: #222222;
}
.about .about_container {
  display: flex;
  align-items: flex-start;
}
@media (min-width: 375px) and (max-width: 679px) {
  .about .about_container {
    flex-direction: column;
  }
}
.about .about_container img {
  width: 35%;
}
@media (min-width: 375px) and (max-width: 679px) {
  .about .about_container img {
    width: 100%;
  }
}
.about .about_container .about_text {
  margin: 20px 0 0 20px;
  position: relative;
}
@media (min-width: 375px) and (max-width: 679px) {
  .about .about_container .about_text {
    margin: 20px 0;
  }
}
.about .about_container .about_text h2 {
  margin-bottom: 20px;
}
.about .about_container .about_text p {
  line-height: 2rem;
  margin-bottom: 30px;
}

/*スクロールダウン全体の場所*/
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: fixed;
  bottom: 1%;
  right: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
  z-index: 2;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 8px;
  color: #FFFFFF;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #FFFFFF;
  transform: skewX(-31deg);
}

.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 50px;
  background: #FFFFFF;
}/*# sourceMappingURL=style.css.map */