@charset "utf-8";

@import url('css/reset.css');

* {
	padding: 0px;
	margin: 0px;
	outline: none;
}

html {
	border: 0px;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
	color: #4a4a4a;
	cursor: default;
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	line-height: 1.5;
	word-wrap: break-word;
}

html body.home
{
  -ms-overflow-style: none;  /* IE10+ */
  overflow: hidden;
  background-color: #000;
}
html body.home::-webkit-scrollbar  /* Webkit(Chrome) */
{
  display: none;
}

html,
body,
#wrapper {
  width: 100%;
}

.clear {
	clear: both;
	padding: 0px;
	margin: 0px;
	height: 0px;
}

p {
  /* text-align: justify; */
	line-height: 1.8;
}

a {
	text-decoration: none;
	cursor: pointer;
	-webkit-transition:  0.4s ease-out;
	transition:  0.4s ease-out;
}
a {overflow:hidden;}
a:link { color: #a30076; text-decoration: none;}
a:visited { color: #a30076; text-decoration: none;}
a:active { color: #a30076; text-decoration: underline; outline: none;}
a:hover { color: #b33d92; text-decoration: underline;}
a:focus { -moz-outline-style: none; }

a:hover img {
	opacity: .7;
	-webkit-opacity: .7;
	-moz-opacity: .7;
	filter: alpha(opacity=70);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* IE 8 */
}

a img {
	-webkit-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

img {
	max-width:100%;
	width:/***/auto; /* IE8用 */
	height:auto;
}

#wrapper {
	margin: 0 auto;
	font-size: 16px; font-size: 1.6rem;
}
#mainContents {
	clear: both; 
	margin: 160px 0 0 0;
	padding-bottom: 50px;
	width: 100%;
}

/* ========================================================
header
===================================================== */
#headerGlobal {
    z-index: 100;
    width: 100%;
    left: 0;
    top: 0;
}
.logo {
	position: fixed;
	z-index: 14;
	width: 162px;
	height: 33px;
	top: 50px;
	left: 50px;
}
.logo::after {
	content: '';
	width: 0;
	height: 1px;
	background-color: #ccc;
	display: block;
	margin-top: 7px;
	-webkit-transition: width .3s ease-out 0s;
    transition: width .3s ease-out 0s;
}
.open .logo::after {
	background-color: #444;
}

/*
.open .logo {
	pointer-events: none;
	cursor: default;
	opacity: 0;
	-webkit-transition:  0.4s ease-out;
	transition:  0.4s ease-out;
}
*/
.logo:hover::after {
	width: 100%;
}
/*
#logo {
	stroke-width: .6;
	stroke: #fff;
}
*/
.home h1.logo #logo {
	fill: #fff; 
}
#nameLogo {
	width: 400px;
	height: auto;
	margin-left: -50%;
	margin-bottom: 5px;
	fill: transparent;
	stroke: black;
	stroke-width: .2;
	stroke-dasharray: 100 100;
	animation: lineAnime 3s ease-out 0s forwards;
}
#nameLogoShow {
	width: 400px;
	height: 40px;
	margin-left: -50%;
	margin-bottom: 5px;
	fill: #fff;
}
@keyframes lineAnime {
  0% {
    stroke-dashoffset: 400;
	stroke-width: 1;
  }
  80% {
    stroke: rgba(255,255,255,1.0);
  }
  90%{
    stroke-dashoffset: 200;
    fill: rgba(255,255,255,0);
  }
  100% {
    stroke: rgba(255,255,255,1.0);
    fill: rgba(255,255,255,1.0);
  }
}

.globalNav {
	position: fixed;
	top: 50px;
	right: 50px;
	z-index: 15;
}
.globalNav .menu {
	position: relative;
	top: 0;
	right: 60px;
	float: left;
	color: #666666;
}
.home .globalNav .menu {
	color: #fff;
}
.btnNavMenu {
	width: 50px;
	padding: 5px;
	position: absolute;
	right: 0;
	top: 0;
    cursor: pointer;
}
.btnNavMenu span {
    transition: all .4s;
}
.btnNavMenu span:nth-child(1) {
    width: 40px;
}
.btnNavMenu:hover span:nth-child(1) {
    width: 32px;
}
.btnNavMenu span:nth-child(2) {
    width: 32px;
}
.btnNavMenu span:nth-child(3) {
    width: 20px;
    margin-bottom: 0;
}
.btnNavMenu:hover span:nth-child(3) {
    width: 32px;
}
.btnNavMenu>* {
    display: block;
    height: 1px;
    background-color: #666666;
    -webkit-transition: width .4s ease-out 0s;
    transition: width .4s ease-out 0s;
    margin-bottom: 5px;
	float: right;
}
.home .btnNavMenu>* {
    background-color: #ffffff;
}

.open .btnNavMenu span:nth-child(1),
.open .btnNavMenu:hover span:nth-child(1) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 32px;
	margin-top: 5px;
	margin-bottom: 0;
}
.open .btnNavMenu span:nth-child(2) {
	display: none;
}
.open .btnNavMenu span:nth-child(3),
.open .btnNavMenu:hover span:nth-child(3){
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 32px;
}

/* メニュー */
#nav-bg {
	content: "";
	display: none;
	width: 0;
	height: 100vh;
	top: 0;
	left: 100%;
	display: block;
	position: fixed;
	background: #17A669;
	background-color: rgba(0,0,0,0.95);
	text-align: center;
	z-index: 10;
}
#nav-bg.openMenuBg {
	display: block;
	width: 100vw;
	left: 0;
}
 
/* nav-list  */
#navMenu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 92%;
	height: 300px;
	z-index: 998;
	text-align: center;
	display: none;
}
#navMenu ul.navMenuList {
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient:horizontal;
	-webkit-box-direction:normal;
	-ms-flex-flow:row wrap;
	flex-flow:row wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 1200px;
	margin-bottom: 30px;
}
#navMenu ul.navMenuList li {
	opacity: 0;
	padding: 20px;
	vertical-align: middle;
	display: table-cell;
	font-size: 19px; font-size: 1.9rem;
	width: 25%;
}
#navMenu ul.navMenuList li a {
	color: #ffffff;
	display: block;
}
#navMenu ul.navMenuList li a:hover {
	opacity: .5;
	-webkit-opacity: .5;
	-moz-opacity: .5;
}
#navMenu ul.navMenuList li a:hover {
	text-decoration: none;
}
#navMenu ul.navMenuList li a span {
	display: block;
	font-size: 13px; font-size: 1.3rem;
	padding: 10px 0;
	opacity: .5;
}
#navMenu ul.navMenuList li.asset-ad {
	width: 100%;
}

.snsMenu {
	opacity: 0;
}
.snsMenuWrapper {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.snsMenuWrapper a {
	color: #fff;
}
.snsMenuWrapper .snsMenu-link {
	padding: 0 20px 0 0;
}
.snsMenuWrapper .snsMenu-link a:hover{
	opacity: .5;
	-webkit-opacity: .5;
	-moz-opacity: .5;
	text-decoration: none;
}
.snsMenuWrapper .snsMenu-link:first-of-type {
	border-right: 1px solid #3f3f3f;
}

.mailMenu {
	margin-bottom: 1em;
}
.mailMenu a {	
	color: #fff;
}
.mailMenu a:hover {	
	opacity: .5;
	-webkit-opacity: .5;
	-moz-opacity: .5;
	text-decoration: none;
}

.homeMainNav {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	width: 100%;
	justify-content: center;
	margin: 7em auto 0;
	width: fit-content;
}
.homeMainNav li {
	list-style: none;
	border-right: 1px solid rgba(255,255,255,0.4);
}
.homeMainNav li:last-of-type {
	border-right: none;
}
a.homeMainNav-item {
	text-decoration: none;
	color: #fff;
	display: inline-block;
	position: relative;
	margin: 0 1em;
	padding: 2px 0;
	font-size: 17px; font-size: 1.7rem;
	vertical-align: middle;
}
a.homeMainNav-item:hover {
	color: #d8d2d2;
}
.homeMainNav-item::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #fff;
	transition: all 0.3s ease 0s;
}
.homeMainNav-item:hover::after {
	width: 100%;
}

/* ========================================================
footer
===================================================== */
#footerGlobal {
	clear: both;
	border-top: 1px solid #e9e9e9;
	width: 100%;
	position: relative;
}
.footer {
	padding: 40px;
}
.contactSet {
	width: 50%;
	float: left;
}
.iconArrow02 {
	position: relative;
	padding-right: 20px;
}
 a.iconArrow02 {
	color: #333333;
}
 a.iconArrow02:hover {
	color: #999999;
	text-decoration: none;
}
.iconArrow02::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0px;
	width: 15px;
	height: 1px;
	background: #333;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.iconArrow02::after {
	content: "";
	position: absolute;
	top: 34%;
	right: 0;
	display: inline-block;
	width: 7px;
	height: 7px;
	border: solid #333;
	border-width: 1px 1px 0 0;
	transform: rotate(45deg);
	-webkit-transition: all .3s;
	transition: all .3s;
}
.iconArrow02:hover::before,
.iconArrow02:hover::after {
	right: -5px;
}

.pageTop {
	position: absolute;
	top: 10px;
	right: 50px;
}
.pageTop a {
	position: relative;
	padding-left: 20px;
}
.pageTop a::after {
	content: "";
	position: absolute;
	top: 30%;
	left: 5px;
	display: inline-block;
	width: 8px;
	height: 8px;
	border: solid #333;
	border-width: 1px 1px 0 0;
	transform: rotate(-45deg);
	-webkit-transition: all .3s;
	transition: all .3s;
}
.pageTop a:hover::after {
	top: 10%;
	border-color: #999999;
}
#copyright {
	font-size: 13px; font-size: 1.3rem;
	text-align: right;
	margin-top: 15px;
}
/* ========================================================
content
===================================================== */
/* home */
body {
	overflow: hidden;
	height: 100%;
}

#video_wrapper-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.50);
	z-index: 2;
}
#video_wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
#video_wrapper #video {
  z-index: 1;
}

.catchSet {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 3;
	color: #fff;
	white-space: nowrap;
}
.mainCatch {
	font-family: 'Cormorant Upright', serif;
	font-size: 170px; font-size: 17.0rem;
	font-weight: 500;
	line-height: 1.5;
	font-style: italic;
	text-align: center;
}
.subCatch {
	font-size: 26px; font-size: 2.6rem;
	text-align: center;
}
.videoLink {
	font-size: 20px; font-size: 2.0rem;
	text-align: center;
	margin-top: 2em;
}
.videoLink a {
	color: #fff;
}
.videoLink a:hover {
	text-decoration: none;
}

.buttonLine {
    padding: 10px 15px 10px 45px;
    position: relative;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button {
  display: inline-block;
  width: 200px;
  height: 54px;
  line-height: 54px;
  outline: none;
  text-align: center;
  text-decoration: none;
  outline: none;
  position: relative;
  z-index: 2;
  color: #333;
  overflow: hidden;
  border-radius: 50px;
  padding-left: 15px;
}
.button:hover {
  color: #fff;
}
.button::after {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}
.button:hover::after {
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.10);
}

.video-icon {
	background: url("images/common/play-button.svg") no-repeat;
	width: 32px;
	height: 32px;
	background-size: 31px 30px;
	top: 11px;
	left: 20px;
	position: absolute;
}

/* Effect1
 *************************************** */
.change-border01::after,
.change-border01::before,
.change-border01__inner::after,
.change-border01__inner::before {
    background-color: #fff;
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.change-border01::after {
    height: 1px;
    left: -1px;
    top: -1px;
    width: 0px;
}

.change-border01::before {
    bottom: -1px;
    height: 1px;
    right: -1px;
    width: 0px;
}

.change-border01__inner::after {
    bottom: -1px;
    height: 0px;
    left: -1px;
    width: 1px;
}

.change-border01__inner::before {
    height: 0px;
    right: -1px;
    top: -1px;
    width: 1px;
}

/* hover */
.change-border01:hover::after,
.change-border01:hover::before {
    width: 100%;
    width: calc(100% + 1px);
}

.change-border01:hover .change-border01__inner::after,
.change-border01:hover .change-border01__inner::before {
    height: 100%;
    height: calc(100% + 1px);
}


/* loader */
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #000;
  z-index: 998;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 999;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 1.2em;
  height: 1.2em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #ffffff;
  font-size: 10px;
  margin: 0px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}


.articleHeader {
	position: relative;
	width: 100%;
	height: 25rem;
	margin-left: 235px;
	background: #e4f5f5; /* Old browsers */
	background: -moz-linear-gradient(left, #e4f5f5 0%, #ffecf9 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #e4f5f5 0%,#ffecf9 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #e4f5f5 0%,#ffecf9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4f5f5', endColorstr='#ffecf9',GradientType=1 ); /* IE6-9 */
}
.headerTtl {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 34px; font-size: 3.4rem;
	font-weight: 400;
	line-height: 1.3;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: -20px;
	margin: auto;
	height: 8rem;
	width: 100%;
	padding-right: 380px;
	font-feature-settings: "palt";
}
.headerTtl span {
	font-size: 15px; font-size: 1.5rem;
	padding-left: 1.5em;
}
.headerTtl::after {
	content: '';
	width: 30px;
	height: 1px;
	background-color: #666;
	display: block;
	margin-top: 20px;
}

.headerTtl.icon-lock::before {
	content: '';
	background-image: url("images/common/icon_locking.svg");
	background-repeat: no-repeat;
	background-size: 40px;
	margin-top: -40px;
	padding-top: 40px;
	padding-bottom: 10px;
	display: block;
}

.container p {
	margin-bottom: 1em;
}
.container,
.tml {
	margin: 4em auto 3em;
	max-width: 1600px;
	padding: 0 170px 0 235px;
	position: relative;
}
.container.login {
	width: 300px;
	margin: 0 auto;
	padding: 0;
}
.tml-links {
	margin-left: 1em;
}
.tml-button,
.button-primary {
	-webkit-appearance: none;
	cursor: pointer;
	background-color: #333333;
	border: 1px solid #333333;
	color: #fff;
	margin: 0 auto;
	padding: 10px 2em;
	border-radius: 5px;
	font-size: 16px;
	font-size: 1.6rem;
	height: auto;
	line-height: normal;
}
.button-primary {
	width: 100%;
}
.login-member {
	max-width: 380px;
	margin: 3em auto 5em;
	width: 90%
}
.login-member .login-username .input,.login-member .login-password .input {
	width: 100%;
	margin: 0 0 10px
}
#content .login-member p {
	margin-bottom: .5em
}

 /*  tab */
.tabMenus {
	float: left;
	width: 100%;
	clear: both;
	margin-bottom: 40px;
}

.full_content {
  width: 100%;
	height: 400px;
	position:relative;
	margin:10px auto 0;
	clear:both;
}
.tabmenu{
	width:16.2%;
	background:#fff;
	border: 1px solid #f3f3f3;
	float:left;
	list-style:none;
	margin: 0 1px;
	text-align:center;
	display:block;
	cursor: pointer;
	color:#333;
}
.tabmenu a,
.tabmenu a:hover {
	color:#333;
	text-decoration: none;
	padding:10px 0 10px;
	display: block;
}
.category-history .tabmenu.all,
.category-seminar .tabmenu.seminar,
.category-reported .tabmenu.reported,
.category-appearance .tabmenu.appearance,
.category-publication .tabmenu.publication,
.category-etc .tabmenu.etc, .hover {
	background-color: #f3f3f3;
  position: relative;
}
.category-history .tabmenu.all::after,
.category-seminar .tabmenu.seminar::after,
.category-reported .tabmenu.reported::after,
.category-appearance .tabmenu.appearance::after,
.category-publication .tabmenu.publication::after,
.category-etc .tabmenu.etc::after {
	content: "";
	position: absolute;
	bottom: -22px;
	right: 0;
	left: 0;
	margin: auto;
	vertical-align: middle;
	left: 4px;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	border: 14px solid transparent;
	border-top: 14px solid #f3f3f3;
}

.tabmenu img:hover { opacity:0.7;
filter: alpha(opacity=70);
-ms-filter: "alpha( opacity=70 )";}

.mr01{margin-right:1px;}

.tabcontent {
	width:100%;
	margin-top:5%;
	left:0;
	position:absolute; 
}
ul.tabList{margin: 20px auto; list-style: none;}
ul.tabList li {padding:20px 5px 25px; border-bottom: solid 1px #e9e9e9; margin-right: 10px;}
ul.tabList li a{color: #444;}

.pos-day {
	font-size: 13px; font-size: 1.3rem;
	margin-right: 20px;
	margin-top: 5px;
  display: inline-block;
}
.post-cat-history {
	display:  block;
	float:  left;
	background-color: #2fbfbf;
	margin-right: 20px;
	padding: 10px;
	font-size: 14px; font-size: 1.4rem;
	line-height: .6;
	width: 10em;
  text-align: center;
} 

.cat-seminar-news,
.cat-reported-news,
.cat-appearance-news,
.cat-publication-news,
.cat-etc-news {
	background-color: #a30076!important;
}

.post-cat-history a {
	color: #fff!important;
}
.post-cat-history a:hover {
	text-decoration: none;
}

.tabWrapper{
	width: 100%;
	margin: 0 auto 30px;
}
.tabContainer {
	overflow-x: auto;
}
.tabContainer::-webkit-scrollbar {
	height: 0;
}
.bx-wrapper {
	background-color: #ffffff;
	margin: 20px auto 0;
}
.tab{
	display: table;
	margin-bottom: 15px;
}
.tab__button{
	display: table-cell;
	text-align: center;
	background-color: rgba(255,255,255,1);
	vertical-align: middle;
	border: 2px solid white;
	border-bottom-width: 4px;
	font-weight: bold;
	white-space: nowrap;
}
.tab__button.active{
	border-bottom: none;
}
.tab__button a{
	padding: 12px 20px;
	color: #777;
	display: block;
	text-decoration: none;
	font-size: 12px;
	border: 1px solid #f3f3f3;
}
.tab__button.active {
	background-color: #f3f3f3;
	position: relative;
}
.tab__button.active::after {
	content: "";
	position: absolute;
	bottom: -15px;
	right: 0;
	left: 0;
	margin: auto;
	vertical-align: middle;
	left: 4px;
	box-sizing: border-box;
	width: 8px;
	height: 8px;
	border: 8px solid transparent;
	border-top: 8px solid #f3f3f3;
}
.tab__button.active a {
	color: #444444;
	
}
.contents__content{
	background-color: #fff;
	text-align: center;
}
.contents__content div{
  clear: left;
}
.contents__content div a{
  display: table;
  width: 100%;
  text-decoration: none;
  padding: 10px;
  border-bottom:1px solid #ddd;
  color:#222;
  text-align: left;
  line-height: 1.5em;
  font-size: 14px;
}
.contents__content div a span{
  display: table-cell;
  padding-left: 10px;
  padding-right: 10px;
}
.contents__content div a:before{
  content:'';
  width: 50px;
  height: 50px;
  display: block;
  background-color: #ddd;
  display: table-cell;
}
/* Display Posts Shortcode */
ul.display-posts-listing {
	padding: 0 1px;
}
ul.display-posts-listing li {
	list-style: none;
	border-bottom: 1px solid #dadada;
	overflow: hidden;
	padding: 20px 0;
	text-align: left;
}
ul.display-posts-listing li:last-child {
	border-bottom: none;
	padding: 15px 0;
}
ul.display-posts-listing li.listing-item .date {
	display: block;
	font-size: 12px; font-size: 1.2rem;
    float: right;
    width: 8%;
	padding-top: 9px;
}
ul.display-posts-listing li.listing-item a.image {
	width: 124px;
	height: 65px;
	display: block;
	text-align: center;
	background-color: #f2f2f2;
	overflow: hidden;
	float: left;
	margin-right: 20px;
	text-align: center;
}
ul.display-posts-listing li img.attachment-thumbnail {
	max-width: 124px;
	height: auto;
	background-color: #f0f0f0;
	text-align: center;
	margin: 0 auto;
}
ul.display-posts-listing li .title {
	font-size: 18px; font-size: 1.8rem;
	font-weight: bold;
	float: right;
    width: 77%;
	padding-top: 5px;
}
ul.display-posts-listing li a.title {
	color: #444444;
}
ul.display-posts-listing li a.title:hover {
	color: #666666;
}
ul.display-posts-listing li .excerpt-dash {
	display: none;
}
ul.display-posts-listing li .excerpt {
	display: block;
}
.tabListLink {
	text-align: right;
	border-top: 1px solid #dadada;
	margin: 0 15px;
	padding-top: 10px;
}
.category-display {
	display:  block;
    float:  left;
    background-color: #2fbfbf;
	padding: 10px;
	font-size: 15px; font-size: 1.5rem;
	line-height: 1;
}
.category-display a {
	color: #fff;
}
.category-display a:hover {
	text-decoration: none;
}
.category-display-label {
	display: none;
}

.breadcrumb {
	font-size: 13px; font-size: 1.3rem;
	text-align: right;
	position: relative;
	margin-top: -25px;
	margin-bottom: 10px;
	right: 0;
}
.breadcrumb a {
	color: inherit;
}

main {
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
#article {
/* 	font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif; */
	position: relative;
	top: 0;
	left: 0;
	right: 0;
}
.articleHeadSet {
	position: relative;
	max-width: 1200px;
	max-height: 630px;
	background-color: #ddd;
	text-align: center;
	margin-bottom: 2.5em;
}
.articleHeadSet:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4D000000,endColorstr=#4D000000);
    background: rgba(0, 0, 0, 0.2);
}

.articleHeading {
	position: absolute;
	bottom: -20px;
	left: 20px;
	max-width: 740px;
	text-align: left;
	z-index: 6;
}
.articleHeading .cate {
	font-size: 15px; font-size: 1.5rem;
	padding: 10px 15px;
	display: inline-block;
	background-color: #a30076;
}
.articleHeading .cate a {
	color: #ffffff;
}
.articleHeading .cate.cat-history {
	background-color: #2fbfbf;
}	
.articleHeading .entryTtl {
	font-size: 23px; font-size: 2.3rem;
	background-color: #fff;
	padding: 20px 0px;
}
.single .articleHeading .entryTtl {
	font-size: 26px; font-size: 2.6rem;
	padding: 20px;
}
.articleHeading .entryTtl a {
	color: #444444;
}
.articleHeading .entryTtl a:hover {
	color: #999999;
	text-decoration: none;
}
.articleHeading .iconDay {
	padding: 5px;
	display: inline-block;
	color: #fff;
	margin-left: 10px;
	text-shadow: rgb(0 0 0 / 70%) 0px 0px 4px;
}

.post-thumbnail {
	height: 580px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
}

.dateSet {
	position: absolute;
	top: 0;
	background-color: #ffffff;
	padding: 10px 20px;
	text-align: center;
	z-index: 5;
}
.dateSet .year {
	display: block;
}
.dateSet .dayMonth {
	display: block;
	font-size: 30px; font-size: 3.0rem;
	font-weight: 600;
}

.entry .headingLv2 {
	font-size: 26px; font-size: 2.6rem;
	padding: 15px 12px;
	background-color: #f1f1f1;
	margin-top: 2em;
	border-left: none;
}

.speakerSet {
	margin-top: 2em;
	margin-bottom: 4em;
	overflow: hidden;
}
.speakerImg {
	float: left;
	width: 34%;
	max-height: 400px;
	margin-right: 4%;
	text-align: center;
}
.speakerTxt {
	width: 62%;
	float: right;
}
.noPhoto .speakerTxt {
	width: 100%;
	float: none;
}
.entry .speakerTxt h3 {
	font-size: 26px; font-size: 2.6rem;
	font-weight: normal;
	border-bottom: 1px solid #e9e9e9;
	padding-bottom: .5em;
	margin-top: .2em;
}

.iconArrow {
	position: relative;
	padding-left: 20px;
}
a.iconArrow::after {
	content: "";
	position: absolute;
	top: 34%;
	left: 3px;
	display: inline-block;
	width: 7px;
	height: 7px;
	border: solid #333;
	border-width: 1px 1px 0 0;
	transform: rotate(45deg);
}

.contactButton {
	font-size: 20px; font-size: 2.0rem;
	clear: both;
	margin: 5em auto;
	text-align: center;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.contactButton.bosyuu {
	position: relative;
	/* max-width: 280px; */
	margin: 5em 1em;
}
.contactButton a {
	text-align: center;
	padding: 30px 40px;
	max-width: 380px;
	margin: 0 auto;
	border: 2px solid #333;
	position: relative;
	color: #333333;
	font-weight: 600;
	display: block;
}
.contactButton.bosyuu a {
	padding: 20px 10px;
	max-width: 360px;
	border: 1px solid #999;
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
}
.contactButton a:hover {
	text-decoration: none;
	color: #fff;
}
.contactButton.bosyuu a:hover {
	text-decoration: none;
	color: #999;
}
.contactButton.bosyuu a:hover::after {
	border-color: #999;
}
.contactButton a::before {
	content: "";
	position: absolute;
	width: 0;
	left: 0;
	top: 0;
	height: 100%;
	z-index: -1;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.contactButton a:hover::before {
	width: 100%;
	background-color: #333;
}
.contactButton a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -4px;
	display: inline-block;
	width: 8px;
	height: 8px;
	border: solid #333;
	border-width: 1px 1px 0 0;
	transform: rotate(45deg);
}
.contactButton a:hover::after{
	border-color: #fff;
}

.contactWrapBg {
	border-radius: 10px;
	overflow: hidden;
	background: #e4f5f5; /* Old browsers */
	background: -moz-linear-gradient(left, #e4f5f5 0%, #ffecf9 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #e4f5f5 0%,#ffecf9 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #e4f5f5 0%,#ffecf9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4f5f5', endColorstr='#ffecf9',GradientType=1 ); /* IE6-9 */
	margin: 2em auto;
}
.contactWrapBg .contactButton {
	z-index: 99;
}
.contactTitle {
	text-align: center;
	margin: 1.5em auto 0;
  padding-bottom: 1em;
}

.listThumbnail {
	letter-spacing: -.4em;
}
.listThumbnail li {
	position: relative;
	width: 50%;
	display: inline-block;
	margin-bottom: 3em;
	padding: 0 2%;
	list-style: none;
	letter-spacing: normal;
	vertical-align: top;
}
.listThumbnailSet {
	position: relative;
}
.listThumbnailSet figure {
	text-align: center;
	background-color: #e5f5f5;
}
.listImg {
	overflow: hidden;
}
.listImg img {
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.3s linear;
}
.listImg img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.listThumbnail .articleHeading {
	position: relative;
	max-width: 530px;
	margin-left: 0px;
	margin-top: -60px;
	left: 0;
	bottom: 0;
}
.listThumbnail .articleHeading .txt {
	padding: 0 0 15px 0;
}

.noteWrap {
	background: #f6f6f6;
	position: relative;
	margin: 2em auto 0;
	padding: 10px 25px;
	color: #313131;
}
.noteWrap::before {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 0;
	border-width: 0 16px 16px 0;
	border-style: solid;
	border-color: #fafcfc #ffffff #c7c7c7 #cbcbcb;
	box-shadow: -1px 1px 2px rgb(0 0 0 / 10%);
}
.noteWrap .noteTitle {
	font-size: 14px; font-size: 1.4rem;
	text-align: center;
	margin: 1.5em auto 0;
	padding-bottom: 1em;
}
.questionButton {
	margin: .5em 0 1em;
	text-align: center;
}
.questionButton a {
	padding: 20px 1.2em 20px 3em;
	max-width: 360px;
	border: 1px solid #999;
	background-image: url("images/common/icon_questionnaire.png");
	background-repeat: no-repeat;
	background-size: 24px;
	background-position: 20px center;
	color: #333333;
	font-weight: 600;
	background-color: #fff;
	display: inline-block;
}
.questionButton a:hover {
	text-decoration: none;
	color: #999;
}

/* ========================================================
page
===================================================== */
.mainHead {
	position: relative;
	overflow: hidden;
	margin-bottom: 5em;
	margin-top: -100px;
}
.mainImg {
	float: right;
	width: 50%;
}
.mainTxt {
	padding: 150px 50px 20px 0;
	width: 50%;
}
.profile .mainTxt {
	padding-top: 250px;
}
.mainTxt p {
	margin-bottom: 1em;
}
.mainTxt h2 {
	font-size: 46px; font-size: 4.6rem;
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	margin-bottom: 1em;
}
.mainTxt h2 span {
	font-size: 16px; font-size: 1.6rem;
	display: block;
}
.mainTxt ul {
	margin-left: 20px;
}
.mainTxt ul li {
	margin-bottom: .2em;
}

.column {
	margin-top: 6em;
	position: relative;
	overflow: hidden;
}
.columnInner {
	float: right;
	width: 90%;
}
.column header {
	position: relative;
	float: left;
	width: 10%;
	max-height: 320px;
}
.column h2.headingLv2b {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 22px; font-size: 2.2rem;
	letter-spacing: 0.1em;
	font-weight: 400;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	position: relative;
}
.column h2.headingLv2b span {
	position: absolute;
	top: 0;
	left: 3em;
	font-size: 12px; font-size: 1.2rem;
	font-weight: 100;
	letter-spacing: .08em;
	white-space: pre;
	line-height: 3em;
	color: #5b5b5b;
}
.column h2.headingLv2b span::after {
	content: "";
	height: 20px;
	width: 1px;
	display: block;
	background-color: #ddd;
	position: absolute;
	bottom: -26px;
	left: 16px;
}

.column h2.headingLv2c {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 30px; font-size: 3.0rem;
	font-weight: 100;
	position: relative;
	padding: 0 55px 0 0;
	margin-bottom: .8em;
}
.column h2.headingLv2c:after{
	content: '';
	position: absolute;
	top: 50%;
	height: 1px;
	background-color: #ddd;
	width: 100%;
	margin-left: 20px;
}

.column h2.headingLv2d {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 30px; font-size: 3.0rem;
	font-weight: 100;
	position: relative;
	margin-bottom: .8em;
	text-align: center;
}
.column h2.headingLv2d span {
	display: block;
	font-size: 14px; font-size: 1.4rem;
}

.headingLv2d {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 30px; font-size: 3.0rem;
	font-weight: 500;
	position: relative;
	margin-bottom: .8em;
	padding: 0 0 0.5em;
	border-bottom: 1px solid #ddd;
}
.headingLv2e {
	font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: 400;
	margin-bottom: 1em;
}

.column .headingLv3 {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 20px; font-size: 2.0rem;
	font-weight: 400;
	margin-bottom: 1.5em;
	text-align: center;
	position: relative;
	padding-bottom: .8em;
}
.column .headingLv3::after {
	content: "";
	width: 50px;
	height: 1px;
	background-color: #818181;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -25px;
}

.column .headingLv4 {
	font-size: 16px; font-size: 1.6rem;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	margin-bottom: 1em;
}

.heading-slash {
  position: relative;
  display: inline-block;
  padding: 0 45px;
	line-height: 1.4;
}
.heading-slash:before, .heading-slash:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 1px;
  background-color: #999;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.heading-slash:before {
  left:0;
	-webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.heading-slash:after {
  right: 0;
}

.colWrapper {
  width: 100%;
  margin: 0 auto 3em;
  overflow: hidden;
  /* letter-spacing: -.4em; */
}
.col2 {
  display: inline-block;
  width: 49%;
  padding: 0 2.5% 0 0;
  letter-spacing: normal;
  vertical-align: top;
}
.col2:nth-child(even){
	padding: 0 0 0 2.5%;
}
.col2-w40-l {
  width: 39%;
	padding: 0 2.5% 0 0;
}
.col2-w60-r {
  width: 59%;
	padding: 0 0 0 2.5%;
}
.col2-w40-r {
  width: 39%;
	padding: 0 0 0 2.5%;
	float: right;
}
.col2-w60-l {
  width: 59%;
	padding: 0 2.5% 0 0;
	float: left;
}
.book .col2 {
  padding: 0 10% 5%;
}
.col3 {
	display: inline-block;
	width: 32.33%;
	padding: 0% 1% 2% 1%;
	list-style: none;
	vertical-align: top;
	letter-spacing: normal;
	vertical-align: top;
}
.col3 img {
	margin-bottom: 10px;
}
.book .col3 {
	padding: 4% 5%;
}

iframe[src^="http://www.youtube.com/"], iframe[src^="https://www.youtube.com/"], iframe[src^="https://www.google.com/maps/"] {
  max-width: 100%;
}
iframe.wp-embedded-content {
	position: relative!important;
}

.movie-wrap {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
}
.movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.g-slide-wrap {
	position: relative;
	padding-bottom: 62.6%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
}
.g-slide-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media only screen and (max-width:1500px) {
.g-slide-wrap {
	padding-bottom: 66%;
}
}
@media only screen and (max-width:780px) {
.g-slide-wrap {
	position: relative;
	padding-bottom: 66.6%;
}
.mainTxt h2 {
	font-size: 36px; font-size: 3.6rem;
}
}

.listCol2 {
	margin-left: 25px;
}
.listCol2 li {
	float: left;
	width: 50%;
	margin-bottom: 1em;
}


.flowTtl {
	font-size: 20px; font-size: 2.0rem;
	line-height: 1.5;
	padding: 10px 0;
	margin-right: 20px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	margin-bottom: .5em;
}
.flowTtl .number {
	background-color: #e5f5f5;
	padding: 5px 15px;
	margin-right: 0;
	display: inline-block;
	position: absolute;
}
.flowTtl .txtHead {
	display: inline-block;
	padding: 5px 0 4px 3em;
}
.flowTtl .txtDes {
	font-size: 15px;
	display: inline-block;
	margin-left: 20px;
	line-height: 1.4;
}

.arrow_under {
  width: 50px;
  position: relative;
  margin: 0 auto;
}
.arrow_under::before{
  content: "";
  display: block;
  margin: 0 auto;
  width: 20px;
  height: 20px;
  background: #ddd;
}
.arrow_under::after{
  content: "";
  display:block;
  border-top: 25px solid #ddd;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  transform-origin: left top;
  transform: scaleY(.5);
}

.osusumeArea {
	border-bottom: 1px solid #ddd;
	padding: 0 20px 2em 20px;
}
.osusumeList {
	font-size: 20px; font-size: 2.0rem;
	font-weight: 600;
	margin-bottom: 1em;
	list-style: none;
}
.osusumeList li {
	margin-bottom: .7em;
	background-image: url("images/common/check.svg");
	background-repeat: no-repeat;
	background-size: 30px 30px;
	padding-left: 45px;
}

.bosyuuArea {
	background-image: url("images/about/bosyuu_bg_2108.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
}
.bosyuuArea .headingLv2d {
	border-bottom: none;
}
.bosyuuSet {
	width: 60%;
	margin: 80px auto 180px auto;
}
.bosyuuSet p {
	font-size: 18px; font-size: 1.8rem;
	text-align: center;
}

.mediaWrapper {
	display: table;
	width: 100%;
	border-top: 1px solid #ddd;
	margin-bottom: 2em;
	padding: 40px 0;
}
.media_img {
	display: table-cell;
	padding: 20px 0;
	text-align: center;
	width: 50%;
}
.media_title {
	font-size: 16px; font-size: 1.6rem;
	font-weight: bold;
	text-align: left;
	margin-bottom: 1em;
}
.media_btn {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	width: 50%;
}
.mediaDL_btn {
	display: inline-block;
	height: 48px;
	line-height: 48px;
	padding: 0;
	width: 200px;
	border-radius: 4px;
	border: 1px solid #ddd;
}
a.mediaDL_btn {
	color: #666;
}
a.mediaDL_btn:hover {
	background-color: #666;
	border: 1px solid #666;
	color: #fff;
	text-decoration: none;
}

.brPc {
	display: block;
}
.brSp {
	display: none;
}

.borderBox {
	padding: 2em;
	border: 1px solid #ddd;
	border-radius: 10px;
	margin-bottom: 2em;
}
.borderBox-2 {
	padding: 2em 1em;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-bottom: 2em;
}

/* ========================================================
blog
===================================================== */
#secondary {
/* 	font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif; */
	float: left;
	margin: 0;
	padding: 40px 20px;
	width: 100%;
	background-color: #f7f7f7;
}
.secondaryInner {	
	max-width: 1300px;
	margin: 0 auto;
}
#secondary .widget {
	margin: 10px 0 10px;
	float: left;
	width: 100%;
}
#secondary #search-2 .widgettitle,
#secondary #tag_cloud-2 .widgettitle {
	display: none;
}
#secondary .widgettitle {
	margin: 10px 0 20px;
	padding: 10px;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 22px; font-size: 2.2rem;
	position: relative;
}
#secondary .widgettitle::after {
	content: "";
	width: 20px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -15px;
	background-color: #666;
}
#secondary .screen-reader-text {
    display: none;
}

#secondary ul {
  margin-left: 10px;
}
#secondary ul li {
	margin-bottom: 10px;
	padding: 5px 10px 5px;
	display: inline-block;
}
#secondary ul li:before {
	content:"";
	display: inline-block;
	width: 5px;
	height: 5px;
	background: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px; 
	border-radius: 5px;
	margin: 0 5px 3px 0;
}

#secondary select {
	width: 100%;
	margin-bottom: 10px;
	font-size: 14px; font-size: 1.4rem;
	height: 40px;
    background-color: #ffffff;
	border: 1px solid #DBDBDB;
}

#secondary #categories-2 {
	float: left;
	width: 50%;
}
#secondary #archives-2,
#secondary #archives-3 {
	float: right;
	width: 50%;
}
.cat-item a {
	color: #666;
}
input.search {
	border-bottom: 1px solid #999;
	border-top: none;
	border-left: none;
	border-right: none;
	width: 100%;
	background-color: #f7f7f7;
}
button#submit {
	font-family:FontAwesome;
	cursor: pointer;
	background-color: #f7f7f7;
	border: 1px solid #f7f7f7;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 0px;
	top: -7px;
}

/* Begin Form Elements */
#searchform {
	margin: 10px auto;
	padding: 5px 3px;
	text-align: center;
	position: relative;
    background-color: #f7f7f7;
}

/* searchBox */
.searchBox {
	position: relative;
	width: 100%;
	margin: 0 0 20px 0;
}
.searchBox input {
	outline: none;
	font-size: 16px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.searchBox label {
	-webkit-transition: 0.3s;
	   -moz-transition: 0.3s;
	    -ms-transition: 0.3s;
	     -o-transition: 0.3s;
	        transition: 0.3s;
	position: absolute;
	color: #aaa;
}
 
.searchBox input.search {
	padding: 10px 0;
	border: none;
	border-bottom: 1px solid #ccc;
}
.searchBox input.search ~ label {
	top: 2px;
	left: 0;
}
 
.searchBox input.search:focus ~ label,
.searchBox input.search.isVal ~ label {
	top: -20px;
	font-size: 13px;
	color: #999;
	border-color: #EBC70A;
}

.tagCloud {
	clear: both;
}

/* pagination */
.pagination{
	text-align: center;
	margin: 20px 0;
}
.pagination a,
.pagination > span,
.pagination span.dots {
	background-color: #ffffff;
	border: solid 1px #dadada;
	padding: 4px 8px;
	margin: 5px 2px;
	text-decoration: none;
	border-radius: 5px;
	display: inline-table;
	color: #666;
}
.pagination span.dots {
	color: #666666;
}
.pagination > span {
	background: #f3f3f3;
}
.pagination h2.screen-reader-text { display: none; }


/*---------------------------------
	AGENTMAIL__submit
-----------------------------------*/
.AGENTMAIL__TOP_OF_THE_FORM {
	margin-top: 30px;
}
.AGENTMAIL__submit {
	-webkit-appearance: none;
	cursor: pointer;
	background-color: #333333;
	border: 1px solid #333333;
	color: #fff;
	display: table-cell;
	margin: 0 auto;
}
.AGENTMAIL__submit:hover,
.AGENTMAIL__submit:focus {
	background-color: #666;
}

form table input,
form table textarea {
	width: 100%;
	background: none repeat scroll 0 0 #F5F5F5;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  padding: 10px;
}
form table input[type="submit"] {
	width: 200px;
}
form table textarea {
	height: 100px;
}
form table input:focus,
form table textarea:focus {
    background-color: #FFFFFF;
}

form table th {
	width: 30%;
}
form table td {
	width: 70%;
}
form table tr:last-child td {
	border-bottom: none;
}

input[type="radio"]{
	margin-right: 5px;
	width: auto;
}

input[type="image"] {
	max-width: 480px;
	width: 100%;
	height: auto;
	padding: 0;
}

/* ========================================================
common
===================================================== */
/* table */
table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
  word-break: break-all;
}
table th {
	white-space: nowrap;
}
table th {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 20px 15px;
}
table td {
  border-top: 1px solid #ddd;
  padding: 20px 15px;
}
table tr:last-child td,
table tr:last-child th{
  border-bottom: 1px solid #ddd;  
}

.table01 {
	border: 1px solid #d8d8d8;
	margin-bottom: 25px;
	width: 100%;
	margin-top: 1.5em;
}
.table01 th {
	border: 1px solid #d8d8d8;
	font-weight: normal;
	padding: 15px 10px 15px 15px;
	text-align: left;
	vertical-align: top;
	width: 30%;
	text-align: center;
	font-weight: 600;
}
.table01 td {
	border: 1px solid #d8d8d8;
	padding: 15px 10px 15px 15px;
	width: 70%;
}

.table02 {
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
}
.table02 th {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  padding: 20px 15px;
  white-space: nowrap;
  
}
.table02 td {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 20px 15px;
}
.table02 tr:last-child td,
.table02 tr:last-child th{
  border-bottom: 1px solid #ddd;  
}

/* sitemap */
.listSitemap {
	list-style: none;
}
.listSitemap li {
	border-bottom: 1px solid #baa892;
	width: 710px;
	clear: both;
	padding: 10px;
	overflow: hidden;
}
.listSitemap li.lv2 {
	float: left;
}
.listSitemap ul {
	width: 500px;
	clear: both;
	overflow: hidden;
	float: right;
	list-style: none;
}
.listSitemap ul li {
	border-bottom: none;
	list-style: none;
	padding-top: 0;
	margin-bottom: 0;
	padding-bottom: 5px;
}

/* form */
input, textarea, select {
	font-size: 16px; font-size: 1.6rem;
}
input, textarea, select {
	padding: 0.5em;
	vertical-align: middle;
}

.wpcf7-form-control[type="submit"] {
	width: 200px;
	-webkit-appearance: none;
	cursor: pointer;
	background-color: #333333;
	border: 1px solid #333333;
	color: #fff;
	display: table-cell;
	margin: 0 auto;
}

/* list */
.ulList01 {
	margin-left: 1em;
	margin-bottom: 2em;
	list-style: disc;
}
.ulList01 li {
	margin-bottom: 10px;
}

dl.dlInfo01 {
	border-bottom: 1px solid #E2E2E2;
	margin-bottom: 10px;
}
dl.dlInfo01 dt {
	float: left;
	padding: 5px 0;
	width: 10em;
}
dl.dlInfo01 dd {
	padding: 5px 10px 5px 0;
}
dl.dlInfo01 dd a,
dl.dlInfo01 dd a:visited,
dl.dlInfo01 dd a:active {
	color: #000000;
	text-decoration: underline;
}
dl.dlInfo01 a:hover {
	color: #999999;
	text-decoration: none;
}

/* ========================================================
anime
===================================================== */
.fadein {
    opacity : 0;
    transform : translate(0, 0);
    transition : all 800ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fadeinLeft {
    opacity : 0;
    transform : translate(-100px, 0);
    transition : all 1000ms;
}
.fadeinLeft.scrollin {
    opacity : 5;
    transform : translate(0, 0);
}
.fadeinRight {
    opacity : 0;
    transform : translate(100px, 0);
    transition : all 1000ms;
}
.fadeinRight.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fadeinTop {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 1000ms;
}
.fadeinTop.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fadeinList li {
    opacity : 0;
}


/* etc */
.marB0 {margin-bottom: 0!important;}
.marB5 {margin-bottom: 5px!important;}
.marB10 {margin-bottom: 10px!important;}
.marB20 {margin-bottom: 20px!important;}
.marB30 {margin-bottom: 30px!important;}
.marB40 {margin-bottom: 40px!important;}
.marB50 {margin-bottom: 50px!important;}
.marB80 {margin-bottom: 80px!important;}
.marT0 {margin-top: 0!important;}
.marT5 {margin-top: 5px!important;}
.marT10 {margin-top: 10px!important;}
.marT20 {margin-top: 20px!important;}
.marT30 {margin-top: 30px!important;}
.marT40 {margin-top: 40px!important;}
.marT50 {margin-top: 50px!important;}
.marT80 {margin-top: 80px!important;}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.imgRight {
	float: right;
	margin-left: 40px;
}
.imgLeft {
	float: left;
	margin-right: 40px;
}

.img-500 {
	max-width: 500px;
	width: 100%;
	margin: 20px auto;
	text-align: center;
	display: block;
}

.red {
	color: #C00;
}

.txtB {
	font-weight: bold;
}
.txtS {
	font-size: 12px; font-size: 1.2rem;
}
.txtS2 {
	font-size: 13px; font-size: 1.3rem;
}
.txtL {
	font-size: 16px; font-size: 1.6rem;
}
.txtL2 {
	font-size: 20px; font-size: 2.0rem;
}
.txtL3 {
	font-size: 24px; font-size: 2.4rem;
}

.nowrap {
    white-space: nowrap;
}

/*===========================================
Blog Entry
===========================================*/
/*---------------------------------
  SNS
-----------------------------------*/
.snsBlock {
  border-bottom: 1px dotted #D5D5D5;
  border-top: 1px dotted #D5D5D5;
  margin-top: 30px;
  padding: 10px 10px 5px;
}
.fa-hatena:before {
  font-family: Verdana;
  font-weight: bold;
  content: 'B!';
}
.share {
  margin-top: 30px;
  margin-bottom: 40px;
  margin-right: 0;
}
.share ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.share ul:after {
  display: block;
  clear: both;
  content: '';
}
.share li {
  width: 20%;
  margin: 0 .5% 0 .5%;
}
.share li a {
  border-radius: 5px;
  font-size: 14px;
  display: block;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
.share li a:hover {
  opacity: .8;
}
.share li a:visited {
  color: #fff;
}
.tweet a {
  background-color: #55acee;
}
.facebooklink a {
  background-color: #315096;
}
.line a {
  background-color: #00b900;
}
.hatena a {
  background-color: #008fde;
}
.pocket a{
  background-color: #EF4156;
}
.share-message {
  padding: 0 10px 10px;
  text-align: center;
}
.fa-facebook-color {
  color: #315096;
}
.fa-twitter-color {
  color: #55acee;
}
.fa-line-color {
  color: #00b900;
}
.fa-hatena-color {
  color: #008fde;
}
.fa-get-pocket-color {
  color: #EF4156;
}
.fa.fa-line {
	font-size: 12px;
	font-weight: 800;
}

/* .wp-block-embed-youtube {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
} */
.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.wp-block-embed-youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.entryMeta {
	border-top: 1px dotted #ac9475;
	margin-bottom: 10px;
	padding: 5px;
	font-size: 11px; font-size: 1.1rem;
}

.snsBlock {
	border-top: 1px dotted #D5D5D5;
	border-bottom: 1px dotted #D5D5D5;
	padding: 10px 10px 5px;
	margin-top: 30px;
}

/* Begin Images */
p img {
	padding: 0;
}

/*	Using 'class="alignright"' on an image will (who would've
thought?!) align the image to the right. And using 'class="centered',
will of course center the image. This is much better than using
align="center", being much more futureproof (and valid) */

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 10px;
	display: inline;
}

img.alignleft {
	padding: 4px;
	margin: 0 10px 2px 0;
	display: inline;
}

.alignright {
	float: right;
}

.alignleft {
	float: left
}
/* End Images */



/* Begin Lists

Special stylized non-IE bullets
Do not work in Internet Explorer, which merely default to normal bullets. */

html>body .entry ul {
	margin-left: 0px;
	padding: 0;
	list-style: disc;
	padding-left: 5px;
	margin-top: 20px;
}

html>body .entry li {
	margin: 5px 0 6px 25px;
	padding-left: .2em;
}

*html body  .entry ul {
	list-style: disc;
	padding-left: 20px;
}

*html body  .entry li {
	margin: 5px 0 8px 10px;
	height: 1%;
}

.entry ul li:before, #sidebar ul ul li:before {
}

.entry ol {
	padding: 0 0 0 10px;
	margin: 0;
	zoom : 1;
}

.entry ol li {
	margin: 0;
	padding: 0;
}

.entry h2 {
	font-size: 26px; font-size: 2.6rem;
	margin-top: 1.5em;
	border-bottom: 4px solid #ddd;
	padding: 0 0 .3em 0;

}
.entry h3 {
	font-size: 22px; font-size: 2.2rem;
	margin-top: 1.3em;
	padding-bottom: .5em;
	border-bottom: 1px solid #ddd;
}
.entry h4 {
	font-size: 18px; font-size: 1.8rem;
	margin-top: 1.3em;
	padding-bottom: .5em;
	border-bottom: 1px dashed #ddd;
}
.entry h5 {
	font-size: 16px; font-size: 1.6rem;
	margin-top: 1.3em;
}
.entry p {
	margin-top: 1.5em;
	padding-bottom: .2em;
}
.entry figure {
	margin-top: 10px;
}
.postmetadata ul, .postmetadata li {
	display: inline;
	list-style-type: none;
	list-style-image: none;
}

ol li, #sidebar ul ol li {
	list-style: decimal outside;
}
ol ul li  {
	list-style: disc;
}
/* End Entry Lists */

.entryWrapper {
	margin-bottom: 60px;
	margin-left: 15px;
	margin-top: -400px;
}



.entry form { /* This is mainly for password protected posts, makes them look better. */
	text-align:center;
}

select {
	width: 130px;
}

#commentform input {
	width: 170px;
	padding: 2px;
	margin: 5px 5px 1px 0;
}

#commentform {
	margin: 5px 10px 0 0;
}
#commentform textarea {
	width: 100%;
	padding: 2px;
}
#respond:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
#commentform #submit {
	margin: 0 0 5px auto;
	float: right;
}
/* End Form Elements */



/* Begin Comments*/
.alt {
	margin: 0;
	padding: 10px;
}

.commentlist {
	padding: 0;
/*	text-align: justify; */
}

.commentlist li {
	margin: 15px 0 10px;
	padding: 5px 5px 10px 10px;
	list-style: none;
}
.commentlist li ul li { 
	margin-right: -5px;
	margin-left: 10px;
}

.commentlist p {
	margin: 10px 5px 10px 0;
}
.children { padding: 0; }

#commentform p {
	margin: 5px 0;
}

.nocomments {
	text-align: center;
	margin: 0;
	padding: 0;
}

.commentmetadata {
	margin: 0;
	display: block;
}
/* End Comments */


/* Begin Various Tags & Classes */
acronym, abbr, span.caps {
	cursor: help;
}

acronym, abbr {
	border-bottom: 1px dashed #999;
}

blockquote {
	margin: 15px 30px 0 10px;
	padding-left: 20px;
	border-left: 5px solid #BFA990;
}

blockquote cite {
	margin: 5px 0 0;
	display: block;
}

.center {
	text-align: center;
}

.hidden {
	display: none;
}


hr.dottedLine {
	visibility: visible;
	border: 1px dotted #ccc;
	height: 1px;
	margin: 10px 0 20px 0;
}

a img {
	border: none;
}

.navigation {
	display: block;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 60px;
	border-top: 1px solid #e9e9e9;
	display: table;
	width: 100%;
	padding: 40px 10px 0 10px;
}
.navigation a {
	color: #333;
}
.navigation .alignleft {
	display: table-cell;
	text-align: left;
	float: none;
}
.navigation .alignright {
	display: table-cell;
	text-align: right;
	float: none;
}
/* End Various Tags & Classes*/


/* Captions */
.aligncenter,
div.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	border: 1px solid #e9e9e9;
	text-align: center;
	background-color: #F4F4F4;
	padding-top: 4px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 20px;
}

.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}

.entry .alignleft {
	margin-right: 20px;
}
.entry .alignright {
	margin-left: 20px;
}

.wp-caption p.wp-caption-text {
	font-size: 11px; font-size: 1.1rem;
	line-height: 17px;
	padding: 5px;
	margin: 0!important;
	text-align: center;
	color: #333;
}
/* End captions */

/* yuzo_related_post */
.relationWrapper {
	border-top: 1px solid #e9e9e9;
}
.relationWrapperInner {	
/* 	display: none; */
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0 0;
	overflow: hidden;
}
.tagBtn {
	margin-bottom: 1.5em;
}
.tagBtn span {
	font-weight: 600;
	margin-right: 10px;
}
.tagBtn a,
a[class^="tag-cloud-link"] {
	font-size: 13px; font-size: 1.3rem;
	background-color: #fff;
	border-radius: 6px;
	border: 1px solid #ddd;
	padding: 10px 14px;
	margin: 3px;
	color: #333;
	display: inline-table;
}
.tagBtn a:hover,
a[class^="tag-cloud-link"]:hover {
	color: #999;
	text-decoration: none;
	background-color: #f5f5f5;
}

.relatedHead {
	margin-bottom: 10px;
}

/* Related Post */
.relatedPostSet {
	margin: 2.5em 0 1em;
}
.relatedPostSet .heading {
	font-size: 15px; font-size: 1.5rem;
	margin-bottom: 15px;
}
.relatedPost {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	-ms-flex-wrap: wrap; /*IE10*/
	-webkit-flex-wrap: wrap; /* Safari6.1以降 */
	flex-wrap: wrap;
}
.relatedPost .col {
	float: none;
	vertical-align: top;
	width: 25%;
	margin: 0 0 3%;
}
.relatedPost .col:first-child {
	padding: 0 1.5% 0 0;
}
.relatedPost .col:nth-of-type(2) {
	padding: 0 1% 0 .5%;
}
.relatedPost .col:nth-of-type(3) {
	padding: 0 .5% 0 1%;
}
.relatedPost .col:nth-of-type(4) {
	padding: 0 0 0 1.5%;
}
.relatedPost .articleDate {
	display: block;
	margin: 4px 0 8px;
	font-size: 13px;
	line-height: 1;
}
.relatedPost .relatedThum {
	background-size: cover;
	background-position: 50%;
	width: 100%;
	height: auto;
	padding-top: 55%;
	margin-bottom: 10px;
	border: 1px solid #dfdfdf;
	opacity: 1;
	-webkit-transition: .3s ease;
	transition: .3s ease,
}
.relatedPost .relatedThum:hover {
	opacity: .6;
}
.relatedPost a .relatedTitle {
	color: #666;
	font-size: 14px; font-size: 1.4rem;
	font-weight: 600;
}
.relatedPost a:hover,
.relatedPost a:visited {
	text-decoration: none;
}

.marker_yellow {
  background: linear-gradient(transparent 60%, rgba(255, 255, 0, .60) 60%);
}
.marker_red {
  background: linear-gradient(transparent 60%, rgba(255, 0, 0, .35) 60%);
}
.marker_blue {
  background: linear-gradient(transparent 60%, rgba(20, 140, 255, .40) 60%);
}

.wp-block-cover.alignfull {
	width: 100vw;
	max-width: initial;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -51.5vw;
	margin-right: -50vw;
}


@media only screen and (max-width:1200px) {
#mainContents {
	margin-top: 100px;
}
#mainContents.blog {
	margin-top: 190px;
}
.articleHeader {
	margin-left: 20px;
	top: -20px;
}
.container,
.tml {
	padding: 0 50px 0 50px;
}
.headerTtl {
	padding-right: 20px;
}
.home #headerGlobal {
	position: inherit;
	height: 0;
}

#headerGlobal {
	position: fixed;
	background-color: #fff;
	height: 70px;
}
.open #headerGlobal {
	background-color: transparent;
}
.logo {
	top: 20px;
    left: 20px;
}
.globalNav {
	right: 20px;
	top: 20px;
}

.column h2.headingLv2d {
  font-size: 240px;
  font-size: 2.4rem;
}
.bosyuuSet p {
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
}

.footer {
	padding: 30px 20px;
}

.wp-block-cover.alignfull {
	margin-left: -50vw;
}

}

@media only screen and (max-width:1024px) {
.mainCatch {
	font-size: 130px; font-size: 13.0rem;
}
.articleHeadSet,
.post-thumbnail {
	height: 480px;
}
.listThumbnailSet .dateSet {
	padding: 5px 10px;
	font-size: 13px; font-size: 1.3rem;
}
.listThumbnailSet .dateSet .dayMonth {
	font-size: 22px; font-size: 2.2rem;
}

.bosyuuArea {
  background-size: 200%;
}

}

@media only screen and (max-width:780px) {
#navMenu ul.navMenuList {
	margin-bottom: 1em;
}
#navMenu ul.navMenuList li {
	display: block;
	width: 50%;
	height: auto;
	padding: 15px 10px;
	font-size: 18px; font-size: 1.8rem;
}
#navMenu ul.navMenuList li a span {
	font-size: 12px; font-size: 1.2rem;
	padding: 0 0 10px 0;
}
#navMenu {
	position: fixed;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: auto;
}

.mainCatch {
	font-size: 110px; font-size: 11.0rem;
}
.mainImg {
	float: none;
	width: 100%;
	text-align: center;
}
.mainTxt {
	padding: 40px 0 0 0;
	width: 100%;
}
.container {
    padding: 0 40px 0 40px;
}
.profile .mainTxt {
  padding-top: 40px;
}

.headerTtl {
	font-size: 23px; font-size: 2.3rem;
}
.headerTtl span {
	font-size: 12px; font-size: 1.2rem;
}

.column header {
	float: none;
	width: 100%;
	height: auto;
	text-align: center;
}
.column h2.headingLv2b {
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: horizontal-tb;
  writing-mode: unset;
  font-size: 24px; font-size: 2.4rem;
  margin-bottom: 1em;
	letter-spacing: 0.1em;
}
.column h2.headingLv2b span {
	position: relative;
	left: 0;
	display: block;
}
.column h2.headingLv2b span::after {
	display: none;
}
.headingLv2d {
	font-size: 22px; font-size: 2.2rem;
}
.headingLv2e {
	font-size: 19px;
	font-size: 1.9rem;
}
.column .headingLv3 {
  font-size: 18px; font-size: 1.8rem;
}
.columnInner {
  float: none;
  width: 100%;
}

.articleHeadSet,
.post-thumbnail {
	height: 380px;
}

.articleHeading .entryTtl {
	font-size: 20px; font-size: 2.0rem;
}
.listThumbnail .articleHeading {
  margin-top: -45px;
  max-width: 100%;
}

.tabmenu {
	font-size: 14px; font-size: 1.4rem;
  width: 49.4%;
  margin-bottom: 2px;
}

.col2 {
	width: 100%;
	margin-bottom: 20px;
	padding: 0;
}
.col2:nth-child(even){
	padding: 0;
}
.col2-w40-l,
.col2-w60-r {
	width: 100%;
	margin-bottom: 20px;
	padding: 0 2.5%;
}
.seminar-archive .col2-w40-l {
	padding: 0;
}
.col2-w40-r,
.col2-w60-l {
  width: 100%;
	float: none;
	padding: 0;
}
.col3 {
	width: 100%;
}
.book .col3 {
	width: 32.33%;
	padding: 4% 3%;
}
.colWrapper .contactButton {
	margin: 0 auto;
}
}

@media only screen and (max-width:640px) {
.mainCatch {
	font-size: 80px; font-size: 8.00rem;
}
#nameLogo,
#nameLogoShow {
	width: 300px;
	margin-left: -20%;
}

.container {
	margin: 2em auto 3em;
  padding: 0 20px 0 20px;
}

.bosyuuArea {	
	background-size: cover;
}
.bosyuuSet {
	width: 80%;
}

.pos-day {
	display: block;
	clear: both;
	margin-top: 10px;
	padding-top: 15px;
}

.full_content {
  min-height: 740px;
}

#secondary #categories-2,
#secondary #archives-2, #secondary #archives-3 {
    width: 100%;
}

.yuzo_text {
	display: none;
}

.articleHeadSet,
.post-thumbnail {
	height: 320px;
}
.dateSet {
	font-size: 13px; font-size: 1.3rem;
	padding: 5px 15px;
}
.dateSet .dayMonth {
	font-size: 20px; font-size: 2.0rem;
}

.articleHeading .cate {
	font-size: 13px; font-size: 1.3rem;	
}
.articleHeading .entryTtl {
  font-size: 20px; font-size: 2.0rem;
  padding: 10px 0;
  line-height: 1.3;
}
.single .articleHeading .entryTtl {
	font-size: 24px; font-size: 2.4rem;
	padding: 10px 15px 10px 10px;
}
.entry .headingLv2 {
	font-size: 20px; font-size: 2.0rem;
}

form table th {
	 width: 100%;
	 display: block;
	 border: none;
	 text-align: left;
	 padding:  0 0 10px 0;
}
form table td {
	 width: 100%;
	 display: block;
	 border: none;
	 padding:  0 0 20px 0;
}

.logo:hover::after {
	content: none;
}
.contactButton a:hover::before {
	content: none;
}
.contactButton a:hover {
	color: #333;
}
.contactButton a:hover::after{
	border-color: #333;
}

.listThumbnail li {
	width: 100%;
	padding: 0;
}

.flowTtl .txtDes {
	font-size: 15px;
	display: block;
	margin-left: 0;
}

.media_img,
.media_btn {
	display: block;
	width: 100%;
}

.relatedPost .col {
	width: 50%;
}
.relatedPost .col:first-child,
.relatedPost .col:nth-of-type(3) {
	padding: 0 1.5% 0 0;
}
.relatedPost .col:nth-of-type(2),
.relatedPost .col:nth-of-type(4) {
	padding: 0 0 0 1.5%;
}

.brPc {
	display: none;
}
.brSp {
	display: block;
}

img.alignright,
img.alignleft {
    float: none;
    margin: 0 auto 20px!important;
    display: block;
}

.contactTitle {
	font-size: 13px; font-size: 1.3rem;
}


a.homeMainNav-item {
	text-align: center;
	margin: 0 .8em;
	padding: 2px 0;
	font-size: 13px; font-size: 1.3rem;
}
.homeMainNav-item, .homeMainNav-item::before, .homeMainNav-item::after,
.homeMainNav-item::after,
.homeMainNav-item:hover::after {
	display: none;
}

}

@media only screen and (max-width:480px) {
.logo {
	width: 150px;
	height: 31px;
}

#navMenu ul.navMenuList li {
	font-size: 17px; font-size: 1.7rem;
}
#navMenu ul.navMenuList li a span {
	font-size: 11px; font-size: 1.1rem;
}
.mainCatch {
	font-size: 60px; font-size: 6.00rem;
}

.mailMenu {
	font-size: 14px; font-size: 1.4rem;
}
.mailMenu span {
	display: block;
}

#nameLogo,
#nameLogoShow {
	width: 240px;
	margin-left: -10%;
}

.osusumeArea {
	padding: 20px 0;
	margin-top: 3em;
}
.column h2.headingLv2c {
	font-size: 24px; font-size: 2.4rem;
}
.osusumeList {
	font-size: 18px; font-size: 1.8rem;
}

.table02.sp td {
  padding: 15px;
  border-left: none;
}
.table02.sp {
  display: block;
  width: 100%;
  margin: 0 -10px 20px 0;
  font-size: 15px; font-size: 1.5rem;
  overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.table02.sp::-webkit-scrollbar {
height: 10px;
}
.table02.sp::-webkit-scrollbar-thumb{
background: #999;
border-radius: 5px;
}
.table02.sp::-webkit-scrollbar-track-piece {
background: #efefef;
}
  
.table02.sp thead {
  display: block;
  float: left;
  overflow-x: scroll;
}
.table02.sp th {
  display: block;
  width: auto;
  padding: 15px;
  font-size: 14px; font-size: 1.4rem;
}
.table02.sp tbody {
  display: block;
  width: auto;
  overflow-x: auto;
  white-space: nowrap;
}
.table02.sp tbody tr {
  display: inline-block;
  margin: 0 -3px;
}
.table02.sp td {
  display: block;
  font-size: 14px; font-size: 1.4rem;
}
.table02.sp br {
	display: none;
}
.table02.sp tr:last-child td, .table02.sp tr:last-child th {
	border-bottom: none;
}

.articleHeading {
	bottom: -20px;
	left: 0;
	width: 93%;
}
.articleHeadSet,
.post-thumbnail {
	height: 260px;
}

.breadcrumb {
	font-size: 11px; font-size: 1.1rem;
}
.entryWrapper {
	margin-left:0;
}

table {
	font-size: 14px; font-size: 1.4rem;
}
.table02 th {
  padding: 15px 8px;
}
.table02 td {
  padding: 15px 8px;
}

.yuzo_related_post .relatedthumb a {
	clear: both;
}

.book .col3 {
	width: 49%;
	padding: 4%;
}

.headerTtl span {
	font-size: 11px; font-size: 1.1rem;
	display: block;
	margin-top: 0.5em;
	padding-left: 0;
	letter-spacing: .05em;
}

.contactButton {
	font-size: 18px; font-size: 1.8rem;
}

}

@media only screen and (max-width:320px) {
#navMenu ul.navMenuList li {
	font-size: 15px; font-size: 1.5rem;
}
#navMenu ul.navMenuList li a span {
	font-size: 11px; font-size: 1.1rem;
}
.mainCatch {
	font-size: 50px; font-size: 5.00rem;
}
.subCatch {
	font-size: 21px; font-size: 2.1rem;
}

.articleHeadSet,
.post-thumbnail {
	height: 240px;
}

}