@charset "UTF-8";
/***********************************
* resume html css *
***********************************/
#your-element-selector {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
}

/***********************************
* top html css *
***********************************/
.svg-box {
  max-width: 400px;
  position: fixed;
  margin: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: -1;
}

#svgd {
  width: 100%;
  max-width: 400px;
  stroke: #010025;
  stroke-width: 0.5px;
  fill: transparent;
  stroke-dasharray: 1425px;
  stroke-dashoffset: 1425px;
  animation: anim 4s ease-in 2s forwards;
}
@media only screen and (max-width: 559px) {
  #svgd {
    width: 270px;
  }
}

@keyframes anim {
  0% {
    stroke-dashoffset: 1425px;
  }
  30% {
    fill: transparent;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #010025;
  }
}
/***********************************
* works html css *
***********************************/
.article-box {
  padding-top: 60px;
  position: relative;
}

.img-place {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: calc(100vh - 330px);
  background-size: cover;
  transition: background-image 0.3s ease;
}
@media only screen and (max-width: 959px) {
  .img-place {
    display: none !important;
  }
}

.articles {
  max-width: 1200px;
  margin: 0 auto;
}
.articles ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.articles ul li {
  width: 30%;
  list-style-type: none;
  margin-bottom: 40px;
}
@media only screen and (max-width: 959px) {
  .articles ul li {
    width: 45%;
  }
}
@media only screen and (max-width: 559px) {
  .articles ul li {
    width: 100%;
  }
}
@media only screen and (max-width: 959px) {
  .articles ul li a {
    text-decoration: none;
    font-weight: 300;
  }
}
.articles ul li a:hover .article-item__img {
  filter: grayscale(0%);
}
.articles ul li a:hover .article-item__content {
  display: block;
}
.articles ul li a .article-item__content {
  display: none;
  color: #0a06b6;
}
@media only screen and (max-width: 959px) {
  .articles ul li a .article-item__content {
    display: block;
  }
}

article {
  perspective: 1600px;
}

article .article-item,
article figure,
article .article-item__content {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

article .article-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 959px) {
  article .article-item::before {
    height: 60%;
  }
}

article .article-item:hover::before {
  box-shadow: 0 14px 64px rgba(0, 0, 0, 0.92);
}

article .article-item__content {
  pointer-events: none;
}

article .article-item.enter.ease,
article .article-item.leave {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

article .article-item__content h4 {
  -webkit-transform: translateZ(100px);
  transform: translateZ(100px);
}
@media only screen and (max-width: 959px) {
  article .article-item__content h4 {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
  }
}

article .article-item__content p {
  -webkit-transform: translateZ(50px);
  transform: translateZ(50px);
}
@media only screen and (max-width: 959px) {
  article .article-item__content p {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
  }
}

.article-item__img {
  padding-bottom: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(100%);
  transition-duration: 1s;
}
@media only screen and (max-width: 959px) {
  .article-item__img {
    filter: grayscale(0%);
  }
}

.lighting {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article-item__content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  transform: translate(-50%, -50%);
  width: 70%;
  text-shadow: 0 3px 10px rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 959px) {
  .article-item__content {
    position: static;
    transform: translate(0%, 0%);
    margin: 2rem 0 0;
    width: 100%;
  }
}
.article-item__content h4 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 959px) {
  .article-item__content h4 {
    margin-bottom: 1em;
    font-size: 1.2rem;
  }
}
.article-item__content p {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5em;
}
@media only screen and (max-width: 959px) {
  .article-item__content p br {
    display: none;
  }
}

.aaa0 {
  max-width: 600px;
}

/***********************************
* about html css *
***********************************/
.about-box {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
}

@keyframes tabAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tab-wrap {
  width: 100%;
}
.tab-wrap input[type=radio] {
  display: none;
}

.tab-area {
  display: flex;
}
.tab-area label {
  width: 50%;
  display: block;
  font-size: 2.4rem;
  font-weight: lighter;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  position: relative;
  border: 1px solid #afafaf;
  color: #afafaf;
  outline: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.tab-area label::before {
  border-top: 1px solid #0a06b6;
  border-bottom: 1px solid #0a06b6;
  transform: scale(0, 1);
}
.tab-area label::after {
  border-right: 1px solid #0a06b6;
  border-left: 1px solid #0a06b6;
  transform: scale(1, 0);
}
.tab-area label:hover {
  color: #010025;
}
.tab-area label:hover span {
  color: #0a06b6;
}
.tab-area label:hover::before {
  transform: scale(1);
}
.tab-area label:hover::after {
  transform: scale(1);
}
.tab-area label.active {
  border: 1px solid #0a06b6;
  color: #010025;
}
.tab-area label.active span {
  color: #0a06b6;
}
.tab-area label::before, .tab-area label::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 2;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.tab-panel {
  width: 100%;
  background-color: #fff;
  display: none;
}
.tab-panel.active {
  display: block;
  animation: tabAnim ease 0.6s forwards;
  -webkit-animation: tabAnim ease 0.6s forwards;
}

.about-w-sec1 .profile {
  display: flex;
  padding: 0 3rem;
}
@media only screen and (max-width: 559px) {
  .about-w-sec1 .profile {
    flex-direction: column;
    padding: 0;
  }
}
.about-w-sec1 .profile .profile-img {
  width: 25%;
  padding: 0 3rem;
}
@media only screen and (max-width: 559px) {
  .about-w-sec1 .profile .profile-img {
    width: 100%;
    padding: 0 2rem;
  }
}
.about-w-sec1 .profile .profile-img .profile-img__inner {
  max-width: 300px;
}
.about-w-sec1 .profile .profile-img .profile-img__inner img {
  border-radius: 50%;
  width: 100%;
}
.about-w-sec1 .profile .profile-text {
  font-weight: lighter;
  width: 75%;
  padding: 0 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 559px) {
  .about-w-sec1 .profile .profile-text {
    width: 100%;
    padding: 4rem 0 0;
  }
}
.about-w-sec1 .profile .profile-text h3 {
  font-size: 3rem;
  font-weight: lighter;
  margin-bottom: 2.8rem;
}
.about-w-sec1 .profile .profile-text p {
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.experience {
  padding-top: 5rem;
}
.experience h3 {
  font-size: 2.4rem;
  font-weight: lighter;
  margin-bottom: 5rem;
}
.experience ul li {
  list-style-type: none;
  display: flex;
  margin-bottom: 3rem;
  max-width: 100%;
  line-height: 2.4rem;
}

.experience-y {
  font-size: 1.4rem;
  width: 10%;
}
@media only screen and (max-width: 559px) {
  .experience-y {
    padding-right: 0.2rem;
    width: 15%;
  }
}

.experience-cont {
  font-size: 1.4rem;
  width: 90%;
}

/***********************************
* page html css *
***********************************/
.pageimg {
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.4);
}
.pageimg img {
  width: 100%;
}

.page-detail {
  max-width: 1200px;
  margin: 0 auto;
}
.page-detail h4 {
  font-size: 2rem;
  font-weight: lighter;
  margin-top: 4rem;
  line-height: 1.4em;
}
@media only screen and (max-width: 559px) {
  .page-detail h4 {
    font-size: 1.8rem;
  }
}
.page-detail p {
  font-weight: lighter;
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

/* Pinned Panels Layout */
#panel-container {
  width: 100%;
  /* height: 100vh; は削除 */
  /* overflow: hidden; は削除（スクロールさせるため） */
  position: relative;
}

.panel {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* 追加: 縮小する際の基準点を中心に設定 */
  transform-origin: center center;
  /* 滑らかに動かすためのヒント */
  will-change: transform, opacity;
}
.panel.panel-1 {
  background-color: #fff;
}
.panel.panel-2 {
  background-color: #c5b8a3;
  color: #000 !important;
}
.panel.panel-2 .section-title {
  border-left: 5px solid #000 !important;
}
.panel.panel-3 {
  background-color: #fff;
}
.panel.panel-3 .section-title {
  border-left: 5px solid #000 !important;
}
.panel.panel-4 {
  background-color: #1a1a1a;
}

/* 下のパネルが透けて見えすぎないよう、コンテナの背景を暗くしておくと綺麗です */
.panel-inner {
  max-width: 900px;
  width: 90%;
  padding: 40px;
  opacity: 0;
  transform: translateY(30px);
}

.section-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 4rem;
  border-left: 5px solid #fff;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* 各セクションごとの装飾（適宜調整してください） */
.sw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 767px) {
  .sw-grid {
    grid-template-columns: 1fr;
  }
}

.sw-item h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 5px 15px;
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  animation: nudge 2s infinite;
}

@keyframes nudge {
  0%, 100% {
    bottom: 30px;
  }
  50% {
    bottom: 40px;
  }
}
/* 1枚目だけは最初から見えるように上書き */
.panel-1 .panel-inner {
  opacity: 1 !important;
  transform: translateY(-120px) !important;
}

/* 文字が見えるように色とZ-indexを念のため指定 */
.main-title {
  color: #000; /* 背景が濃い青なので白を指定 */
  font-size: 5rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* コンテナが他の固定要素（ヘッダーなど）の下に隠れないように */
.content_prof {
  position: relative;
  z-index: 1; /* サイトのヘッダーがz-index: 1000などであれば、それより低く、かつ背景より高く */
}

.intro-box,
.sw-grid,
.vision-box {
  font-size: 1.6rem;
  line-height: 1.4em;
}
.intro-box h3,
.sw-grid h3,
.vision-box h3 {
  font-size: 1.4em;
  line-height: 1.4em;
  margin-bottom: 1em;
}
.intro-box p,
.sw-grid p,
.vision-box p {
  line-height: 1.4em;
}
.intro-box li,
.sw-grid li,
.vision-box li {
  list-style-type: none;
  margin-bottom: 2em;
}
.intro-box li strong,
.sw-grid li strong,
.vision-box li strong {
  margin-bottom: 0.7em;
  display: block;
  font-size: 1.2em;
}

.panel-3 {
  color: #000;
}/*# sourceMappingURL=rayout.css.map */