@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=DotGothic16&family=Kaisei+Decol&family=Noto+Sans+JP:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Kaisei Decol" "Noto Sans JP", "Babylonica", "Helvetica Neue",
    Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

:root {
  --c1: #f4f2e5;
  --c4: #333;
  --noto: "Noto Sans JP";
}

a {
  text-decoration: none;
  color: var(--c4);
}

body {
  background-color: var(--c1);
  color: var(--c4);
}

li,
ol {
  list-style: none;
}

/* aabutton */
.aabutton {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 120px;
  height: auto;
  transition: 0.3s;
}

.aabutton:hover {
  opacity: 0.6;
}

.aabutton a img {
  width: 120px;
  height: auto;
}

/* header */
.hero {
  position: relative;
  height: 960px;
  font-family: "Kaisei Decol";
  overflow: hidden;
}

.sky {
  position: absolute;
  z-index: -111;
  top: 0;
  left: 0;
  width: 100%;
  height: 384px;
  background-color: #10316a;
}

.ground {
  position: absolute;
  top: 384px;
  left: 0;
  display: block;
  width: 100%;
  height: 560px;
  background-color: #eae7d5;
}

.hero-img {
  position: absolute;
  top: -228px;
  left: -96px;
  width: 2200px;
  height: auto;
}

.headline {
  position: absolute;
  top: 664px;
  left: 96px;
  font-size: 104px;
  font-weight: bold;
  transform: rotateX(-16deg) rotateY(16deg) rotateZ(-2deg);
  transition: 0.3s;
}

.headline:hover {
  transform: translateX(1rem);
}

.headline a {
  color: #333;
}

.hero-botton-wrap {
  position: absolute;
  top: 600px;
  right: 104px;
  display: flex;
  gap: 72px;
}

.botton-img {
  width: 240px;
  height: 240px;
  transition: 0.3s;
}

.hourglass {
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
  position: relative;
}

.hexagon {
  position: relative;
  transform: translateY(-32px);
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
}

.clover {
  transform: translateY(-64px);
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
}

.hourglass::before {
  position: absolute;
  clip-path: polygon(0 1%, 50% 25%, 100% 0, 100% 100%, 50% 75%, 0 100%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}

.hexagon::before {
  position: absolute;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}

.hourglass:hover {
  box-shadow: unset;
  transform: translate(8px, 8px);
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.6));
}

.hexagon:hover {
  box-shadow: unset;
  transform: translate(8px, -24px);
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.6));
}

.clover:hover {
  box-shadow: unset;
  transform: translate(8px, -56px);
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.6));
}

/* main */
.wrap {
  width: 1280px;
  margin: 7.5rem auto 0;
  font-family: "Kaisei Decol";
}

.common {
  margin-top: 7.5rem;
}

/* about */
.about {
  display: flex;
  gap: 14rem;
}

.about-title-wrap {
  display: flex;
  flex-direction: column;
}

.about-title-wrap .sub-title {
  font-size: 2rem;
  font-weight: bold;
}

.about-title-wrap .title {
  font-size: 2.5rem;
  font-weight: bold;
}

.about-text-wrap {
  display: flex;
  flex-direction: column;
  width: 720px;
}

.text-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.about-text-wrap .text {
  margin-top: 1.5rem;
}

.about-img {
  width: 720px;
  margin-top: 3.5rem;
  border-radius: 1rem 0 0 1rem;
}

/* service */
.service-title-wrap {
  position: relative;
  text-align: center;
}

.service .title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

.service .title::before {
  content: "様々なサービスをご提供しております。";
  position: absolute;
  right: 15.5rem;
  bottom: 0.5rem;
  font-size: 1rem;
}

.service-container {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-wrap {
  display: flex;
  flex-direction: column;
}

.service-img {
  position: relative;
  width: 308px;
  height: 240px;
}

.service-img::before {
  content: "01";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
}

.service-wrap .text {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.service-wrap .button-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 11.5rem;
  height: 2rem;
  margin-top: 1rem;
  border-radius: 1rem;
  background-color: #fada7a;
  color: #333;
  font-weight: bold;
  transition: 0.3s;
}

.service-wrap .button-wrap:hover {
  width: 18.5rem;
}

.service-wrap .button {
  padding-left: 1.5rem;
}

.service-arrow {
  padding-right: 2rem;
  transition: 0.3s;
}

.button-wrap:hover .service-arrow {
  transform: translate(8rem);
  margin-right: 10rem;
  padding: 0;
}

/* event */
.event {
  display: flex;
  flex-direction: row-reverse;
  gap: 262px;
}

.event-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 2.5rem;
  font-weight: bold;
}

.event-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border: solid #333;
  border-width: 2px 0 0 0;
}

.event-item:last-of-type {
  border-width: 2px 0 2px 0;
}

.event-item-left {
  display: flex;
  flex-direction: column;
  width: 35rem;
  margin-right: 15rem;
  font-weight: bold;
}

.event-item-left .text {
  font-size: 2rem;
}

.event-item-left .subtext-wrap {
  display: flex;
  gap: 0.5rem;
  cursor: pointer;
}

.event-item-left .subtext {
  position: relative;
  margin-top: 0.5rem;
}

.event-item-left .subtext::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -111;
  width: 0;
  height: 100%;
  background-color: #fada7a;
  transition: 0.3s;
  opacity: 0.5;
}

.event-item-left .subtext:hover:before {
  width: 100%;
}

.event-item-right {
  display: flex;
  align-items: center;
  height: 3.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-left: 2px solid #333;
  color: #333;
}

.event-item-right .event-arrow {
  font-size: 24px;
  transform: rotate(180deg);
  transition: 0.3s;
}

.event-item-right:hover .event-arrow {
  transform: rotate(360deg);
}

/* access */
.access-containar {
  display: flex;
  gap: 7.5rem;
}

.access-wrap {
  font-weight: bold;
}

.access-title-wrap {
  display: flex;
  flex-direction: column;
  font-size: 2.5rem;
  font-weight: bold;
}

.address-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2rem;
}

.carspace-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2rem;
}

.gmap_iframe {
  aspect-ratio: 16 / 9;
  max-width: 720px;
  width: 100%;
  height: auto;
  border-radius: 1rem 0 0 1rem;
}

/* contact */
.contact-title-wrap {
  display: flex;
  flex-direction: column;
  font-size: 2.5rem;
  font-weight: bold;
}

.contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  font-weight: bold;
}

.contact .text {
  color: #333;
}

/* footer-フッター */
footer {
  margin: 120px 0 120px;
  border-top: solid 4px #2b2a27;
  text-align: center;
  font-family: "Kaisei Decol";
}

.footer-LR {
  display: flex;
  max-width: 543px;
  max-height: 300px;
  margin: 0 auto;
  padding-top: 64px;
  text-align: center;
}

.rogo-footer {
  max-width: 280px;
}

.footer-R {
  max-width: 191px;
  padding-left: 64px;
  text-align: center;
}

.footer-R p {
  width: 184px;
  margin-bottom: 8px;
  font-size: 30px;
  text-align: left;
}

.sns {
  display: flex;
  padding: 0px;
}

.sns li img:hover {
  transition: 0.3s;
}

.sns li img:hover {
  filter: brightness(0) saturate(100%) invert(72%) sepia(80%) saturate(3170%)
    hue-rotate(223deg) brightness(102%) contrast(102%);
  cursor: pointer;
}

.sns li {
  flex: auto;
}

.page {
  display: flex;
  gap: 0.5rem;
  padding: 0px;
}

.page li {
  flex: auto;
  padding-left: 4px;
  padding-right: 4px;
}

.page img {
  max-width: 80px;
  transition: 0.3s;
}

.footer-img {
  max-width: 100%;
}

.C {
  text-align: center;
  padding-top: 48px;
}

/* js */
/* particles */
#particles-js {
  position: absolute;
  width: 100%;
  height: 348px;
}

/* granim */
#canvas-basic {
  position: absolute;
  display: block;
  width: 100%;
  height: 384px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* slick */
.slick {
  position: relative;
}

.slick-prev::before {
  content: "◀";
  position: absolute;
  top: 258px;
  left: 758px;
}

.slick-next::before {
  content: "▶";
  position: absolute;
  top: 258px;
  left: 35px;
}

.slick-prev:before,
.slick-next:before {
  font-weight: bold;
  opacity: 1;
  color: #333;
}

@keyframes niji-link {
  to {
    background-position: 200%;
  }
}

/* レスポンシブ */
@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  /* aabutton */
  .aabutton {
    display: none;
  }

  /* header */
  .hero {
    height: 360px;
    overflow: hidden;
  }

  .ground {
    top: 120px;
    height: 240px;
  }

  .sky {
    height: 240px;
  }

  .hero-img {
    top: -56px;
    left: -40px;
    width: 600px;
  }

  .headline {
    top: 190px;
    left: 24px;
    font-size: 40px;
  }

  .hero-botton-wrap {
    top: 260px;
    right: 24px;
    gap: 24px;
  }

  .hexagon {
    transform: translateY(-16px);
  }

  .clover {
    transform: translateY(-32px);
  }

  .botton-img {
    width: 80px;
    height: 80px;
  }

  /* main */
  .wrap {
    width: 480px;
    margin: 0;
    padding: 0 1rem 0;
    overflow: hidden;
  }

  .common:first-of-type {
    margin-top: 5rem;
  }

  /* about */
  .about {
    flex-direction: column;
    gap: 5rem;
  }

  .about-title-wrap .sub-title {
    font-size: 1.5rem;
  }

  .about-title-wrap .title {
    font-size: 2.5rem;
  }

  .about-text-wrap {
    width: 448px;
  }

  .text-title {
    font-size: 1.5rem;
  }

  .about-img {
    width: 360px;
  }

  /* slick */
  .slick-prev::before {
    top: 138px;
    left: 427px;
  }

  .slick-next::before {
    top: 138px;
    left: -24px;
  }

  /* service */
  .service .title {
    font-size: 2rem;
  }

  .service .title::before {
    content: "";
  }

  .service-container {
    flex-wrap: wrap;
    gap: 2rem 1rem;
    margin-top: 2rem;
  }

  .service-img {
    width: 216px;
    height: 168px;
  }

  .service-wrap .button-wrap:hover {
    width: 11.5rem;
  }

  .button-wrap:hover .service-arrow {
    transform: translate(0);
    margin-right: 2rem;
  }

  /* event */
  .event {
    flex-direction: column;
    gap: 2rem;
  }

  .event-item-left {
    margin-right: 1rem;
  }

  .event-item-left .text {
    font-size: 1rem;
  }

  .event-item-left .subtext-wrap {
    font-size: 0.5rem;
  }

  .event-item-left .subtext {
    margin-top: 0.5rem;
  }

  /* access */
  .access-containar {
    flex-direction: column;
    gap: 4rem;
  }

  /* contact */

  /* footer-フッター */
  .footer-LR {
    justify-content: center;
  }

  .footer-R {
    display: none;
  }

  /* js */
  /* particles */
  #particles-js {
    position: absolute;
    width: 100%;
    height: auto;
  }

  /* granim */
  #canvas-basic {
    position: absolute;
    display: block;
    width: 100%;
    height: 120px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
