@charset "utf-8";

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  display: flex; /*フッターを最下部にFIXするために必要*/
  flex-direction: column; /*フッターを最下部にFIXするために必要*/
}

body {
  min-height: 100vh; /*フッターを最下部にFIXするために必要*/
	font-family: "Tahoma", "Noto Sans JP", sans-serif!important;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  word-break: break-word;
  color: #333;
}

h1 { /* タイトル文字 */
	font-family: "Open Sans",sans-serif;
  font-size: 32px;
  letter-spacing: 1.4px;
  color: #333;
	/* display: inline; */
  }

h2 { /* 見出し文字 */
	font-family: "Open Sans",sans-serif;
  font-size: 24px;
  letter-spacing: 1.4px;
  color: #333;
	/* position: absolute; */
}
h3 {
	font-family: "Open Sans",sans-serif;
  font-size: 18px;
  letter-spacing: 1.4px;
  color: #333;
}
p {
  padding: 10px 0;
}
i,
.bold {
  font-weight: bold;
}
.highlight {
  background: linear-gradient(transparent 50%, yellow 50%);
}
.bluegray {
  color: #395567;
}
.center {
  text-align: center;
}

.bg-white {
  background: #fff;
}

button, input, select, textarea {
font-family : inherit;
font-size : 100%;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%; /* 消さない */
  /* height: auto; */
  vertical-align: middle; /* 消さない */
  border-style: none;
}
ul,
li {
  list-style: none;
}

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

/*--------------------------------
 ローディング
---------------------------------*/
#loading {
  /* 画面一杯にローディング画面を広げる */
  height: 100%;
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10000;
  /* flexboxを使ってローディングアイコンを画面の中央に寄せる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*--------------------------------
 レイアウト
---------------------------------*/
.wrapper {
  padding-top: 86px;
  padding-bottom: 40px;
}
.container{
  margin-top: 0;
}
section {
  padding: 20px 0 0;
}
.inner {
  max-width: 1280px;
  margin: 0 auto;
	padding: 5px 90px;
}

.white_box {
	border: 1px solid #8c8c8c;
  padding: 15px 25px;
  text-align: left;
  background: #fff;
}

.gray_box {
	border: 0px;
  padding: 15px 25px;
  text-align: left;
  background-color: rgba(0,0,0,0.1);
}

.v-space {
  width: 100%;
  padding: 5px 0;
}


/*--------------------------------
 見出しグリッド
---------------------------------*/
.ttl_grid {
  margin-top: 25px;
  display: grid;
  grid-template-rows: 40px 25px;
  grid-template-columns: 1fr 77%;
}
.ttl_box {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
	position: relative;
  margin-top: 0px;
}
.ttl_line {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  margin-top: 15px;
}

/*--------------------------------
 ボタン
---------------------------------*/
.btnWrap{
	text-align: center;
  margin-top: 10px;
	margin-bottom: 10px;
}
.btnWrap_R{
	text-align: right;
  margin-top: 10px;
	margin-bottom: 10px;
}
.btnWrap_L{
	text-align: left;
  margin-top: 10px;
	margin-bottom: 10px;
}
.btnCover{
	display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 10px;
	margin-bottom: 10px;
}

.btn_large {
	border: 1px solid #242424;
  padding: 13px 15px;
  text-align: center;
  background: #fff;
  color: #242424;
  transition: 0.7s;
	font-size: 18px;
}
.btn_large:hover {
  background: #242424;
  color: #fff;
	border: 1px solid #fff;
}

.btnWrap .btn_large{

}
.btnWrap_R .btn_large{
	margin-left: auto; /* 右寄せ対応 */
}
.btnWrap_L .btn_large{
  margin-right: auto; /* 左寄せ対応 */
}
.btnCover .btn_large{
  flex-grow: 1;
  display: inline-block;
  margin-right: 20px;
}
.btnCover .btn_large:last-of-type{
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .btnCover .btn_large{
    margin-right: 15px;
  }
  .btnCover .btn_large .extend{
    display: none;
  }
}

.btn_mini {
  margin-left: auto; /* 右寄せでのみ使用 */
	border: 1px solid #242424;
  padding: 8px 20px;
  text-align: center;
  /* background: #fff; */
  color: #242424;
  transition: 0.7s;
	font-size: 15px;
  letter-spacing: .7px;
}
.btn_mini:hover {
  background: #242424;
  color: #fff;
	border: 1px solid #fff;
}

/*--------------------------------
画像
---------------------------------*/

.hover1 { /* 画像リンクすべて */
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.hover1:hover {
  opacity: 0.8;
}
.hover2 { /* スライダーで使用 */
  color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.hover2:hover {
  opacity: 1;
	color: #000;
}
.hover3 { /* 基本色が濃くなる（フッターSNS等） */
  display: inline-block;
  color: #8c8c8c;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.hover3:hover {
  opacity: 1;
	color: #000;
}


/* ビネット効果 */
.vignette {
  display: block;
  position: relative;
  overflow: hidden;
}
.vignette:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.6),
	inset 0 0 100px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all .5s ease;
}
.vignette:hover:after {
  opacity: 1;
}





/*--------------------------------
ヘッダー
---------------------------------*/

.header {
  background: rgba(255,255,255,0.5);
  z-index: 9999;
  position: fixed;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  top: 0;
  transition: .8s;
}

.site-header{
    display: flex;
    justify-content: space-between;
  /* display: grid;
  grid-template-rows: auto;
  grid-template-columns: 200px 1fr; */
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 90px;
    transition: 1.2s;
}

.site-header.transform{
  /* background: rgba(255,255,255,0.9); */
  padding: 10px 90px;
}
.header.hide{
  top: -69px;
}


.site-logo span{
	font-family: "Open Sans",sans-serif;
  font-size: 20px;
  color: #333;
  font-weight: bold;
}
.site-logo span a{
  color: #333;
  text-decoration: none;
}

.site-logo img{
  height: 46px;
  width: auto;
  margin-left: 0px;
  padding-right: 10px;
  transition: 1.2s;
  object-fit: cover;
  object-position: 0 0;
}
.site-logo img.transform{
  height: 44px;
  margin-left: 2px;
}

.gnav_menu{
  display: flex;
}
.gnav_menu_item{
  margin-left: 20px;
	font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #333;
}
.gnav_menu_item a{
  color: #333;
  text-decoration: none;
  transition: .8s;
  padding-bottom: 4px;
  white-space: nowrap;
  position: relative; /*アンダーラインの位置を決めるための基準 */
}
.gnav_menu_item a:hover{
  color: #111111;
}
.gnav_menu_item a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #111111;
  bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
  }
  
  .gnav_menu_item a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
  }

/*--------------------------------
ナビゲーション (ハンバーガーメニュー) 中身はspのほうにあります
---------------------------------*/
.hamburger {
  display: none;
}

/*--------------------------------
スライダー
---------------------------------*/
.slider{
  overflow: hidden;
}
/* fullSlideShow
--------------------------- */
.fullSlideShow {
  width: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.fullSlideShow ul {
  top: 50%;
  left: 50%;
  width: 100%;
  position: absolute; /* absolute or fixed */
  display: inline-block;
  overflow: hidden;
}
.fullSlideShow ul li {
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  position: absolute;
  overflow: hidden;
}
.fullSlideShow ul li a {
  overflow: hidden;
}
.fullSlideShow ul li img {
  min-width: 100%;
  min-height: 100%;
}

.fullSlideShow ul:after {
  content: ".";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}

.animation {
  transform: translate(0, -5%);
}

.mainActive .animation {
    animation-name: anime;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-duration: 5s;
    animation-fill-mode: both;
}

@keyframes anime {
   0% {transform: translate(0, 0);}
   100% { transform: translate(0, -5%);}
}

@-webkit-keyframes anime {
   0% {transform: translate(0, 0);}
   100% { transform: translate(0, -5%);}
}


/* SideNavi
------------------------- */
.fullSlideShow .btnPrev,
.fullSlideShow .btnNext {
  margin-top: -25px;
  top: 50%;
  width: 45px;
  height: 45px;
  position: absolute; /* absolute or fixed */
  z-index: 105;
}
.fullSlideShow .btnPrev {
  left: 10px;
}
.fullSlideShow .btnNext {
  right: 10px;
}

/* PagiNation
--------------------------- */
.pagiNation {
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 12px;
  border-radius: 50%;
  text-align: center;
  position: absolute; /* absolute or fixed */
  z-index: 110; /* 非表示にする場合は「90」以下に */
  visibility: visible; /* 非表示にする場合は「hidden」に */
}
.pagiNation a {
  margin: 0 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
  background: #333;
}
.pagiNation a.pnActive {
  filter:alpha(opacity=100)!important;
  -moz-opacity: 1!important;
  opacity: 1!important;
}

/*--------------------------------
画像の表示
---------------------------------*/
.thum-grid {
  width: auto;
  overflow: hidden;
  padding: 0;
}

.thum-grid li {
  float: left;
  padding: 0;
}
.thum-grid-item1 li {
  width: 100%;
  margin-bottom: 30px;
}
.thum-grid-item2 li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 30px;
}
.thum-grid-item2 li:nth-of-type(2n) {
  margin-right: 0;
}
.thum-grid-item4 li {
  width: 22%;
  margin-right: 4%;
  margin-bottom: 20px;
}
.thum-grid-item4 li:nth-of-type(4n) {
  margin-right: 0;
}

/* ★スマホのみレイアウト変更★ */
@media screen and (max-width: 767px) { /* 767px以下の画面 イレギュラーでここに記載！！ */
  .thum-grid-item2 li {
    width: 100%;
    margin-right: 0;
  }
#updates .thum-grid-item2 li:nth-of-type(n+4) {
    display: none;
  }
  .thum-grid-item4 li {
    width: 48%;
  }
  .thum-grid-item4 li:nth-of-type(2n) {
    margin-right: 0;
  }
}
/* ★スマホのみレイアウト変更★ end */


/* サムネイルを自動トリミング整形 */
.img_rect {
  position: relative;
  overflow: hidden;
  padding-top: 67%; /* 比率 */
}
.img_rect img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* サムネイルをだいたい正方形に自動トリミング整形(エフェクトの影響で完全な正方形は無理だった) */
.img_sq {
  position: relative;
  overflow: hidden;
  padding-top: 100%; /* 比率 */
}
.img_sq img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*--------------------------------
 フッター
---------------------------------*/

.footer {
  /* background: #f0f8ff; */

  background-color: #fff;
  background-image: linear-gradient(90deg, rgba(189,190,200,0.5) 50%, transparent 50%),
                    linear-gradient(rgba(189,190,200,0.5) 50%, transparent 50%);
  background-size: 40px 40px;

  /* background:repeating-linear-gradient( 
    60deg, #fffacd, #fffacd 10px, #ffc0cb 0, #ffc0cb 20px, #555 0, #555 30px
    ); カラーコード 0,カラーコード サイズ　を追加すると増やせる*/

  /* background: center url(../img/common/XXX.png); */
	/* background-size: 90px 80px; */

  filter:blur(0);
	margin-top: auto;/*フッターを最下部にFIXするために必要*/
}

.foot-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
	padding: 20px 0 10px;
}
.foot-two {
  display: flex;
  flex: 0 0 48%;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.foot-three {
  display: flex;
  flex: 0 0 31%;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.foot-body {
  flex: 1;
}
.foot-title {
  margin-bottom: 5px;
}
.foot-desc {
  font-size: 15px;
  word-break: break-word;
  color: #333;
}
.foot-sns {
	font-size: 18px;
  letter-spacing: 10px;
  /* color: #8c8c8c; 文字色は.hover3で指定 */
  margin-bottom: 20px;
}
.copyright {
  font-family: "Gill Sans", sans-serif;
  font-size: 12px;
  letter-spacing: .8px;
  text-align: right;
  color: #8c8c8c;
  margin-top: 10px;
  margin-bottom: 10px;
}

.ml_grid {
  display: grid;
  grid-template-rows: 30px 5px;
  grid-template-columns: 1fr 120px;
}
.ml_form {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
	position: relative;
}

.ml_button {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  text-align: right;
}

.cp_iptxt {
	position: relative;
  background-color:transparent;
  width: 94%;
  border: none;
  outline: none;
}
.cp_iptxt input[type=text] {
	font-size: 15px;
  font-family: "Gill Sans", sans-serif;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 0.3em;
  padding-left: 30px;
	transition: 0.3s;
	letter-spacing: .6px;
	color: #333; /* 実際に入力した時の文字色 */
	border: none;
	border-bottom: 1px solid #8c8c8c;
	background: transparent;
  outline: none;
}

.cp_iptxt input[type=text]:focus {
	border-color: #242424;
}
.cp_iptxt i {
	position: absolute;
	top: 3px;
	left: 0;
	padding: 8px 0px 8px 8px;
	transition: 0.3s;
  font-size: 0.85em;
	color: #8c8c8c;
}
.cp_iptxt input[type=text]:focus + i {
	color: #242424;
}

.ml_button input[type=submit] {
  cursor: pointer;
  margin-left: auto;
  border: 1px solid #242424;
  padding: 7px 16px;
  text-align: center;
  background: #fff;
  color: #242424;
  transition: 0.7s;
  font-size: 13px;
  letter-spacing: .7px;
}
.ml_button input[type=submit]:hover {
  background: #242424;
  color: #fff;
	border: 1px solid #fff;
}

.form{
	margin-bottom: 22px;
}


/*--------------------------------
投稿記事 表示関連
---------------------------------*/


/* 一覧用 */

figure.imgfirst {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
 }
 figure.imgfirst:hover {
   background: rgba(255,255,255,0.8);
 }

 figure.imgsecond {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
 }

figcaption.capfirst {
  width: 100%;
  height: 30%;
  position: absolute;
  display: flex;
  top: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  color: #fff;
  padding-left: 25px;
  align-items: center;
  text-align: left;
  transition:all 0.6s ease;
}

figcaption.capsecond {
  width: 45%;
  height: 30%;
  position: absolute;
  display: flex;
  top: 5%;
  bottom: auto;
  left: auto;
  right: 5%;
  opacity: 1;
  color: #fff;
  padding-left: 25px;
  align-items: center;
  text-align: left;
}

.overlay { /* すりガラス*/
  background: rgba(255, 255, 255, 0.375);
  box-shadow: 0 0.75rem 1rem 0 rgba(0, 0, 0, 0.1);
  border-radius:  0 0 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}


.blogtitle {
	font-family: "Open Sans",sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #333;
	/* position: absolute; */
  padding: 10px 0 5px;
}
.bloglead {
  color: #8D8E95;
}
.blogcat {

}
.blogdate {
  background-color: rgba(189,190,200,0.5);
  padding: 5px 10px;
}
.blogauthor {

}

/* #article {
  padding-left: 50px;
  padding-right: 50px;
} */

.article_img { /* アイキャッチ画像（TOP画像） */
  width: 100%;
  margin: 20px 0;
}

.wp-block-gallery {
  padding: 20px 0 10px !important;
}

.columns-1 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.blocks-gallery-item {
  width: 100%;
  max-width: 1100px !important;
  max-height: 650px !important;
  object-fit: cover !important;
}

.blocks-gallery-caption {
  text-align: center;
  color: #8c8c8c;
  font-size: 90% !important;
}

.article_date {
  text-align: right;
  margin-top: 5px;
  margin-bottom: 15px;
}
.article_tag {
  text-align: right;
  margin: 5px 0 30px;
}
.article_tag H2 {
  font-style: italic;
  color: #8c8c8c;
}
.tag_link{
  margin-left: 10px;
  color: #8c8c8c;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.tag_link:hover {
  opacity: 1;
	color: #000;
}


/* ★スマホのみレイアウト変更★ */
@media screen and (max-width: 900px) { /* 900px以下の画面 イレギュラーでここに記載！！ */

  /* #article {
    padding-left: 0;
    padding-right: 0;
  } */

  .wp-block-gallery {
  padding: 10px 0 !important;
  }

/* ギャラリーの画像 1カラムの余白変更 */
  .columns-1 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

/* ギャラリーの画像 2カラムの表示変更 */
  .columns-2 .wp-block-gallery {
	flex: none !important;
  }
  .columns-2 .blocks-gallery-item {
	width: 100% !important;
	margin-right: 0 !important;
  }
}


/*--------------------------------
 プラグイン関連
---------------------------------*/

/* ContactForm7用 */
.wpcontact {
	position: relative;
  background-color: transparent;
  width: 100%;
  border: none;
  outline: none;
  padding-bottom: 20px;
}
.wpcontact input, textarea{
	font-size: 18px;
  font-family: "Gill Sans", sans-serif;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 0.3em;
  padding-left: 8px;
  padding-right: 8px;
	transition: 0.3s;
	letter-spacing: .6px;
	color: #333; /* 実際に入力した時の文字色 */
	border: none;
	border: 1px solid #8c8c8c;
	background: transparent;
  outline: none;
}
.wpcontact input:focus {
  border: 1px solid #242424;
  background-color: rgba(0,0,0,0.1);
	outline: none;
}
.wpcontact textarea:focus {
  border: 1px solid #242424;
  background-color: rgba(0,0,0,0.1);
	outline: none;
}

.wpcontact_checkbox {
  text-align: center;
}


.wpcontact_button {
  margin-top: 25px;
  text-align: center;
}
.wpcontact_button input[type=submit] {
  cursor: pointer;
  margin-left: auto;
  border: 1px solid #242424;
  padding: 8px 17px;
  font-size: 15px;
  letter-spacing: 1px;
  background: #fff;
  color: #242424;
  transition: 0.7s;
  /* 大きいバージョンの場合は下記
  padding: 13px 25px;
  font-size: 18px;
   */
}
.wpcontact_button input[type=submit]:hover {
  background: #242424;
  color: #fff;
	border: 1px solid #fff;
}

/* SUBMIT後に出るメッセージ */
div.wpcf7-response-output {
  font-weight: bold;
  color:#dc3232;
}
span.wpcf7-not-valid-tip {
  color:#dc3232;
}

/* エラーメッセージの上部を消去 */
div.screen-reader-response{
  display: none;
}
/* チェックボックスを含む行の周りの余白を削除 */
span.wpcf7-list-item{
  margin: 0 !important;
}
/* 送信ボタンの周りの余白を削除 */
div.wpcontact_button .wpcf7-submit{
  margin: 0 !important;
}
/* 送信ボタンの右の余白に入っているものを非表示 */
div.wpcf7 .ajax-loader {
  display: none !important;
}
