.pc_only {
  display: block;
}

/* ヘッダー */
header {
  width: 100%;
  position: fixed;
  z-index: 1;
  pointer-events: none;
}

/* 模様 */
.fixed_header {
  width: 100%;
}

.header_circle_area {
  width: 100%;
  height: 24.7rem;
  position: relative;
  overflow: hidden;
  top: -1rem;
}

/* 緑色円大 */
.header_circle_area img:nth-of-type(1),
.header_circle_area img:nth-of-type(4) {
  width: 58.578rem;
  height: 58.707rem;
}

/* 緑色円小 */
.header_circle_area img:nth-of-type(2),
.header_circle_area img:nth-of-type(6) {
  width: 35.155rem;
  height: 35.233rem;
}

/* オレンジ色円 */
.header_circle_area img:nth-of-type(3),
.header_circle_area img:nth-of-type(5) {
  width: 18.5rem;
  height: 18.465rem;
}

.header_circle_area img:nth-of-type(1) {
  position: absolute;
  top: -33.4rem;
  left: -18rem;
  z-index: 20;
}

.header_circle_area img:nth-of-type(2) {
  position: absolute;
  top: -18.7rem;
  left: 23rem;
  z-index: 30;
}

.header_circle_area img:nth-of-type(3) {
  position: absolute;
  top: -11.7rem;
  left: 49.4rem;
  z-index: 40;
}

.header_circle_area img:nth-of-type(4) {
  position: absolute;
  top: -41.5rem;
  left: 41.4rem;
  z-index: 20;
}

.header_circle_area img:nth-of-type(5) {
  position: absolute;
  top: -6rem;
  right: 18rem;
  z-index: 40;
}

.header_circle_area img:nth-of-type(6) {
  position: absolute;
  top: -23rem;
  right: -10.6rem;
  z-index: 20;
}

/* ヘッダーアニメーション */
.down {
  opacity: 0;
}

.after_animation {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }

  50% {
    transform: translate(0, -7px) rotate(0deg);
  }

  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}

/* ロゴ */
.header_wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 0;
}

.header_wrapper a {
  display: block;
  width: 32.4rem;
  height: 9.8rem;
  position: relative;
  top: 1.7rem;
  z-index: 60;
  margin-left: 3rem;
  pointer-events: visible;
}

/* ハンバーガーメニュー */
/* 3本線 */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 3.5rem;
  right: 5rem;
  row-gap: 1.4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #febe23;
  z-index: 60;
}

.hamburger_line {
  width: 4rem;
  height: 0.125rem;
  opacity: 1;
  background-color: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}

/* クリックした時 */
.hamburger.open .hamburger_line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger_line:nth-child(1) {
  width: 5rem;
  transform: translateY(1.525rem) rotate(-45deg);
}

.hamburger.open .hamburger_line:nth-child(3) {
  width: 5rem;
  transform: translateY(-1.525rem) rotate(45deg);
}

/* ハンバーガーメニュー */
.hamburger_menu {
  background-image: url(../img/hamburger_menu.png);
  background-repeat: no-repeat;
  background-position: top -2vh left -1vh;
  background-size: cover;
  transition: all 0.6s ease-in-out;
  position: fixed;
  right: -105%;
  width: 44.736vh;
  height: 110vh;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 17.3rem;
  padding-right: 2rem;
}

.hamburger_menu.open {
  right: 0;
}

.hamburger_menu a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  position: relative;
  width: 17vh;
  text-align: center;
}

.hamburger_menu li:not(:first-of-type) a:hover {
  background-image: url(../img/dot_hamburger.png);
  background-repeat: no-repeat;
  background-position: center 60%;
}

.hamburger_menu li:first-of-type a img {
  width: 17vh;
  height: 20vh;
  object-fit: contain;
}

.hamburger_menu li:nth-of-type(n + 2) {
  position: relative;
}

.hamburger_menu li:first-child a {
  margin-top: -5rem;
  margin-bottom: 1.5rem;
}

/* 日本語テキストのスタイル */
.menu_ja {
  font-size: 1.6vh;
  color: #ffffff;
  margin-top: 1.1rem;
  padding-bottom: -0.2rem;
}

/* フッター */
footer {
  background-image: url("../img/footer_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 6.257rem;
  height: 19.6rem;
  display: flex;
}

.footer_logo {
  width: auto;
  height: 10rem;
  padding-right: 6.5rem;
  padding-left: 5rem;
  margin-top: -0.2rem;
  margin-bottom: 3.243rem;
  border-right: 1px solid black;
}

.name_address {
  display: flex;
  margin-top: -0.2rem;
}

.name {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 2.8rem;
  margin-left: 2.8rem;
  color: #333333;
  width: 15rem;
  text-align: center;
  margin-top: 2.3rem;
}

.name span {
  display: block;
  font-family: "Noto Sans JP";
  font-weight: bold;
  color: #333333;
  font-size: 1.4rem;
  margin-bottom: -0.6rem;
  text-align: center;
}

.address {
  margin-left: 1.5rem;
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
  line-height: 1.67em;
  margin-top: 3.2rem;
}

.copyright {
  font-size: 1.2rem;
  font-family: "Noto Sans JP";
  margin-left: 5.5rem;
  margin-top: 8.7rem;
}

.gotop_img {
  width: 8.6rem;
  height: auto;
}

#gotop {
  display: none;
  position: fixed;
  right: 5rem;
  bottom: 0.5rem;
  width: 8.6rem;
  height: auto;
  z-index: 1;
}

@media screen and (max-width: 699.98px) {
  .pc_only {
    display: none;
  }

  /* ヘッダー */
  /* 模様 */
  .header_circle_area {
    width: 100%;
    height: 13.39rem;
  }

  /* 緑色円小 */
  .header_circle_area img:nth-of-type(1),
  .header_circle_area img:nth-of-type(2),
  .header_circle_area img:nth-of-type(4) {
    width: 14.1rem;
    height: 14.1rem;
  }

  /* オレンジ色円 */
  .header_circle_area img:nth-of-type(3) {
    width: 9.5rem;
    height: 9.5rem;
  }

  .header_circle_area img:nth-of-type(1) {
    top: -1rem;
    left: -5rem;
  }

  .header_circle_area img:nth-of-type(2) {
    top: -5.7rem;
    left: 5rem;
  }

  .header_circle_area img:nth-of-type(3) {
    top: -0.7rem;
    left: 16.4rem;
    z-index: 40;
  }

  .header_circle_area img:nth-of-type(4) {
    top: -7rem;
    left: 23rem;
    z-index: 30;
  }

  /* ロゴ */
  .header_wrapper {
    height: 12.39rem;
  }

  .header_wrapper a {
    width: 12.9em;
    height: 3.9rem;
    top: 0.7rem;
    margin-left: 1rem;
  }

  /* ハンバーガーメニュー */
  /* 3本線 */
  .hamburger {
    top: 0.5rem;
    right: 0.5rem;
    width: 6rem;
    height: 6rem;
  }

  /* ハンバーガーメニュー */
  .hamburger_menu {
    background-image: url(../img/hamburger_menu_sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    width: 45vh;
  }

  .hamburger_menu li:first-of-type a .sp_only {
    height: 4.9rem;
    object-fit: contain;
  }

  .hamburger_menu li:first-child a {
    margin-top: -9rem;
  }

  .hamburger_menu li:first-of-type a img {
    height: 8.665rem;
    width: 16.75vh;
  }

  /* フッター */
  footer {
    background-image: url("../img/footer_sp.png");
    padding-top: 2.9rem;
    flex-direction: column;
    height: 20.405rem;
  }

  .footer_logo {
    width: 29rem;
    height: auto;
    margin: 0 auto;
    border-right: none;
    padding: 0;
  }

  .name_address {
    margin-top: -1.45rem;
  }

  .name {
    font-size: 2.8rem;
    margin-left: 3.15rem;
    width: 14.9rem;
    text-align: center;
    /* margin-top: 2.4rem; */
  }

  .name span {
    width: 14.9rem;
    text-align: left;
    margin-left: -0.2rem;
  }

  .address {
    margin-left: 0.6rem;
    margin-top: 3.1rem;
  }

  .copyright {
    margin-left: 3.2rem;
    margin-top: 0;
  }

  .gotop_img {
    width: 5rem;
  }

  #gotop {
    width: 5rem;
    bottom: 0.5rem;
    right: 3rem;
  }
}

/* 
 * 共通パーツ 
 */

/* ぼかし */
.blur {
  transition: all 1s;
  filter: blur(0.5rem);
}

/* ぼかし外し */
.blur.scrollin {
  filter: blur(0);
}

/* フェードイン */
.fade_in {
  display: none;
}

.word_fadeup {
  overflow: hidden;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.in {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

h2[data-aos].aos-animate .contact_text_box {
  transition: opacity 0.5s ease-out;
  opacity: 1;
}

h2[data-aos].aos-animate .contact_text_box .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

@media screen and (max-width: 698.98px) {
  .blur {
    transition: all 0.2s;
  }
}
