@charset "UTF-8";
:root {
  --font: "Poppins", "Zen Kaku Gothic New", sans-serif;
  --fontJa: "Zen Kaku Gothic New", sans-serif;
  --fontEn: "Poppins", sans-serif;
  --colorMain: rgba(255, 242, 72);
  --colorAccent: rgba(255, 232, 72);
  --colorText: rgba(48, 45, 44);
  --firstSpace: 5.55vw;
  --secondSpace: 7.91vw;
  --spaces: calc(var(--firstSpace) + var(--secondSpace));
  --mainwidth: 88.89vw;
  --secondwidth: 73.06vw;
}
a {
  text-decoration: none;
  color: var(--colorText);
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}
body {
  background-color: #ffffff;
  color: var(--colorText);
  font-family: var(--font);
  margin: 0;
  padding: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header-container .top-logo {
  background-color: var(--colorMain);
  width: clamp(100px, 71.3333333333px + 3.7326388889vw, 143px);
  aspect-ratio: 143/166;
  height: auto;
  border-radius: 0 0 84px 84px;
}
@media (max-width: 767px) {
  .header-container .top-logo {
    display: none;
  }
}
.header-container .top-logo img {
  margin: 0 auto;
  width: 100%;
  padding: 10px;
}
.header-container nav.header-menu {
  margin-left: auto;
}
.header-container nav.header-menu #sp_menu_switch {
  display: none;
}
@media (max-width: 767px) {
  .header-container nav.header-menu #sp_menu_switch {
    position: relative;
    display: block;
    background-color: var(--colorAccent);
    mix-blend-mode: multiply;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    margin-left: auto;
    border-radius: 40px;
    z-index: 10;
    animation: opacitymenu 1.2s ease-in-out 1s forwards;
    opacity: 0;
  }
  .header-container nav.header-menu #sp_menu_switch .line {
    position: absolute;
    top: 50%;
    left: 28%;
    width: 45%;
    height: 3px;
    background-color: #ffffff;
  }
  .header-container nav.header-menu #sp_menu_switch .line:nth-of-type(1) {
    top: 30%;
  }
  .header-container nav.header-menu #sp_menu_switch .line:nth-of-type(2) {
    top: 48%;
  }
  .header-container nav.header-menu #sp_menu_switch .line:nth-of-type(3) {
    top: 66%;
  }
  .header-container nav.header-menu #sp_menu_switch.active .line:nth-of-type(1) {
    opacity: 0;
  }
  .header-container nav.header-menu #sp_menu_switch.active .line:nth-of-type(2) {
    top: 0%;
    transform: rotate(-45deg) translate(-13px, 14px);
    background-color: #ffffff;
  }
  .header-container nav.header-menu #sp_menu_switch.active .line:nth-of-type(3) {
    top: 50%;
    transform: rotate(45deg) translate(0px, -1px);
    background-color: #ffffff;
  }
  @keyframes opacitymenu {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 0.5;
    }
    55% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
}
.header-container nav.header-menu .menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 30px;
  grid-auto-rows: 100px;
  place-content: start right;
  height: -moz-min-content;
  height: min-content;
  padding-top: 30px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .header-container nav.header-menu .menu {
    position: fixed;
    background-image: url("../images/sp_menu_bg.jpg");
    background-blend-mode: multiply;
    background-position: top left;
    background-size: cover;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 0;
    width: 100%;
    height: 100vh;
    margin: auto 0;
    padding: 100px 0;
    top: 0;
    right: -100%;
    transition: all 0.75s ease-in-out;
  }
  .header-container nav.header-menu .menu img {
    width: 35px;
    margin: 0 auto;
  }
}
.header-container nav.header-menu .menu a {
  text-align: center;
}
@media (max-width: 767px) {
  .header-container nav.header-menu .menu a {
    font-size: 19px;
  }
}
.header-container nav.header-menu .menu.open {
  right: 0;
}
.header-container nav a {
  position: relative;
  color: var(--colorText);
  font-weight: 600;
  font-size: clamp(12px, 10.0043365134px + 0.2601908066vw, 15px);
}
.header-container nav a::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 0.4vw;
  height: 0.4vw;
  background-color: var(--colorMain);
  border-radius: 50%;
}
.header-container nav a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.4vw;
  background: var(--colorMain);
  bottom: -16px;
  border-radius: 4px;
  transform: scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
.header-container nav a:hover {
  opacity: 0.5;
}
.header-container nav a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

/* メインコンテンツのスタイル */
main {
  margin: 0;
}

/* セクション共通の設定 */
section {
  position: relative;
  margin: 0 auto;
  padding: 80px var(--spaces);
}
@media (max-width: 767px) {
  section {
    margin: 40px auto;
    padding: 40px 0;
  }
}

/* セクションのタイトル 基本 */
.area-title {
  font-size: clamp(20px, 2.78vw, 40px); /* 40px */
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .area-title {
    width: calc(100% - 40px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
  }
}
.area-title span {
  font-size: clamp(12px, 10.0043365134px + 0.2601908066vw, 15px);
  vertical-align: 39%; /* middleでは対応しきれず */
}
@media (max-width: 767px) {
  .area-title span {
    font-size: clamp(12px, 9.276119403px + 0.7462686567vw, 15px);
    vertical-align: middle;
  }
}
.area-title span::before {
  content: "／";
  margin-inline: 1rem;
}

/* View More */
.view-more {
  position: relative;
  display: inline-block;
  font-size: clamp(8.5px, 1.18vw, 17px); /* 17px */
  font-weight: 600;
  text-align: center;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .view-more {
    background-color: var(--colorMain);
    border-radius: 50px;
    padding: 8px 16px 8px 20px;
  }
}
.view-more::after {
  content: ""; /*url(../images/arrow_b.svg);*/
  position: absolute;
  top: 8%;
  right: -20%;
  width: clamp(8.5px, 1.18vw, 17px); /* 17px */
  height: clamp(8.5px, 1.18vw, 17px); /* 17px */
}
@media (max-width: 767px) {
  .view-more::after {
    right: 20%;
  }
}
.view-more a {
  text-decoration: none;
  color: #302d2c;
  display: inline-flex;
  position: relative;
  align-items: center;
}
@media (min-width: 768px) {
  .view-more a:hover {
    opacity: 0.5;
  }
  .view-more a::before {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    width: 0.4vw;
    height: 0.4vw;
    background-color: var(--colorMain);
    border-radius: 50%;
  }
  .view-more a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 0.4vw;
    background: var(--colorMain);
    bottom: -16px;
    border-radius: 0.4vw;
    transform: scale(0, 1);
    transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s; /*変形の時間*/
  }
  .view-more a:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
}
.view-more a img {
  padding-left: 10px;
}
@media (max-width: 767px) {
  .view-more a img {
    width: 24%;
  }
}

/* セクションごとのスタイル */
#first-view {
  text-align: center;
  padding: 0;
  overflow: visible;
  height: auto;
  background: url(../images/bg_1.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 25vw;
  z-index: 0;
}
@media (max-width: 767px) {
  #first-view {
    margin-top: 0;
  }
}
#first-view .svg-container {
  width: 100%;
  height: 100vh;
}
#first-view .svg-container svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: -1;
}
#first-view .logo-content {
  position: absolute;
  display: grid;
  place-content: center;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 159/124;
}
@media (max-width: 767px) {
  #first-view .logo-content {
    top: 37.5%;
  }
}
#first-view .logo-content svg {
  width: 318px;
  height: 248px;
}
@media (max-width: 767px) {
  #first-view .logo-content svg {
    width: 159px;
    height: 124px;
  }
}

#information {
  padding: 0 var(--spaces);
}
@media (max-width: 767px) {
  #information {
    margin: 0 auto;
    padding: 0;
  }
}
#information .section-container {
  max-width: 1440px;
  margin: 0 auto;
}
#information .info-table {
  width: 100%;
  margin: 40px auto;
  text-align: left;
}
@media (max-width: 767px) {
  #information .info-table {
    width: calc(100% - 40px);
  }
}
#information .info-table .info-row {
  display: grid;
  grid-template-columns: 30% 70%;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "info-date info-title";
  font-size: clamp(10px, 1.39vw, 20px); /* 20px */
  font-weight: 600;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--colorText);
}
@media (max-width: 767px) {
  #information .info-table .info-row {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    grid-template-areas: "info-date" "info-title";
    padding-top: 1.5rem;
    border-top: 1px solid var(--colorText);
  }
}
#information .info-table .info-row .info-date {
  grid-area: info-date;
}
#information .info-table .info-row .info-title {
  grid-area: info-title;
}

.bg_area {
  position: relative;
  background: url(../images/bg_2.png), url(../images/bg_3.png);
  background-position: right 20%, left center;
  background-repeat: no-repeat;
  background-size: 30vw, 20vw;
  z-index: 0;
}
@media (max-width: 767px) {
  .bg_area {
    background: none;
  }
}

.bg_area2 {
  overflow-x: hidden;
}

#works {
  text-align: center;
}
@media (max-width: 767px) {
  #works {
    background: url(../images/bg_2.png), url(../images/bg_3_sp.png);
    background-position: right center, left 75%;
    background-repeat: no-repeat;
    background-size: 50vw, 30vw;
  }
}
#works .works-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto 20px;
}
@media (max-width: 767px) {
  #works .works-container {
    flex-direction: column;
    width: calc(100% - 40px);
    margin: 40px auto 0;
    padding: 0;
  }
}
#works .works-container .work-item {
  width: 30%;
  position: relative;
}
@media (max-width: 767px) {
  #works .works-container .work-item {
    width: 100%;
    margin-bottom: 30px;
  }
}
#works .works-container .work-item .work-image {
  position: relative;
  overflow: hidden;
  border: 5px dashed var(--colorMain);
  border-radius: 50%; /* 円形に切り抜く */
}
#works .works-container .work-item .work-image:hover {
  transform: rotate(360deg); /* hover時に点線を回転 */
}
#works .works-container .work-item .work-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
}
#works .works-container .work-item .work-title {
  width: 100%;
  padding-top: 30px;
  text-align: center;
  font-size: clamp(8.5px, 1.18vw, 17px); /* 17px */
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  #works .works-container .work-item .work-title {
    font-size: 12px;
    padding-top: 10px;
  }
}

#philosophy {
  background-color: rgba(255, 255, 255, 0);
}
@media (max-width: 767px) {
  #philosophy {
    width: calc(100% - 40px);
    margin: 40px auto;
    padding: 0;
  }
}
#philosophy .catch-copy {
  position: relative;
  display: inline-block;
  font-size: clamp(22px, 3.05vw, 44px); /* 44px */
  font-weight: 700;
  margin-bottom: 20px; /* キャッチコピーとPHILOSOPHYの間の余白 */
}
@media (max-width: 767px) {
  #philosophy .catch-copy {
    text-indent: -2em;
    padding-left: 3.5em;
    padding-top: 13px;
  }
}
#philosophy .catch-copy::before {
  content: "";
  position: absolute;
  background-image: url("../images/dq_mark-l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.47vw; /* 50px */
  height: 2.36vw; /* 34px */
  top: -10%;
  left: -5%;
  z-index: -1;
}
@media (max-width: 767px) {
  #philosophy .catch-copy::before {
    width: 12.1vw;
    height: 8.56vw;
    top: 0;
    left: 1%;
  }
}
#philosophy .catch-copy::after {
  content: "";
  position: absolute;
  background-image: url("../images/dq_mark-r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.47vw; /* 50px */
  height: 2.36vw; /* 34px */
  bottom: -10%;
  right: -5%;
  z-index: -1;
}
@media (max-width: 767px) {
  #philosophy .catch-copy::after {
    right: -15%;
    bottom: -25%;
    width: 12.1vw;
    height: 8.56vw;
  }
}
#philosophy .philosophy-content {
  display: flex;
  justify-content: space-between;
  margin: 80px auto;
}
@media (max-width: 767px) {
  #philosophy .philosophy-content {
    margin: 0px auto;
  }
}
#philosophy .philosophy-content .philosophy-title {
  writing-mode: vertical-lr;
  display: inline-block; /* インライン要素に変更 */
  font-size: clamp(43px, 5.97vw, 86px); /* 36px */
  font-weight: bold;
  color: var(--colorMain);
  line-height: 5.97vw;
  margin-right: 2.97vw; /* PHILOSOPHYとテキストエリアの間の余白 */
}
@media (max-width: 767px) {
  #philosophy .philosophy-content .philosophy-title {
    font-size: 23.5vw;
    margin-top: -35px;
    margin-left: 20px;
  }
}
#philosophy .philosophy-content .philosophy-text {
  display: inline-block; /* インライン要素に変更 */
  vertical-align: top; /* 上寄せ */
  width: 79%;
  margin-left: auto;
  text-align: left;
  font-size: clamp(11px, 1.52vw, 22px); /* 22px */
  font-weight: bold;
  line-height: clamp(27.5px, 3.75vw, 54px);
}
#philosophy .philosophy-content .philosophy-text br {
  margin-bottom: 6vw;
}
@media (max-width: 767px) {
  #philosophy .philosophy-content .philosophy-text {
    width: 75%;
    font-size: 12px;
    padding-top: 20px;
  }
}

#about-us {
  text-align: center;
  position: relative;
}
#about-us table.company-table {
  width: 100%;
  background-color: var(--colorMain);
  padding: 0 24px;
}
@media (max-width: 767px) {
  #about-us table.company-table {
    position: relative;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0;
  }
}
#about-us table.company-table th, #about-us table.company-table td {
  text-align: left;
  font-size: clamp(8.5px, 1.18vw, 17px); /* 17px */
  font-weight: bold;
  padding: 24px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 767px) {
  #about-us table.company-table th, #about-us table.company-table td {
    position: relative;
    font-size: 12px;
  }
}
#about-us table.company-table tr:last-child th, #about-us table.company-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 767px) {
  #about-us table.company-table th {
    width: 24%;
    text-align: center;
  }
}
#about-us .design-text {
  position: absolute;
  bottom: -50px;
  right: var(--firstSpace);
  width: 348px;
  z-index: 0;
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  #about-us .design-text {
    width: 203px;
    bottom: -12%;
    right: -15%;
  }
}
#about-us .design-text .rotating-text {
  animation: rotate 22s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

#our-services {
  text-align: center;
  background: url(../images/bg_4.png), url(../images/bg_5.png);
  background-position: left 15%, right bottom;
  background-repeat: no-repeat;
  background-size: 30vw, 40vw;
  z-index: 0;
}
@media (max-width: 767px) {
  #our-services {
    background: url(../images/bg_4.png), url(../images/bg_5_sp.png);
    background-position: left 30%, right bottom;
    background-repeat: no-repeat;
    background-size: 50vw, 30vw;
    margin: 0 auto;
    padding: 0 0 20px 0;
  }
}
#our-services .services-container {
  margin: 0 auto;
}
@media (max-width: 767px) {
  #our-services .services-container {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
#our-services .service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--firstSpace);
}
@media (max-width: 767px) {
  #our-services .service-item {
    margin-bottom: 30px;
  }
}
#our-services .service-item .service-content {
  position: relative;
  display: flex;
  width: 100%; /* 要素を横いっぱいに広げる */
}
@media (max-width: 767px) {
  #our-services .service-item .service-content {
    display: block;
  }
}
#our-services .service-item .service-content .service-image {
  flex: 1;
}
#our-services .service-item .service-content .service-image img {
  width: 100%;
}
#our-services .service-item .service-content .service-image .service-number {
  position: absolute;
  top: 85%;
  font-size: clamp(30px, 4.17vw, 60px); /* 60px */
  font-weight: 600;
  line-height: 4.17vw;
  text-shadow: 0px 3px 6px #ffffff;
}
@media (max-width: 767px) {
  #our-services .service-item .service-content .service-image .service-number {
    top: -2%;
  }
}
#our-services .service-item .service-content .service-text {
  flex: 1;
  padding: 0 20px;
  text-align: left;
}
@media (max-width: 767px) {
  #our-services .service-item .service-content .service-text {
    padding: 10px 0;
  }
}
#our-services .service-item .service-content .service-text h3 {
  margin-top: 0;
  font-size: clamp(12.5px, 1.74vw, 25px); /* 25px */
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #our-services .service-item .service-content .service-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
#our-services .service-item .service-content .service-text .lead-text {
  position: relative;
  display: inline-block;
  font-size: clamp(8.5px, 1.18vw, 17px); /* 17px */
  font-weight: 700;
  margin-left: 1rem;
}
@media (max-width: 767px) {
  #our-services .service-item .service-content .service-text .lead-text {
    font-size: 12px;
    margin-left: 0.5rem;
  }
}
#our-services .service-item .service-content .service-text .lead-text::before {
  content: "";
  position: absolute;
  background-image: url("../images/dq_mark-l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.636vw; /* 25px */
  height: clamp(8.5px, 1.18vw, 17px); /* 17px */
  top: -10%;
  left: -5%;
  z-index: -1;
}
#our-services .service-item .service-content .service-text .lead-text::after {
  content: "";
  position: absolute;
  background-image: url("../images/dq_mark-r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.636vw; /* 25px */
  height: clamp(8.5px, 1.18vw, 17px); /* 17px */
  bottom: -10%;
  right: -5%;
  z-index: -1;
}
#our-services .service-item .service-content .service-text .desc-text {
  font-size: clamp(8.5px, 1.18vw, 17px); /* 17px */
  font-weight: 700;
  line-height: clamp(20px, 2.78vw, 40px);
  margin-top: 10px;
}
@media (max-width: 767px) {
  #our-services .service-item .service-content .service-text .desc-text {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  #our-services .service-itemodd .service-content {
    flex-direction: row; /* 奇数番目の場合、通常の順序 */
  }
}
@media (min-width: 768px) {
  #our-services .service-item.even .service-content {
    flex-direction: row-reverse; /* 偶数番目の場合、順序を反転 */
  }
  #our-services .service-item.even .service-number {
    right: 0;
  }
}

.wave-background {
  background-image: url(../images/footer-wave.png);
  background-position: bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  bottom: -5px;
  height: 5vw;
}

/* フッターのスタイル */
#footer {
  background-color: var(--colorAccent);
  color: #302D2C; /* テキストカラー */
  padding-bottom: var(--firstSpace);
}
@media (max-width: 767px) {
  #footer {
    padding-bottom: 30px;
  }
}
#footer .footer-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  #footer .footer-content {
    width: calc(100% - 40px);
    margin: 0 auto;
    align-items: start;
  }
}
#footer .footer-content .logo-menu {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: calc(var(--firstSpace) / 2) var(--firstSpace);
  padding-bottom: 30px;
  mix-blend-mode: multiply;
  border-bottom: dotted 4px var(--colorAccent);
}
@media (max-width: 767px) {
  #footer .footer-content .logo-menu {
    width: 100%;
    margin: 40px auto 10px;
    align-items: start;
  }
}
#footer .footer-content .logo-menu .logo img {
  max-width: 150px;
}
@media (max-width: 767px) {
  #footer .footer-content .logo-menu .menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 20px;
  }
}
#footer .footer-content .logo-menu .menu a {
  margin-left: 20px; /* メニュー項目の間隔 */
  text-decoration: none;
  color: #302D2C;
}
@media (max-width: 767px) {
  #footer .footer-content .logo-menu .menu a {
    font-size: 12px;
    margin: 0;
  }
}
#footer .footer-content .company-info {
  margin-left: var(--firstSpace);
  margin-bottom: 30px; /* 会社情報とコピーライトの間の余白 */
}
@media (max-width: 767px) {
  #footer .footer-content .company-info {
    width: 100%;
    margin: 20px 0;
    font-size: 12px;
  }
}
#footer .footer-content .company-info p {
  margin-bottom: 5px; /* 各項目の下の余白 */
}
#footer .footer-content .copyright {
  margin-right: var(--firstSpace);
  text-align: right;
}
@media (max-width: 767px) {
  #footer .footer-content .copyright {
    width: 100%;
    margin: 0 auto;
    font-size: 12px;
    text-align: center;
  }
}

#anim-1 {
  stroke: var(--colorMain);
  stroke-miterlimit: 100;
  animation: shootingstar 4s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  animation-iteration-count: 1;
}

@keyframes shootingstar {
  0% {
    stroke-dasharray: 600; /* 点線：線の長さ600px */
    stroke-dashoffset: 599; /* 点線：線の開始位置オフセット600px */
  }
  10% {
    stroke-dasharray: 600; /* 点線：線の長さ600px */
    stroke-dashoffset: 599; /* 点線：線の開始位置オフセット600px */
  }
  100% {
    stroke-dasharray: none; /* 線：線の長さなし */
    stroke-dashoffset: 0; /* 線：線の開始位置オフセット0px */
  }
}
#anim-2 {
  fill: var(--colorMain);
  animation: transration 1.2s ease-in-out 1s forwards;
  opacity: 0;
}

@keyframes transration {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  40% {
    opacity: 0.5;
    transform: translate(0, 0);
  }
  55% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(60px, -60px);
  }
}
#anim-3 {
  animation: delayopacity 1.2s ease-in-out 1s forwards;
  opacity: 0;
}

@keyframes delayopacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.5;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
#anim-4, #anim-5 {
  animation: delayopacitylogo 1s ease-in-out 0.3s forwards;
  opacity: 0;
}

@keyframes delayopacitylogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#anim-4 {
  animation-delay: 2.4s;
}

#anim-5 {
  animation-delay: 2.9s;
}

#anim-6 {
  animation: flash 0.6s ease-in-out 0.3s forwards;
  animation-delay: 3.3s;
}

@keyframes flash {
  0% {
    filter: brightness(1);
  }
  25% {
    filter: brightness(2);
  }
  50% {
    filter: brightness(1);
  }
  75% {
    filter: brightness(2);
  }
  100% {
    filter: brightness(1);
  }
}
.upper {
  opacity: 0;
  transform: translate(0px, 96px);
  transition-delay: 200ms;
  transition-duration: 1000ms;
  transition-timing-function: ease-in-out;
}

.upper.is-active {
  opacity: 1;
  transform: translate(0px, 0px);
}

.fadein {
  opacity: 0;
  transition-delay: 250ms;
  transition-duration: 1000ms;
  transition-timing-function: ease-in-out;
}

.fadein.is-active {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */