@charset "UTF-8";
*{
  /* border: 0.25px solid magenta; */
}
/*----- reset -----*/
body, h1, h2, h3, h4, h5, p, ul, li, ol, dl, dt, dd, figure, button {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  list-style-type: "";
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  color: inherit;
}


a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

table {
  border-collapse: collapse;
}



@media (scripting: none) {
  .loading {
    display: none;
  }
}
.inner {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  width: calc(100% - 64px);
}

/*----- flex -----*/
.flex {
  display: flex;
}
.flex.--fdr {
  flex-direction: row;
}
.flex.--wrap {
  flex-wrap: wrap;
}
.flex.--aifs {
  align-items: flex-start;
}
.flex.--aic {
  align-items: center;
}
.flex.--aife {
  align-items: flex-end;
}
.flex.--jcsb {
  justify-content: space-between;
}
.flex.--jcc {
  justify-content: center;
}
.flex.--fdc {
  flex-direction: column;
}
.flex.--rev {
  flex-direction: column-reverse;
}
.flex.--rerr {
  flex-direction: row-reverse;
}

.pc-only {
  display: none;
}

.mt8 {
  margin-top: 8px;
}

.mt16 {
  margin-top: 16px;
}

.mt24 {
  margin-top: 24px;
}

.mt32 {
  margin-top: 32px;
}

.mt40 {
  margin-top: 40px;
}

.mt48 {
  margin-top: 48px;
}

.mt56 {
  margin-top: 56px;
}

.mt64 {
  margin-top: 64px;
}

.mt72 {
  margin-top: 72px;
}

.mt80 {
  margin-top: 80px;
}

.mt88 {
  margin-top: 88px;
}

.mt96 {
  margin-top: 96px;
}

@media (min-width : 588px ){
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
* {
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.1em;
  color: #333;
}

/* コンテンツ量が少ないときにフッターを下にする */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

/* 変数 */
section {
  width: 100%;
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 60px;
}

.btn {
  background-color: #fff;
  display: block;
  color: #01043A;
  padding: 8px 20px;
  width: 200px;
  margin-block: calc((1em - 1lh) / 2);
  text-align: center;
  margin-inline: auto;
  transition: background-color 0.3s, color 0.3s;
}
.btn:hover {
  background-color: #01043A;
  color: #fff;
}
.btn:hover .mail-icon {
  filter: brightness(0) invert(1);
}
.btn__detail {
  background-color: #01043A;
  color: #fff;
}
.btn__detail:hover {
  background-color: #f2f2f2;
  color: #01043A;
}

/*------ cta ------*/
.cta {
  width: 100%;
  padding: 5vw;
  color: #fff;
  text-align: center;
}
.cta__text {
  font-size: 18px;
}
.cta__btn {
  width: 260px;
  border-radius: 50px;
  margin-top: 5%;
margin-bottom: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mail-icon {
  width: 22px;
  display: inline-block;
  margin-right: 4px;
  transition: filter 0.3s;
}

.mail-icon:hover {
  filter: invert(100%);
}

@media (min-width : 588px ){
  body {
    font-size: 16px;
  }
  section {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  /*------ cta ------*/
  .cta__text {
    font-size: 24px;
  }
  .cta__btn {
    margin-top: 20px;
	  margin-bottom: 0px;
  }
  .mail-icon {
    width: 28px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
}

.header-logo {
  width: 150px;
  position: absolute;
  top: 0;
  left: 0;
}
.header-logo a {
  display: inline-block;
  width: 100%;
  padding: 10px 50px 10px 10px;
  background-color: #fff;
  border-radius: 0 0 60px 0;
}

/*------ バーガーメニュー -----*/
.burger {
  position: fixed;
  top: 20px;
  right: 20px;
  border: none;
  cursor: pointer;
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  place-items: center;
  place-content: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* 影を真後ろに追加 */
  z-index: 5;
  background-color: #fff;
	
}

/* バー */
.bar,
.bar::before,
.bar::after {
  width: 20px;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s;
}

.bar {
  display: grid;
}
.bar::before, .bar::after {
  content: "";
  grid-area: 1/1;
}
.bar::before {
  transform: translateY(-6px);
}
.bar::after {
  transform: translateY(6px);
}

/* SPメニュー */
.sp-menu {
  color: #333;
  width: 70%;
  max-width: 300px;
  background-color: #fff;
  height: 100%;
  transform: translateX(200%);
  position: fixed;
  top: 0;
  right: 0;
  transition: transform 0.3s ease-out;
  z-index: 4;
  overflow-y: auto;
}
.sp-menu__wrap {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 140px;
  justify-content: center;
}

.sp-menu-list {
  text-align: center;
}
.sp-menu-list__item {
  width: 100%;
  padding: 40px 10px 10px;
  border-bottom: 1px solid #ccc;
}
.sp-menu-list__link {
  font-weight: bold;
}

.sp-menu-list.fadeInMenu .sp-menu-list__item {
  -webkit-animation-name: gnaviAnime;
  animation-name: gnaviAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* activeがついた時 */
.is-active .burger .bar {
  background-color: transparent;
}
.is-active .burger .bar::before {
  transform: rotate(45deg);
}
.is-active .burger .bar::after {
  transform: rotate(-45deg);
}
.is-active .sp-menu {
  transform: translateX(0);
}

body.is-active {
  overflow: clip;
}

@media (min-width : 588px ){
  .header-logo {
    width: 210px;
  }
  .header-logo a {
    padding: 15px 60px 15px 25px;
    border-radius: 0 0 50px 0;
  }
  /*------ バーガーメニュー -----*/
  .burger {
    width: 60px;
    height: 60px;
  }
  /* バー */
  .bar,
  .bar::before,
  .bar::after {
    width: 25px;
    height: 3px;
  }
  .bar::before {
    transform: translateY(-8px);
  }
  .bar::after {
    transform: translateY(8px);
  }
  /* SPメニュー */
  .sp-menu {
    max-width: 350px;
  }
  .sp-menu__wrap {
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 140px;
    justify-content: center;
  }
  .sp-menu-list {
    text-align: center;
  }
  .sp-menu-list__item {
    width: 100%;
    padding: 40px 10px 10px;
    border-bottom: 1px solid #ccc;
  }
  .sp-menu-list__link {
    font-weight: bold;
  }
  .sp-menu-list.fadeInMenu .sp-menu-list__item {
    -webkit-animation-name: gnaviAnime;
    animation-name: gnaviAnime;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /* activeがついた時 */
  .is-active .burger .bar {
    background-color: transparent;
  }
  .is-active .burger .bar::before {
    transform: rotate(45deg);
  }
  .is-active .burger .bar::after {
    transform: rotate(-45deg);
  }
  .is-active .sp-menu {
    transform: translateX(0);
  }
  body.is-active {
    overflow: clip;
  }
}
/* Hover Event */
@media (hover: hover) {
  .sp-menu-list__link {
    transition: opacity 0.4s;
  }
  .sp-menu-list__link:hover {
    opacity: 0.6;
  }
}

/*#メニュー英文飾り */


.menu-title {
            position: relative;
	 
           
        }

 .menu-title::after {
    content: attr(data-english);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: rgba(0, 0, 0, 0.1);  /* RGBA色を設定 */
    font-family: 'Bungee Outline', cursive; /* フォントをBungee Outlineに変更 */
    pointer-events: none;
    z-index: -1; /* 日本語の文字を前面に */
        }


.footer {
  background-color: #f2f2f2;
  padding: 30px 40px;
  position: relative;
	display: flex; /* 追加 */
  flex-direction: column; /* 追加 */
  align-items: center; /* 追加 */
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav-list__item {
  padding: 0 12px;
}

/* 縦の線 */
.border-r {
  position: relative;
}
.border-r::after {
  content: "";
  background-color: #333;
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  right: -12px;
  top: 0;
  pointer-events: none;
}

.footer-logo {
  width: 200px;
  margin-inline: auto;
  padding: 20px 0;
}

/* オフィスの情報 */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
	 align-items: center; /* 追加 */
  justify-content: center; /* 追加 */
  text-align: center; /* 追加 */
}

.company-link {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: 2px solid #ddd;
  border-left: 2px solid #ddd;
  width: 170px;
  padding: 20px 10px 20px 50px;
  background-color: #fff;
  border-radius: 80px 0 0px 0;
}
.company-link img {
  width: 80%;
}

/* コピーライト */
.footer-copy {
  font-size: 12px;
  text-align: center;
  margin-top: 60px;
  padding-bottom: 100px;
}

@media (min-width : 588px ){
  .footer-nav-list__item {
    padding: 0 12px;
  }
  .footer-logo {
    width: 300px;
    margin-inline: auto;
    padding: 40px 0;
  }
  .footer-info-list {
    margin-right: 40px;
  }
  /* コピーライト */
  .footer-copy {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  /* オフィスの情報 */
  .footer-info {
    display: flex;
    flex-direction: row;
  }
  /* コピーライト */
  .footer-copy {
    margin-top: 60px;
    padding-bottom: 0;
  }
  .company-link {
    width: 260px;
    padding: 20px 20px 20px 80px;
    border-radius: 100px 0 0px 0;
  }
}
/* -------------------------------------------- */
/* mv */
/* -------------------------------------------- */
.mv {
  height: 100vh;
  width: 100%;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}
.mv__wrap {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.mv-bgsample {
  background: url(../images/top.jpeg) center/cover no-repeat;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
}

@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.mv-bg {
  background: url(../images/top.jpeg) center/cover no-repeat;
  width: 105vw;  /* ビューポートより大きく設定 */
  height: 105vh; /* ビューポートより大きく設定 */
  position: fixed;
  top: -2.5%;    /* 高さの半分だけ上下の中央に配置 */
  left: -2.5%;   /* 幅の半分だけ左右の中央に配置 */
  z-index: -1;
  animation: moveUpDown 7s ease-in-out infinite;
}

/*------ 文字 -----*/
.mv-catch-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  width: calc(100% - 64px);
  margin-inline: auto;
}

.mv-catch-center {
  width: 30%;
}

.mv-catch-left {
  width: 40%;
}

.mv-catch-right {
  width: 30%;
}

.fadeIn {
  opacity: 0;
  filter: blur(30px);
  scale: 2.2;
}

.fadeIn.fadeInAnime {
  opacity: 1;
  filter: blur(0px);
  scale: 1;
  transition: opacity 400ms linear, filter 700ms linear, scale 1600ms;
}

.fadeIn.delay-2 {
  transition-delay: 0.6s;
}

.fadeIn.delay-3 {
  transition-delay: 1.2s;
}

/* クラゲの画像 */
.top-pallax {
  /* width: clamp(120px, 23.4680573664vw, 180px); */
  position: absolute;
		 z-index: -1; /* 日本語の文字を前面に */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-pallax.--01 {
	animation: moveUpDown 3s ease-in-out infinite;
}
.top-pallax.--02 {
	animation: moveUpDown 5s ease-in-out infinite;
}

@keyframes parallax-large-anim {
  from {
    transform: translateY(500px);
  }
  to {
    transform: translateY(0px);
  }
}
.large {
  animation: parallax-large-anim linear;
  animation-timeline: scroll();
}

/*------ news -----*/
.top-news {
  padding-left: 20px;
  position: absolute;
  bottom: 4%;
  left: 0;
  width: 94%;
  max-width: 400px;
}
.top-news__heading {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}
.top-news__box {
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  padding: 9px 10px;
  max-height: 42px;
  overflow-y: scroll;
  display: grid;
  grid-template-columns: repeat(1, auto);
  gap: 8px;
}
.top-news__entry-day {
  font-size: 12px;
}
.top-news__entry-title {
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
}

@media (min-width : 588px ){
  /*------ 文字 -----*/
  .mv-catch-center {
    width: 20%;
  }
  .mv-catch-left {
    width: 35%;
  }
  .mv-catch-right {
    width: 27%;
  }

  @media (min-width : 767px ){
    /* クラゲの画像の大きさ */
    .top-pallax img{
      width: 60%;
    }
  }


  /*------ news -----*/
  .top-news {
    padding-left: 40px;
  }
  .top-news__heading {
    font-size: 20px;
  }
  .top-news__box {
    width: 400px;
    padding: 8px 20px;
  }
  .top-news__entry-day {
    font-size: 14px;
  }
  .top-news__entry-title {
    font-size: 16px;
  }
}
/* -------------------------------------------- */
/* about 会社概要 */
/* -------------------------------------------- */
.about {
  background: #01043A;
  color: #fff;
  text-align: center;
}
.about__wrap {
  padding-top: 30px;
  padding-bottom: 60px;
}
.about__logo {
  max-width: 300px;
  width: 55%;
  margin-inline: auto;
}
.about__text {
  margin-top: 20px;
}
.about__btn {
  margin-top: 32px;
}

@media (min-width : 588px ){
  .about__wrap {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .about__text {
    margin-top: 32px;
  }
}
/* -------------------------------------------- */
/* results 制作事例 */
/* -------------------------------------------- */
.results__text {
  font-size: 16px;
  text-align: center;
  margin-top: 30px;
}
.results__btn {
  margin-top: 32px;
}

.results-section-title {
  width: 90%;
  margin-inline: auto;
}

.results-bottom {
  position: relative;
  margin-top: 30px;
}

.results-logo {
  width: clamp(180px, 36.5058670143vw, 280px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
/* Safari専用のスタイル調整 */
@supports (-webkit-appearance: none) and (stroke-color: transparent) {
  .results-logo {
    top: 53%; /* 例えば、2%下にずらす */
  }
}

/* スライダー全体 */
.results-slide {
  display: flex;
  overflow: hidden; /* はみ出たスライドを隠す */
}

.results-slide:last-child {
  margin-top: clamp(20px, 3.9113428944vw, 30px);
}

/* スライド3枚のグループ */
.results-slide-list {
  animation: scroll-right 40s infinite linear 0.5s both;
  display: flex;
  /* 逆方向 */
}
.results-slide-list.--rev {
  animation: scroll-left 40s infinite linear 0.5s both;
}
.results-slide-list__item {
  width: 50vw; /* 4はスライドの枚数 */
  padding: 0 10px;
  padding-left: clamp(5px, 0.6944444444vw, 10px);
}
.results-slide-list__item img {
  display: block;
  width: 100%;
}

/* CSSアニメーション */
@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media (min-width : 588px ){
  .results__text {
    font-size: 18px;
  }
  .results-section-title {
    width: 80%;
  }
  .results-bottom {
    margin-top: 80px;
  }
  .results-logo {
    width: clamp(200px, 24.3055555556vw, 350px);
  }
  /* スライダー全体 */
  .results-slide:last-child {
    margin-top: clamp(20px, 4.1666666667vw, 60px);
  }
  /* スライド3枚のグループ */
  .results-slide-list__item {
    width: 25vw; /* 4はスライドの枚数 */
    padding: 0 10px;
    padding-left: clamp(5px, 0.6944444444vw, 10px);
  }
}
/* Hover Event */


.music-icon {
  width: 70px; /* 必要に応じてサイズを調整 */
  position: fixed;
  top: 20px; /* 上からの位置調整 */
  right: 90px; /* 右からの位置調整 */
	cursor: pointer; /* ポインターカーソルを表示 */
}
@media (max-width: 1024px) and (min-width: 769px) {
  .music-icon {
    width: 65px; /* 横幅が769pxから1024pxの間でのサイズ */
	  top: 20px; /* 上からの位置調整 */
  right: 90px; /* 右からの位置調整 */
  }
}
@media (max-width: 768px) {
  .music-icon {
    width: 40px; /* 横幅が768px以下の場合に小さくする */
	  top: 24px; /* 上からの位置調整 */
  right: 85px; /* 右からの位置調整 */
  }
}

