@charset "utf-8";

.fadeUpTrigger {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {

    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translate(0);
    }
}


/* 全体 */
h2 {
    display: flex;
    /* flex-direction: column; */
    /* justify-content: center; */
    align-items: center;
}

/* ヘッダー */
.siteHeader_logo {
  font-size: 32px;
}

.page-header {
  background: url(/wp-content/uploads/2023/03/header_bg-1.jpg);
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-top: 0;
  z-index: 1;
  position: relative;
}

.page-header h1 {
  color: rgb(70, 70, 70);
  text-shadow: 1px 1px #fff;
}

.siteHeader_logo img {
  max-width: 100%;
  max-height: 100%;
}

.insta{/*アイコンの背景*/
	position: relative;
	top: 5px;
	display: inline-block;
	width: 50px;/*幅*/
	height: 50px;/*高さ*/
	background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
	overflow: hidden;/*はみ出た部分を隠す*/
	border-radius: 10px;/*角丸に*/
	text-align: center;
	line-height: 69px;
}

.gMenu {
  align-items: end;
}

.device-pc .gMenu>li>a {
padding-top: 0;
}

/* 石橋園製茶工場について */
figcaption {
  text-align: center;
}

.founding_img .wp-element-caption {
  font-size: 1em;
}

.company_table tr,
.company_table td {
  font-size: 0.7em;
}




/* 製品紹介 */

/* お問い合わせフォーム */
/* フォームテーブル
------------------------------ */
.inquiry-form-table {
  margin-top: 40px;
  margin-bottom: 30px;
  width: 100%;
}

.inquiry-form-table th,
.inquiry-form-table td {
  display: block;
  width: 100%;
  font-size: 1.2rem;
}

.inquiry-form-table th {
  padding-bottom: 8px;
  border-top: 1px solid #b3b3b3;
}

.inquiry-form-table td {
  padding-bottom: 30px;
  border-top: 1px solid #b3b3b3;
}

.inquiry-form-table tr:last-child th,
.inquiry-form-table tr:last-child td {
  border-bottom: 0;
}

.inquiry-form-table tr:last-child td {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .inquiry-form-table th,
  .inquiry-form-table td {
    display: table-cell;
    width: auto;
    font-size: 1.4rem;
    padding: 30px 10px;
    border-top: 1px solid #b3b3b3;
    border-bottom: 1px solid #b3b3b3;
  }
  .inquiry-form-table tr:last-child th,
  .inquiry-form-table tr:last-child td {
    border-bottom: 1px solid #cbcbcb;
  }
  .inquiry-form-table tr:last-child td {
    padding-bottom: 30px;
  }
}

/* 必須アイコン
------------------------------ */
.required {
  color: #fff;
  font-size: 1rem;
  padding: 0.1rem 0.2rem;
  margin-left: 0.5rem;
  border-radius: 5px;
  background: #ea4d3c;
}
@media screen and (min-width: 768px) {
  .required {
    padding: 0.2rem 0.3rem;
    margin-left: 0.5rem;
  }
}

/* 例文
------------------------------ */
.example {
  color: #919191;
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* フォーム
------------------------------ */
.wpcf7 input,
.wpcf7 textarea[name="your-message"] {
  padding: 5px 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* テキストエリア */
.wpcf7 textarea[name="your-message"] {
  width: 100%;
}

/* ラジオボタン */
span.wpcf7-list-item {
  display: block; /* 縦並びのための指定 */
  padding: 10px 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  span.wpcf7-list-item {
    padding: 5px 0;
  }
}

/* 送信ボタン */
.wpcf7 input[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  padding: 1em 2em;
  width: 300px;
  color: #3cf745;
  font-size: 2rem;
  font-weight: 700;
  background-color: #fff;
  transition: 0.3s;
  border: 2px solid #16ff0e;
  text-decoration: none;
  letter-spacing: 0.2rem;
  border-radius: 10px;
}
.wpcf7 input[type="submit"]:hover {
  text-decoration: none;
  color: #fff;
  background-color: #b0ffa9;
}

/* 送信前注意書き
------------------------------ */
.submit-caution {
  text-align: center;
  margin-bottom: 3rem;
}

.submit-caution span {
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .submit-caution span {
    display: inline;
    text-align: start;
  }
}

/* エラーメッセージ
------------------------------ */
.wpcf7-not-valid-tip {
  color: #ea4d3c;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  max-width: 1140px;
  color: #ea4d3c;
  background: #ffebeb;
  border: 1px solid #ea4d3c;
  margin: 0 auto;
  margin-bottom: 3rem;
  padding: 2rem 3rem;
  border-radius: 5px;
}

/* フッター */
.nav {
  align-items: flex-end;
}