@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:wght@300;400;700&family=Roboto:wght@100;300;400;700&display=swap");
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	変数設定

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*
/* color */
/* trans */
/* breakpoint */
/* margin */
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	common
	common　header、nav、footer、main、parts
	一覧ページ【archive】
	記事ページ【single】
	404【404】

	ContactFoam お問い合わせ【contactPage】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
html {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #000;
  font-family: 'Roboto', sans-serif, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'Osaka', 'ＭＳ Ｐゴシック', 'MS PGothic'; }

.serif {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif"; }

.averia {
  font-family: 'Averia Serif Libre', cursive; }

html * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all; }

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  word-wrap: normal;
  width: 100%;
  overflow: hidden; }

main,
section,
article {
  overflow: hidden; }

sup {
  font-size: 0.7rem;
  vertical-align: top;
  position: relative;
  top: -0.1em; }

a {
  text-decoration: none;
  color: #000;
  transition: 0.35s ease; }
  a:visited {
    text-decoration: none;
    color: #000; }
  a:hover {
    text-decoration: none;
    color: #af0303; }

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
  color: #000; }

.overflow_hidden {
  overflow: hidden; }

.clear {
  clear: both; }

.spBr {
  display: none; }

.spNoBr {
  display: block; }

.pc {
  display: block; }

.sp {
  display: none; }

.serif {
  font-family: 'Noto Serif JP', serif, YuMincho, "Yu Mincho", "Hiragino Mincho ProN"; }

.column_l {
  float: left; }

.column_r {
  float: right; }

.caution_list {
  font-size: 0.8rem; }
  .caution_list li {
    position: relative;
    padding-left: 1.5em; }
  .caution_list li::before {
    position: absolute;
    content: '※';
    left: 0; }

.decimal_list {
  list-style-type: decimal;
  padding-left: 2rem; }

.container {
  width: 80%;
  margin: 0 auto; }

/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/
header {
  position: absolute;
  z-index: 10000001; }

#headerBlock {
  text-align: left; }
  #headerBlock h1 {
    padding: 10px 20px; }

/* 三 */
#spMenuBut {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 10000003; }
  #spMenuBut span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: 0.35s ease; }
  #spMenuBut span:nth-child(1) {
    top: 22px; }
  #spMenuBut span:nth-child(2) {
    top: 30px; }
  #spMenuBut span:nth-child(3) {
    top: 38px; }

.openNav #spMenuBut span:nth-child(1) {
  top: 30px;
  transform: rotate(-45deg); }
.openNav #spMenuBut span:nth-child(2),
.openNav #spMenuBut span:nth-child(3) {
  top: 30px;
  transform: rotate(45deg); }

/*--------------------------------------------------------------
	nav
--------------------------------------------------------------*/
#globalNavBlock {
  position: fixed;
  top: 0;
  right: -50%;
  line-height: 1;
  width: 50%;
  height: 100vh;
  background: #0e635f;
  padding: 100px 40px;
  z-index: 10000002;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .5s ease-out;
  -moz-transition: .5s ease-out;
  -o-transition: .5s ease-out;
  transition: .5s ease-out;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#globalNav {
  width: 100%;
  text-align: left;
  overflow: hidden; }
  #globalNav #globalNavLeft,
  #globalNav #globalNavRight {
    float: left;
    width: calc(50% - 20px); }
  #globalNav #globalNavLeft {
    margin-right: 40px; }
  #globalNav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
  #globalNav a {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    padding: 20px 10px; }
  #globalNav li.sub_menu {
    border: none; }
    #globalNav li.sub_menu ul {
      border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    #globalNav li.sub_menu ul li {
      border: none; }
    #globalNav li.sub_menu ul a {
      position: relative;
      padding: 10px 0 20px 2rem;
      font-size: 1rem; }
    #globalNav li.sub_menu ul a::before {
      position: absolute;
      content: '';
      top: calc(10px + 0.25rem);
      left: 1rem;
      width: 6px;
      height: 6px;
      border-radius: 100%;
      background: rgba(255, 255, 255, 0.5); }
  #globalNav a:hover {
    opacity: 0.5; }

.openNav #globalNavBlock {
  visibility: visible;
  opacity: 1;
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

.openNav #globalNavMaskBlock {
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100vh;
  opacity: 0;
  z-index: 10000002; }

/*--------------------------------------------------------------
	butBlock □□□□
--------------------------------------------------------------*/
#butBlock {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000001; }
  #butBlock ul {
    overflow: hidden; }
  #butBlock li {
    float: left;
    background: rgba(0, 0, 0, 0.5);
    margin-right: 1px; }
  #butBlock li:last-child {
    margin-right: 0; }
  #butBlock a {
    display: block;
    width: 80px;
    padding: 40px 0 10px 0;
    font-size: 10px;
    line-height: 1;
    color: #fff; }
  #butBlock li:nth-child(1) a {
    background: url("../common/img/icon_mail.svg") no-repeat top 12px center; }
  #butBlock li:nth-child(2) a {
    background: url("../common/img/icon_car.svg") no-repeat top 12px center; }
  #butBlock li:nth-child(3) a {
    background: url("../common/img/icon_event.svg") no-repeat top 8px center; }
  #butBlock li:nth-child(4) a {
    background: url("../common/img/sns/icon_instagram_white.svg") no-repeat top 12px center; }
  #butBlock a:hover {
    opacity: 0.5; }

/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/
footer {
  clear: both;
  font-size: 0.8rem;
  color: #fff; }
  footer #addressBlock {
    text-align: left;
    background-size: cover; }
    footer #addressBlock address {
      width: 50%;
      margin-left: 50%;
      padding: 540px 0 60px 120px;
      background: rgba(0, 0, 0, 0.5); }
      footer #addressBlock address h1 {
        font-size: 1.5rem; }
      footer #addressBlock address #footerSnsBlock {
        margin-top: 20px; }
      footer #addressBlock address .but {
        margin-top: 40px;
        text-align: left; }
      footer #addressBlock address a {
        color: #fff; }
  footer #copyrightBlock {
    font-size: 10px;
    color: #999;
    margin-bottom: 30px; }

/* SNS */
.sns_list {
  font-size: 0;
  margin-top: 10px; }
  .sns_list li {
    display: inline-block;
    margin-right: 10px; }
  .sns_list a {
    display: block;
    padding: 10px; }
  .sns_list span {
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px; }
  .sns_list .facebook span {
    background-image: url("../common/img/sns/icon_facebook.svg"); }
  .sns_list .twitter span {
    background-image: url("../common/img/sns/icon_twitter.svg"); }
  .sns_list .instagram span {
    background-image: url("../common/img/sns/icon_instagram.svg"); }
  .sns_list .line span {
    background-image: url("../common/img/sns/icon_line.svg"); }
  .sns_list .googleplus span {
    background-image: url("../common/img/sns/icon_googleplus.svg"); }
  .sns_list .hatena span {
    background-image: url("../common/img/sns/icon_hatena.svg"); }
  .sns_list .getpocket span {
    background-image: url("../common/img/sns/icon_getpocket.svg"); }
  .sns_list .pinterest span {
    background-image: url("../common/img/sns/icon_pinterest.svg"); }
  .sns_list a:hover {
    opacity: 0.5; }

#footerSnsBlock .sns_list .facebook span {
  background-image: url("../common/img/sns/icon_facebook_white.svg"); }
#footerSnsBlock .sns_list .twitter span {
  background-image: url("../common/img/sns/icon_twitter_white.svg"); }
#footerSnsBlock .sns_list .instagram span {
  background-image: url("../common/img/sns/icon_instagram_white.svg"); }
#footerSnsBlock .sns_list .line span {
  background-image: url("../common/img/sns/icon_line_white.svg"); }
#footerSnsBlock .sns_list .googleplus span {
  background-image: url("../common/img/sns/icon_googleplus_white.svg"); }
#footerSnsBlock .sns_list .hatena span {
  background-image: url("../common/img/sns/icon_hatena_white.svg"); }
#footerSnsBlock .sns_list .getpocket span {
  background-image: url("../common/img/sns/icon_getpocket_white.svg"); }
#footerSnsBlock .sns_list .pinterest span {
  background-image: url("../common/img/sns/icon_pinterest_white.svg"); }

/* banner */
#footerBannerList {
  margin: 40px 20px; }
  #footerBannerList ul {
    display: inline-block;
    margin: 0 auto;
    font-size: 0;
    overflow: hidden; }
  #footerBannerList li {
    display: inline-block;
    margin: 0 5px 10px 5px; }
  #footerBannerList img {
    transition: 0.35s ease; }
  #footerBannerList a:hover img {
    opacity: 0.5; }

/* pageTop */
#pageTop {
  position: fixed;
  cursor: pointer;
  display: none;
  right: 40px;
  bottom: 100px;
  z-index: 1000; }
  #pageTop::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    margin-top: -10px;
    border: solid 10px transparent;
    border-bottom: solid 16px #000;
    opacity: 0.5; }
  #pageTop::before {
    position: absolute;
    content: '';
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.8); }
  #pageTop .stop {
    bottom: 100px; }

/*--------------------------------------------------------------
	main
--------------------------------------------------------------*/
#mainBlock {
  text-align: left; }

/*-------------------- mainBlock_1Block --------------------*/
/*-------------------- column_2Block --------------------*/
#column_2Block {
  overflow: hidden; }
  #column_2Block #mainBlock {
    float: left;
    width: calc(100% - 240px); }
  #column_2Block #sidebarBlock {
    float: right;
    width: 200px; }

/*--------------------------------------------------------------
	parts
--------------------------------------------------------------*/
/* page title */
#titleBlock {
  line-height: 1;
  padding: 100px 0 80px;
  background-size: cover; }
  #titleBlock h2.page_title {
    position: relative;
    font-size: 30px;
    letter-spacing: 0.05em;
    color: #fff; }
  #titleBlock h2.page_title::before {
    position: absolute;
    content: '';
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100px;
    height: 2px;
    background: #fff; }

/* lead_box */
.lead_box {
  text-align: center;
  margin-bottom: 60px; }
  .lead_box h3 {
    color: #000000;
    font-size: 2.5rem;
    line-height: 1.6; }
  .lead_box h4 {
    font-weight: 300;
    margin-top: 10px; }
  .lead_box p {
    margin-top: 60px; }

/* list */
.list li {
  position: relative;
  padding-left: 1em; }
.list li::before {
  position: absolute;
  content: '';
  top: 0.75rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  opacity: 0.5;
  background: #0e635f; }

/*-------------------- ボタン --------------------*/
/* ボタン -> */
.but {
  text-align: center; }
  .but a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 1rem;
    line-height: 1; }

.line_arrow {
  position: absolute;
  top: calc(50% + 3px);
  right: -30px;
  display: inline-block;
  width: 20px; }
  .line_arrow span {
    position: absolute;
    content: '';
    background: #fff;
    top: calc(50% - 2px);
    height: 1px; }
  .line_arrow span:nth-child(1) {
    left: 0;
    width: 20px;
    animation: line_arrow_1_out .5s forwards; }
  .line_arrow span:nth-child(2) {
    right: 0;
    width: 8px;
    transform: rotate(45deg);
    transform-origin: right 0;
    animation: line_arrow_2_out .5s forwards; }

a:hover .line_arrow span:nth-child(1) {
  animation: line_arrow_1_in .5s forwards; }
a:hover .line_arrow span:nth-child(2) {
  animation: line_arrow_2_in .5s forwards; }

/* ボタン □-> */
.but_more a {
  text-align: center;
  width: 180px;
  margin-top: 60px;
  padding: 12px;
  border-radius: 40px;
  border: 1px solid #af0303;
  background: #af0303; }
.but_more .line_arrow {
  top: calc(50% + 2px);
  right: 20px; }
.but_more a:hover {
  color: #af0303;
  background: #fff; }
  .but_more a:hover .line_arrow span {
    background: #af0303; }

@keyframes line_arrow_1_out {
  0% {
    width: 20px; }
  1% {
    width: 0px; }
  50% {
    width: 20px; }
  100% {
    width: 20px; } }
@keyframes line_arrow_1_in {
  0% {
    width: 0px; }
  50% {
    width: 20px; }
  100% {
    width: 20px; } }
@keyframes line_arrow_2_out {
  0% {
    width: 0px; }
  50% {
    width: 0px; }
  100% {
    width: 8px; } }
@keyframes line_arrow_2_in {
  0% {
    width: 0px; }
  50% {
    width: 0px; }
  100% {
    width: 8px; } }
/*-------------------- 記事リスト --------------------*/
/* img_box */
.img_box {
  overflow: hidden; }
  .img_box img {
    width: 100%;
    transition: 0.35s ease; }

/* data_box */
.data_box {
  line-height: 1.6;
  margin: 15px 0; }
  .data_box .title {
    font-size: 1.1rem;
    margin-bottom: 10px; }
  .data_box .name {
    background: url("../common/img/icon_event_black.svg");
    background-size: 16px; }
  .data_box .location {
    background: url("../common/img/icon_place.svg");
    background-size: 14px; }
  .data_box .period,
  .data_box .time {
    background: url("../common/img/icon_time.svg");
    background-size: 14px; }
  .data_box .name,
  .data_box .location,
  .data_box .period {
    padding-left: 25px;
    margin-bottom: 2px;
    background-position: top 2px left;
    background-repeat: no-repeat; }
  .data_box .time {
    padding-left: 20px;
    margin-top: 10px;
    background-position: top 2px left;
    background-repeat: no-repeat; }
  .data_box .name,
  .data_box .location,
  .data_box .period,
  .data_box .time,
  .data_box .excerpt {
    font-size: 0.8rem;
    color: #666; }

.archive_list li:hover .img_box img {
  transform: scale(1.2); }

.archive_list a:hover {
  color: #000 !important; }

/* archive_list */
.archive_list a {
  display: block; }
.archive_list.column_3 {
  overflow: hidden; }
.archive_list > li {
  position: relative;
  float: left;
  margin: 0 20px 40px 0;
  overflow: hidden;
  text-align: left; }
.archive_list.column_3 > li {
  width: calc((100% - 40px) / 3 ); }
  .archive_list.column_3 > li:nth-child(3n) {
    margin-right: 0; }

/* adjust_box */
.adjust_box {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 !important;
  overflow: hidden; }
  .adjust_box.box_1x1:before {
    content: "";
    display: block;
    padding-top: 100%; }
  .adjust_box.box_16x9:before {
    content: "";
    display: block;
    padding-top: 56%; }
  .adjust_box .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .adjust_box .inner img {
      width: 100%;
      height: auto; }
  .adjust_box .data_box {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 50px 30px 30px 40px;
    font-size: 0.85rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    background: -o-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%); }
    .adjust_box .data_box * {
      color: #fff !important;
      line-height: 1.4; }
    .adjust_box .data_box .title {
      font-size: 1.25rem; }

/* カテゴリー */
.category_list {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  margin-bottom: 10px; }
  .category_list * {
    display: inline-block; }
  .category_list li {
    margin-right: 1px; }
  .category_list a {
    color: #fff !important;
    font-size: 0.8rem;
    background: #999;
    padding: 10px 15px; }
  .category_list a:hover {
    color: #fff !important; }

/* イベント 予告・開催中・終了 */
.check_date * {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 10px;
  right: -35px;
  padding: 2px;
  width: 120px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }
.check_date .past {
  background: #666; }
.check_date .current {
  background: #CC0000; }
.check_date .future {
  background: #FF7700; }

/*-------------------- パンくず --------------------*/
#breadcrumbBlock {
  overflow: hidden;
  margin: 20px auto 60px;
  line-height: 1.4; }
  #breadcrumbBlock ul {
    text-align: left;
    text-overflow: ellipsis;
    margin: 0; }
  #breadcrumbBlock ul * {
    color: #666; }
  #breadcrumbBlock li {
    position: relative;
    display: inline;
    font-size: 12px;
    padding: 15px 20px 15px 10px; }
  #breadcrumbBlock li::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    background: url(../common/img/arrow_r_black.svg) no-repeat center right;
    background-size: 8px; }
  #breadcrumbBlock li:last-child::after {
    width: 0; }
  #breadcrumbBlock li a {
    display: inline; }
  #breadcrumbBlock li:first-child a {
    display: inline-block;
    width: 15px; }
  #breadcrumbBlock li:first-child a {
    background: url(../common/img/icon_home.svg) no-repeat center center;
    background-size: 12px; }
  #breadcrumbBlock li a:hover {
    text-decoration: none;
    opacity: 0.5; }

/*-------------------- table --------------------*/
/* table_type_1 */
.table_type_1 {
  width: 100%; }
  .table_type_1 * {
    vertical-align: top; }
  .table_type_1 caption {
    text-align: center;
    color: #fff;
    background: #ccc;
    padding: 5px; }
  .table_type_1 caption + tbody tr:first-child {
    border-top: none !important; }
  .table_type_1 tr {
    border-top: 1px dotted #ccc; }
  .table_type_1 tr:last-child {
    border-bottom: 1px dotted #ccc; }
  .table_type_1 th, .table_type_1 td {
    padding: 10px 20px;
    vertical-align: top; }
  .table_type_1 th {
    position: relative;
    width: 20%;
    white-space: nowrap; }
  .table_type_1 th::before {
    position: absolute;
    content: '';
    top: 10px;
    right: 0;
    width: 2px;
    height: calc(100% - 20px);
    background: #ccc; }
  .table_type_1 ul:not(.caution_list) li {
    position: relative;
    padding-left: 1em; }
  .table_type_1 ul:not(.caution_list) li::before {
    position: absolute;
    content: '';
    top: 0.7em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #ccc; }

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	一覧ページ 【archive】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.search_title {
  font-size: 1.2rem;
  margin-bottom: 60px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc; }

/*--------------------------------------------------------------
	pagination
--------------------------------------------------------------*/
/* 1234 */
.pagination {
  clear: both;
  text-align: center;
  margin-top: 60px; }
  .pagination * {
    vertical-align: middle; }
  .pagination li {
    display: inline-block;
    border: 1px solid #dedede;
    margin-right: 5px;
    border-radius: 3px; }
  .pagination li:last-child {
    margin-right: 0; }
  .pagination li a {
    display: block; }
  .pagination .page_all {
    padding: 5px 10px; }
  .pagination .first,
  .pagination .prev,
  .pagination .next,
  .pagination .last,
  .pagination .pager {
    min-width: 40px;
    padding: 5px; }
  .pagination li a:hover,
  .pagination .active {
    color: #fff !important;
    background: #dedede; }

/* 古い記事｜新しい記事 □ □ */
.pagination_prev_next {
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc; }
  .pagination_prev_next .prev,
  .pagination_prev_next .next,
  .pagination_prev_next .no {
    display: inline-block;
    width: 50%;
    color: #999; }
  .pagination_prev_next .img_box {
    width: 50px; }
  .pagination_prev_next .prev *,
  .pagination_prev_next .next * {
    display: inline-block; }
  .pagination_prev_next .next {
    text-align: right;
    border-left: 1px solid #ccc;
    min-height: 50px; }
  .pagination_prev_next p {
    width: calc(100% - 70px);
    padding: 10px;
    font-size: 0.8rem; }
  .pagination_prev_next img {
    transition: 0.35s ease; }
  .pagination_prev_next a:hover img {
    transform: scale(1.2); }

/* 古い記事｜新しい記事 < > */
/*
.pagination_prev_next_simple { margin-top:40px; padding:10px 0; border-top:1px solid #dedede; }
.pagination_prev_next_simple .prev,
.pagination_prev_next_simple .next,
.pagination_prev_next_simple .no { display:inline-block; width:50%; color:$text_sub_color; }
.pagination_prev_next_simple .prev { text-align:right; padding:10px 20px 10px 10px; background:url("common/img/arrow_r_black.svg") no-repeat right top 18px; background-size:10px; }
.pagination_prev_next_simple .next { text-align:left; padding:10px 10px 10px 20px; background:url("common/img/arrow_l_black.svg") no-repeat left top 18px; background-size:10px; }
/* hover */
           /*
.pagination_prev_next_simple a.prev:hover { color:$key_color; background-image:url("common/img/arrow_r_red.svg"); }
.pagination_prev_next_simple a.next:hover { color:$key_color; background-image:url("common/img/arrow_l_red.svg"); }
*/
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	記事ページ 【single】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#articleDetail {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  /* 記事 */
  /* 記事データ */
  /* カテゴリー */
  /* タグ */
  /* SNS */ }
  #articleDetail #eyecatchImg {
    margin-bottom: 60px; }
  #articleDetail #articleTitle {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 20px; }
  #articleDetail .post_text_block {
    overflow: hidden;
    margin-bottom: 20px; }
    #articleDetail .post_text_block a {
      color: #af0303; }
    #articleDetail .post_text_block a:hover {
      color: #af0303; }
  #articleDetail .post_data_block {
    overflow: hidden; }
    #articleDetail .post_data_block * {
      font-size: 0.8rem;
      color: #999;
      line-height: 1; }
    #articleDetail .post_data_block .author {
      float: left; }
    #articleDetail .post_data_block time {
      float: right;
      padding-left: 20px;
      background: url("../common/img/icon_time.svg") top left no-repeat;
      background-size: 12px; }
  #articleDetail .category_list {
    margin-bottom: 20px; }
  #articleDetail .tag_list {
    font-size: 0.8rem;
    margin-top: 30px; }
  #articleDetail #singleSnsBlock {
    text-align: center;
    margin-top: 60px; }

/*-------------------- blog --------------------*/
/* タグ */
.tag_list {
  padding-left: 25px;
  background: url("../common/img/icon_tag.svg") top 3px left no-repeat;
  background-size: 16px;
  margin-top: 5px; }
  .tag_list li {
    position: relative;
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 0 10px 0 0; }
  .tag_list li::before {
    position: absolute;
    content: '｜';
    right: -0.5em;
    color: #999; }
  .tag_list li:last-child::before {
    content: ''; }
  .tag_list a {
    color: #999; }

/* 関連記事 */
#relatedBlock {
  position: relative;
  margin-top: 120px;
  padding: 60px 0;
  background: #f7f4e6; }
  #relatedBlock h2 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 30px; }

/*-------------------- works --------------------*/
#voiceBlock {
  margin-top: 60px; }
  #voiceBlock .adjust_box {
    margin-bottom: 60px !important; }
  #voiceBlock section {
    margin-bottom: 40px; }
  #voiceBlock section:last-child {
    margin-bottom: 0; }

/*-------------------- event --------------------*/
#eventSingle .map_box {
  margin-top: 60px; }
  #eventSingle .map_box iframe {
    width: 100%;
    height: 400px; }

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	 404 【404】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#notfoundBlock {
  text-align: center;
  font-weight: bold;
  color: #AEAEAE;
  margin: 60px auto 120px; }
  #notfoundBlock h2 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1; }
  #notfoundBlock p {
    font-size: 30px;
    font-weight: 700; }

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	お問い合わせ【contactPage】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#contactPage,
#requestPage {
  /* but */
  /*--------------------
  <div class="but_submit">
  <input type="submit" value="確認" class="wpcf7-form-control wpcf7-confirm form_check wpcf7c-elm-step1 wpcf7c-btn-confirm wpcf7c-force-hide" />
  <input type="button" value="戻る" class="wpcf7-form-control wpcf7-back form_back wpcf7c-elm-step2 wpcf7c-btn-back wpcf7c-force-hide" />
  <input type="submit" value="送信" class="wpcf7-form-control wpcf7-submit form_send" /></div>
  --------------------*/
  /* コンタクトフォーム用 */
  /* ERROR */
  /* 確認画面 */
  /* 完了画面 */ }
  #contactPage .lead_box,
  #requestPage .lead_box {
    margin-bottom: 30px; }
    #contactPage .lead_box p,
    #requestPage .lead_box p {
      text-align: center; }
  #contactPage .tel_box,
  #requestPage .tel_box {
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px 10px;
    margin-bottom: 60px; }
    #contactPage .tel_box h4,
    #requestPage .tel_box h4 {
      display: inline-block;
      margin: 15px 20px 0 0; }
    #contactPage .tel_box div,
    #requestPage .tel_box div {
      display: inline-block;
      margin: 0 auto; }
    #contactPage .tel_box .tel,
    #requestPage .tel_box .tel {
      font-size: 3rem;
      line-height: 1;
      margin-bottom: 10px; }
      #contactPage .tel_box .tel span,
      #requestPage .tel_box .tel span {
        display: inline-block;
        width: 40px;
        height: 40px;
        margin: 3px 10px 0 0;
        background: url("../common/img/icon_tel.svg") center no-repeat #999;
        background-size: 30px;
        border-radius: 5px; }
  #contactPage #contactBlock,
  #requestPage #contactBlock {
    margin-bottom: 120px;
    /* 出店依頼　イベント情報 */ }
    #contactPage #contactBlock .required,
    #requestPage #contactBlock .required {
      color: #DD0000;
      margin-bottom: 20px; }
    #contactPage #contactBlock table,
    #requestPage #contactBlock table {
      width: 100%;
      border: none;
      border-bottom: 1px dotted #ccc;
      margin-bottom: 40px; }
    #contactPage #contactBlock tr,
    #requestPage #contactBlock tr {
      border-top: 1px dotted #ccc; }
    #contactPage #contactBlock th,
    #contactPage #contactBlock td,
    #requestPage #contactBlock th,
    #requestPage #contactBlock td {
      border: none;
      padding: 30px 10px; }
    #contactPage #contactBlock th,
    #requestPage #contactBlock th {
      padding-top: 40px; }
    #contactPage #contactBlock th sup,
    #requestPage #contactBlock th sup {
      color: #DD0000; }
    #contactPage #contactBlock .w100px,
    #requestPage #contactBlock .w100px {
      width: 100px; }
    #contactPage #contactBlock .w100,
    #requestPage #contactBlock .w100 {
      width: 100%; }
    #contactPage #contactBlock .zip span,
    #requestPage #contactBlock .zip span {
      vertical-align: middle; }
    #contactPage #contactBlock .zip input,
    #requestPage #contactBlock .zip input {
      margin: 0 10px; }
    #contactPage #contactBlock .example,
    #requestPage #contactBlock .example {
      color: #999; }
    #contactPage #contactBlock .headline th,
    #requestPage #contactBlock .headline th {
      text-align: center;
      color: #fff;
      background: #ccc; }
  #contactPage .but_submit,
  #requestPage .but_submit {
    text-align: center; }
    #contactPage .but_submit input[type="submit"],
    #requestPage .but_submit input[type="submit"] {
      position: relative;
      display: inline-block;
      width: 300px;
      margin: 40px auto 0;
      padding: 20px;
      border: 1px solid #af0303;
      transition: background-color .3s ease;
      background: #af0303;
      color: #fff;
      cursor: pointer; }
    #contactPage .but_submit .form_back,
    #requestPage .but_submit .form_back {
      padding: 20px 40px;
      cursor: pointer;
      margin-right: 10px; }
    #contactPage .but_submit input[type="submit"]:hover,
    #requestPage .but_submit input[type="submit"]:hover {
      color: #af0303;
      background: #fff; }
    #contactPage .but_submit input[type="button"],
    #requestPage .but_submit input[type="button"] {
      position: relative;
      display: inline-block;
      margin: 40px 20px 0 0;
      padding: 20px;
      border: 1px solid #999;
      transition: background-color .3s ease;
      background: #fff;
      color: #333;
      cursor: pointer; }
    #contactPage .but_submit .form_back,
    #requestPage .but_submit .form_back {
      padding: 20px 40px;
      cursor: pointer; }
    #contactPage .but_submit input[type="button"]:hover,
    #requestPage .but_submit input[type="button"]:hover {
      color: #fff;
      background: #999; }
  #contactPage span.wpcf7-not-valid-tip,
  #requestPage span.wpcf7-not-valid-tip {
    color: #DD0000 !important; }
  #contactPage div.wpcf7-response-output.wpcf7-validation-errors,
  #requestPage div.wpcf7-response-output.wpcf7-validation-errors {
    border-color: #DD0000 !important;
    color: #DD0000 !important; }
  #contactPage input.wpcf7c-conf,
  #contactPage textarea.wpcf7c-conf,
  #requestPage input.wpcf7c-conf,
  #requestPage textarea.wpcf7c-conf {
    border: 0;
    padding: 0;
    background: #fff !important; }
  #contactPage #thanksBlock,
  #requestPage #thanksBlock {
    text-align: center;
    　margin-bottom: 120px; }
    #contactPage #thanksBlock h4,
    #requestPage #thanksBlock h4 {
      font-size: 1.4rem; }
    #contactPage #thanksBlock p,
    #requestPage #thanksBlock p {
      margin-bottom: 60px; }

@media screen and (max-width: 768px) {
  	/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  
  		common　
  
  	//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  html {
    font-size: 14px;
    line-height: 1.6; }

  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto; }

  .spBr {
    display: block; }

  .spNoBr {
    display: none; }

  .pc {
    display: none; }

  .sp {
    display: block; }

  .column_l {
    float: none; }

  .column_r {
    float: none; }

  .container {
    width: 90%; }

  /*--------------------------------------------------------------
  	header
  --------------------------------------------------------------*/
  #headerBlock h1 {
    padding: 10px; }

  /* 三 */
  /*--------------------------------------------------------------
  	nav
  --------------------------------------------------------------*/
  #globalNavBlock {
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 60px 20px; }

  #globalNav #globalNavLeft,
  #globalNav #globalNavRight {
    float: none;
    width: 100%; }
  #globalNav #globalNavLeft {
    margin-right: 0; }

  .openNav #globalNavMaskBlock {
    display: none; }

  /*--------------------------------------------------------------
  	butBlock □□□□
  --------------------------------------------------------------*/
  #butBlock {
    width: 100%; }
    #butBlock li {
      width: calc((100% - 3px)/4); }
    #butBlock a {
      width: 100%;
      padding: 40px 0 10px 0; }

  /*--------------------------------------------------------------
  	footer
  --------------------------------------------------------------*/
  footer #addressBlock {
    position: relative;
    height: 70vh; }
    footer #addressBlock address {
      position: absolute;
      bottom: 0;
      width: 100%;
      margin-left: 0;
      padding: 40px; }
  footer #copyrightBlock {
    margin-bottom: 70px; }

  /* SNS */
  /* banner */
  #footerBannerList li {
    float: none;
    margin: 0 0 10px 0;
    width: 100%; }
  #footerBannerList img {
    max-width: 100%; }

  /* pageTop */
  /*--------------------------------------------------------------
  	main
  --------------------------------------------------------------*/
  /*-------------------- mainBlock_1Block --------------------*/
  /*-------------------- column_2Block --------------------*/
  #column_2Block {
    overflow: visible; }
    #column_2Block #mainBlock {
      float: none;
      width: 100%; }
    #column_2Block #sidebarBlock {
      float: none;
      width: 100vw;
      margin: 30px calc(50% - 50vw) 0; }

  /*--------------------------------------------------------------
  	parts
  --------------------------------------------------------------*/
  /* page title */
  #titleBlock {
    padding: 80px 0 60px;
    /*&::before { }*/ }
    #titleBlock h2.page_title {
      font-size: 24px; }
    #titleBlock h2.page_title::before {
      width: 60px; }

  /* lead_box */
  .lead_box {
    margin-bottom: 30px; }
    .lead_box h3 {
      font-size: 1.5rem; }
    .lead_box h4 {
      font-size: 0.8rem;
      margin-top: 0; }
    .lead_box p {
      margin-top: 30px;
      text-align: left; }

  /* list */
  .list li::before {
    top: 0.5rem; }

  /*-------------------- ボタン --------------------*/
  /* ボタン -> */
  /* ボタン □-> */
  .but_more a {
    margin-top: 30px; }

  /*-------------------- 記事リスト --------------------*/
  /* img_box */
  .img_box {
    overflow: hidden; }

  /* data_box */
  .data_box .title {
    margin-bottom: 5px; }

  .archive_list li:hover .img_box img {
    transform: scale(1.2); }

  .archive_list a:hover {
    color: #000 !important; }

  /* archive_list */
  .archive_list > li {
    float: none;
    margin: 0 0 20px 0; }
  .archive_list.column_3 > li {
    width: 100%; }

  /* adjust_box */
  .adjust_box .data_box {
    padding: 10px; }
    .adjust_box .data_box .title {
      font-size: 1rem; }

  /* カテゴリー */
  /* イベント 予告・開催中・終了 */
  /*-------------------- パンくず --------------------*/
  #breadcrumbBlock {
    margin: 20px auto 30px; }

  /*-------------------- table --------------------*/
  /* table_type_1 */
  	/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  
  		一覧ページ 【archive】
  
  	//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  .search_title {
    font-size: 1.2rem;
    margin-bottom: 60px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc; }

  /*--------------------------------------------------------------
  	pagination
  --------------------------------------------------------------*/
  /* 1234 */
  .pagination {
    margin-top: 30px; }

  /* 古い記事｜新しい記事 □ □ */
  /* 古い記事｜新しい記事 < > */
  /*
  .pagination_prev_next_simple { margin-top:40px; padding:10px 0; border-top:1px solid #dedede; }
  .pagination_prev_next_simple .prev,
  .pagination_prev_next_simple .next,
  .pagination_prev_next_simple .no { display:inline-block; width:50%; color:$text_sub_color; }
  .pagination_prev_next_simple .prev { text-align:right; padding:10px 20px 10px 10px; background:url("common/img/arrow_r_black.svg") no-repeat right top 18px; background-size:10px; }
  .pagination_prev_next_simple .next { text-align:left; padding:10px 10px 10px 20px; background:url("common/img/arrow_l_black.svg") no-repeat left top 18px; background-size:10px; }
  /* hover */
           /*
.pagination_prev_next_simple a.prev:hover { color:$key_color; background-image:url("common/img/arrow_r_red.svg"); }
.pagination_prev_next_simple a.next:hover { color:$key_color; background-image:url("common/img/arrow_l_red.svg"); }
*/
  	/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  
  		記事ページ 【single】
  
  	//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  #articleDetail {
    margin-bottom: 30px;
    /* 記事 */
    /* 記事データ */
    /* カテゴリー */
    /* タグ */
    /* SNS */ }
    #articleDetail #eyecatchImg {
      margin-bottom: 20px; }
    #articleDetail #articleTitle {
      font-size: 1.5rem;
      margin-bottom: 20px; }
    #articleDetail .post_data_block * {
      font-size: 0.9rem; }
    #articleDetail .tag_list {
      font-size: 0.9rem;
      margin-top: 20px; }
    #articleDetail #singleSnsBlock {
      margin-top: 30px; }

  /*-------------------- blog --------------------*/
  /* タグ */
  /* 関連記事 */
  #relatedBlock {
    margin-top: 60px;
    /*&::before { }*/ }
    #relatedBlock h2 {
      font-size: 1.75rem; }

  /*-------------------- works --------------------*/
  #voiceBlock .adjust_box {
    margin-bottom: 20px !important; }
  #voiceBlock section {
    margin-bottom: 20px; }

  /*-------------------- event --------------------*/
  	/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  
  		 404 【404】
  
  	//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  #notfoundBlock {
    margin: 30px auto 60px; }

  	/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  
  		お問い合わせ【contactPage】
  
  	//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  #contactPage,
  #requestPage {
    /* 資料請求 */
    /* but */
    		/*
    		.but_submit { 
    			input[type="submit"] { }
    			.form_back { }
    			// hover
    			input[type="submit"]:hover { }
    
    			input[type="button"] { }
    			.form_back { }
    			// hover
    			input[type="button"]:hover { }
    		}
    		*/
    /* ERROR */
    /* 確認画面 */
    /* 完了画面 */ }
    #contactPage .lead_box,
    #requestPage .lead_box {
      margin-bottom: 30px; }
      #contactPage .lead_box p,
      #requestPage .lead_box p {
        text-align: left; }
    #contactPage .tel_box,
    #requestPage .tel_box {
      margin-bottom: 30px; }
      #contactPage .tel_box h4,
      #requestPage .tel_box h4 {
        margin: 0 0 10px 0; }
      #contactPage .tel_box .tel,
      #requestPage .tel_box .tel {
        font-size: 2rem; }
        #contactPage .tel_box .tel span,
        #requestPage .tel_box .tel span {
          width: 30px;
          height: 30px;
          margin: 0 10px 0 0;
          background-size: 20px; }
    #contactPage #contactBlock,
    #requestPage #contactBlock {
      margin-bottom: 60px;
      /* 資料請求 */ }
      #contactPage #contactBlock .required,
      #requestPage #contactBlock .required {
        margin-bottom: 10px; }
      #contactPage #contactBlock table,
      #requestPage #contactBlock table {
        margin-bottom: 20px; }
      #contactPage #contactBlock th,
      #contactPage #contactBlock td,
      #requestPage #contactBlock th,
      #requestPage #contactBlock td {
        display: block;
        padding: 0; }
      #contactPage #contactBlock th,
      #requestPage #contactBlock th {
        padding-top: 10px;
        padding-bottom: 10px; }
      #contactPage #contactBlock td,
      #requestPage #contactBlock td {
        padding-bottom: 20px; }
      #contactPage #contactBlock .example,
      #requestPage #contactBlock .example {
        margin-top: 5px; }
      #contactPage #contactBlock input,
      #requestPage #contactBlock input {
        width: 100%; }
      #contactPage #contactBlock ul li,
      #requestPage #contactBlock ul li {
        display: block;
        margin-bottom: 10px; }
      #contactPage #contactBlock .document_form td label + div,
      #requestPage #contactBlock .document_form td label + div {
        margin-top: 10px; }
      #contactPage #contactBlock .document_form td label,
      #requestPage #contactBlock .document_form td label {
        font-size: 14px; }
      #contactPage #contactBlock .document_form .img_box,
      #requestPage #contactBlock .document_form .img_box {
        float: none;
        width: 100%;
        margin: 10px auto;
        text-align: center; }
      #contactPage #contactBlock .document_form .data_box,
      #requestPage #contactBlock .document_form .data_box {
        float: none;
        width: 100%;
        margin: 0; } }
