@charset "UTF-8";
/*
Theme Name: kiyoka
Theme URI:  kiyokaendo.com
Description: 
Version: 1.0
Author: cazesun
Author URI: cazesun.jp
License: GNU GENERAL PUBLIC LICENSE, Version 2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 
*/
/* RESET
----------------------------------------------------*/
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, main, small, span, strike, strong, sub, summary, sup, tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
  white-space: normal;
  text-align: left;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* General Setting 
----------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
  font-size: 10px;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-family: 'Rubik', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  width /***/ : auto;
}
/* Typography
----------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}
h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
}
blockquote {
  margin-bottom: 2rem;
  margin-left: 2rem;
  padding-left: 2rem;
  border-left: 5px solid #ddd;
}
/* Link
----------------------------------------------------*/
a:link {
  color: #03214b;
  text-decoration: none;
}
a:visited {
  color: #03214b;
  text-decoration: none;
}
a:hover {
  color: #3487c7;
  text-decoration: underline;
}
a:active {
  color: #ec6800;
  text-decoration: none;
}
a:hover img {
  opacity: 0.6;
  -moz-opacity: 0.6;
  filter: alpha(opacity=6);
  transition: all 0.5s;
}
/* structure layout
----------------------------------------------------*/
.container {
  margin: 0 auto;
}
.inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
}
.content {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 25rem;
}
.content-inner {
  position: relative;
  max-width: 890px;
  margin: 0 auto;
}
.wrap {
  width: 98rem;
  margin: 0 auto;
}
#wrapper {}
#header {
  margin: 0;
  padding: 0;
}
#footer {
  position: relative;
    margin: 0;
    padding: 3rem 0;
    text-align: center;
}
figure {
  overflow: hidden;
  line-height: 0;
}
figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
a figure:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
iframe {
  max-width: 100%;
  width: 100%;
}
.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

/* header element
----------------------------------------------------*/
#header, #header.fixed {
  position: fixed;
  top: 0;
  width: 250px;
  max-width: 250px;
  height: 100%;
}
#header .header-inner {
	padding: 5rem 0 0;
	background-color:  #fff;
}
#header h1.logo {
  margin: 0 auto 3rem;
  font-size: 0.1rem;
  text-align: left;
  line-height: 0;
}
#header h1.logo a {
  display: block;
  width: 20rem;
  height: 120px;
  margin: 0 auto;
}
#header p.tagline {}
/* global navigation
----------------------------------------------------*/
.menu-wrap {
  position: relative;
  padding: 0 0 3rem;
}
.menu-toggle {
  display: none;
}
.menu-wrap nav {
  background: transparent;
  text-align: center;
  transition: .5s;
}
.gnav ul.menu {
  list-style: none;
  margin: 1rem auto 7rem;
  font-size: 0;
  text-align: center;
}
.gnav ul.menu li {
  position: relative;
  display: block;
  list-style-type: none;
  margin: 0 3rem;
  padding: 0;
  text-align: left;
}
.gnav ul.menu li:first-child {}
.gnav ul.menu li a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 1rem;
  font-size: 1.6rem;
  text-decoration: none;
  line-height: 1.8rem;
  transition: .4s;
  white-space: nowrap;
}
.gnav ul.menu li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3487c7;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
.gnav ul.menu li .current, 
.gnav ul.menu li a:hover {
  text-decoration: none;
}
.gnav ul.menu li a:hover:after {
  transform: translate(0, 0);
}
.gnav ul.menu ul.sub-menu, .gnav ul.menu ul.children {
  position: absolute;
  display: none;
  margin: 0;
  padding: 0;
  background: #ffe79e;
  z-index: 99999;
}
.gnav ul.menu ul.sub-menu ul, .gnav ul.menu ul.children ul {
  left: 100%;
  top: 0;
}
.gnav ul.menu ul li:first-child {
  border-left: none;
}
.gnav ul.menu ul a, .gnav ul.menu ul ul a {
  width: 20rem;
  margin: 0;
  border-right: none;
  color: #000;
}
.gnav ul.menu ul a:hover, .gnav ul.menu ul ul a:hover {
  background-color: #fff;
}
.gnav ul.menu li:hover > ul, .gnav ul.menu ul li:hover > ul {
  display: block;
  background: #fff;
}
.gnav ul .current_page_item > a, .gnav ul .current_page_ancestor > a, .gnav ul .current-menu-item > a, .gnav ul .current-menu-ancestor > a, .gnav ul .current-post-ancestor > a {}
.menu-toggle {
  display: none;
}
.gnav ul.snslinks {
  margin: 0 3rem;
}
.gnav ul.snslinks li {
  display: inline-block;
  margin: 0 1rem 1rem;
}
.gnav ul.snslinks li a {
  display: block;
  color: #999;
  font-size: 1.6rem;
  text-decoration: none;
  line-height: 1.8rem;
  transition: .4s;
  white-space: nowrap;
}
.gnav ul.snslinks li a:hover {
  color: #3487c7;
	transition: all 0.5s;
}
/* footer element
----------------------------------------------------*/
#footer ul.snslinks {
position: absolute;
    right: 1rem;
    bottom: 2rem;
}
#footer ul.snslinks li {
	display: inline-block;
	margin: 0 1.5rem 0 0;
	font-size: 1.4rem;
}
#footer ul.snslinks li a  {
  display: block;
  color: #999;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.6rem;
  transition: .4s;
  white-space: nowrap;
}
#footer ul.snslinks li a:hover {
  color: #3487c7;
	transition: all 0.5s;
}
#footer p.copyright {
  width: 100%;
  margin: 0;
  padding: 0 3rem;
  color: #999;
  font-size: 1.2rem;
  font-style: normal;
  text-align: left;
}
#footer p.copyright a, #footer p.copyright abbr {
  border: none;
}



/* visual element
-------------------------------------------------------------- */
#visualArea {
	position: relative;
	margin: 0 auto 10rem;
	text-align: center;
}
#visualArea .cover {
	line-height: 0;
}
#visualArea .cover img {
	width: 100vw; 
}
.slider-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
.slider {
	margin: 0 auto;
}
.slider img {
	width: 100%;
	height: auto;
	object-fit: cover;
    height: 100vh;
}
.slick-current img {
  transform: scale(1);
}
.single-item {
	max-width: 100%;
	margin: 0 auto 5rem;
}
.slick-prev::before, .slick-next::before {
	font-size: 2.4rem;
}
.center-item .slick-next {
	right: 5rem;
	z-index: 99;
}
.center-item .slick-prev {
	left: 5rem;
	z-index: 100;
}
.single-item .slick-prev::before, .single-item .slick-next::before {
	color: #666;
}

.scroll-area {
    position: absolute;
	right: 0;
	bottom: 120px;
	left: 0;
	margin: 0 auto;
	z-index: 10;
	text-align: center;
}
.scroll-text {
    color: #fff;
    font-size: 12px;
    text-align: center;
    z-index: 10;
text-shadow: 0 1px 2px #000;
}
@-webkit-keyframes loopScrollBar {
    0% {
        -webkit-transform: translateY(-100.5%);
        transform: translateY(-100.5%);
    }
    100% {
        -webkit-transform: translateY(100.5%);
        transform: translateY(100.5%);
    }
}
@keyframes loopScrollBar {
    0% {
        -webkit-transform: translateY(-100.5%);
        transform: translateY(-100.5%);
    }
    100% {
        -webkit-transform: translateY(100.5%);
        transform: translateY(100.5%);
    }
}
.scroll-line {
    overflow: hidden;
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    width: 1px;
    z-index: 10;
    margin-right: auto;
    margin-left: auto;
    padding-top: 50px;
}
.scroll-line:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
}
.scroll-line:before {
    -webkit-animation-name: loopScrollBar;
    animation-name: loopScrollBar;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@media only screen and (max-width: 767px) {
.scroll-area{
    bottom: 100px;
}
}


/* lyout element
----------------------------------------------------*/
.gutters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col_2 {
  width: 49%;
}
.col_3 {
  width: 32%;
}
.col_4 {
  width: 24%;
}
.col_5 {
  width: 14%;
}
.col_layout, .col_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.col_section:nth-child(even) {
  flex-direction: row-reverse;
}
.col_text {
  width: 50%;
}
.col_img {
  width: 45%;
}
.col_main {
  width: calc(100% - 40rem);
}
.col_side {
  width: 32rem;
  padding-left: 6rem;
}
.order-1 {
	order: 1;
}
.order-2 {
	order: 2;
}
.order-3 {
	order: 3;
}
/* common element
----------------------------------------------------*/
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
@media screen and (max-width: 650px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
.fade {
  animation: fadeIn 0.2s ease 0.3s 1 normal;
}
@keyframes fadeIn { /*animetion-nameで設定した値を書く*/
  0% {
    opacity: 0
  } /*アニメーション開始時は不透明度0%*/
  100% {
    opacity: 1
  } /*アニメーション終了時は不透明度100%*/
}
.more-link a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 1rem;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.8rem;
  transition: .4s;
  white-space: nowrap;

}
.more-link a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3487c7;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
.more-link a:hover {
  text-decoration: none;
}
.more-link a:hover:hover:after {
  transform: translate(0, 0);
}
img {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "alpha(opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
}

.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.mb120 {
  margin-bottom: 120px !important;
}
.mb150 {
  margin-bottom: 150px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.mr60 {
  margin-right: 60px !important;
}

/* home element
----------------------------------------------------*/
.sticky {
  background: steelblue;
  border-top: 4px solid red;
}
.about {}
.cover-ttl {
  display: none;
  width: 60%;
  margin: 6.5rem auto 4.5rem;
}
.cover-slide {
  margin: 8rem auto 6rem;
  text-align: center;
}
/* facebook & twitter
----------------------------------------------------*/
div.fblikebox {
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  background-color: #fff !important;
  text-align: center !important;
}
div.fblikebox .fbcomments, div.fblikebox .fb_iframe_widget, div.fblikebox .fb_iframe_widget[style], div.fblikebox .fb_iframe_widget iframe[style], div.fblikebox .fbcomments iframe[style], div.fblikebox .fb_iframe_widget span {
  width: 100% !important;
}
/* home element
----------------------------------------------------*/
.some-block {
  display: flex;
  justify-content: space-between;
  margin: 0 0  10rem;
}
.some-block .item {
  width: 49%;
}
.some-block .item .ttl {
	font-family: 'Noto Serif JP', serif;
	margin: 0 0 6rem 65% !important;
	color: #03214b;
    font-size: 3rem !important;
    font-weight: normal !important;
    line-height: 2;
	writing-mode: vertical-rl;
}
.some-block .item .text-block {
	width: 350px;
	margin: 0 0 3rem 5rem;	
}
.some-block .item .text-block p {
	color: #999;
}
.some-block .item .some-img {
	margin: 0 0 3rem -50%;
}

.bl-section {
	width: 95%;
	margin: 0 0 10rem;
}
.bl-section .bl-img {
	margin: 0 0 6rem;
}
.bl-section .bl-img img {
	width: 100%;
}
.bl-block {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10px;
}
.bl-block .item { 
  width: 33%;
	padding: 0 2rem;
	text-align: center;
}
.news-block .ttl,
.bl-block .item .ttl {
	font-family: 'Noto Serif JP', serif;
	margin: 0 auto 2rem !important;
	color: #03214b;
    font-size: 2.4rem !important;
    font-weight: normal !important;
    line-height: 1.6;
}
.bl-block .item p {
	color: #999;
}




/* page element
----------------------------------------------------*/
.header-block {
  display: flex;
  justify-content: space-between;
	flex-flow: row-reverse;
  margin: 0 0 6rem;
}
.header-block .header-block-item-1 {
  width: auto;
}
.header-block .header-block-item-1 img {
	width: 100vw;
   height: 100vh;
object-fit: cover;
}
.header-block .header-block-item-2 {
  width: 380px;
  min-width: 380px;
	padding: 3rem;
}
.header-block .header-block-item-2 .ttl {
	font-family: 'Noto Serif JP', serif;
	margin: 10rem 0 1rem !important;
	color: #03214b;
    font-size: 3rem !important;
    font-weight: normal !important;
    line-height: 2;
}
.header-block .header-block-item-2 .since {
	font-family: 'Noto Serif JP', serif;
	color: #03214b;
    font-size: 1.8rem !important;
    line-height: 1.6;
}
.header-block .header-block-item-2 p {
	margin: 0 0 3rem !important;
	padding: 0 !important;
	color: #999;
}
.header-block .header-block-item-3 img,
.header-block .header-block-item-2 img {
	margin: 0 0 3rem !important;
}
.header-block-en {
	padding: 3rem
}
.list-notie {
	margin:  0 0.5rem 6rem !important;
}
.list-notie li {
list-style-type: none;
margin: 0 0 1rem 0 !important;
padding: 0 0 0 1em !important;
text-indent: -1em;
	line-height: 1.6;
}

.sub-ttl {
	margin: 0 0 2rem !important;
	border-left: none !important;
	font-size: 18px !important;
}
.link-list {
	
}
.link-list li {
	list-style: none;
	
}
.link-list li a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 1rem;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.8rem;
  transition: .4s;
  white-space: nowrap;
}
.link-list li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3487c7;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
.link-list li a:hover {
  text-decoration: none;
}
.link-list li a:hover:hover:after {
  transform: translate(0, 0);
}

.ws_block .is-layout-flex {
  margin-bottom: 30px;
}




/* article element
----------------------------------------------------*/
.article-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 3rem;
}
.article-img {
  width: 30%;
}
.article-text {
  width: 65%;
}
.article-text .article-ttl {
  margin: 0 0 1rem !important;
 font-family: 'Noto Serif JP', serif;
  font-size: 2rem !important;
}
/* sideber
----------------------------------------------------*/
#sidebar {
  margin: 0;
}
.widget-area {
  margin: 0 0 6rem;
  padding: 0;
}
.widget-area ul {
  margin: 0;
  padding: 0;
}
.widget-area ul li {
  display: inline-block;
  list-style: none;
  margin: 0 2rem 1rem 0;
  padding: 0;
  list-style-position: outside;
  line-height: 1.2;
  width: 30%;
}
.widget-area #categories-2, .widget-area #recent-posts-2, .widget-area #search-2 {
  margin: 0 0 60px;
  padding: 0;
}
.widget-area .screen-reader-text {
  display: none;
}
/* widget
----------------------------------------------------*/
#sidebar h3 {
  margin: 0 0 2rem;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid #ccc;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
}
#sidebar li:first-child h3 {
  margin-top: 0;
}
#sidebar h3.title {
  position: relative;
  margin: 0 0 30px;
  padding: 0;
  border: none;
  text-align: center;
}
#sidebar h3.title:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  border-top: 2px solid #000;
  z-index: 1;
}
#sidebar h3.title span {
  position: relative;
  padding: 0 20px;
  background: #fff;
  font-size: 1.1em;
  font-weight: bold;
  z-index: 5;
}
#sidebar p {
  margin: 0 0 15px;
  padding: 0;
  font-size: 1.6rem;
}
.widget-container a {
  text-decoration: none;
}
.widget-container ul li {
  list-style: url(./images/icon_arrow.gif);
  margin-left: 20px;
}
ul.entrylist {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul.entrylist li {
  margin: 10px 0;
  padding: 10px 5px;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  line-height: 1.4;
}
ul.entrylist li a {
  display: block;
}
ul.entrylist li img {
  margin-right: 10px;
  margin-bottom: 5px;
  float: left;
  width: 40%;
}
/* localnav
----------------------------------------------------*/
.local-nav ul {
  margin: 0 0 20px;
  padding: 5px 0;
  border-top: 3px solid #005243;
}
.local-nav ul li {
  margin: 0 0 5px !important;
  padding-left: 0px;
  border-bottom: 1px dotted #ddd;
  font-size: 1em;
  list-style: none !important;
}
.local-nav ul li a {
  display: block;
  margin: 0 0 5px 0 !important;
  padding: 10px 10px 10px 30px;
  background: url(./images/icon_arrow.png) no-repeat 10px center;
  list-style: none !important
}
.local-nav ul li a:hover {
  background-color: #eee;
  color: #422c63;
}
/* post meta
----------------------------------------------------*/
div.post-meta {
  margin: 0 0 3rem;
  padding: 0;
}
div.post-meta ul {
  margin: 0;
}
div.post-meta ul li {
  display: inline-flex;
  margin: 0 1rem 0 0;
  font-size: 1.6rem;
  vertical-align: middle;
  line-height: 1;
}
div.post-meta ul li.cal {}
div.post-meta ul li.cat {}
div.post-meta ul li.author, div.post-meta ul li.comment {}
div.post-meta ul li.tag {}
div.post-meta ul li.tag a {
  width: 50px;
  margin: 5px 0;
  padding: 0.2rem 1rem 0;
  border: 2px solid #c00;
  background-color: #fff;
  color: #c00 !important;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
div.post-meta ul li .new_bg {}
div.post-meta ul li .new_bg::before {}
div.post-meta ul li .new_bg .new-text {
  position: absolute;
  font-size: 1.8rem;
  font-weight: bold;
  color: #c00;
}
/* content element
----------------------------------------------------*/
.content .post {}
.page .content .post {}
.post h2, .post h3, .post h4, .post h5, .post h6 {
  margin: 3rem 0;
}
.post .header h2 {
  margin: 10rem 0 2.5rem !important;
  padding: 1.5rem 0;
color: #03214b;
font-size: 3rem !important;
font-weight: normal !important;
font-family: 'Noto Serif JP', serif;
line-height: 2;
  text-align: center;
	
}
.post h2 {
  font-size: 2.4em;
  font-weight: bold;
  text-align: left;
}
.post section > h3 {
  margin-top: 0 !important;
}
.post h3 {
  padding-left: 1rem;
  border-left: 5px solid #333;
  font-size: 2.2rem;
  font-weight: bold
}
.post h4 {
  font-size: 2rem;
  font-weight: bold;
}
.post h5 {
  font-size: 1.8rem;
}
.post h6 {
  font-size: 1.6rem;
}
.post p {
  margin: 0 0.5rem 3rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
.post strong {
  font-weight: bold;
}
.post em {
  font-style: italic;
}
.post code {
  color: #06c;
  font-family: 'Courier New', Courier, monospace;
}
.post img.wp-smiley {
  border: none;
  padding: 0;
  background: none;
  margin: 0;
}
.post blockquote p {
  margin: 0;
}
.post blockquote {
  clear: both;
  position: relative;
  margin: 0 0 3rem;
  padding: 3rem 5rem 4rem;
  background: #fafafa;
  border: 1px #e5e5e5 solid;
}
.post blockquote:before {
  position: absolute;
  top: 20px;
  left: 10px;
  content: '\f10d';
  color: #e7e7e7;
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: 900;
}
.post blockquote:after {
  position: absolute;
  bottom: 20px;
  right: 10px;
  content: '\f10e';
  color: #e7e7e7;
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: 900;
}
.post blockquote cite {
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  font-size: 1.2rem;
  color: #808080;
}
.post div.wp-caption {
  margin: 2rem 0;
}
.post div.wp-caption img {
  margin: 0;
}
.post div.wp-caption p {
  font-size: 1.4rem;
}
.post ul {
  margin: 0 0.5rem 2rem;
  padding: 0;
  list-style: disc;
}
.post ol {
  margin: 0 15px 20px;
  padding: 0;
  list-style: decimal;
  list-style-position: outside;
}
.post li {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
  font-size: 1.6rem;
}
.post li a {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
.post li a:hover {}
.post table {
  width: 100%;
  margin: 10px 0 0 0;
  padding: 0;
  border: 1px solid #999;
  border-collapse: collapse;
  border-spacing: 0;
}
.post table th {
  padding: 10px;
  background-color: #ddd;
  border: 1px solid #999;
  border-width: 0 0 1px 1px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}
.post table td {
  padding: 10px;
  border: 1px #999 solid;
  border-width: 0 0 1px 1px;
  font-size: 16px;
  text-align: center;
  white-space: normal;
  vertical-align: middle;
}
/* Bottom Navigation, Comment Navigation
----------------------------------------------------*/
div.nav-below {
  margin: 80px 0 0;
  overflow: auto;
}
div.navigation {
  overflow: auto;
}
div.navigation a {
  margin-bottom: 10px
}
.nav-previous a, .nav-next a, div.navigation .pagenext a, div.navigation .pageprev a {
  font-size: 85%;
  text-decoration: none;
}
.nav-previous a, div.navigation .pageprev a {
  float: left;
  padding: 2px 10px;
  border: 1px solid #519fc9;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #519fc9 url(./images/icon_prev.gif) no-repeat left top;
  color: #fff;
  text-decoration: none;
}
.nav-next a, div.navigation .pagenext a {
  float: right;
  padding: 2px 10px;
  border: 1px solid #519fc9;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #519fc9 url(./images/icon_next.gif) no-repeat right top;
  color: #fff;
  text-decoration: none;
}
.nav-previous a, div.navigation .pageprev a:hover, .nav-next a, div.navigation .pagenext a:hover {
  border: 1px solid #519fc9;
  background: #92d0f1;
  color: #519fc9;
}
/* Comments Area
----------------------------------------------------*/
/* Comments Area
----------------------------------------------------*/
/* Form
----------------------------------------------------*/
/* Searchform
----------------------------------------------------*/
form#searchform {}
form#searchform input[type=submit] {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 15px;
  line-height: normal;
  cursor: pointer; /* Old browsers */
}
form#searchform input[type=submit]:hover {}
form#searchform input[type=text] {
  width: 200px;
  height: 35px;
  padding: 5px;
}
form#searchform input[type="text"]:focus {
  color: #444;
}
form#searchform label {
  display: none;
}
/* コンタクトフォーム
----------------------------------------------------*/
.wpcf7-list-item {
  display: block;
  margin-top: 1rem;
}
.contact-input-area .contact_form {
  width: 100%;
  overflow: hidden;
  table-layout: fixed;
  margin: 0 auto 30px;
	border: none;
}
.contact-input-area .contact_form th {
  position: relative;
  width: 30%;
  margin: 0;
  padding: 2rem;
	border: none;
	background-color: inherit;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: left;
  line-height: 1.6;
  vertical-align: middle;
}
.contact-input-area .contact_form td {
  position: relative;
  margin: 0 0 2rem;
  padding: 2rem;
	border: none;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.6;
  vertical-align: middle;
}
.contact-input-area .contact_form input[text], .contact-input-area .contact_form textarea {
  width: 100%;
  margin: 0;
}
.contact-input-area .required-contactform {
  margin: 0 0 0 1rem;
  color: #c03;
  font-size: 1.4rem;
}
.contact-input-area .unrequired-contactform {
  margin-right: 0.5rem;
  padding: 0.5rem;
  background: #bdbdbd;
  border-radius: 3px;
  color: #bdbdbd;
}
.contact-input-area .table-bordered {

}
.contact-input-area .table-bordered td, 
.contact-input-area .table-bordered th {
	border-bottom: 1px solid #ddd;
}
.contact-input-area input[type=submit] {
  display: block;
  width: 280px;
  margin: 1.5rem auto;
  padding: 1rem;
  border: 1px solid #03214b;
	border-radius: 5px;
  background-color: #03214b;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 3px 0 #ccc;
  cursor: pointer; /* Old browsers */
}
.contact-input-area input[type=submit]:hover {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  box-shadow: none;
  transition: .4s;
	color: #3487c7;
  border: 1px solid #3487c7;
	background-color: #fff;
}




.contact-input-area input[type="radio"] {
  margin: 0 0 4px 0;
}
input[type="text"], input[type="email"], input[type="search"], textarea {
  margin: 0;
  padding: 0.5rem;
  max-width: 100%;
  width: 100%;
  outline: none;
background-color: #efefef;
  border: 1px solid #ddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 5px;
  font-size: 1.6rem;
  vertical-align: bottom;
}
textarea {
  overflow: auto;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="search"]:focus, textarea:focus {
  border: 1px solid #519fc9;
  background: #fff;
  -webkit-box-shadow: 0 0 3px rgba(81, 159, 201, 1);
  -moz-box-shadow: 0 0 3px rgba(81, 159, 201, 1);
  box-shadow: 0 0 3px rgba(81, 159, 201, 1);
  color: #444;
}
.wpcf7 form.sent .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 1.6rem;
}
/* PREV NEXT
----------------------------------------------------*/
#prev-next {
  display: table;
  width: 100%;
  margin: 60px 0;
  padding: 0;
}
#prev-next .prev-block, #prev-next .next-block {
  display: table-cell;
  position: relative;
  width: 50%;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  text-decoration: none;
}
#prev-next .prev-block a, #prev-next .next-block a {
  display: block;
  padding: 20px;
  color: #000;
  font-size: 1.4rem;
}
#prev-next .prev-block a:hover, #prev-next .next-block a:hover {
  background-color: rgba(238, 238, 238, 0.7);
  color: #ccc;
  text-decoration: none;
  transition: 0.8s;
}
#prev-next .prev-block-no, #prev-next .prev-block {
  border-right: 1px dotted #ccc;
}
#prev-next .next-block-no, #prev-next .next-block a {
  text-align: right;
}
#prev-next .prev-block-no, #prev-next .next-block-no {
  display: table-cell;
  position: relative;
  width: 50%;
  padding: 20px;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  color: #ccc;
  font-size: 1.4rem;
}
@media only screen and (min-width: 780px) {
  #prev_next #prev, #prev_next #prev::before, #prev_next #prev::after, #prev_next #next, #prev_next #next::before, #prev_next #next::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #prev_next #prev_title, #prev_next #next_title {
    padding: 3px 10px;
  }
  #prev_next #next_title {
    right: 10px;
  }
  #prev_next #prev img {
    float: left;
    margin-right: 10px
  }
  #prev_next #next img {
    float: right;
    margin-left: 10px;
  }
}
/* sns
----------------------------------------------------*/
.sns-share {
  width: 100%;
  margin: 3rem auto 6rem;
  padding: 0;
}
.snstext, .snscount {
  display: none;
}
.sns-share ul {
  margin: 0 auto;
  text-align: center;
}
.sns-share ul li {
  position: relative;
  display: inline-flex;
  list-style: none;
  margin: 0 1rem 1rem;
  width: 40px;
  list-style-type: none;
}
.sns-share li:last-child {}
.sns-share li i {
  font-size: 1.6rem !important;
}
.sns-share ul li a {
  display: block;
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 3px;
  cursor: pointer;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  line-height: inherit;
  text-decoration: none;
}
.sns-share ul li a:hover {}
.sns-share .twitter a, .sns-share .facebook a, .sns-share .pocket a, .sns-share .hatebu a, .sns-share .line a {
  background-color: #000;
}
.sns-share .twitter a:hover, .sns-share .facebook a:hover, .sns-share .hatebu a:hover, .sns-share .line a:hover, .sns-share .pocket a:hover {
  background-color: #276b47;
}
/* 関連記事表示部分
----------------------------------------------------*/
.post-related {
  margin: 0 0 6rem;
}
.post-related .related-ttl {
  margin: 0 0 3rem;
  padding: 1.5rem;
  border-bottom: 2px solid #e5e5e5;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 1.8rem;
  font-weight: bold;
}
.post-related .article-img {
  width: 15%;
}
.post-related .article-text {
  width: 80%;
}
.post-related .article-text {
  font-size: 1.8rem;
}
.post-related {
  font-size: 1.6rem;
}
/* gallery
----------------------------------------------------*/
#gallery-1 {
  margin: auto;
}
#gallery-1 ul {
  width: 100%;
}
#gallery-1 .gallery-item {
  display: inline-block;
  position: relative;
  width: auto /*33%*/ ;
  list-style: none;
  margin: 0px 6px 6px 0;
  padding: 0px;
  text-align: left;
}
#gallery-1 .gallery-icon {
  margin: 0;
}
#gallery-1 .gallery-item a {
  line-height: 0;
  display: block;
  padding: 3px;
  border: 1px solid #ddd;
}
#gallery-1 img {
  width: 240px;
  height: 240px;
}
#gallery-1 .gallery-title {
  position: absolute;
  left: 0;
  top: 126px;
  width: 130px;
  margin: 0;
  padding: 10px 15px;
  color: #fff;
  line-height: 1;
  opacity: 0;
  -webkit-transition: opacity .3s linear;
  -moz-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  transition: opacity .3s linear;
  filter: alpha(opacity=0);
}
#gallery-1 .gallery-item:hover .gallery-title {
  opacity: 1;
  filter: alpha(opacity=100);
}
#gallery-1 .gallery-caption {
  margin: 0;
}
/* Misc
----------------------------------------------------*/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  display: inline-block;
  float: right;
  margin: 0 0 1em 1.5em;
  width: auto;
}
.alignleft {
  display: inline-block;
  float: left;
  margin: 0 1.5em 1em 0;
  width: auto;
}
.wp-caption {
  margin: 10px;
  padding-top: 4px;
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #f3f3f3;
  text-align: center;
}
.wp-caption-text, .gallery-caption {
  font-size: 80%;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}
.wp-caption-dd {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}
/* wp_pagenavi
----------------------------------------------------*/
.wp-pagenavi {
  clear: both;
  overflow: hidden;
  margin: 30px auto 100px;
  padding-top: 10px;
  padding-bottom: 25px;
  font-size: 16px;
  text-align: center;
}
.wp-pagenavi .pages {}
.wp-pagenavi a, .wp-pagenavi span {
  border: 1px solid #ccc;
  margin-left: 5px;
  padding: 3px;
  color: #e68012;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  vertical-align: bottom;
  white-space: nowrap;
}
.wp-pagenavi a:hover {
  background: #e68012;
  color: #fff;
  text-shadow: none;
  border-color: #e68012 !important;
}
.wp-pagenavi span.current {
  background: #e68012;
  color: #fff;
  font-weight: bold;
  text-shadow: none;
  border-color: #e68012 !important;
}
/* socialArea
----------------------------------------------------*/
#socialArea {
  margin: 30px auto !important;
  padding: 0;
  text-align: center;
}
#socialArea ul {
  /*	position: absolute;
	top: 80px;
	left: 350px;*/
  margin: 0 0 0 150px;
  padding: 0;
}
#socialArea ul li {
  display: inline;
  float: left;
  margin: 0 6px 0 0;
  padding: 0;
}
#socialArea ul li.btnTwitter {
  width: 100px;
}
#socialArea ul li.btnFacebook {
  width: 110px;
}
#socialArea ul li.btnGoogle {
  width: 100px;
}
/* pagetop
----------------------------------------------------*/
.pagetop {
  margin: 0;
  font-size: 1.2rem;
  text-shadow: none;
  line-height: 1;
  text-indent: -99999px;
}
.pagetop a {
  display: block;
  position: fixed;
right: 2.5rem;
    bottom: 6rem;
  width: 3rem;
  height: 3rem;
  background-color: #03214b;
  box-sizing: border-box;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(255 255 255 / 16%);
}
.pagetop a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transition: transform ease 0.4s;
}
.pagetop a:hover:after {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.pagetop a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-style: solid;
  border-color: #fff;
  border-width: 3px 0 0 3px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
.pagetop a:hover:before {
  border-color: #3487c7;
}
/* clearfix
----------------------------------------------------*/
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}
@media screen and (max-width: 768px) {
  /* structure layout
----------------------------------------------------*/
  .container {
    margin: 0;
    padding: 0 5%;
  }
  .inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
  }
  .wrap {
    width: 100% !important;
    padding: 0 5% !important;
  }
  .content {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  #footer {
  }

  /* lyout element
----------------------------------------------------*/
  .gutters {
    display: block;
  }
  .col_2, .col_3, .col_4, .col_5 {
    width: 100%;
  }
  .col_layout, .col_section {
    display: block;
  }
  .col_text, .col_img {
    width: 100%;
  }
  .col_main {
    width: 100%;
  }
  .col_side {
    width: 100%;
    padding-left: 0;
  }
.order-1 {
	order: 2;
}
.order-2 {
	order: 1;
}
.order-3 {
	order: 3;
}
	
	

  /* header element
----------------------------------------------------*/
  #header, #header.fixed {
    position: fixed;
    top: 0;
    bottom: auto;
    width: 100%;
    max-width: 100%;
	height: auto;
    z-index: 9999999;
  }
  #header .header-inner {
	  padding: 0;
	  background-color: inherit;
	}
  #header h1.logo {
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    margin: 0 auto;
    padding: 0;
    font-size: 0.1rem;
    text-align: left;
    line-height: 0;
  }
  #header h1.logo a {
    position: relative;
    display: block;
    width: 10rem;
    height: 5.5rem;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
  }
  #header h1.logo a img {
    position: absolute;
    top: 38%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
  }
  /* global navigation
----------------------------------------------------*/
  .menu-wrap {
    position: relative;
    padding: 0;
  }
  #nav-toggle {
    display: block;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    z-index: 100;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #nav-toggle div {
    position: relative;
  }
  #nav-toggle span {
    display: block;
    height: 3px;
    background: #000;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 0px;
  }
  #nav-toggle span:nth-child(2) {
    top: 10px;
  }
  #nav-toggle span:nth-child(3) {
    top: 20px;
  }
  #nav-toggle.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #nav-toggle.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }	
  #nav-toggle.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
 nav.gnav {
    position: absolute;
    z-index: 1;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    overflow-x: hidden;
    background: #fff;
    text-align: center;
    transition: .5s;
  }
.gnav ul.menu {
    list-style: none;
    margin: 10rem 5rem;
    font-size: 0;
    text-align: center;
  }
  .gnav ul li {
    margin: 0 0 2rem;
  }
  .gnav ul li:first-child {}
  .gnav ul li a {
    display: block;
    padding: 1rem 1rem;
    line-height: 1.6rem;
  }
  .gnav ul li .current, .gnav ul li a:hover {
  }
  .gnav ul.snslinks {
    display: inline-block;
    margin: 3rem 5rem;
    text-align: left;
  }
  .gnav ul.snslinks li {
    display: table-cell;
    margin: 0 .5rem;
    font-size: 1.4rem;
  }
  .gnav ul.snslinks li a {
    color: #000;
  }
  .gnav ul.snslinks li a:hover {
    opacity: 0.8;
    transition: all 0.5s;
  }
  /* footer element
----------------------------------------------------*/
  #footer ul.snslinks {
    position: absolute;
    top: -4rem;
    left: 2.5rem;
    right: auto;
    display: inline-block;
    margin: 3rem auto;
    text-align: center;
  }
  #footer ul.snslinks li {
    display: inline-block;
    margin: 0 .5rem;
    font-size: 1.4rem;
  }
  /* home element
----------------------------------------------------*/
.some-block {
  display: block;
}
.some-block .item {
  width: 100%;
}
.some-block .item .ttl {
	font-family: 'Noto Serif JP', serif;
	margin: 0 auto 6rem !important;
	color: #03214b;
    font-size: 3rem !important;
    font-weight: normal !important;
    line-height: 2;
	writing-mode: vertical-rl;
}
.some-block .item .text-block {
	width: 100%;
	margin: 0 auto 3rem;	
}
.some-block .item .some-img {
	margin: 0 auto 3rem;
}
.bl-section {
	width: 100%;
	margin: 0 0 10rem;
}
.bl-block {
  display: block;
}
.bl-block .item { 
  width: 100%;
	padding: 0;
}
.bl-block .item .ttl {
	font-family: 'Noto Serif JP', serif;
	margin: 0 auto 2rem !important;
	color: #03214b;
    font-size: 2.4rem !important;
    font-weight: normal !important;
    line-height: 1.6;
}
/* page element
----------------------------------------------------*/
.header-block {
  display: block;
}
.header-block .header-block-item-1,
.header-block .header-block-item-2 {
  width: 100%;
}
.header-block .header-block-item-1 .ttl {
    font-size: 3rem !important;
    line-height: 2;
}
.header-block .header-block-item-1 .since {
    font-size: 1.8rem !important;
    line-height: 1.6;
}



.post .header h2 {
  font-size: 2.4rem !important;
}
	
	
  /* コンタクトフォーム
----------------------------------------------------*/
  .wpcf7-list-item {
    display: block;
    margin-top: 1rem;
  }
  .contact-input-area .contact_form {
    width: 100%;
    overflow: hidden;
    table-layout: fixed;
    margin: 0 auto 30px;
  }
  .contact-input-area .contact_form th, .contact-input-area .contact_form td, .contact-input-area .contact_form tr:last-child th, .contact-input-area .contact_form tr:last-child td {
display: block;
width: 100%;
padding: 0 0 2rem;
  }
.contact-input-area .table-bordered th {
  border-bottom: none;
}
}

sb_instagram .sb_instagram_header h3, .sb_instagram_header h3 {
  border: none;
}