@charset "utf-8";
/*
Theme Name: 
Theme URI:
Description:
Author:
Version: 1.0
License:
License URI:
Tags:
*/
/*-----------------------------------------------------
@@ Reset
------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}
html {
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap : break-word;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  /*overflow-x: hidden;*/
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  max-width: 100%;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

/* For modern browsers */
.clearfix:before,.clearfix:after,.cf:before,.cf:after{
  content:"";
  display:table;
}
.clearfix:after,.cf:after{clear:both;}
.clearfix,.cf{zoom:1;}/* For IE 6/7 (trigger hasLayout) */

ul{
  padding: 0;
}

/*-----------------------------------------------------
@@ 基本
------------------------------------------------------*/
:root {
  --primary-color: #3798c9;
  --text-color: #333;
  --form-border: #777777;
  --tbl-border: #444444;
}
a {
  color: #0066cc;
  text-decoration: none;
  transition-duration: 0.3s;
}
a:hover {
  color: #ff6600;
  text-decoration: underline;
}
a:hover img {
  transition-duration: 0.1s;
}

html {
  color: var(--text-color);
  background: white;
  block-size: 100%;
  -webkit-text-size-adjust: none;
}
body {
  font-size: 16px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', 'メイリオ', sans-serif;
  background-color: white;
  overflow-y: scroll;
  min-height: 100dvh;
  height: 100%;
}


/*-----------------------------------------------------
@@ レイアウト
------------------------------------------------------*/
@media screen and (min-width: 768px) {

  .wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    width: min(100% - 40px, 980px);
    margin: 0 auto;
    min-height: 100%;
  }
  #page-header {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-bottom: 30px;
  }
  #page-article {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  #page-nav {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    width: 200px;
    margin-right: 20px;
  }
  #page-footer {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    padding-bottom: 10px;
  }

}/* PC ここまで */
@media screen and (max-width: 767.9px) {

  .wrap {
    margin: 0 auto;
  }
  #page-header {
    margin-bottom: 20px;
  }
  #page-article {
    width: calc(100% - 30px);
    margin: 0 auto 60px;
  }
  #page-nav {
    width: calc(100% - 30px);
    margin: 0 auto;
  }

}/* スマホ ここまで */

/*-----------------------------------------------------
@@ ヘッダ
------------------------------------------------------*/
@media screen and (min-width: 768px) {

  #page-header h1 {
    font-size: 10px;
    text-align: right;
    line-height: 1.2;
    padding: 5px;
  }

}/* PC ここまで */
@media screen and (max-width: 767.9px) {

  #page-header h1 {
    font-size: 10px;
    text-align: right;
    line-height: 1.2;
    padding: 5px;
  }

}/* スマホ ここまで */


/*-----------------------------------------------------
@@ フッタ
------------------------------------------------------*/
@media screen and (min-width: 768px) {

  #page-footer{
    position: sticky;
    top: 100%;
    will-change: transform;
    margin-top: 60px;
  }
  #page-footer p.copyright {
    background-color: #666666;  /*フッタ背景色*/
    padding: 20px 10px;
    color: white;
    font-size: 12px;
    text-align: left;
    margin: 0;
    border-radius: 5px;
  }

  .footer__office {
    display: flex;
    font-size: 11px;
    margin-bottom: 15px;
  }
  .footer__officeleft__left {
    white-space: nowrap;
    padding-right: 8px;
    margin-right: 8px;
    border-right: 1px solid var(--text-color);
  }
  .footer__officeleft__right {
    flex: 1;
  }

  .index-topics-waku {
    border: solid 1px #b5b5b5;
    padding: 8px 16px 8px 16px;
    margin: 0 0 30px 0;
  }
  .index-topics {
    font-size: 0;
    list-style-type: none;
  }

  .index-topics > li {
    margin: 0 0 0 90px;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
  }
  .index-topics > li:not(:last-child) {
    border-bottom: dotted 1px #b5b5b5;
  }
  .index-topics > li > span{
    position: absolute;
    display: block;
    width: 90px;
    top: 0;
    left: -90px;
    padding: 4px 0;
  }
  .index-topics > li:not(:last-child) > span{
    border-bottom: dotted 1px #b5b5b5;
  }
  .index-topics > li > a {
    display: block;
    padding: 4px 0;
  }

  .index-news-waku{
    border: solid 1px #b5b5b5;
    padding: 20px 15px 15px 15px;
    margin: 0 0 60px 0;
    border-radius: 6px;
  }

  .index-news-title02{
    color: #1752a3;
    font-size: 18px;
    border-bottom: solid 1px #1752a3;
    padding: 0 0 8px 0;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 1em;
    font-feature-settings: "palt" 1;
  }
  .index-news-waku p{
    font-size: 15px;
    line-height: 1.75;
    margin: 15px 0 15px 0;
  }

}/* PC ここまで================================ */
@media screen and (max-width: 767.9px) {

  #page-footer{
    width: calc(100% - 30px);
    margin: 0 auto;
    padding-bottom: 10px;
    margin-top: 60px;
  }
  #page-footer p.copyright {
    background-color: #666666;
    padding: 10px 10px;
    color: white;
    font-size: 12px;
    text-align: left;
    margin: 0;
    border-radius: 5px;
  }

  .footer__office {
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .footer__officeleft__left {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--text-color);
  }
  .footer__officeleft__right {
  }

  .index-topics-waku {
    border: solid 1px #b5b5b5;
    padding: 8px 16px 8px 16px;
    margin: 0 0 30px 0;
  }
  .index-topics {
    font-size: 0;
    list-style-type: none;
  }

  .index-topics > li {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
  }
  .index-topics > li:not(:last-child) {
    border-bottom: dotted 1px #b5b5b5;
  }
  .index-topics > li > span{
    display: block;
    padding: 8px 0 0;
  }
  .index-topics > li > a {
    display: block;
    padding: 0 0 8px;
  }

  .index-news-waku{
    border: solid 1px #b5b5b5;
    padding: 20px 15px 15px 15px;
    margin: 0 0 60px 0;
    border-radius: 6px;
  }

  .index-news-title02{
    color: #1752a3;
    font-size: 18px;
    border-bottom: solid 1px #1752a3;
    padding: 0 0 8px 0;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 1em;
    font-feature-settings: "palt" 1;
    text-align: justify;
  }
  .index-news-waku p{
    font-size: 15px;
    line-height: 1.75;
    margin: 15px 0 15px 0;
    text-align: justify;
  }


}/* スマホ ここまで============================ */


/*-----------------------------------------------------
@@ ナビ
------------------------------------------------------*/
@media screen and (min-width: 768px) {

  #page-nav {
    border-left: 1px solid #b6b6b6;
    border-right: 1px solid #b6b6b6;
  }

  .nav__main {
    font-size: 0;
    list-style-type: none;
  }
  .nav__main > li {
    border-bottom: 1px solid #b6b6b6;
  }
  .nav__main > li:first-child {
    border-top: 1px solid #b6b6b6;
  }
  .nav__main > li > a {
    display: block;
    width: 198px;
    aspect-ratio: 198 / 59;
    font-size: 0px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background: url(./images/sidenavi.png) no-repeat 0 0;
    background-size: 396px 481px;
    text-decoration: none;
    transition-duration: 0s;
  }
  .nav__main > li.navi01 > a {
    background-position: 0 -1px;
  }
  .nav__main > li.navi01 > a:hover {
    background-position: -198px -1px;
  }
  .nav__main > li.navi02 > a {
    background-position: 0 -61px;
  }
  .nav__main > li.navi02 > a:hover {
    background-position: -198px -61px;
  }
  .nav__main > li.navi03 > a {
    background-position: 0 -121px;
  }
  .nav__main > li.navi03 > a:hover {
    background-position: -198px -121px;
  }
  .nav__main > li.navi04 > a {
    background-position: 0 -181px;
  }
  .nav__main > li.navi04 > a:hover {
    background-position: -198px -181px;
  }
  .nav__main > li.navi05 > a {
    background-position: 0 -241px;
  }
  .nav__main > li.navi05 > a:hover {
    background-position: -198px -241px;
  }
  .nav__main > li.navi06 > a {
    background-position: 0 -301px;
  }
  .nav__main > li.navi06 > a:hover {
    background-position: -198px -301px;
  }
  .nav__main > li.navi07 > a {
    background-position: 0 -361px;
  }
  .nav__main > li.navi07 > a:hover {
    background-position: -198px -361px;
  }
  .nav__main > li.navi08 > a {
    background-position: 0 -421px;
  }
  .nav__main > li.navi08 > a:hover {
    background-position: -198px -421px;
  }

}/* PC ここまで */
@media screen and (max-width: 767.9px) {

  #page-nav {
    margin: 30px auto;
  }

  .logo01 {
    display: none;
  }

  .nav__main {
    font-size: 0;
    list-style-type: none;
  }
  .nav__main > li {
    border-bottom: 1px solid #b6b6b6;
  }
  .nav__main > li:first-child {
    border-top: 1px solid #b6b6b6;
  }
  .nav__main > li > a {
    display: block;
    font-size: 16px;
    text-decoration: none;
    color: var(--text-color);
    padding: 0.6em 0.6em;
  }

}/* スマホ ここまで */


/*-----------------------------------------------------
@@ メイン
------------------------------------------------------*/
.contents-full {
  width: min(100%, 1920px);
  margin: 0 auto;
  text-align: left;
}
.contents-normal {
  width: min(100% - 40px, 960px);
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 768px) {
}/* PC ここまで */
@media screen and (max-width: 767.9px) {
}/* スマホ ここまで */


/*-----------------------------------------------------
@@ 段落
------------------------------------------------------*/
p{
  margin-bottom: 1em;
}
p.indent1{
  text-indent: -1em;
  margin-left: 1em;
}

p.err-box{
  color: red;
  border: 1px solid red;
  padding: 8px;
}


/*-----------------------------------------------------
@@ IME制御（WinIEのみ）等
------------------------------------------------------*/
.imeon  {ime-mode: active;}
.imeoff {ime-mode: disabled;}

.right  {text-align: right;}
.center {text-align: center;}
.left   {text-align: left;}

.nowrap {white-space: nowrap;}

@media screen and (min-width: 768px) {
  .sp, .smp {display: none !important;}
}
@media screen and (max-width: 767.9px) {
  .pc {display: none !important;}
}



/*-----------------------------------------------------
@@ レスポンシブ対策
------------------------------------------------------*/
video, object {
  max-width: 100%;
  height: auto;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}
/* YouTube等のiframeを囲む
<div class="video169"><iframe>...</iframe></div> 16:9の場合
<div class="video34"><iframe>...</iframe></div> 4:3の場合
*/
.video169, .video34 {
  width:100%;
  height: auto;
  position: relative;
}
.video169 {aspect-ratio: 16 / 9;}
.video34  {aspect-ratio: 4 / 3;}

.video169 iframe, .video34 iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* @@ Googleマップ */
.gmap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 auto 20px;
}
.gmap iframe,.gmap object,.gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width:767.9px){
  .gmap {
    /*height: 300px;*/
    margin: 0 auto 10px;
  }
}


/*-----------------------------------------------------
@@ 共通
------------------------------------------------------*/
@media (min-width: 768px) {

  .title-02 {
    background: white url(./images/title-02-back.png) no-repeat 0 0;
    margin: 0 0 60px 0;
    border: solid 1px #b5b5b5;
  }
  .title-02 span {
    display: inline-block;
    font-family: 'Noto Serif JP', serif;
    font-size: 26px;
    line-height: 1.2;
    padding: 20px 15px;
    border-top: 6px solid #496dad;
    letter-spacing: 2px;
  }

  .title-03 {
    color: #1752a3;
    font-size: 22px;
    /*border-bottom: solid 1px #1752a3;*/
    padding: 0 0 3px 0;
    margin: 0 0 20px 0;
    line-height: 1.25;
  }
  .title-04 {
    color: #1752a3;
    font-size: 15px;
    line-height: 1.2;
    margin: 0 0 8px 0;
  }

}/* PC ここまで================================ */
@media screen and (max-width: 767.9px) {

  .title-02 {
    background: white url(./images/title-02-back.png) no-repeat 0 0;
    margin: 0 0 60px 0;
    border: solid 1px #b5b5b5;
  }
  .title-02 span {
    display: inline-block;
    font-family: 'Noto Serif JP', serif;
    font-size: 26px;
    line-height: 1.2;
    padding: 20px 15px;
    border-top: 6px solid #496dad;
    letter-spacing: 2px;
  }

  .title-03 {
    color: #1752a3;
    font-size: 18px;
    /*border-bottom: solid 1px #1752a3;*/
    padding: 0 0 3px 0;
    margin: 0 0 20px 0;
    line-height: 1.25;
  }
  .title-04 {
    color: #1752a3;
    font-size: 15px;
    line-height: 1.2;
    margin: 0 0 8px 0;
  }

}/* スマホ ここまで============================ */

.title-03-right {
  text-align: right;
  font-size: 12.5px;
  margin: 0 0 15px 0;
  line-height: 1.25;
}


/*-----------------------------------------------------
@@ index インデックス トップページ
------------------------------------------------------*/
@media (min-width: 768px) {

  .index-title {
    font-size: 18px;
    color: white;
    background-color: #1b54a4;
    margin: 0 0 8px;
    padding: 10px;
    font-feature-settings: "palt" 1;
  }

}/* PC ここまで================================ */
@media screen and (max-width: 767.9px) {

  .index-title {
    font-size: 18px;
    color: white;
    background-color: #1b54a4;
    margin: 0 0 8px;
    padding: 10px;
    font-feature-settings: "palt" 1;
  }


}/* スマホ ここまで============================ */


/*-----------------------------------------------------
@@ 支部長挨拶
------------------------------------------------------*/
@media (min-width: 768px) {

  .aisatu-waku {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .aisatu-text {
    flex: 1;
  }
  .aisatu-img {
    width: 150px;
    margin-left: 30px;
  }


}/* PC ここまで================================ */
@media screen and (max-width: 767.9px) {

  .aisatu-img {
    margin: 30px 0 60px;
  }
  .aisatu-img img {
    width: min(100% - 40px, 320px);
    margin: 0 auto;
    display: block;
  }

}/* スマホ ここまで============================ */


/*-----------------------------------------------------
@@ 役員・代議員名簿
------------------------------------------------------*/
.table-yakuin {
  width: 100%;
  border: 1px solid var(--tbl-border);
  margin-bottom: 16px;
  border-collapse:collapse;
  margin: 0 0 40px;
}

.table-yakuin th,
.table-yakuin td {
  border: 1px solid var(--tbl-border);
  padding: 8px;
  font-size: 90%;
}
.table-yakuin th {
  background-color: #addaf7;
  width: 20%;
  text-align: center;
}
.table-yakuin td {
  width: 80%;
}

@media screen and (max-width: 999.9px) {
  .table-yakuin th {
    white-space: nowrap;
  }
  .table-yakuin th,
  .table-yakuin td {
    font-size: 12px;
  }
}


.table-yakuin02 {
  width: 100%;
  border: 1px solid var(--tbl-border);
  margin: 0 0 40px;
  border-collapse:collapse;
}

.table-yakuin02 th,
.table-yakuin02 td {
  border: 1px solid var(--tbl-border);
  padding: 8px 6px;
  font-size: 90%;
  line-height: 1.5;
}
.table-yakuin02 th {
  background-color: #addaf7;
  text-align: center;
}
.table-yakuin02 td {
  text-align: center;
}
.table-yakuin02 td.text-left {
  text-align: left;
}
.table-yakuin02 td.border1 {
  border-top: 3px double var(--tbl-border);
}

@media screen and (max-width: 999.9px) {
  .table-yakuin02 th {
    white-space: nowrap;
  }
  .table-yakuin02 th,
  .table-yakuin02 td {
    font-size: 12px;
    line-height: 1.5;
  }
}

.p__yakuin-01 {
  font-size: 12px;
}


/*-----------------------------------------------------
@@ 支部会則 選挙規程
------------------------------------------------------*/

.pdf {
  font-size: 16px;
  margin: 0 0 40px 0;
}

.icon-pdf {
  position: relative;
}
.icon-pdf:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  background: url(./images/icon-pdf.jpg) no-repeat 50% 50%;
  background-size: 16px 16px;
}


/*-----------------------------------------------------
@@ 庶務報告
------------------------------------------------------*/
.table-03 {
  border: 1px solid var(--tbl-border);
  margin: 0 0 40px;
  border-collapse:collapse;
}

.table-03 th,
.table-03 td {
  border: 1px solid var(--tbl-border);
  padding: 8px 26px;
  font-size: 90%;
}
.table-03 th {
  background-color: #addaf7;
  text-align: center;
}
.table-03 td {
  text-align: center;
}
.table-03 td.text-left {
  text-align: left;
}
.table-03 td.border1 {
  border-top: 3px double var(--tbl-border);
}
.table-03 td.table-03-r {
  text-align: right;
}

@media screen and (max-width: 999.9px) {
  .table-03 th{
    white-space: nowrap;
  }
  .table-03 th,
  .table-03 td {
    font-size: 12px;
  }
}


/*-----------------------------------------------------
@@ 大会案内
------------------------------------------------------*/
.tbl-02 {
  border-collapse: collapse;
  width:100%;
  border: 1px solid var(--tbl-border);
  margin: 16px auto;
}
.tbl-02 > tbody > tr > th,
.tbl-02 > tbody > tr > td {
  border: 1px solid var(--tbl-border);
  padding: 8px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.75;
}
.tbl-02 > tbody > tr > th {
  background-color: #3399c8;
  color:white;
  white-space: nowrap;
}
.tbl-02 > tbody > tr > td {
  background-color: white;
}

.tbl-03 {
  border-collapse: collapse;
  width:100%;
  border-top: 2px solid #3399c8;
  border-bottom: 2px solid #3399c8;
  margin: 16px auto;
}
.tbl-03 > tbody > tr > th,
.tbl-03 > tbody > tr > td {
  border-bottom: 1px dotted #3399c8;
  background-color: white;
  padding: 8px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.75;
}
.tbl-03 > tbody > tr > th {
  white-space: nowrap;
  font-weight: 700;
  color: #3399c8;
}
.tbl-03 > tbody > tr > td {
}

@media screen and (max-width: 999.9px) {/* スマホ ここから-------------------------------- */

  .tbl-02 {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--tbl-border);
  }
  .tbl-02 > tbody > tr > th,
  .tbl-02 > tbody > tr > td {
    display: block;
    border-top: 1px solid var(--tbl-border);
    border-right: 1px solid var(--tbl-border);
    border-left: 1px solid var(--tbl-border);
    border-bottom: none;
  }

  .tbl-03 {
    border-top: 2px solid #3399c8;
    border-bottom: 2px solid #3399c8;
  }
  .tbl-03 > tbody > tr > th,
  .tbl-03 > tbody > tr > td {
    display: block;
  }
  .tbl-03 > tbody > tr > th{
    padding-bottom: 2px;
    border-bottom: none;
  }
  .tbl-03 > tbody > tr > td {
    padding-top: 2px;
    border-bottom: 1px dotted #3399c8;
  }
}



/*-----------------------------------------------------
@@ リンク
------------------------------------------------------*/
.list-dl dt {
  color: #1752a3;
  font-size: 107%;
  font-weight: bold;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.list-dl dd {
  font-size: 88%;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

/*-----------------------------------------------------
@@ フォーム
------------------------------------------------------*/
form {
  vertical-align:baseline;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  border: 1px solid var(--form-border);
  padding: 4px;
  margin: 2px 4px 2px 0;
  font-size: 16px;
  line-height: 1.5;
}
select{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  max-width: 100%; 
  padding: 4px 2.5em 4px 4px;
  margin: 2px 4px 2px 0;
  outline: none;
  border: 1px solid var(--form-border);
  background: white url(images/arrow-select.png) no-repeat right 8px top 50%;
  background-size: 15px 15px;
}
select::-ms-expand {
  display: none;
}
select option {
  font-weight: normal;
}

textarea{
  overflow: auto;/* 内容が少ないのに薄くスクロールバーが出る事への対策。IEのみ  */
  resize: vertical;
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
  border: 1px solid var(--form-border);
  background-color: #ffe9ec;
  /*box-shadow:0px 0px 0px 2px rgba(58, 169, 255, .3);*/
}

input[type="submit"],
input[type="button"],
button {
  border: 1px solid var(--form-border);
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1.2;
  overflow:visible;
  background-color: #eeeeee;
  color: #333;
}
input[type="submit"]:hover,
button:hover {
  cursor: pointer;
}
input[type="submit"]:disabled,
button:disabled {
  cursor: not-allowed;
  color: #ccc;
}

label{
  font-size: 16px;
  margin-right: 1em;
  cursor: pointer;
  position: relative;
}

::placeholder{
  color: #999;
}




/*-----------------------------------------------------
@@ 
------------------------------------------------------*/




/*-----------------------------------------------------
@@ ページトップへ戻る
------------------------------------------------------*/
#page_top {
  width: 40px;
  height: 40px;
  position: fixed;
  right: max(0px , 50vw - 545px );
  bottom: -100%;/* 表示領域の外（下）へ */
  opacity: 0.8;
}
#page_top a {
  display: block;
  width: 40px;
  height: 40px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: var(--primary-color) url(images/arrow02.png) no-repeat 50% 50%;
  background-size: contain;
}

/*-----------------------------------------------------
@@ Google ReCAPTCHA
------------------------------------------------------*/
.grecaptcha-badge { visibility: hidden; }
.p-recaptcha {
  font-size: 13px;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .p-recaptcha {
    text-align: left;
  }
}
