@charset "utf-8";

.d-none {
  display: none;
}

@media screen and (min-width:992px) {
  .d-lg-block {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .d-md-block {
    display: block;
  }
}

* {
  font-family: "Roboto", "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
}

:root {
  --font-color: #333333;
  --logo-green: #9BBB7A;
  --brown: #7e4900;
  --brown-op: #7e490052;
}

.text-center {
  text-align: center;
}

.Roboto {
  font-family: "Roboto", sans-serif;
}

.inner-title {
  font-size: clamp();
  margin-top: 20px;
  font-size: 2.25rem;
  font-size: clamp(16px, 7vw, 32px);
  font-weight: 600;
  line-height: 1.7222;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
}

.inner-subtitle {
  font-family: 'Roboto';
  letter-spacing: 0.15em;
  font-size: clamp(12px, 6vw, 28px);
  color: var(--logo-green);
  display: block;
  margin: 0 0 0.5em 0 !important;
}

/* もわっとする演出   ------------------------------------------------ */
/* 枠（サイズ固定・切り抜き用） */
.a-mowatto {
  display: block;
  overflow: hidden;
  /* ←ここが重要 */
}

/* 枠自体は拡大しない */
.a-mowatto:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* 画像だけ拡大する */
.a-mowatto img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(.2, .8, .2, 1);
}

/* ホバー時：画像のみ拡大 */
.a-mowatto:hover img {
  transform: scale(1.08);
}

/* クリック時 */
.a-mowatto:active img {
  transform: scale(1.12);
}

main.l_main {
  /* margin-top: 0 !important; */
  margin-top: 84.47px;
}


.c_sm-container {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  width: 94vw;
  max-width: 1200px;
  margin: 0 auto;
}


.p_top-mv__txt {
  text-align: left;
  width: auto;
  left: 75px;
  transform: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.p_top-mv__txt span {
  font-size: 2vw;
  display: block;
  line-height: 1.8em;
  margin-top: 0.5em;
}

.slide-img img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
}



@media screen and (max-width:767.98px) {
  .p_top-mv__txt {
    left: max(10vw, 40px);
    font-size: max(5.12vw, 14px);
  }

  .p_top-mv .slide-img img {
    height: calc(100vh - 109px);
  }

  .p_top-mv__txt span {
    font-size: max(3vw, 14px);
  }
}


.c_btn {
  background-color: transparent !important;
  color: var(--font-color) !important;
  display: block;
  width: 258px;
  text-align: center;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  width: 100%;
  max-width: 200px;
  border: 2px solid var(--font-color);
  text-align: center;
  /* padding: 0.75em; */
  margin-top: 40px;
}


/* front-page.php   event   ------------------------------------------------ */
.p_top-event {
  padding: 110px 0 100px;
  display: grid;
  grid-template-columns: 25% 1fr;
  width: 94vw;
  gap: 5%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
}

.p_top-event__cont {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.p_top-event__ttl {
  flex-direction: column;
}

.p_top-event__ttl--en {
  font-family: "Roboto", serif;
  font-weight: 700;
}

/* .p_top-event__ttl .inner-title,
.p_top-event__ttl .inner-subtitle {
  writing-mode: vertical-lr;
} */

.p_top-event-btn {
  display: block;
  width: 100%;
  max-width: 200px;
  border: 2px solid var(--font-color);
  text-align: center;
  padding: 0.75em;
  margin-top: 40px;
}

.swiper-wrapper {
  height: auto !important;
}

.c_card__ttl {
  font-size: 0.9rem;
}

@media screen and (max-width: 767.98px) {


  .p_top-event__list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-column-gap: inherit;
    -moz-column-gap: inherit;
    column-gap: inherit;
    row-gap: inherit;
    /* max-width: 100%; */
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 0 auto;
  }

  .c_card {
    max-width: 999px;
  }

  .c_card__cont {
    min-height: 110px;
  }

  .c_card__thumbnail.a-mowatto {
    aspect-ratio: 1 / 0.5;
  }

  .c_card:nth-of-type(n+4) {
    display: none;
  }

  .p_top-event-btn {
    margin-top: 30px;
  }

  .c_card__ttl {
    font-size: 14px;
  }

}

@media screen and (max-width:1023.98px) {
  .p_top-event {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 1279px) {
  .p_top-event__cont {
    padding: 0 !important;
  }

  .c_card__tag {
    font-size: 10px;
  }
}

/* front-page.php   news   ------------------------------------------------ */
.p_top-mv-news__ttl {
  font-family: Roboto, serif;
}

.p_top-mv__news {
  position: relative;
  width: 100vw;
}

.p_top-mv-news {
  background-color: #fff;
  color: var(--font-color);
}

.p_top-mv-news__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 0;
}

/* front-page.php   concept   ------------------------------------------------ */
#top-concept {
  margin-top: 105px;
}

.top-conceptBox {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
  gap: 6vw;
}

.top-conceptBox .top-concept-inner-left {
  margin-left: 8vw;
  width: 44vw;
}

.top-conceptBox .top-concept-inner-left p {
  margin: 1em 0;
  line-height: 1.8em;
}

.top-conceptBox .top-concept-inner-right {
  width: 42vw;
}

.top-conceptBox .top-concept-inner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media screen and (max-width:768px) {
  .top-conceptBox {
    gap: 3vw;
  }

  .top-conceptBox .top-concept-inner-left {
    width: 94vw;
    margin: 0 auto;
  }

  .top-conceptBox .top-concept-inner-right {
    width: 94vw;
    margin: 0 auto;
  }
}

/* 1440px以上は見た目固定 */
@media screen and (min-width: 1600px) {
  .top-conceptBox {
    max-width: 1200px;
    margin: 0 auto;
    gap: 86px;
    justify-content: space-between;
  }

  .top-conceptBox .top-concept-inner-left {
    margin-left: 0;
    /* vw指定を無効化 */
    width: 500px;
    /* 1440px時の 44vw 相当（約634px） */
  }

  .top-conceptBox .top-concept-inner-right {
    width: 550px;
    /* 1440px時の 42vw 相当（約605px） */
  }
}

/* front-page.php   works   ------------------------------------------------ */
.p_top-works {
  padding-top: 105px;
  margin-top: 105px;
  padding-bottom: 105px;
  background-color: #f9f8f3;
}

.p_top-works__cont {
  width: 94vw;
  margin: 0 auto;
  max-width: 1200px;
}

.c_sect-ttl p {
  margin: 1em 0;
  line-height: 1.8em;
}

.c_sect-ttl--ja {
  margin-top: 20px;
  font-size: 2.25rem;
  font-size: clamp(16px, 7vw, 32px);
  font-weight: 600;
  line-height: 1.7222;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
}

.c_sect-ttl--ja span {
  display: block;
  font-family: "Roboto", sans-serif;
}

/* 施工事例：グリッド */
.p_top-works__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 767.98px) {
  .p_top-works__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* 画像を統一比率で見せたい場合（正方形） */
.p_top-works__item .c_panel__img {
  aspect-ratio: 1 / 0.6;
  overflow: hidden;
}

.p_top-works__item .c_panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* サムネなし時 */
.c_panel__noimg {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: #f2f2f2;
  color: #666;
  font-size: 14px;
}


/* front-page.php   lineup   ------------------------------------------------ */

.p_top-lineup {
  margin-top: 110px;
  padding: 110px 0;
  background-color: #9bbb7a45;
}

.p_top-lineup-halfarch {
  position: relative;
  overflow: hidden;
}

.p_top-lineup-halfarch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 100vw;
  /* ← 画面幅いっぱい */
  height: 120px;
  /* 波の高さ */
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 1200px 120px;
  /* 波の周期 */

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C150,10 350,110 600,60 C850,10 1050,110 1200,60 L1200,0 L0,0 Z' fill='%23f2f2f2'/%3E%3C/svg%3E");

  z-index: -1;
}

.c_lineup__txt {
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.9rem, 3vw, 1.3rem);
  font-weight: normal;
}

.p_top-lineup .c_container {
  width: 94vw;
  max-width: 1200px;
  margin: 110px auto;
}

.c_lineup__list {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
}

.c_lineup__logo {
  position: absolute;
  top: 45%;
  left: 50%;
  text-align: center;
  /* width: 100px; */
  font-size: 150%;
  font-weight: bold;
  /* -webkit-transform: translateX(-50%); */
  /* transform: translateX(-50%); */
  /* width: 133px; */
  padding: 20px 15px;
  color: #fff;
}

._jiyuu {
  background-color: #9BBB7A !important;
}

._kikaku {
  background-color: #7e4900 !important;
}

@media screen and (max-width:767.98px) {
  .p_top-lineup {
    margin-top: 110px;
  }

  .c_lineup__list {
    grid-template-columns: 1fr;
    column-gap: 40px;
    max-width: 999px;
  }

  .p_top-lineup .c_container {
    margin: 30px auto;
  }

  .c_lineup__logo {
    position: absolute;
    top: 25%;
    left: 50%;
    text-align: center;
    width: 100px;
    font-weight: normal;
    padding: 20px 15px;
    color: #fff;
  }
}



.p_top-mv__txt {
  top: 300px;
}

@media screen and (min-width:768px) and (max-width:1023.98px) {
  .p_top-mv__txt {
    top: 200px;
  }
}


@media screen and (max-width: 767.98px) {
  .p_top-mv__txt {
    top: max(10vw, 80px);
  }
}




/* front-page.php   mediaBox   ------------------------------------------------ */
.p_top-media .hp-container {
  /* background-color: #9bbb7a45; */
  padding-top: 110px;
  padding-bottom: 110px;
  margin: 110px auto;
}

.mediaBox .inner-instagram,
.mediaBox .inner-youtube {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 3px solid #7a4900;
  box-sizing: border-box;
}

.mediaBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 94vw;
  max-width: 1200px;
  margin: 30px auto;
  /* background-color: #9bbb7a45; */
}

.mediaBox p {
  margin-bottom: 1em;
}

.p_top-media .inner-subtitle {
  font-weight: bold;
}


.video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* YouTube標準 */
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 767.98px) {
  .mediaBox {
    grid-template-columns: 1fr;
  }
}



@media screen and (max-width: 767.98px) {
  .p_top-links {
    padding: 45px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .l_contact {
    padding: 70px 0;
  }
}

/* =========================================================
  Footer (kobajyu-like) for Daiharu
========================================================= */
.l_footer2 {
  background: #2f2a2a;
  background: var(--brown-op);
  /* color: #fff; */
}

.l_footer2 a {
  /* color: #fff; */
  text-decoration: none;
}

.l_footer2 a:hover {
  text-decoration: underline;
}

.l_footer2__main {
  padding: 56px 0 0;
}

.l_footer2__container {
  padding-bottom: 40px;
}

/* 2段の行 */
.l_footer2__row {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
}

.l_footer2__row--top {
  padding: 18px 0 34px;
}

.l_footer2__row--bottom {
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

/* 左：会社情報 */
.l_footer2__col--info {
  /* flex: 1 1 520px; */
  min-width: 320px;
}

.l_footer2__logos {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.l_footer2__logos img {
  height: auto;
}

.l_footer__logo--main img {
  max-width: 240px;
}

.l_footer__logo--partner img {
  max-width: 160px;
  opacity: .92;
}

.l_footer2__company {
  margin-top: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}

.l_footer2__address {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.85;
  opacity: .95;
}

.l_footer2__meta {
  margin-left: 12px;
  opacity: .9;
}

.l_footer2__social {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.l_footer2__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.l_footer2__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

/* 右：電話＋CTA */
.l_footer2__col--contact {
  /* flex: 0 1 520px; */
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  align-items: flex-start;
}

.l_footer2__telbox {
  text-align: center;
  padding-top: 6px;
}

.l_footer2__telcopy {
  font-size: 14px;
  opacity: .95;
}

.l_footer2__tel {
  display: inline-block;
  margin-top: 10px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
}

.l_footer2__time {
  margin-top: 10px;
  font-size: 13px;
  opacity: .9;
}

/* 赤いCTA（こばじゅうの右上ボックス風） */
.l_footer2__cta {
  background: #9BBB7a;
  border-radius: 6px;
  padding: 18px 18px;
  min-width: 320px;
  text-align: center;
}

.l_footer2__ctaText {
  font-weight: 800;
  line-height: 1.35;
}

.l_footer2__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  background: #fff;
  color: #9BBB7a !important;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none !important;
}

.l_footer2__ctaBtn:hover {
  filter: brightness(.96);
}

/* 2段目：施工エリア */
.l_footer2__col--area {
  /* flex: 1 1 520px; */
  min-width: 320px;
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 18px 20px;
}

.l_footer2__boxTitle {
  font-weight: 900;
  margin-bottom: 10px;
}

.l_footer2__boxText {
  font-size: 14px;
  line-height: 1.85;
  opacity: .95;
}

/* サイトマップ */
.l_footer2__col--sitemap {
  /* flex: 1 1 520px; */
  min-width: 320px;
}

.l_footer2__sitemap {
  display: flex;
  gap: 0px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.l_footer2__navBlock {
  min-width: 180px;
}

.l_footer2__navTitle {
  font-weight: 900;
  margin-bottom: 10px;
}

.l_footer2__navList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l_footer2__navList li {
  margin-top: 8px;
}

.l_footer2__navList a {
  font-size: 14px;
  opacity: .95;
}

/* コピーライト行 */
.l_footer2__copy {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0 22px;
  opacity: .95;
}

.l_footer2__copyInner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.l_footer2__copyLinks {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 12px;
  opacity: .9;
}

.l_footer2__copyText {
  opacity: .85;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .l_footer2__row {
    flex-direction: column;
    gap: 26px;
  }

  .l_footer2__col--contact {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }

  .l_footer2__telbox {
    text-align: left;
  }

  .l_footer2__tel {
    font-size: 38px;
  }

  .l_footer2__cta {
    width: 100%;
    min-width: auto;
  }

  .l_footer2__col--area,
  .l_footer2__col--info,
  .l_footer2__col--sitemap {
    min-width: auto;
    width: 100%;
  }

  .l_footer2__sitemap {
    justify-content: flex-start;
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .l_footer2__main {
    padding-top: 44px;
  }

  .l_footer2__tel {
    font-size: 34px;
  }
}




.fixed_link {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
}

.fixed_link .item {
  flex: 1;
}

.fixed_link .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  padding: 7px 0;
}

.fixed_link .item:nth-child(1) a {
  background-color: var(--logo-green);
}

.fixed_link .item:nth-child(2) a {
  background-color: var(--brown);
}

.fixed_link .item:nth-child(3) a {
  background-color: var(--font-color)
}

@media screen and (min-width: 768px) {
  .fixed_link {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .c_btn-scroll {
    right: 0;
    bottom: 37px;
  }
}



/* =========================================================
  page-header
========================================================= */
.l_page-header {
  padding: 80px 0 90px 8.4375vw;
  background-color: #ffffff;
  position: relative;
  height: 250px;
}

.l_page-header__subttl {
  display: inline-block;
  color: #9BBB7A;
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  z-index: 6;
}

.l_page-header__ttl {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.75rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  z-index: 5;
}

.l_page-header__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  -webkit-filter: drop-shadow(5px 5px 30px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(5px 5px 30px rgba(0, 0, 0, 0.2));
  height: 250px;
  z-index: 2;
  opacity: 0.3;
  transform: none;
}

.l_page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .l_page-header__ttl {
    margin-top: unset;
    font-size: 30px;
    line-height: 2.2;
  }
}

/*-------------------------------------------------------------------
施工事例　個別の投稿ページ　ACF
-------------------------------------------------------------------*/
/* タイトル下のアイキャッチ */
.p_works-single__thumb {
  margin: 14px 0 14px;
  overflow: hidden;
  border-radius: 10px;
}

.p_works-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* テーマ・要望・スペック枠 */
.p_works-detail {
  margin: 14px 0 28px;
  padding: 0px;
}

.p_works-detail__block+.p_works-detail__block {
  margin-top: 30px;
}

.p_works-detail__hd {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--logo-green);
  font-family: "Roboto", sans-serif;
}

.p_works-detail__txt {
  line-height: 1.9;
}

h1.p_works-detail__txt {
  margin: 0;
  line-height: 1.9;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: bold;
}

/* スペック表 */
.p_works-spec {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(0, 0, 0, .10);
}

.p_works-spec th,
.p_works-spec td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .10);
  vertical-align: top;
}

.p_works-spec th {
  width: 34%;
  font-weight: 700;
  background: #9bbb7a38;
  text-align: center;
}

@media (max-width: 767px) {
  .p_works-spec th {
    width: 30%;
    font-size: 12px;
  }

  .p_works-spec td {
    font-size: 14px;
  }
}

/* 施工事例　Photoswipeを使ったギャラリー -------------------------*/
.workGallery-box {
  background-color: var(--brown-op);
}

.workGallery {
  padding: 50px 0;
  margin: 50px auto;
}

.workGallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 15px 0;
}

@media (max-width: 1024px) {
  .workGallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .workGallery__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.workGallery__item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
  aspect-ratio: 4 / 3;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, .05);
}

.workGallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  transition: transform .35s ease;
}

@media (hover:hover) {
  .workGallery__item:hover .workGallery__img {
    transform: scale(1.03);
  }
}


/*-- 施工事例の色分け（新しいカテゴリー） ----------*/
._standard {
  background-color: var(--brown);
}

._custom {
  background-color: var(--logo-green);
}

/*-- 全ページ共通　右側のバナー2つ目 ----------*/
.sidebanner-svg {
  width: 80px;
  height: auto;
  color: #9BBB7A; /* ← ここで背景色を制御 */
}

/* hoverで色変えたい場合 */
.l_sidebnr__link:hover .sidebanner-svg {
  color: #7fa35d; /* 少し濃くする例 */
}


/*- FooterのページTOPアイコン ---------*/
.c_btn-scroll {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgb(155, 187, 122);
    color: rgb(255, 255, 255);
    cursor: pointer;
    position: fixed;
    right: 16px;
    bottom: 93px;
    z-index: 98;
    transition: 0.3s;
}

/*- FooterのreCAPTCHA  ---------*/
.recaptcha-note {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.6;
  opacity: .75;
}

.recaptcha-note a {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .grecaptcha-badge {
    display: none !important;
  }
}