@charset "utf-8";

#container,
main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/*========= body全体 ===============*/
body {

  min-height: 100vh;
  overflow-x: hidden;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #241105;
  line-height: 2.0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background-image: url("../../img/logo/bc_white.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  transform: scale(1.1);
  animation: bgFloat 18s ease-in-out infinite alternate;
}

@keyframes bgFloat {
  0% {
    transform: scale(1.08) translate(0, 0) rotate(0deg);
  }

  25% {
    transform: scale(1.1) translate(-20px, -30px) rotate(0.5deg);
  }

  50% {
    transform: scale(1.09) translate(20px, -45px) rotate(-0.5deg);
  }

  75% {
    transform: scale(1.11) translate(-20px, 30px) rotate(0.4deg);
  }

  100% {
    transform: scale(1.08) translate(0, 0) rotate(0deg);
  }
}

h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-size: 24px;
  font-weight: 300;
}

.green_text {
  font-size: 32px;
  color: #46A150;
  font-family: "TA_oonishi";
}

.orange_text {
  font-size: 32px;
  color: #FCB238;
  font-family: "TA_oonishi";
}

h2 {
  font-size: 24px;
  color: #46A150;
  font-family: "Klee One";
}

h3 {
  font-size: 20px;
  color: #46A150;
  font-family: "Klee One";
}

h4 {
  font-size: 18px;
  color: #2A1105;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
}


img {
  width: 100%;
}

@media(min-width: 767px) {
  body {
    font-size: 18px;
    line-height: 2.0;

  }

  h1 {
    font-size: 48px;
  }

  .green_text {
    font-size: 80px;

  }

  .orange_text {
    font-size: 80px;

  }

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 36px;

  }

  h4 {
    font-size: 24px;

  }


}



/*========= 丸と線のあしらい ==========*/


.bg_circles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg_circles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background-color: rgba(255, 237, 37, 0.23);
  filter: blur(8px);
  animation: circleFloat 10s ease-in-out infinite alternate;
}

.bg_circles span:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 12%;
  left: 8%;
  animation-duration: 9s;
}

.bg_circles span:nth-child(2) {
  width: 70px;
  height: 70px;
  top: 28%;
  right: 10%;
  animation-duration: 12s;
}

.bg_circles span:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 55%;
  left: -40px;
  animation-duration: 14s;
}

.bg_circles span:nth-child(4) {
  width: 90px;
  height: 90px;
  bottom: 18%;
  right: 18%;
  animation-duration: 11s;
}

.bg_circles span:nth-child(5) {
  width: 50px;
  height: 50px;
  bottom: 8%;
  left: 35%;
  animation-duration: 8s;
}

@keyframes circleFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.08);
  }

  100% {
    transform: translate(-20px, 25px) scale(0.96);
  }
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

/*========= 丸のあしらい ===============*/


/*========= 見出しの丸と線のあしらい ===============*/


.text_areaw500 h2 {

  width: fit-content;
  margin: 0 auto;
  position: relative;
  text-align: center;

}

.text_areaw500 p {
  margin-top: 40px;
}

.text_areaw500 h2::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("../../img/logo/asirai_maru.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  top: -8px;
  right: -17px;
}

.text_areaw500 h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background-color: #4C9153;
  margin: 10px auto 0;
}

@media(min-width:768px) {
  .text_areaw500 h2 {


    margin: 0 auto 0 0;
    position: relative;
    text-align: left;

  }

  .text_areaw500 p {
    width: 550px;
    margin-top: 60px;
  }

  .text_areaw500 h2::before {
    top: 0;
    right: -10px;
  }

  .text_areaw500 h2::after {
    margin: 10px 0 auto 0;
  }
}

/*========= あしらい ===============*/





/*========= ボタンのためのCSS ===============*/

.btnarrow5 {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  width: 220px;
  border-radius: 60px;

  padding: 8px 30px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  outline: none;
  background: #5BAE3F;
  /*アニメーションの指定*/
  transition: all .2s linear;
}



/*矢印と下線の形状*/
.btnarrow5::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: -26px;
  /*下線の形状*/
  width: 40px;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all .2s linear;
}

.btnarrow5::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 20%;
  right: -21px;
  /*矢印の形状*/
  width: 1px;
  height: 12px;
  background: #333;
  transform: skewX(45deg);
  /*アニメーションの指定*/
  transition: all .2s linear;
}

/*hoverした際の移動*/
.btnarrow5:hover::before {
  right: -30px;
}

.btnarrow5:hover::after {
  right: -25px;
}



/* エントリーボタン */
.recruit_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 280px;
  height: 70px;

  background-color: #6abf4b;
  color: #fff;
  font-size: 20px;
  font-weight: 500;


  overflow: hidden;
}

/* 文字 */
.recruit_btn span {
  position: relative;
  z-index: 2;
  transform: translateX(-20px);
}

/* 白い線 */
.recruit_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;

  width: 50px;
  height: 1px;

  background: #fff;
  transform: translateY(-50%);
  z-index: 1;
}

/* 動く丸 */
.recruit_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 42px;

  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: #fff;
  transform: translateY(-50%);
  transition: right 0.4s ease;
  z-index: 3;
}

/* ホバー時 */
.recruit_btn:hover::after {
  right: 6px;
}

/* 詳しくはこちらボタン */
.more_btn {
  width: 240px;
  height: 54px;
  border: 1px solid #4C9153;
  border-radius: 999px;
  color: #4C9153;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 10px 0 28px;
  margin-top: 40px;
}

.more_btn_arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4C9153;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  line-height: 1;

  transform: translateX(0);
  transition: transform 0.3s ease;
}

.more_btn:hover .more_btn_arrow {
  transform: translateX(8px);
  background-color: transparent;
  color: #4C9153;
  border: 1px solid #4C9153;
}

/*=========ここまで ボタンのためのCSS ===============*/



/* ========== ヘッダー ========== */

.site_header {
  position: sticky;
  top: 0;
  z-index: 9998;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.header_inner {
  width: 100%;
  height: 80px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo {
  display: block;
}

.header_logo img {
  width: 135px;
  height: auto;
  display: block;
  margin-left: 0;

  transform: scale(1.18);
  transform-origin: left center;
}

@media(min-width:768px) {
  .header_logo img {
    width: 220px;
    height: auto;
    display: block;
    margin-left: 20px;
    margin-top: 20px;
  }
}

/* ナビを開いた時、ヘッダー背景とロゴを消す */
.site_header.header_hidden {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

/* ロゴだけ非表示 */
.site_header.header_hidden .header_logo {
  opacity: 0;
  visibility: hidden;
}

/* ×ボタンは残す */
.site_header.header_hidden .openbtn {
  opacity: 1;
  visibility: visible;
}




/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0;
  /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-image: url(../../img/logo/bc_white.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;

  /*背景を少し透過させる*/
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}




#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/

.g-nav_inner {
  width: 100%;
  min-height: 100dvh;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.g-nav_logo {
  text-align: center;
  margin-bottom: 40px;
}

.g-nav_logo img {
  width: 210px;
  height: auto;
}

.g-nav_list {
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.g-nav_list li {
  text-align: center;
  margin-bottom: 36px;
}

.g-nav_entry {
  text-align: center;
}





.g-nav_list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;

  position: relative;

  /* 今の大文字化を消す */
  text-transform: none;
  letter-spacing: normal;
}

.g-nav_list li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  /*線の形状*/
  width: 70%;
  height: 2px;
  background: #FCB238;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: center top;
  /*上部中央基点*/
}

/*現在地とhoverの設定*/

.g-nav_list li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}



.g-nav_en {
  font-size: 20px;
  font-weight: 400;
  color: #4C9153;
  line-height: 1;
  text-transform: none;
}

.g-nav_ja {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #2A1105;
  line-height: 1.4;
  white-space: nowrap;
}

@media(min-width:768px) {
  .g-nav_en {
    font-size: 28px;

  }

  .g-nav_ja {
    font-size: 16px;

  }

}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 20px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

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

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

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

/* =========================
  ENTRYエリア PC版：左右横並び
========================= */

@media (min-width: 768px) {

  .entry_area_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;

    max-width: 760px;
    margin: 0 auto;
  }

  /* 左側：ENTRY見出しと本文 */
  .entry_area .text_area_w250 {
    width: 300px;
    margin: 0;
    text-align: left;
  }

  .entry_area h2 {
    text-align: left;
  }

  .entry_area h2::after {
    margin-left: 0;
  }

  .entry_area .text_area_w250 p {
    text-align: left;
  }

  /* 右側：ボタンエリア */
  .entry_button {
    width: 240px;
    margin-top: 0;
  }

  .entry_button ul {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .entry_button li {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .entry_text {
    display: block;
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
  }

  .entry_button .btnarrow5 {
    width: 240px;
    height: 54px;
  }
}

/*=========ここまで ヘッダー ===============*/





/*========= 共通fv ===============*/


.fv_page {

  height: calc(100vh - 86px);

}

.fv_copy {
  width: fit-content;
  margin: 0 auto;
}

.fv_copy h1 {
  margin: 0 auto;
  text-align: left;
  font-size: clamp(24px, 6.4vw, 40px);

  opacity: 0;
  transform: translateY(24px);
  animation: fvCopyFade 1.0s ease 0.4s forwards;
}

@keyframes fvCopyFade {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.green_text,
.orange_text {
  font-size: clamp(50px, 8.0vw, 80px);

}

.fv_img {
  width: 100%;
  height: 70%;
  overflow: hidden;
  position: relative;
}

.fv_slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.fv_slide {
  transform: scale(1);
  animation: fvFade 12s infinite, fvZoom 12s infinite;
}

@keyframes fvZoom {
  0% {
    transform: scale(1);
  }

  33% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

.fv_slide.active {
  opacity: 1;
}

.fv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (min-width: 768px) {
  .fv_page {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: none;
  }

  .fv_copy {
    width: 45%;
    padding-left: 6%;
    padding-right: 0;
    box-sizing: border-box;
    z-index: 2;
  }

  .fv_copy h1 {
    white-space: nowrap;
  }

  .fv_img {
    display: block;
    width: 60%;
    height: 100%;
    margin-left: auto;
    overflow: hidden;
    position: relative;
  }

  .fv_slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .fv_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
}

.scroll_btn {
  display: none;
}

.scroll_text {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #4C9153;
  writing-mode: vertical-rl;
  font-family: "Oswald", sans-serif;
}

.scroll_line {
  position: relative;
  display: block;
  width: 1px;
  height: 70px;
  background-color: rgba(76, 145, 83, 0.35);
  overflow: hidden;
}

.scroll_line::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  width: 1px;
  height: 70px;
  background-color: #4C9153;
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(140px);
  }
}

/* スクロールボタン */
@media(min-width:768px) {
  .scroll_btn {
    position: absolute;
    left: 6%;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .scroll_text {
    font-size: 13px;
    letter-spacing: 0.18em;
    color: #4C9153;
    writing-mode: vertical-rl;
    font-family: "Oswald", sans-serif;
  }

  .scroll_line {
    position: relative;
    display: block;
    width: 3px;
    height: 70px;
    background-color: rgba(76, 145, 83, 0.35);
    overflow: hidden;
  }

  .scroll_line::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 0;
    width: 2px;
    height: 70px;
    background-color: #4C9153;
    animation: scrollLine 1.8s ease-in-out infinite;
  }

  @keyframes scrollLine {
    0% {
      transform: translateY(0);
    }

    100% {
      transform: translateY(140px);
    }
  }
}

/*=========エントリーエリア ===============*/


.entry_area {
  margin: 100px 20px;
}

.entry_area h2 {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.entry_area h2::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("../../img/logo/asirai_maru.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  top: -8px;
  left: -17px;
}

.entry_area h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background-color: #FCB238;
  margin: 10px auto 0 auto;
}

.entry_area .text_area_w250 {
  width: 250px;
  margin: 0 auto;
}

.entry_area h2 {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.entry_area .text_area_w250 p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
}

.entry_area .entry_button {
  margin-top: 20px;
  text-align: center;
}

/* =========================
  ENTRYエリア：ボタン共通デザイン
  ※文字や配置はそのまま、ボタンだけ変更
========================= */

/* =========================
  ENTRYエリア：ボタンまわり
  ※文字配置はそのまま、ボタンだけ共通デザイン
========================= */

.entry_button {
  margin-top: 40px;
}

/* ulの余白をリセット */
.entry_button ul {
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* liの余白をリセット */
.entry_button li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ボタン上の説明文 */
.entry_text {
  display: block;
  margin-bottom: 2px;

  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: #241105;
}

/* ボタン共通 */
.entry_button .btnarrow5 {
  position: relative;

  width: 240px;
  height: 54px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;


  border-radius: 0;
  overflow: hidden;
}

/* 緑ボタン */
.entry_button #green_button {
  background-color: #6abf4b
}

/* オレンジボタン */
.entry_button #orange_button {
  background-color: linear-gradient(90deg, #ffbd4a 0%, #f3a52c 100%);
}

/* 白い線 */
.entry_button .btnarrow5::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;

  width: 50px;
  height: 1px;

  background-color: #fff;
  transform: translateY(-50%);
  z-index: 1;
}

/* 動く丸 */
.entry_button .btnarrow5::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 42px;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background-color: #fff;

  transform: translateY(-50%);
  transition: right 0.4s ease;
  z-index: 2;
}

/* hoverで丸が右に移動 */
.entry_button .btnarrow5:hover::after {
  right: 6px;
}

/*=========エントリーエリア ===============*/


/*========= フッター ===============*/
.footer {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url(../../img/logo/bc_green.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 110% 110%;

  animation: footerBgFloat 14s ease-in-out infinite alternate;
}

.footer_inner {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}


@keyframes footerBgFloat {
  0% {
    transform: scale(1.05) translate(0, 0) rotate(0deg);
  }

  50% {
    transform: scale(1.1) translate(20px, -18px) rotate(0.4deg);
  }

  100% {
    transform: scale(1.08) translate(-18px, 16px) rotate(-0.4deg);
  }
}

.footer_logo {
  margin-top: 10px;
  text-align: center;
}



.footer_logo img {

  width: 250px;
  height: 120px;
}



.footer_nav ul {
  padding: 0;
  margin: 100px 40px 50px 40px;
  list-style: none;
}

.footer_nav li {
  text-align: center;
  margin-bottom: 24px;
}

.footer_nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.footer_nav a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  /*線の形状*/
  width: 60%;
  height: 2px;
  background: #FCB238;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: center top;
  /*上部中央基点*/
}

/*現在地とhoverの設定*/

.footer_nav li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

.footer_nav_en {
  font-size: 20px;
  line-height: 1;
  color: #4C9153;
}

.footer_nav_ja {
  font-size: 10px;
  margin-top: 6px;
  line-height: 1;
  color: #2A1105;
}

.footer .entry_button {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.entry_text {
  font-size: 12px;
}

#orange_button {
  background-color: #FCB238;
}

.information {
  margin: 40px auto 0 auto;
  font-size: 14px;
}

.footer_note,
.copyright {
  font-size: 12px;
  text-align: center;
}

.footer_note {
  margin-top: 40px;
}

.copyright {
  margin-top: 0;
}

/* =========================
  フッター PC版
========================= */

@media(min-width: 768px) {

  .footer {
    width: 100%;
    background-image: url("../../img/logo/bc_green.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: scroll;
  }

  .footer_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 120px;
    align-items: center;
  }

  /* 左側：ナビ */
  .footer_nav {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .footer_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
  }

  .footer_nav li {
    margin-bottom: 0;
    text-align: left;
  }

  .footer_nav a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
  }

  .footer_nav_en {
    font-size: 28px;
    line-height: 1.2;
    color: #4C9153;
    font-weight: 400;
  }

  .footer_nav_ja {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.4;
    color: #241105;
  }



  /* 右側：ロゴ */
  .footer_logo {
    grid-column: 2 / 3;
    grid-row: 1 / 2;

    margin-top: 0;
    text-align: left;
  }

  .footer_logo img {
    width: 300px;
    height: auto;
  }

  /* 右側：会社情報 */
  .information {
    grid-column: 2 / 3;
    grid-row: 2 / 3;

    margin: 32px 0 0;
    padding: 0;
    list-style: none;

    text-align: left;
    font-size: 13px;
    line-height: 1.8;
    color: #241105;
  }

  .footer_note {
    grid-column: 2 / 3;
    grid-row: 3 / 4;

    margin-top: 32px;
    text-align: left;
    font-size: 12px;
    line-height: 1.6;
  }

  .copyright {
    grid-column: 1 / -1;
    grid-row: auto;

    margin-top: 40px;
    text-align: center;
    font-size: 12px;
  }
}

/*=========ここまで フッター ===============*/

/*=========ページトップあしらい==============*/
.page_top {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 999;

  width: 54px;
  height: 54px;
  padding: 0;
  box-sizing: border-box;

  display: block;
  overflow: hidden;
  contain: layout paint;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 20px, 0);

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease;
}

.page_top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.page_top.is_show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 768px) {
  .page_top {
    right: 20px;
    bottom: 20px;
    width: 72px;
    height: 72px;
  }
}