@import "base.css";


/* 
------------------------------------------------------------ */
a {
  color: #0078ff;
  text-decoration: underline;
  cursor: pointer !important;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}


a img {
  /*firefox*/
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: #000 0 0 0;
  /*background-color:#ffffff;*/
}

/*画像をウインドウサイズに合わせて可変*/
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  width
  /***/
  : auto;
  /*IE8のみ適用*/
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/*edge画像ホバーメニュー非表示*/
img {
  pointer-events: none;
}


body {
  color: #231815;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 500;
  font-style: normal;

  line-height: 180%;
  background-color: #fff;
  text-align: center;
  position: relative;
}
body.home{
  background-color: #d3d2d1;
}
body.page-topics {
  background-color: #fff;
}

body.page-odoro,
body.page-dance {
  background-color: #274a79;
}


/* Google翻訳のトップバー（iframe）を非表示にする */
#gt-nvframe{
    display: none !important;
}
/* ページ最上部の隙間（マージン）を詰める */
body {
    margin-top: 0px !important;
}


#main-wrapper {
  position: relative;
}




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

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1020;
  width: 100%;
  height: 80px;
}

#header .logo {
  display: block;
  width: 225px;
  padding: 25px 0 0 30px;
}

body.page-odoro #header .logo img,
body.page-dance #header .logo img {
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

/* ナビ部分 
------------------------------------------------------------ */
#menuBtn {
  display: block;
}

#menuClose,
#shadows {
  display: none;
}

#menuBtn {
  position: fixed;
  top: 0px;
  right: 0;
  width: 70px;
  height: 70px;
  z-index: 1050;
  background-color: transparent;
}

/*
.page #menuBtn{
  background-color:#d3d2d1;
}
.page.page-topics #menuBtn{
  background-color: #f8f9f2;
}
.page.page-odoro #menuBtn{
  background-color: #274a79;
}
*/

#panel-btn {
  display: block;
  position: relative;
  width: 70px;
  height: 70px;
}

#panel-btn-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  margin: -1px 0 0 -15px;
  background: #040000;
  transition: .2s;
}

.page #panel-btn-icon {
  background: #040000;
}

.page.page-odoro #panel-btn-icon,
.page.page-dance #panel-btn-icon {
  background: #fff;
}

#panel-btn-icon:before,
#panel-btn-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #040000;
  transition: .3s;
}

.page #panel-btn-icon:before,
.page #panel-btn-icon:after {
  background: #040000;
}

.page.page-odoro #panel-btn-icon:before,
.page.page-odoro #panel-btn-icon:after,
.page.page-dance #panel-btn-icon:before,
.page.page-dance #panel-btn-icon:after  {
  background: #fff;
}

#panel-btn-icon:before {
  margin-top: -10px;
}

#panel-btn-icon:after {
  margin-top: 8px;
}

#menuBtn i {
  font-size: 12px;
  font-style: normal;
  color: #231815;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  margin-top: -15px;
  display: none;
  opacity: 0;
  /**/
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#menuBtn.open,
#menuBtn.open #panel-btn-icon {
  background: transparent !important;
  margin-left: -25px;
}

#menuBtn.open #panel-btn-icon:before,
#menuBtn.open #panel-btn-icon:after {
  margin-top: 0;
  width: 50px;
  background: #231815;
}

#menuBtn.open #panel-btn-icon:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);

}

#menuBtn.open #panel-btn-icon:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

#menuBtn.open i {
  display: block;
  opacity: 1;
}


#menuClose {
  position: relative;
  z-index: 1010;
}

#shadows {
  position: fixed;
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
  z-index: 1001;
}


/* メニュー
------------------------------------------------------------ */
#navi {
  display: none;
  position: fixed;

  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #efefef;
  opacity: 1 !important;

  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.15em;

  top: -100vh;
  /**/
  transition: 0.1s ease-in-out;
}


#navi.opennavi {
  top: 0;
  transition: 0.4s ease-in-out;
}

#navi .navi-inner {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

#navi nav {
  display: block;
  margin: 0 auto;
  text-align: left;
}

#navi a {
  display: inline-block;
  color: #231815;
  text-decoration: none;
  padding: 15px 0;
}

#navi a.blank {
  background: url('../../images/icon_blank.png') right 20px no-repeat;
  background-size: 15px auto;
  padding-right: 24px;
}

#navi ul li span img {
  display: inline-block;
  width: 161px;
  vertical-align: top;
}

#navi #utility {
  font-size: 18px;
  margin-top: 15px;
  letter-spacing: 0.1em;
}

#navi #utility a {
  display: inline-block;
  color: #808080;
}

#navi #utility i {
  display: inline-block;
  font-style: normal;
  margin: 0 0.25em;
  color: #808080;
}


.jp-site #navi #utility span.jp,
.jp-site #navi #utility span.jp a {
  color: #231815;
}

.en-site #navi #utility span.en,
.en-site #navi #utility span.en a {
  color: #231815;
}

.cn-site #navi #utility span.cn,
.cn-site #navi #utility span.cn a {
  color: #231815;
}


/* フッター
------------------------------------------------------------ */
#footer {
  position: relative;
  color: #fff;
  overflow: hidden;
}

#footer-inner {
  position: relative;
  z-index: 50;
  height: 512px;
}

#footer-inner a {
  text-decoration: none;
  color: #fff;
  display: block;
}

.footer-title {
  padding: 217px 0 0 0;
}

.footer-title strong {
  display: block;
  width: 193px;
  margin: 0 auto;
}

.footer-nav {
  position: absolute;
  bottom: 60px;
  left: 40px;
  text-align: left;
}

address {
  position: absolute;
  bottom: 30px;
  left: 40px;
  text-align: left;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.07em;
  margin-left: 8px;
}

.footer-utility {
  position: absolute;
  bottom: 30px;
  right: 40px;
  text-align: left;
  width: 420px;
}

.footer-nav ul {
  width: 560px;
}

.footer-nav ul li {
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.17em;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  margin-left: 8px;
  padding: 8px 0;
}

.footer-nav ul li img {
  height: 14px;
  display: inline-block;
  vertical-align: top;
  margin-top: 0.1em;
}

.footer-nav ul li a.blank {
  background: url('../../images/icon_blank_w.png') right 0.2em no-repeat;
  background-size: 10px auto;
  padding-right: 15px;
}

.sns-area {
  line-height: 130%;
}

.sns-area ul{
	margin-right: -10px;
}
.sns-area ul li {
  list-style: none;
  font-size: 12px;
  line-height: 100%;
  display: inline-block;
  vertical-align: middle;
  min-width: 32%;
  letter-spacing: 0.07em;
}

.sns-area ul li a {
  background: url(../../images/sns_ig.png) left 0.4em no-repeat;
  background-size: 12px auto;
  padding: 3px 0 3px 18px;
}

.sns-area ul li.weblink a {
  background: url(../../images/icon_blank.png) right 0.5em no-repeat !important;
  background-size: 12px auto !important;
  padding: 3px 17px 3px 0 !important;
  font-size: 11px;
}



.footer-info {
  padding-top: 15px;
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.1em;
  text-align: left !important;
}

.footer-info strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 0.1em;
  letter-spacing: 0.15em;
}

.footer-info strong span {
  font-size: 10px;
  display: inline-block;
  margin-right: 0.5em;
}

.btn-map {
  display: inline-block;
  margin-left: 15px;
  background: url(../../images/icon_map_w.png) right center no-repeat;
  background-size: 10px auto;
  padding-right: 15px;
}

.btn-map a {
  text-decoration: underline !important;
}


#footer .btn-contact {
  position: absolute;
  right: -50px;
  bottom: 0px;
  display: inline-block;
  padding-right: 40px;
}

#footer .btn-contact a {
  display: inline-block;
  border: solid #fff 1px;
  border-radius: 2px;
  font-size: 11px;
  line-height: 100%;
  padding: 5px 10px 5px 10px;

}

#footer .btn-contact a::after {
  content: '';
  width: 30px;
  height: 50px;
  background: url(../../images/icon_tanuki.png) center center no-repeat;
  background-size: 30px auto;
  position: absolute;
  bottom: 0;
  right: 0;

  transform: translateX(30px) rotate(0deg);
  transition: 0.4s ease-in-out;
}

#footer .btn-contact a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

#footer .btn-contact a:hover::after {
  transform: translateX(0px) rotate(-30deg);

}


/**/
.footer-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 512px;
  top: 0;
  left: 0;
}

.footer-bg:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 1;
}


/* ボタン 
--------------------------------------------*/
.btn-link {
  display: inline-block;
}

.btn-link a,
.btn-link p {
  display: block;
  border-bottom: solid #231815 2px;
  font-size: 19px;
  letter-spacing: 0.1em;
  line-height: 120%;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: #231815;
  text-decoration: none;
  padding: 9px 0px 9px 0;
}

.btn-link a span,
.btn-link p span {
  position: relative;
  display: block;
  padding-right: 40px;
}

.btn-link a span:after,
.btn-link p span:after {
  content: '';
  display: block;
  width: 28px;
  height: 16px;
  border-radius: 30px;
  background: #fff url(../../images/btn_arrow.png) center center no-repeat;
  background-size: 8px auto;
  position: absolute;
  top: 2px;
  right: 0;
}

/**/
body.page-post .btn-link a span:after,
body.page-post .btn-link p span:after,
body.page-topics .btn-link a span:after,
body.page-topics .btn-link p span:after {
  background: #d4d5d5 url(../../images/btn_arrow.png) center center no-repeat;
  background-size: 8px auto;
}



/**/
.btn-link-w {
  display: inline-block;
}

.btn-link-w a,
.btn-link-w p {
  display: block;
  border-bottom: solid #fff 2px;
  font-size: 19px;
  letter-spacing: 0.1em;
  line-height: 120%;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 9px 0px 9px 0;
}

.btn-link-w a span,
.btn-link-w p span {
  position: relative;
  display: block;
  padding-right: 40px;
}

.btn-link-w a span:after,
.btn-link-w p span:after {
  content: '';
  display: block;
  width: 28px;
  height: 16px;
  border-radius: 30px;
  background: #fff url(../../images/btn_arrow.png) center center no-repeat;
  background-size: 8px auto;
  position: absolute;
  top: 2px;
  right: 0;
}

/**/
.btn-odoro {
  display: inline-block;
  height: 0.85em;
  vertical-align: top;
  margin-top: 0.15em;
  margin-right: -0.3em;
  margin-left: -0.8em;
}



/*下層
-------------------------------------------------------------------------*/
.page #contents-wrapper {
  padding-top: 110px;
}

/**/
.page-title {
  padding-top: 100px;
  padding-bottom: 80px;
}

.page-title h1 {
  text-align: center;
  line-height: 150%;
}

.page-title h1 span {
  font-size: 42px;
  list-style: 160%;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  display: block;
}

.page-title h1 span img {
  display: block;
  height: 32px;
  margin: 0 auto;
}

.page-title h1 strong {
  display: block;
  line-height: 140%;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-top: 10px;
}


/**/
.page-block {
  padding-bottom: 120px;
}

.page-block.entry-post {
  padding-top: 0;
}

.page-block-inner {
  padding-top: 30px;
}

.p-block {
  margin-top: 0.7em;
}

.page-main {
  padding-bottom: 120px;
}

.page-main img {
  width: 100%;
}


.page-block h2 {
  line-height: 150%;
  font-size: 30px;
}

.page-block h2 span {
  display: block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.page-block h2 strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  display: block;
  margin-top: -0.4em;
}

.page-block h2 strong span.at {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #808080;
  letter-spacing: normal;
  line-height: 120%;
}

/**/
.page-block.accordion-block h2{
	font-size: 27px;
}
.page-block h2 font{
	margin-right: 0.1em;
}


/**/
.flex-block {
  display: flex;
  gap: 20px;
}

.flex-cell3 .flexbox {
  flex: 33.3333%;
}

.flex-cell2 .flexbox {
  flex: 50%;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5%;
  /*縦 横*/
}

.flex-wrap.flex-cell3 .flexbox {
  flex: 28.3333%;
}

.flex-wrap.flex-cell2 .flexbox {
  flex: 45%;
}



/*一覧
-------------------------------------------------------------------------*/

.cat-list-area {
  padding-bottom: 70px;
}

.cat-list-area ul {
  text-align: center;
}

.cat-list-area ul li {
  list-style: none;
  display: inline-block;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 140%;
  margin: 0 30px;
}

.cat-list-area ul li a {
  text-decoration: none;
  color: #231815;
}

.cat-list-area ul li.current a {
  text-decoration: underline;
  font-size: 20px;
  font-weight: 600;
}
.cat-list-area ul li:first-child.current a {
  font-size: 22px;
}

/**/
.listindex-area {
  overflow: hidden;
}

.listindex-area-inner {
  display: flex;
  flex-wrap: wrap;
}

.listindex-area-inner .list-item {
  width: calc( 100% / 3 );
  box-sizing: border-box;
  border-right: solid #d3d2d1 1px;
  border-bottom: solid #d3d2d1 1px;
  
}

.listindex-area-inner .list-item:nth-child(1),
.listindex-area-inner .list-item:nth-child(2),
.listindex-area-inner .list-item:nth-child(3) {
  border-top: solid #d3d2d1 1px;
}
.listindex-area-inner .list-item:nth-child(3n) {
  border-right: none;
}



.listindex-area-inner .list-item .list-item-inner {
  display: block;
}


.list-item a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #231815;
  font-size: 12px;
  list-style: 140%;
  background-color: #fff;
}

.list-item a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  background-color: #d3d2d151;
}

.list-item .imgbox {
  display: block;
  overflow: hidden;
}

.list-item .imgbox span {
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.list-item .imgbox span img {
  width: 100%;
}

.list-item a:hover .imgbox span {
  transform: scale(1.1);
}

.list-item .txtbox {
  text-align: left;
  position: relative;
}

.list-item .txtbox .txtbox-inner {
  padding: 40px 40px 40px 40px;
}

.list-item .item-title span {
  font-size: 12px;
  list-style: 120%;
  padding-bottom: 20px;
  display: inline-block;
}

.list-item .item-title h2 {
  font-size: 16px;
  font-weight: 600;
  height: 100px;
  letter-spacing: 0.1em;
  word-break: break-all;
}


.list-item .data .map {
  display: inline-block;
  margin-right: 40px;
  font-size: 12px;
  line-height: 130%;
}

.list-item .data .map span {
  display: block;
  background: url(../../images/icon_placearrow.png) left center no-repeat;
  background-size: 7px auto;
  padding-left: 16px;
}

.list-item .data .genre {
  display: inline-block;
  font-size: 12px;
}

.list-item .data .genre span {
  display: block;
  background: url(../../images/icon_genre.png) 1px center no-repeat;
  background-size: 13px auto;
  padding-left: 18px;
}

.list-item .data .cat {
  padding-top: 5px;
  display: block;
}

.list-item .data .cat ul li {
  list-style: none;
  display: inline-block;
  color: #231815;
  background-color: transparent;
  font-size: 11px;
  line-height: 100%;
  font-weight: 500;
  padding: 3px 7px;
  border: solid #b5b5b6 1px;
  margin-right: 4px;
}

.list-item .data .cat ul li a {
  display: block;
  text-decoration: none;
  color: #231815;
}


/**/
.page-odoro .list-item a,
.page-dance .list-item a {
  color: #fff;
  background-color: #274a79;
}

.page-odoro .list-item a:hover,
.page-dance .list-item a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  background-color: rgba(0, 0, 0, 0.2);
}

.page-odoro .list-item .item-title h2,
.page-dance .list-item .item-title h2 {
  height: auto;
  min-height: 60px;
  padding-bottom: 40px;
}




/*ページネーション*/
.listindex-navi {
  padding: 120px 0;
  text-align: center;
}


.listindex-navi .content-inner {
  text-align: center;
}

/**/
.pagination{
	clear:both;
	text-align: center;
	font-family: 'Cabinet Grotesk', sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 100%;
}
.pagination a,
.pagination span{
	position: relative;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 30px;
	height: 30px;
	margin: 0 10px;
}
/*ページネーション番号*/
.pagination nav{
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	margin-right: 5px;
}
.pagination nav a,
.pagination nav span.current{
	margin-top: 0.95em;
	opacity: 1 !important;
	color: #333;
}
.pagination nav a::after,
.pagination nav span.current::after{
	content: '';
	width: 30px;
	height: 30px;
	border-radius: 16px;
	position: absolute;
	top: 0.5em;
	left: 50%;
	margin: -1em 0 0 -0.95em;
	z-index: -1;
	transition: 0.3s ease-in-out;
	background-color: transparent;
	border: solid transparent 1px;
}
.pagination nav span.dots{
	width: auto;
	margin: 0.5em 0 0 0;
	color: #333;
}
/*ホバー時*/
.pagination nav a:hover,
.pagination nav span.current:hover{
	color: #333;
}
.pagination nav a:hover:after,
.pagination nav span.current:hover::after{
	background-color: #fff;
	border: solid #fff 1px;
}
.pagination nav span.current:hover::after{
	background-color: transparent;
	border: solid transparent 1px;
	width: 20px;
	height: 1px !important;
	background-color: #333;
	border: none;
	top:inherit;
	bottom:0.5em;
	left: 50%;
	margin-left: -10px;
}
/*現在のページ番号*/
.pagination nav span.current{
	font-weight: 700;
	color: #333;
}
.pagination nav span.current::after{
	background-color: transparent;
	border: solid transparent 1px;
	width: 20px;
	height: 1px !important;
	background-color: #333;
	border: none;
	top:inherit;
	bottom:0.5em;
	left: 50%;
	margin-left: -10px;

}
/*前へ、次へボタン*/
.pagination nav a.prev,
.pagination nav a.next{
	width: 30px;
	height: 18px;
	margin-top: 0;
	text-indent: -99999px;
	border-radius: 16px;
}
.pagination nav a.prev::after,
.pagination nav a.next::after{
	display: none;
}
.pagination nav a.prev{
	background: url(../../images/pagination_arrow_prev.png) center center no-repeat;
	background-size: auto 8px;
	background-color: #fff;
	border: solid #fff 1px;
}
.pagination nav a.next{
	background: url(../../images/pagination_arrow_next.png) center center no-repeat;
	background-size: auto 8px;
	background-color: #fff;
	border: solid #fff 1px;
}
.pagination nav a.prev:hover,
.pagination nav a.next:hover{
	opacity: 0.6 !important;
}
/*最初へ、最後へボタン*/
.pagination a.first,
.pagination a.last{
	display: inline-block;
	width: 30px;
	height: 18px;
	text-indent: -99999px;
	border-radius: 16px;
	margin: 0 -10px;
}
.pagination a.first{
	background: url(../../images/pagination_arrow_first.png) center center no-repeat;
	background-size: auto 8px;
	background-color: #fff;
	border: solid #fff 1px;
}
.pagination a.last{
	background: url(../../images/pagination_arrow_last.png) center center no-repeat;
	background-size: auto 8px;
	background-color: #fff;
	border: solid #fff 1px;
}
.pagination a.first:hover,
.pagination a.last:hover{
	opacity: 0.6 !important;
}


.edit{
	padding-top: 50px;
}

/*一覧 & post
-------------------------------------------------------------------------*/
.col-index-post-area-inner .page-title h1,
.single-post-head .page-title h1,
.col-single-post-area-inner .page-title h1 {
  text-align: left;
}

.col-index-post-area-inner .page-title h1 span,
.single-post-head .page-title h1 span,
.col-single-post-area-inner .page-title h1 span {
  font-size: 35px;
  list-style: 160%;
}

.col-index-post-area-inner .page-title h1 span img,
.single-post-head .page-title h1 span img,
.col-single-post-area-inner .page-title h1 span img {
  height: 27px;
  margin: 0;
}

/**/
.col-index-post-area-inner {
  display: flex;
  width: 100%;
  gap: 50px;
}

.col-index-cat-area {
  width: 280px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100%;
}

.col-index-list-area {
  width: 700px;
  padding-top: 150px;
}



/**/
.works-single-post-area .col-single-post-area-inner {
  position: relative;
  display: flex;
  width: 100%;
  gap: 50px;
}

.works-single-post-area .col-single-txt-area {
  width: 470px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100%;
}

.works-single-post-area .col-single-img-area {
  width: 580px;
  position: relative;
  right: 0;
  padding-top: 50px;
}


.works-single-post-area .col-single-img-area a[href*="youtube.com"] {
	position: relative;
}
.works-single-post-area .col-single-img-area a[href*="youtube.com"]::after{
	content:'';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top:0;
	background: url(../../images/icon_youtube.png) center center no-repeat;
	background-size: 60px auto;
}

.works-single-post-area .col-single-img-area .movieimg a{
	position: relative;
}
.works-single-post-area .col-single-img-area .movieimg a:after{
	content:'';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top:0;
	background: url(../../images/icon_youtube.png) center center no-repeat;
	background-size: 60px auto;
}


/**/
.cat-side-list h2 {
  font-size: 12px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  line-height: 120%;
  padding-bottom: 30px;
  position: relative;
  line-height: 120%;
  padding: 0 0 5px 0;
  letter-spacing: 0.1em;
}




.cat-side-list ul {
  padding-top: 20px;
}

.cat-side-list ul li {
  list-style: none;
  font-family: 'Cabinet Grotesk', "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.cat-side-list ul li a {
  text-decoration: none;
  color: #808080;
  display: block;
  padding: 5px 0 5px 0px;
  position: relative;
}



.cat-side-list ul li.current a {
  color: #221714;
}

.cat-side-list ul li.current a::after {
  background-color: #221714;
}

/**/
.works-single-post-area .col-single-txt-area .list-item .item-title h2 {
  height: auto;
  padding-bottom: 18px;

  font-size: 24px;
}

.works-single-post-area .col-single-txt-area .list-item {
  padding-bottom: 30px;
  border-bottom: solid #221714 1px;
}

.works-single-post-area .col-single-img-area span {
  display: block;
  text-align: center;
  padding-top: 15px;
}

.works-single-post-area .col-single-img-area span a{
	display: block;
}

.works-single-post-area .col-single-img-area span img {
  width: 100%;
}


/**/

.works-single-post-area .entry-post {
  padding: 30px 0;
  border-bottom: solid #221714 1px;
}

/**/
.entry-post {
  padding-top: 40px;
}

.entry-post p{
	letter-spacing: 0.1em;
	word-break: break-all;
}

.page-odoro .entry-post,
.page-dance .entry-post {
  color: #fff;
}

.entry-post .entry-subtitle {
  font-size: 12px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  line-height: 120%;
  padding-bottom: 30px;
}

/**/
.entry-post a {
  text-decoration: underline;
  color: #0068af;
}

.entry-post ul li,
.entry-post ol li {
  margin-left: 1.25em;
}

.entry-post .wp-block-image{
	padding: 3em 0;
}


.entry-post .wp-block-image a[href*="youtube.com"] {
	position: relative;
}
.entry-post .wp-block-image a[href*="youtube.com"]::after{
	content:'';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top:0;
	background: url(../../images/icon_youtube.png) center center no-repeat;
	background-size: 60px auto;
}


.entry-post .wp-block-gallery-is-layout-flex{
	margin: 0 -0.5em;
}
.entry-post .wp-block-gallery-is-layout-flex .wp-block-image{
	padding-left: 0.5em;
	padding-right: 0.5em;
}

.not-found{
	padding-bottom: 80px;
}
.not-found .list-btn-navi{
	margin-top: 40px;
}

/**/
.single-post-head {
  padding-top: 30px;
}

.single-post-head .page-title {
  padding-bottom: 30px;
}

.single-post-head .topics-item {
  display: block;
}

.single-post-head .topics-item .day {
  display: inline-block;
  width: auto;
  margin-right: 20px;
}

.single-post-head .topics-item .cat {
  display: inline-block;
}

.single-post-head .topics-item h2 {
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 160%;
  margin-top: -10px;
  word-break: break-all;
}

.single-post-head .odoro-logo-set{
	margin-top: -80px;
	margin-bottom: -140px;
}



/**/
.page-odoro .single-post-head,
.page-dance .single-post-head {
  color: #fff;
}



/**/
.other-area {
  padding-top: 120px;

}

.other-area .page-title {
  padding-bottom: 30px;
}

.other-area .page-title h2 {
  text-align: left;
}

.other-area .page-title h2 span {
  font-size: 29px;
  list-style: 160%;
}

.other-area .page-title h2 span img {
  height: 22px;
  margin: 0;
}



.works-slider-wrapp {
  margin: 0 -30px;
  overflow: hidden;
}


.works-slider-wrapp .section-slider .inner {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}


.works-slider li {
  margin: 0 15px;
}

.works-slider li a {
  display: block;
}



/*company
-------------------------------------------------------------------------*/
.company-single-post-area {
  padding-bottom: 120px;
}

.page-block .company-read h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 160%;
  text-align: center;
  padding-bottom: 25px;

}

.company-single-post-area .page-block-inner {
  font-size: 14px;
}

.histroy {
  display: flex;
  width: 100%;
}

.histroy .txtbox {
  flex: auto;
}

.histroy .imgbox {
  width: 270px;
}

.histroy .imgbox span {
  display: block;
  margin-bottom: 15px;
}

.histroy .txtbox table {
  width: 90%;
  border-collapse: collapse;
  text-align: left;
}

.histroy .txtbox table td.year,
.histroy .txtbox table td.day {
  width: 55px;
  padding-right: 5px;
  line-height: 120%;
}
.histroy .txtbox table td.day{
	width: 60px;
}

/**/
.company-info-item {
  padding-bottom: 30px;
  min-height: 140px;
}

.company-info-item.company-info-item-w p{
	margin-right: -90px;
}

.company-info-item h3 {
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.company-info-item h3 span {
  display: inline-block;
  margin-left: 15px;
}

.company-info-item h3 span.sf{
	font-size: 70%;
	margin-left: 0;
	vertical-align: top;
}

.company-info-item h3 i {
  display: inline-block;
  margin-left: 15px;
}

.company-info-item h3 i img {
  width: 100px;
  display: block;
  margin-top: -17px;
}

.company-info-item p {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.1em;
}

.company-info-item p.at {
  font-size: 12px;
  line-height: 130%;
  margin-top: 0.3em;
}

.company-info-item a {
  text-decoration: none;
  color: #221714;
}


.company-info-item .sns-area {
  line-height: 130%;
  padding-top: 3px;
}

.company-info-item .sns-area ul li {
  list-style: none;
  font-size: 12px;
  line-height: 100%;
  display: inline-block;
  vertical-align: middle;
  min-width: inherit;
  margin-right: 20px;
  margin-left: 0;
}

.company-info-item .sns-area ul li a {
  background: url(../../images/sns_ig_b.png) left 0.6em no-repeat;
  background-size: 12px auto;
  padding: 3px 0 3px 18px;
}

.company-info-item .btn-map {
  display: inline-block;
  margin-left: 15px;
  background: url(../../images/icon_map.png) right center no-repeat;
  background-size: 10px auto;
  padding-right: 15px;
  margin-right: -20px;
}



.btn-contact-s {
  list-style: none;
  font-size: 12px;
  line-height: 100%;
  display: inline-block;
  vertical-align: middle;
  min-width: inherit;
  margin-right: 20px;
  margin-left: 0;
}

.btn-contact-s a {
  background: url(../../images/icon_mail.png) left 0.7em no-repeat;
  background-size: 12px auto;
  padding: 3px 0 3px 18px;
}



/*top topics
-------------------------------------------------------------------------*/
.topics-area {
  /*background: url(../../images/topics_bg.jpg) center center no-repeat;
  background-size: cover;*/
  padding: 107px 0;
}

.topics-area .btn-link {
  margin-top: 80px;
  display: inline-block;
}

.topics-area-inner {
  display: flex;
  width: 100%;
  column-gap: 10px;
}

.topics-area-inner .topics-title {
  width: 300px;
}

.topics-area-inner .topics-list {
  flex: 1;
}

/**/
.topics-list ul li {
  list-style: none;
  border-bottom: solid #231815 1px;
}

.topics-list ul li:first-child {
  border-top: solid #231815 1px;
}

.topics-list ul li a {
  display: block;
  text-decoration: none;
  color: #231815;
  position: relative;
  padding-right: 75px;
}

.topics-list ul li a:after {
  content: '';
  display: block;
  width: 28px;
  height: 16px;
  border-radius: 30px;
  background: #fff url(../../images/btn_arrow.png) center center no-repeat;
  background-size: 8px auto;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -8px;
}

.col-index-list-area .topics-list ul li a:after {
  background: #d3d2d1 url(../../images/btn_arrow.png) center center no-repeat;
  background-size: 8px auto;
}

.topics-item {
  display: table;
  width: 100%;
  line-height: 100%;
}

.topics-item .day {
  display: table-cell;
  vertical-align: middle;
  width: 106px;
  text-align: center;
  font-size: 13px;
  line-height: 140%;
  padding: 30px 0;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
}

.topics-item .txtbox {
  display: table-cell;
  vertical-align: middle;
  padding: 30px 0;
}


.topics-item .txtbox p {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.1em;
  word-break: break-all;
}


/**/
.cat {
  display: inline-block;
  margin-bottom: 0.2em;
}

.cat span {
  display: inline-block;
  line-height: 100%;
  background-color: #e8f90d;
  font-size: 12px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  padding: 3px 5px 2px 5px;
}

.topics-item .cat span {
	margin-right: 5px;
}

/*トップ共通
-------------------------------------------------------------------------*/
.top-title span {
  font-size: 42px;
  list-style: 160%;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  display: block;
}

.top-title span img {
  display: block;
  height: 32px;
}

.top-title strong {
  display: block;
  line-height: 140%;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-top: 10px;
  
}


/*top concept
-------------------------------------------------------------------------*/
.concept-area {
  position: relative;

  padding-bottom: 200px;
  background: url(../../images/top_img_bg002.png) left 30% no-repeat;
  background-size: 50px;
}

/**/

/*スクロール　固定テキスト*/
.concept-area-fixed {
  width: 100%;
  height: 100vh;
  z-index: 500;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.concept-area-fixed .concept-txt {
  font-size: 27px;
  list-style: 100%;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-align: center;
  width: 100%;
  position: absolute;
  transition: 0.7s ease-in-out;
  z-index: 20;
}

.concept-area-fixed .concept-txt .inner{
	width: 70%;
	margin: 0 auto;
  text-align: left;
}

.concept-area-fixed .concept-txt strong{
  font-weight: 500;
  display: block;
  text-align: left;
  width: 35%;
  min-width: 480px;
}

.concept-area-fixed.onconcept .concept-txt1 {
  opacity: 0;
}

.concept-area-fixed .concept-txt2 {
  opacity: 0;
  position: relative;
}

.concept-area-fixed.onconcept .concept-txt2 {
  opacity: 1;
}

/*スクロール*/
.concept-area-wrapper {
  width: 100%;
  margin-top: -100vh;
  text-align: center;
  overflow: hidden;
}



.concept-img {
  position: relative;
  margin: 0 auto 0 auto;
  padding: 0 0;
}

.concept-img .img-cover {
  position: relative;
  display: block;
  width: 45%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.concept-img .moving-image {
  position: relative;
  display: block;
  top: -80px;
  /* 初期位置 */
  width: 100%;
  /**/

  transition: 0.7s linear;
}

.concept-img .item-bg img {
  display: block;
  width: 100%;
}

/*イメージ個別設定*/
/**/
.concept-img1 {
  left: 0;
  margin-top: 150px;
}

.concept-img1 .img-cover {
  width: 45%;
  aspect-ratio: 4 / 3;
}

/**/
.concept-img2 {
  margin-top: 100px;
  left: 57%;
}

.concept-img2 .img-cover {
  width: 43%;
  aspect-ratio: 4 / 2.7;
}

.concept-img2 .item-bg {
  position: absolute;
  width: 75%;
  left: -40%;
  bottom: -12%;
  z-index: -1;
}

/**/
.concept-img3 {
  margin-top: 100px;
  left: 15%;
}

.concept-img3 .img-cover {
  width: 30%;
  aspect-ratio: 1 / 1;
}

/**/
.concept-img4 {
  margin-top: -80px;
  left: 55%;
}

.concept-img4 .img-cover {
  width: 40%;
  aspect-ratio: 4 / 3;
}

/**/
.concept-img5 {
  margin-top: -80px;
  left: 5%;
}

.concept-img5 .img-cover {
  width: 25%;
  aspect-ratio: 3 / 5;
}

/**/
.concept-img6 {
  margin-top: -180px;
  left: 45%;
}

.concept-img6 .img-cover {
  width: 30%;
  aspect-ratio: 3 / 2;
}

/**/
.concept-img7 {
  margin-top: 180px;
  left: 60%;
}

.concept-img7 .img-cover {
  width: 30%;
  aspect-ratio: 3 / 4;
}

.concept-img7 .item-bg {
  position: absolute;
  width: 12%;
  left: -8%;
  bottom: -12%;
  z-index: -1;
}

/**/
.concept-img8 {
  margin-top: -350px;
  left: 0%;
}

.concept-img8 .img-cover {
  width: 45%;
  aspect-ratio: 5 / 3.5;
}

/**/
.concept-img9 {
  margin-top: 300px;
  left: 55%;
}

.concept-img9 .img-cover {
  width: 30%;
  aspect-ratio: 37 / 49;
}

.concept-img9 .item-bg {
  position: absolute;
  width: 30%;
  left: -15%;
  bottom: -3%;
  z-index: -1;
}

/**/
.concept-img10 {
  margin-top: 50px;
  left: 0%;
}

.concept-img10 .img-cover {
  width: 50%;
  aspect-ratio: 6 / 3.5;
}



/* top Works
------------------------------------------------------------ */

.works-area {
  padding-top: 140px;
  overflow: hidden;
  position: relative;
}

.works-area .top-title {
  color: #fff;
}

.works-area .content-inner {
  position: relative;
}

.works-area .content-inner .btn-link-w {
  position: absolute;
  top: 20px;
  right: 0;
}


.works-area-inner {
  padding-top: 50px;
}

.works-accordion {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #000;


}

.works-accordion .works-accordion-box {
  float: left;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  /**/

  transition: 0.7s ease-in-out;

}

/*
.works-accordion .works-accordion-box.works-accordion-box1{

}
.works-accordion .works-accordion-box.works-accordion-box2{

}
.works-accordion .works-accordion-box.works-accordion-box3{

}
.works-accordion .works-accordion-box.works-accordion-box4{

}
.works-accordion .works-accordion-box.works-accordion-box5{

}
*/

.works-accordion-box .works-dt {
  width: 20%;
  /*初期幅*/
  background-color: rgba(0, 0, 0, 0.8);

  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  z-index: 5;
  /**/

  cursor: pointer;

  transition: 0.01s ease-in-out;
}

.works-accordion-box.close .works-dt {
  width: 100px;
  right: 0;
  transition: 0.7s ease-in-out;
}

.works-accordion-box.open .works-dt {
  width: 100px;
  right: -100px;
  transition: 0.01s ease-in-out;
}


.works-accordion-box .works-dt .dt-inner {
  padding: 10px 5px;
  height: 100%;
  position: relative;
}

.works-accordion-box .works-dt .dt-inner strong {
  writing-mode: vertical-rl;
  display: block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.1em;
  float: right;
}

.works-accordion-box .works-dt .dt-inner h3 {
  writing-mode: vertical-rl;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.2em;
  position: absolute;
  bottom: 30px;
  right: 5px;
}


.works-accordion-box .works-dd {
  display: block;
}

.works-accordion-box .works-dd a{
  display: block;
}
.works-accordion-box .works-dd a:hover{
  opacity: 1;
}

.works-accordion-box .works-dd .imgbox img {
  display: block;
  max-width: inherit;
  position: relative;
}

.works-accordion-box .works-dd .imgbox:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0000007b;
  top: 0;
  left: 0;
  z-index: 1;
}

.works-accordion-box .works-dd .txtbox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  /**/

  transition: 0.7s ease-in-out;
}

.works-accordion-box.open .works-dd .txtbox {
  opacity: 1;
}

.works-accordion-box .works-dd .txtbox .txtbox-inner {
  position: absolute;
  left: 40px;
  bottom: 20px;
  color: #fff;
  text-align: left;
}

.works-accordion-box .works-dd .txtbox .txtbox-inner strong {
  display: block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.15em;
}

.works-accordion-box .works-dd .txtbox .txtbox-inner h3 {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.2em;
  margin-top: -0.1em;
}

.works-accordion-box .works-dd .txtbox .txtbox-inner .btn-link-w {
  position: absolute;
  right: 60px;
  bottom: 0px;
}



/* top paintitem
--------------------------------------------*/
.paintitem-area {
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 50px;
}

.paintitem-area-inner {
  padding-bottom: 80px;
}

.paintitem-area .top-title {
  color: #fff;
}



/* スライダー関連
---------------- */
/*（左右チラ見せ用）*/

.paintitem-area .section-slider {
  overflow: hidden;
  margin: 50px -80px 0 -80px;
  position: relative;
}

.paintitem-area .section-slider:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 9%;
  height: 100%;
  z-index: 90;
}

.paintitem-area .section-slider:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 9%;
  height: 100%;
  z-index: 90;
}


/**/
.section-slider .inner {
  margin: 0 auto;
  width: 86%;
  padding-left: 7%;
  padding-right: 7%;
}

.slider-wrapp {
  position: relative;
}

.slider-wrapp .slick-list {
  overflow: visible;
}

.slider-wrapp li {
  padding: 0 12px;
  /**/
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.slider-wrapp li.slick-slide {
  transform: scale(1);
}

.slider-wrapp li.slick-current {
  transform: scale(1);
}

.paintitem-area .section-slider .slick-next {
  right: -45px !important;
  top: 100px !important;
  z-index: 99;
  display: block;
  text-indent: -9999px;
  width: 70px !important;
  height: 70px !important;
  background: url(../../images/arrow_next_w.png) no-repeat center center !important;
  background-size: 11px auto !important;
  cursor: pointer;
}

.paintitem-area .section-slider .slick-prev {
  left: -45px !important;
  top: 100px !important;
  z-index: 100;
  display: block;
  text-indent: -9999px;
  width: 70px !important;
  height: 70px !important;
  background: url(../../images/arrow_prev_w.png) no-repeat center center !important;
  background-size: 11px auto !important;
  cursor: pointer;
}



/**/
.paintitem-slider a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
}


.paintitem-slider .paintitem-item {
  position: relative;
  line-height: 150%;
  font-size: 13px;
}

.paintitem-slider .paintitem-item .imgbox {
  position: relative;
  overflow: hidden;
}

.paintitem-slider .paintitem-item .imgbox img {
  display: block;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
}

.paintitem-slider .paintitem-item .imgbox i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.paintitem-slider .paintitem-item .imgbox span {
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 15px;
  line-height: 100%;
  padding: 2px 5px 1px 5px;
  letter-spacing: 0.07em;
  background-color: #808080;
  color: #fff;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  z-index: 3;
}

.paintitem-slider .paintitem-item .txtbox {
  padding-top: 8px;
  letter-spacing: 0.12em;
}

.paintitem-slider .paintitem-item .txtbox h3 {
  font-size: 17px;
  line-height: 150%;
  padding-bottom: 5px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.paintitem-slider .paintitem-item .txtbox h3 span.icon-blank {
  display: inline-block;
  background: url(../../images/icon_blank_w.png) right 0.5em no-repeat;
  background-size: 10px;
  padding-right: 17px;
}

.paintitem-slider .paintitem-item .txtbox h3 span.icon-link {
  position: relative;
  display: inline-block;
  padding-right: 40px;
}

.paintitem-slider .paintitem-item .txtbox h3 span.icon-link:after {
  content: '';
  display: block;
  width: 28px;
  height: 16px;
  border-radius: 30px;
  background: #fff url(../../images/btn_arrow.png) center center no-repeat;
  background-size: 8px auto;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -6px;
}



.paintitem-slider a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.paintitem-slider a:hover .paintitem-item .imgbox img.bg-img {
  transform: scale(1.1);
}


/**/
.odoro-area {
  text-align: left;
  overflow: hidden;
}

.btn-odoro {
  display: inline-block;
  text-align: left;
  position: relative;
  padding: 0 20px;
}

.btn-odoro a {
  display: block;
  position: relative;
  padding-left: 45px;
}

.btn-odoro a .odoro-logo-set:after {
  content: '';
  display: block;
  width: 28px;
  height: 16px;
  border-radius: 30px;
  border: solid #fff 1px;
  background: url(../../images/btn_arrow_w.png) center center no-repeat;
  background-size: 9px auto;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -9px;
}

/**/
.odoro-logo-set {
  display: inline-block;
}

.odoro-logo-set i {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  padding-right: 15px;
}

.odoro-logo-set strong {
  display: inline-block;
  vertical-align: middle;
  width: 150px;
  margin-top: -0.5em;
}

/**/
.page-title h1 .odoro-logo-set {
  padding-top: 50px;
  padding-bottom: 120px;
}

.page-title h1 .odoro-logo-set i {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  padding-right: 25px;
}

.page-title h1 .odoro-logo-set strong {
  display: inline-block;
  vertical-align: middle;
  width: 198px;
  margin-top: -0.5em;
}

/**/

.anime-line {
  overflow: hidden;
  width: 100%;
  height: 50px;
  z-index: 20;
  position: relative;
}


.anime-slider-css {
  display: inline-block;
  width: 300px;
  padding-left: 100%;
  animation: infinity-scroll 18s linear infinite;
}


@keyframes infinity-scroll {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}




/* top banner-area
--------------------------------------------*/
.banner-area {
  padding: 120px 0;
}

.banner-area-inner {
  display: flex;
  gap: 30px 15px;
  /*縦20px、横30pxの指定*/
  flex-wrap: wrap;
}

.banner-area-inner .banner {
  flex-basis: 49.25%;
  position: relative;
}

.banner-area-inner .banner-L {
  flex-basis: 100%;
}

.banner-area-inner .banner a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
}


.banner-area-inner .banner .banner-img {
  overflow: hidden;
  position: relative;
}

.banner-area-inner .banner .banner-img:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  z-index: 2;
}

.banner-area-inner .banner .banner-img img {
  display: block;
  transition: 0.3s ease-in-out;
}

.banner-area-inner .banner .banner-txt {
  position: absolute;
  width: 95%;
  bottom: 15px;
  left: 20px;
  z-index: 3;
}

.banner-area-inner .banner.banner-L .banner-txt {
  width: 97.5%;
}



.banner-area-inner .banner .banner-txt .banner-title {
  display: inline-block;
}

.banner-area-inner .banner .banner-txt .banner-title:after {
  content: '';
  position: absolute;
  display: block;
  width: 110px;
  height: 100%;
  bottom: 0;
  right: 0;
  background: url(../../images/icon_blank_w.png) center center no-repeat;
  background-size: 15px auto;
}

.banner-area-inner .banner.no-blank-link .banner-txt .banner-title:after {
  content: '';
  position: absolute;
  display: block;
  width: 110px;
  height: 100%;
  bottom: 0;
  right: 0;
  background: url(../../images/icon_btn_arrow_w.png) center center no-repeat;
  background-size: 30px auto;
}

.banner-area-inner .banner .banner-txt .banner-title:before {
  content: '';
  position: absolute;
  display: block;
  width: 110px;
  height: 100%;
  bottom: 0;
  right: 0;
  background: url(../../images/dot_line_t.png) left top repeat-y;
  background-size: 1px auto;
}

.banner-area-inner .banner .banner-txt .banner-title strong {
  display: block;
}

.banner-area-inner .banner .banner-txt .banner-title strong img {
  height: 62px;
}

.banner-area-inner .banner.banner-L .banner-txt .banner-title strong img {
  height: 27px;
}

.banner-area-inner .banner .banner-txt .banner-title span {
  display: block;
  font-size: 14px;
  line-height: 130%;
  margin-top: 10px;
  letter-spacing: 0.1em;
}

.banner-area-inner .banner a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.banner-area-inner .banner a:hover .banner-img img {
  transform: scale(1.1);
}


/* top mv
--------------------------------------------*/
.mv-area {
  overflow: hidden;
}


.footer-bg {
  overflow: hidden;
}





/* スライダー基本
--------------------------------------------*/

.slider {
  width: 90%;
  margin: 0 auto 80px;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

.mypattern {
  width: 100%;
}

.mypattern .slick-slide {
  margin: 5px;
}




/*infinite: false　の時、最初と最後の矢印消す*/
.slick-next.slick-disabled,
.slick-prev.slick-disabled {
  display: none !important;
}






/* スライダー基本通常ここから
--------------------------------------------*/


.slick-next {
  position: absolute;
  right: -60px;
  top: 50%;
  margin-top: -30px;
  z-index: 99;
  display: block;
  text-indent: -9999px;
  width: 60px;
  height: 60px;
  background: url(../../images/arrow_next_w.png) no-repeat center center !important;
  background-size: 11px auto !important;
  cursor: pointer;
  border: none;

}

.slick-prev {
  position: absolute;
  left: -60px;
  top: 50%;
  margin-top: -30px;
  z-index: 100;
  display: block;
  text-indent: -9999px;
  width: 60px;
  height: 60px;
  background: url(../../images/arrow_prev_w.png) no-repeat center center !important;
  background-size: 11px auto !important;
  cursor: pointer;
  border: none;
}

/**/
/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**/
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-size: 0px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
}