/*
Theme Name:tpl03
Template:astra
Version:1.0.0
*/

body {
  letter-spacing: 0.1em;
  font-family: sans-serif;
}
p, th, td, li {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
.white {
  color: var(--ast-global-color-5);
}
.left {
  text-align: left !important;
}
.right {
  text-align: right !important;
}
.center {
  text-align: center !important;
}
/* Flex */
.flex {
  display: flex;
}
.flexw {
  display: flex;
  flex-wrap: wrap;
}
.flexr {
  display: flex;
  flex-direction: row-reverse;
}
.flexsb {
  justify-content: space-between;
}
.flexc {
  justify-content: center;
  align-items: center;
}
.col-2 {
  width: 49%;
}
.col-3 {
  width: 32%;
}
.col-4 {
  width: 24%;
}
.col-5 {
  width: 19%;
}
/* 見出し・段落 */
/* .uael-sub-heading {
  opacity: 0.2;
} */
/* テーブル */
.entry-content table {
  border-collapse: collapse !important;
  border: none !important;
}
.entry-content table th {
  border-right: none !important;
  border-bottom: 1px solid var(--ast-global-color-0) !important;
  padding: 15px 15px 15px 15px !important;
  text-align: left;
}
.entry-content table td {
  border-right: none !important;
  padding: 15px 15px 15px 15px !important;
}
/* ホームメインヴィジュアル　キャッチコピー装飾
------------------------------------------ */
.sentence {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  text-align: center;
}

.sentence span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.sentence.-visible,
.sentence.-visible span {
  transform: translate(0, 0);
}

/* メインメニュー　説明文装飾
------------------------------------------ */
ul#menu-global_nav li{
  text-align: right;
  list-style-type: none;
  margin: 0 0 30px 0;
  line-height: 1em;
}
ul#menu-global_nav li span.menu-item-description{
  display: block;
  font-size: 14px;
  color: #8fc4ba;
  margin: 5px 0 0 0;
}
ul#menu-global_nav-1 li{
  text-align: right;
  list-style-type: none;
  margin: 0 0 30px 0;
  line-height: 1em;
}
ul#menu-global_nav-2, ul#menu-footer_nav, ul#menu-footer_menu{
  margin: 0;
}
ul#menu-global_nav-2 li, ul#menu-footer_nav li, ul#menu-footer_menu li{
  text-align: left !important;
  list-style-type: none;
  margin: 0 0 30px 0;
  line-height: 1em;
}
ul#menu-global_nav li a, ul#menu-global_nav li a:visited, ul#menu-global_nav-1 li a, ul#menu-global_nav-1 li a:visited, ul#menu-global_nav-2 li a, ul#menu-global_nav-2 li a:visited, ul#menu-footer_nav li a, ul#menu-footer_nav li a:visited, ul#menu-footer_menu li a, ul#menu-footer_menu li a:visited{
  color: #282828;
}
ul#menu-global_nav-1 li a:hover, ul#menu-global_nav-2 li a:hover, ul#menu-footer_nav li a:hover, ul#menu-footer_menu li a:hover{
  color: #4DA099;
}
ul#menu-global_nav-1 li span.menu-item-description, ul#menu-global_nav-2 li span.menu-item-description, ul#menu-footer_nav li span.menu-item-description, ul#menu-footer_menu li span.menu-item-description{
  display: block;
  margin: 5px 0 0 0;
  font-size: 14px;
  color: #8fc4ba;
}

.f-menu strong {
	line-height: 1.2;
}

/* コンテンツ背景
------------------------------------------ */
.site-content{
  background: url(images/contents_bg.jpg) no-repeat center 20%;
  background-size: 100% auto;
}
@media(max-width:1280px) {
	.site-content{
  		background: url(images/contents_bg.jpg) no-repeat center 10%;
  		background-size: cover;
	}
}
.archive .site-content, .single-post .site-content {
	background: none;
}

/* モバイルメニュー
------------------------------------------ */
/*ボタン外側*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 90px;
  height: 90px;
  background: var(--ast-global-color-0);
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 20px;
  height: 3px;
  background-color: var(--ast-global-color-5);
}
.openbtn span:nth-of-type(1) {
  top: 39px;
  width: 50%;
}
.openbtn span:nth-of-type(2) {
  top: 50px;
  width: 30%;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 40px;
  left: 23px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn.active span:nth-of-type(2) {
  top: 52px;
  left: 23px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  /*動き*/
  transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: rgba(0, 28, 67, 0.9); /*背景を少し透過させる*/
  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 ul {
  display: none; /*はじめは非表示*/
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#g-nav.panelactive ul {
  display: block;
  margin-left: 0 !important;
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
  margin-left: 0 !important;
}
#g-nav li a {
  color: var(--ast-global-color-5);
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
/* ホーム
------------------------------------------ */
/* フォーム
------------------------------------------ */
.look2 {
  margin: 1em;
  padding: 2%;
  background: var(--ast-global-color-6);
  font-size: 14px;
}
.scroll {
  height: 200px;
  margin: 1em;
  padding: 2%;
  background: var(--ast-global-color-5);
  border: 1px solid var(--ast-global-color-7) font-size: 85%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.scroll h3 {
  margin: 15px 0;
  font-size: 18px;
}
.scroll h4 {
  margin: 15px 0;
  font-size: 16px;
}
.wpcf7-submit {
  position: relative;
  display: block;
  width: 50%;
  z-index: 1;
  margin: 30px auto 0;
  padding: 30px !important;
  border: none;
  overflow: hidden;
  color: var(--ast-global-color-5);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}
.wpcf7-submit:hover {
  transition: right 0.3s;
}

/*Contact Form 7カスタマイズ*/
/*スマホContact Form 7カスタマイズ*/
@media(max-width:768px) {
  .inquiry th, .inquiry td {
    display: block !important;
    width: 100% !important;
    border-top: none !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
  }
  .inquiry tr:first-child th {
    border-top: 1px solid var(--ast-global-color-5) !important;
  }
  /* 必須・任意のサイズ調整 */
  .inquiry .haveto, .inquiry .any {
    font-size: 10px;
  }
}
/*見出し欄*/
.inquiry th {
  text-align: left;
  font-size: 14px;
  padding: 20px 5px 20px 20px;
  width: 30%;
  border-bottom: solid 1px var(--ast-global-color-7) background: var(--ast-global-color-5);
}
/*通常欄*/
.inquiry td {
  font-size: 13px;
  padding: 20px;
  border-bottom: solid 1px var(--ast-global-color-7) background: var(--ast-global-color-5);
}
.inquiry td input, .inquiry td input:focus, .inquiry td select, .inquiry td textarea {
  background: var(--ast-global-color-4);
  border: none;
}
/*横の行とテーブル全体*/
.entry-content .inquiry tr {
  border: solid 1px var(--ast-global-color-4);
}
/*必須の調整*/
.haveto {
  font-size: 7px;
  padding: 5px 10px;
  background: var(--ast-global-color-0);
  color: var(--ast-global-color-5);
  border-radius: 2px;
  margin-right: 10px;
  position: relative;
  bottom: 1px;
}
/*任意の調整*/
.any {
  font-size: 7px;
  padding: 5px 10px;
  background: var(--ast-global-color-1);
  color: var(--ast-global-color-5);
  border-radius: 2px;
  margin-right: 10px;
  position: relative;
  bottom: 1px;
}
/*ラジオボタンを縦並び指定*/
.verticallist .wpcf7-list-item {
  display: block;
}
/*送信ボタンのデザイン変更*/
#formbtn {
  display: block;
  padding: 1em 0;
  margin: 30px auto 0 auto;
  width: 70%;
  background: var(--ast-global-color-3);
  color: var(--ast-global-color-5);
  font-size: 18px;
  font-weight: bold;
  border-radius: 2px;
  border: none;
}
/*送信ボタンマウスホバー時*/
#formbtn:hover {
  background: var(--ast-global-color-8);
  color: var(--ast-global-color-5);
}
/* google reCAPTCHA
------------------------------------------ */
.grecaptcha-badge {
  visibility: hidden;
}


/*お知らせ*/
/*メタ削除*/
.entry-meta {
	display: none;
}


/*折り返さない*/
.nowrap {
	white-space: nowrap;
}

/*パンくず*/
	.breadcrumbs a:hover {
	color: #fff;
}
@media(max-width:768px){
.breadcrumbs {
	font-size: 14px;
}

}