@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  font-size: 62.5%;
  line-height: normal;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

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

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

td,
th {
  vertical-align: middle;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

li {
  list-style: none;
}

@font-face {
  font-family: "Amithen";
  src: url("../font/Amithen.ttf") format("truetype");
  src: url("../font/Amithen.woff") format("truetype");
}
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

p {
  font-size: 1.4rem;
}
@media screen and (min-width: 640px) {
  p {
    font-size: 1.6rem;
  }
}

#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 10;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #0D0D0D;
  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.6s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block;
  /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;
  /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}

#g-nav li a {
  font-family: "Montserrat";
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (min-width: 640px) {
  #g-nav li a {
    font-family: "Montserrat";
    color: #fff;
    font-size: 2.2rem;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}

.mv-top-item {
  position: relative;
  padding: 2rem 0 0 0;
}
.mv-top-item h1 {
  display: block;
  text-align: center;
  max-width: 250px;
  margin: 0 auto;
}
.mv-top-item h1 img {
  object-fit: contain;
}
.mv-top-item .instgram-button {
  position: absolute;
  right: 7px;
  top: 20px;
}
.mv-top-item .instgram-button img {
  width: 25px;
  height: 25px;
}
@media screen and (min-width: 640px) {
  .mv-top-item {
    position: relative;
    padding: 4rem 0 2rem 0;
  }
  .mv-top-item h1 {
    text-align: center;
    display: block;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
  }
  .mv-top-item h1 img {
    object-fit: contain;
  }
  .mv-top-item .instgram-button {
    position: absolute;
    right: 0;
    top: 40px;
  }
  .mv-top-item .instgram-button img {
    width: 40px;
    height: 40px;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  top: 2px;
  left: 0px;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 640px) {
  .openbtn1 {
    position: fixed;
    top: 40px;
    left: 10px;
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 70px;
    height: 70px;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 10px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 80%;
}
@media screen and (min-width: 640px) {
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
}

.openbtn1 span:nth-of-type(1) {
  top: 20px;
}
@media screen and (min-width: 640px) {
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
}

.openbtn1 span:nth-of-type(2) {
  top: 30px;
  width: 30px !important;
}
@media screen and (min-width: 640px) {
  .openbtn1 span:nth-of-type(2) {
    top: 30px;
    width: 50px !important;
  }
}

.openbtn1 span:nth-of-type(3) {
  top: 40px;
}
@media screen and (min-width: 640px) {
  .openbtn1 span:nth-of-type(3) {
    top: 45px;
  }
}

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

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

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

.seemore {
  color: #fff;
  font-size: 2rem;
  font-family: "Montserrat";
  border: 3px solid #fff;
  padding: 1rem;
  max-width: 350px;
  display: block;
  margin: 1rem auto 0 auto;
  text-align: center;
  position: relative;
}
.seemore:after {
  position: absolute;
  right: 20px;
  top: 48%;
  content: "";
  background: url("../image/arrow-btn.svg") no-repeat;
  background-size: contain;
  width: 50px;
  height: 5px;
  display: inline-block;
  margin: 0 0 0 1rem;
}
.seemore:hover {
  background: #fff;
  color: #333;
}
@media screen and (min-width: 640px) {
  .seemore {
    color: #fff;
    font-size: 3.2rem;
    font-family: "Montserrat";
    border: 3px solid #fff;
    padding: 1rem;
    max-width: 350px;
    display: block;
    margin: 2rem auto 0 auto;
    text-align: center;
    position: relative;
  }
  .seemore:after {
    position: absolute;
    right: 20px;
    top: 48%;
    content: "";
    background: url("../image/arrow-btn.svg") no-repeat;
    background-size: contain;
    width: 50px;
    height: 5px;
    display: inline-block;
    margin: 0 0 0 1rem;
  }
}

footer p {
  font-family: "Montserrat";
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding: 2rem 1rem;
}

.archive-title {
  padding: 5rem 0 0rem 0;
}
@media screen and (min-width: 640px) {
  .archive-title {
    padding: 10rem 0 0rem 0;
  }
}

.archive-title-inner h2 {
  color: #fff;
  font-size: 5rem;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .archive-title-inner h2 {
    color: #fff;
    font-size: 11rem;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    letter-spacing: 0.5rem;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.archive-title h2 {
  animation: blink 3s infinite;
  /* 1秒ごとに点滅 */
}

.single-title {
  padding: 5rem 0;
}

.single-title-inner h2 {
  font-size: 2.8rem;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5rem;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 640px) {
  .single-title-inner h2 {
    font-size: 4.8rem;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    letter-spacing: 0.5rem;
    text-align: center;
    color: #fff;
  }
}

.image-gallery {
  display: block;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1rem 5rem 1rem;
  /* 画像間の余白 */
}
.image-gallery img {
  height: auto;
  width: 100%;
  object-fit: contain;
}
@media screen and (min-width: 640px) {
  .image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1rem 5rem 1rem;
    /* 画像間の余白 */
  }
  .image-gallery img {
    height: 350px;
    /* すべての画像の高さを揃える */
    width: auto;
    /* 縦横比を維持したまま幅を自動調整 */
    object-fit: cover;
    /* 画像を容器いっぱいに収めつつ、縦横比を維持 */
  }
}
.image-gallery::after {
  content: "";
  display: inline-block;
  width: 30%;
}

/* モーダルのスタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  padding: 5rem 0 0 0;
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* 閉じるボタンのスタイル */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.about-sub {
  height: 500px;
}
@media screen and (min-width: 640px) {
  .about-sub {
    height: 600px;
  }
}

.about-sub-text {
  top: 60%;
}

.about-entry {
  padding: 4rem 0 2rem 0;
}
@media screen and (min-width: 640px) {
  .about-entry {
    padding: 5rem 0;
  }
}

.about-entry-inner h2 {
  font-size: 2.4rem;
  font-family: "Montserrat";
  color: #FFF;
  margin: 0 0 3rem 0;
}
.about-entry-inner h2 span {
  margin: 1rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.4rem;
  display: block;
}
.about-entry-inner h2 span:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  margin: 0 2rem 0 0;
  background: #FFF;
}
.about-entry-inner p {
  color: #fff;
  line-height: 3rem;
  margin: 0 0 2rem 0;
  letter-spacing: 0.2rem;
}
.about-entry-inner a {
  display: block;
  max-width: 400px;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 2rem;
  border-radius: 60px;
  margin: 3rem 0 0 0;
}
.about-entry-inner a:hover {
  background: #fff;
  color: #333;
}
@media screen and (min-width: 640px) {
  .about-entry-inner h2 {
    font-size: 4rem;
    font-family: "Montserrat";
    color: #FFF;
    margin: 0 0 4rem 0;
  }
  .about-entry-inner h2 span {
    margin: 1rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 2rem;
    display: block;
  }
  .about-entry-inner h2 span:before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    margin: 0 2rem 0 0;
    background: #FFF;
  }
  .about-entry-inner p {
    color: #fff;
    line-height: 3rem;
    margin: 0 0 2rem 0;
    letter-spacing: 0.2rem;
  }
  .about-entry-inner a {
    display: block;
    max-width: 400px;
    text-align: center;
    font-size: 1.6rem;
    color: #fff;
    border: 1px solid #fff;
    padding: 2rem;
    border-radius: 60px;
    margin: 4rem 0 0 0;
  }
  .about-entry-inner a:hover {
    background: #fff;
    color: #333;
  }
}

.career {
  padding: 4rem 0;
}

.career-inner h2 {
  font-size: 2.4rem;
  font-family: "Montserrat";
  color: #FFF;
  margin: 0 0 2rem 0;
}
.career-inner h2 span {
  margin: 1rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.6rem;
  display: block;
}
.career-inner h2 span:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  margin: 0 2rem 0 0;
  background: #FFF;
}
@media screen and (min-width: 640px) {
  .career-inner h2 {
    font-size: 4rem;
    font-family: "Montserrat";
    color: #FFF;
    margin: 0 0 4rem 0;
  }
  .career-inner h2 span {
    margin: 1rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 2rem;
    display: block;
  }
  .career-inner h2 span:before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    margin: 0 2rem 0 0;
    background: #FFF;
  }
}
.career-inner ul li {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: flex-start;
}
.career-inner ul li:before {
  content: "\e5ca";
  font-family: "Material Icons";
  font-size: 2rem;
  margin: 0 1rem 0 0;
}
@media screen and (min-width: 640px) {
  .career-inner ul li {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 0 2rem 0;
    display: flex;
    align-items: flex-start;
  }
  .career-inner ul li:before {
    content: "\e5ca";
    font-family: "Material Icons";
    font-size: 2rem;
    margin: 0 1rem 0 0;
  }
}/*# sourceMappingURL=common.css.map */