@charset "UTF-8";

/*==========================
common
==========================*/

:root {
  --main-color__grn: #36684b;
  --main-color__blk: #252525;
  --main-color__wht: #fff;
  --sub-color__grn: rgba(54, 104, 75, 0.2);
  --sub-color__blk: rgba(255, 255, 255, 0.1);
  --contentWidth: 94.4%;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", Arial, sans-serif;
  font-style: normal;
  color: var(--primary-black, #252525);
  line-height: 1.5;
}

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

h2 {
  height: 61px;
  margin: 30px 24px 0 24px;
  justify-content: center;
  color: rgba(54, 104, 75, 0.2);
  font-family: Orbitron;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 90px;

}

h3 {
  margin: 0 24px;
  color: var(--main-color__grn);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

/* animat CSS h2 h3 */

.subject__ttl__en, .subject__ttl__ja {
  opacity: 0;
}

.subject__ttl__en.animated {
  opacity: 1;
  animation: slideInRight;
  animation-duration: 0.5s;
}

.subject__ttl__ja.animated {
  opacity: 1;
  animation: slideInLeft;
  animation-duration: 0.5s;  
}


@media screen and (min-width: 769px) {
  h2 {
    display: flex;
    /* height: 100px; */
    margin: 50px 8% 0 5%;
    flex-direction: column;
    font-size: 8rem;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 4px;
  }

  h3 {
    margin-left: 5%;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 30px; /* 85.714% */
    letter-spacing: 0.875px;
  }
  
}

/*==========================
Btn ※Top, Service, Contact
==========================*/

.btn {
  margin: 20px 0 40px 0;
}

.btn a {
  background: var(--main-color__grn);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
  padding: 10px 25px;
  color: var(--main-color__wht);
  transition: 0.3s ease-in-out;
  font-weight: 500;
  border-radius: 10px;
  font-size: 1.6rem;
}

.btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn a:hover {
  background: var(--sub-color__grn);
  color: var(--main-color__blk);
}
.btn a:hover:after {
  right: 1.4rem;
}

.btn--blk a:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--main-color__wht);
}

/* btn レスポンシブ */

@media screen and (min-width: 769px) {
  .btn a {
    display: flex;
    max-width: 350px;
    height: 70px;
    margin-top: 50px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    letter-spacing: 1.5px;
    font-weight: 500;
  }

  .btn a:after {
    width: 8px;
    height: 8px;
  }
}

/*==========================
header
==========================*/

.header,
.nav__header {
  padding: 25px 6%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo_PC {
  display: none;
}

/* .nav初期表示 */
.nav {
  background: var(--main-color__grn);
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(150%);
  transition: transform 0.4s;
}

.nav__header {
  background-color: var(--main-color__wht);
}

.nav__list {
  display: flex;
  width: 100%;
  padding: 50px 30px 20px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.nav__item {
  color: var(--main-color__wht);
  font-size: 1.7rem;
  font-weight: 700;
}

.nav__contact__btn {
  margin-top: 40px;
  padding: 0 7.7%;
  position: relative;
}

.nav__contact__btn a {
  display: flex;
  width: 200px;
  padding: 5px 0;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--main-color__wht);
  color: var(--main-color__grn);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 30px; /* 230.769% */
  letter-spacing: -0.13px;
}

.nav__contact__btn a::after {
  content: "";
  position: absolute;
  top: 51%;
  left: 50%;
  font-size: 90%;
  display: flex;
  align-items: center;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* ナビゲーション・メニュー表示 */
.nav.active {
  transform: translateX(0);
}

.header__btn {
  display: block;
  width: 64px;
  height: 64px;
}

/* header PC レスポンシブ */
@media screen and (min-width: 1024px) {
  .logo_SP {
    display: none;
  }

  .logo_PC {
    display: block;
  }

  .header {
    display: flex;
    height: 100px;
    padding: 10px 80px 0 80px;
    align-items: center;
    justify-content: space-between;
  }

  .nav__header {
    display: none;
  }

  .nav {
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    position: static;
    transform: translate(0);
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0 0 0 0;
  }

  .nav__item {
    color: var(--main-color__blk);
    font-size: 1.7rem;
    font-weight: 600;
    padding: 10px 10px;
  }


  /*//// pc nav__itemのホバーアニメーション////// */

  .nav__item {
    padding: 0 0;
    height: 100%;
    width: auto;
    overflow: hidden;
  }

  .nav__item a {
    width: 100%;
    text-decoration: none;
    color: var(--main-color__blk);
    display: block;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    font-weight: bold;
    position: relative;
    padding: 10px 10px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }

  .nav__item a::after{
    position: absolute;
    content: '';
    right: 0%;
    width: 300%;
    height: 100%;
    background: linear-gradient(to left, #fff 34%,#0c803c 34%,#2e8954 66%,#36684b 66%);
    z-index: -1;
    transition: 0.6s;
  }

  .nav__item a:hover {
    color: #fff;
  }

  .nav__item a:hover::after{
    right: -200%;
  }

  /*//// pc nav__itemのホバーアニメーション END////// */

  .header_btn,
  .nav__contact__btn {
    display: none;
  }
}

/*==========================
Footer
==========================*/

.footer {
  background: var(--main-color__blk);
  color: var(--main-color__wht);
  padding: 30px 0;
}

.footer img {
  margin: 0 15px;
}

.adress__num {
  margin: 10px 24px;
  font-size: 1.4rem;
}

.footer ul {
  margin: 30px 24px;
  font-size: 1.6rem;
  font-weight: 700;
  flex-wrap: wrap;
}

.footer__menu__item {
  margin-top: 10px;
  font-weight: 400;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

.topBtn {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10%;
  right: 5%;
  background-color: var(--main-color__grn);
  border-radius: 30%;
  font-size: 1.4rem;
  z-index: 90;
}

/* footer レスポンシブPC */
@media screen and (min-width: 1024px) {
  .logo_SP,
  .topBtn {
    display: none;
  }

  .logo_PC {
    display: block;
    max-width: 250px;
  }

  .logo__address a {
    display: block;
    max-width: 250px;
  }

  .footer__cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .ad_num {
    font-size: 1.4rem;
    letter-spacing: 1.5px;  
  }

  .address {
    font-size: 1.6rem;
    letter-spacing: 1.5px;
  }

  .footer__menu {
    display: flex;
    gap: 0 20px;
  }

  .footer ul {
    margin: 0;
    font-weight: 600;
  }

  .footer__menu__item {
    margin-top: 0;
    font-weight: 600;
    padding: 10px 0;
  }

  /* //footer メニューホバーアニメーション */

    .footer__menu__item {
      padding-bottom: 5px;
      position: relative;
    }
    .footer__menu__item::before {
      background: var(--main-color__grn);
      content: '';
      width: 100%;
      height: 4px;
      position: absolute;
      left: 0;
      bottom: 0;
      transform-origin: right top;
      transform: scale(0, 1);
      transition: transform .3s;
    }

    .footer__menu__item:hover::before {
      transform-origin: left top;
      transform: scale(1, 1);
    }


  /* //footer メニューホバーアニメーション END */

}
  /* --- Contact Form 7 埋め込み用調整 --- */

/* PC・タブレット（769px以上）で横並びにする設定*/
@media screen and (min-width: 769px) {
  .contact-layout-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
}

/* 共通：CF7が自動挿入する不要な余白をリセット */
.contact-layout-wrapper p {
  margin: 0;
  padding: 0;
}


/* =========================================
   Footer Renewal (追加分)
   ========================================= */
/* ----------------------------------
   SP Layout (Mobile First)
   ---------------------------------- */

/* 表示切り替え：SPを表示、PCを非表示 */
.footer_sp { display: block; }
.footer_pc { display: none; }

/* SP コンテナ設定 */
.footer_sp .footer__inner {
  padding: 0 24px;
  text-align: left;
}

/* ロゴ */
.f_sp_logo {
  margin-bottom: 20px;
}
.f_sp_logo img {
  max-width: 200px;
  margin: 0;
}

/* 住所 */
.f_sp_address {
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--main-color__wht);
}

/* インスタグラム */
.f_sp_insta {
  margin-bottom: 30px;
}

.f_sp_insta img {
  margin: 0;
  display: block;
}

/* ▼▼▼ SP メニューレイアウト (Flex横並び) ▼▼▼ */
.f_sp_menu_row {
  display: flex;
  justify-content: space-between; /* 左右配置 */
  align-items: flex-start;        /* 上揃え */
  gap: 20px;                      /* カラム間の余白 */
  margin-bottom: 30px;
  width: 100%;
}

/* 左側：メインナビ */
.f_sp_nav {
  width: 55%;
}

/* 右側：グループナビ */
.f_sp_group {
  width: 40%;
}

/* ナビゲーション共通 (SP) */
.f_sp_nav ul,
.f_sp_group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.f_sp_nav li,
.f_sp_group li {
  margin-bottom: 15px;
}
.f_sp_nav a,
.f_sp_group a {
  color: var(--main-color__wht);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

/* グループセクション (SP) */
.f_group_title {
  color: var(--main-color__wht);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 10px;
  background-color: var(--main-color__grn);
  margin-bottom: 15px;
}

.f__sp__acebace {
  margin-left: 10px;
  letter-spacing: 0.1em;
}

.f_sp_group a {
  font-weight: 500;
}

/* コピーライト (SP) */
.footer_sp .copyright {
  margin-top: 40px;
  justify-content: center;
  font-size: 1.2rem;
  display: flex;
}

/* ----------------------------------
   PC Layout (min-width: 1024px)
   ---------------------------------- */
@media screen and (min-width: 1024px) {
  
  /* 表示切り替え */
  .footer_sp { display: none; }
  .footer_pc { 
    display: block; 
    padding: 10px 80px 0 80px;
  }

  /* 左側エリア */
  .f_pc_left {
    width: 45%;
    padding-right: 90px;
  }
  .f_pc_logo {
    margin-bottom: 20px;
  }

  .f_pc_logo img {
    margin: 0;
  }
  .f_pc_address {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--main-color__wht);
  }

  .pcbr {
    display: none;
  }

  .f_pc_insta img {
    margin: 0;
  }

  /* 右側エリア */
  .f_pc_right {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  /* メインメニュー (横並び) */
  .f_pc_nav_main ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px; /* 行間15px, 列間30px */
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .f_pc_nav_main a {
    color: var(--main-color__wht);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
  }
  
  /* ホバーエフェクト（緑の下線） */
  .f_pc_nav_main a::before {
    background: var(--main-color__grn);
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .f_pc_nav_main a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  /* グループメニュー (横並び配置) */
  .f_pc_nav_group {
    display: flex;
    align-items: center;
    gap: 40px; /* タイトルとリストの間隔 */
  }
  .f_pc_nav_group .f_group_title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--main-color__wht);
  }
  .f_pc_nav_group ul {
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .f_pc_nav_group a {
    color: var(--main-color__wht);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
  }

  /* コピーライト (PC) */
  .footer_pc .copyright {
    margin-top: 60px;
    font-size: 1.6rem;
    opacity: 0.8;
    justify-content: center;
    display: flex;
    letter-spacing: 1.5px;
  }
}


