@charset "UTF-8";
/* =================================================================
* Each 各ページ
================================================================= */
/* --- color --- */
/* -----------------------------------------------------------------
* Common
----------------------------------------------------------------- */
/* --- Tab --- */
.nav-tabs {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px 45px -15px;
  border-bottom-width: 0;
}

.nav-tabs .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 0 15px;
  text-align: center;
}

.nav-tabs .nav-link {
  padding: .5em;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover, .nav-tabs .nav-link.active {
  border-color: rgba(0, 0, 0, 0.5);
  color: #d8061a;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
  .nav-tabs {
    margin-left: -5px;
    margin-right: -5px;
  }
  .nav-tabs .nav-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.tab-title {
  margin-bottom: 55px;
  font-size: 2rem;
  text-align: center;
  color: #fff100;
}

/* --- Dropdown --- */
.dropdown {
  width: 15rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
}

.dropdown-toggle {
  width: 100%;
  padding: .5em;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.dropdown-toggle::after {
  width: 7px;
  height: 5px;
  margin-left: .5em;
  border-width: 0;
  background: transparent url(../img/home/icon_arrow-down.svg) no-repeat center center;
  background-size: contain;
}

.dropdown-toggle:focus, .dropdown-toggle:hover, .dropdown-toggle:active, .dropdown-toggle.active {
  border-color: rgba(0, 0, 0, 0.5);
  color: #d8061a;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.5);
}

.dropdown-toggle:focus::after, .dropdown-toggle:hover::after, .dropdown-toggle:active::after, .dropdown-toggle.active::after {
  width: 5px;
  height: 7px;
  background: transparent url(../img/home/icon_arrow-right.svg) no-repeat center center;
  background-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.dropdown-menu {
  margin-top: 0;
  left: -1px;
  right: -1px;
  text-align: center;
  border-radius: 0;
}

.dropdown-item:focus, .dropdown-item:hover, .dropdown-item:active, .dropdown-item.active {
  border-color: rgba(0, 0, 0, 0.5);
  color: #d8061a;
  background-color: #f7f7f7;
}

/* --- Entry --- */
.entry-wrap {
  margin-left: -15px;
  margin-right: -15px;
}

.entry-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
}

.entry-box {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.8);
  background: #191919;
  padding: 0 0 22px;
}

.entry-box .pic {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 30px;
  padding: 0;
  text-align: center;
}

.entry-box .pic::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.entry-box .pic .img-fluid {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  max-width: none;
  width: auto;
  height: 100%;
}

.entry-box .title {
  margin-left: 22px;
  margin-right: 22px;
  margin-bottom: 30px;
  font-size: 1.5rem;
  color: #d6d4a9;
  text-align: center;
}

.entry-box .txt {
  margin-left: 22px;
  margin-right: 22px;
  margin-bottom: 25px;
  word-break: break-word;
}

.entry-box .ts {
  margin-top: auto;
  margin-left: 22px;
  margin-right: 22px;
  padding-top: 15px;
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
  text-align: center;
}

.entry-box:focus, .entry-box:hover, .entry-box:active, .entry-box.active {
  color: #fff;
  background: #000;
}

.entry-box:focus .title, .entry-box:hover .title, .entry-box:active .title, .entry-box.active .title {
  color: #d8061a;
}

.entry-list {
  margin-top: 30px;
  margin-bottom: 30px;
  list-style: none;
  padding-left: 0;
}

.entry-list:last-child {
  margin-bottom: 0;
}

.entry-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.2);
}

.entry-list li + li {
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
}

.entry-list .ts, .entry-list .title, .entry-list .btn {
  margin-bottom: 0;
}

.entry-list .ts {
  width: 6rem;
}

.entry-list .title {
  margin-left: 1rem;
  font-size: 1.2rem;
  color: #d6d4a9;
}

.entry-list .btn {
  margin-left: auto;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.1);
}

.entry-list .btn:focus, .entry-list .btn:hover, .entry-list .btn:active, .entry-list .btn.active {
  color: #d8061a;
  border-color: rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.5);
}

/* --- Detail --- */
#contents-area {
  margin-top: 132px;
  padding-bottom: 90px;
  display: block;
}

@media only screen and (max-width: 991px) {
  #contents-area {
    margin-top: 50px;
  }
}

#contents-area .ts {
  margin-bottom: 30px;
}

#contents-area .entry-box .ts, #contents-area .entry-list .ts {
  margin-bottom: 0;
}

#contents-header {
  margin-bottom: 55px;
  text-align: center;
}

#contents-header .pic {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 90px;
}

#contents-header .pic img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  #contents-header .pic {
    height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  #contents-header .pic {
    height: 300px;
  }
}

@media only screen and (max-width: 575px) {
  #contents-header .pic {
    height: 200px;
  }
}

/* --- Contents-header --- */
#activity #contents-header, #faq #contents-header, #news #contents-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 500px;
  margin-bottom: 90px;
  background: url(../../img/home/img_mv_smoke.png) no-repeat center bottom, url(../../img/home/bg_mv.jpg) no-repeat center top;
  background-size: 100% auto, cover;
}

#activity #contents-header h1, #activity #contents-header .h1, #faq #contents-header h1, #faq #contents-header .h1, #news #contents-header h1, #news #contents-header .h1 {
  margin-bottom: 60px;
  color: #fff;
}

@media (min-width: 1920px) {
  #activity #contents-header, #faq #contents-header, #news #contents-header {
    background: url(../../img/home/img_mv_smoke.png) no-repeat center 200px, url(../../img/home/bg_mv.jpg) no-repeat center top;
    background-size: 100% auto, cover;
  }
}

@media only screen and (max-width: 1190px) {
  #activity #contents-header, #faq #contents-header, #news #contents-header {
    height: 400px;
    background-size: 120% auto, cover;
  }
}

@media only screen and (max-width: 991px) {
  #activity #contents-header, #faq #contents-header, #news #contents-header {
    background-size: 140% auto, cover;
  }
}

@media only screen and (max-width: 767px) {
  #activity #contents-header, #faq #contents-header, #news #contents-header {
    margin-bottom: 55px;
    height: 300px;
  }
}

@media only screen and (max-width: 575px) {
  #activity #contents-header, #faq #contents-header, #news #contents-header {
    height: 200px;
    background-size: 120% auto, cover;
  }
  #activity #contents-header h1, #faq #contents-header h1, #news #contents-header h1 {
    margin-bottom: 30px;
  }
}

#activity .section-heading h2, #faq .section-heading h2, #news .section-heading h2 {
  color: #fff;
}

#activity .entry-box .title, #faq .entry-box .title, #news .entry-box .title {
  font-size: 1.2rem;
}

/* -----------------------------------------------------------------
* Experience
----------------------------------------------------------------- */
/* -----------------------------------------------------------------
* Activity
----------------------------------------------------------------- */
/* --- mordal detail-modal --- */
#detail-modal .modal-header {
  border-bottom-width: 0;
}

#detail-modal .modal-header .pic {
  position: relative;
}

#detail-modal .modal-header .pic img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

#detail-modal .modal-header .pic .category {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em .5em;
  background-color: #000;
}

#detail-modal .modal-header .ts {
  color: #333;
}

#detail-modal .entry-content p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------
* Access
----------------------------------------------------------------- */
.map {
  position: relative;
}

.map img {
  margin-bottom: 0;
}

.map .nagoya-castle,
.map .centrair {
  display: block;
  position: absolute;
  left: 0;
  height: 30%;
  width: 100%;
  overflow: hidden;
  text-indent: -200%;
}

.map .nagoya-castle {
  top: 0;
}

.map .centrair {
  bottom: 0;
}

/* -----------------------------------------------------------------
* Faq
----------------------------------------------------------------- */
#faq-list .dropdown {
  width: 22em;
  max-width: 100%;
}

#faq-list h2 {
  margin-top: 55px;
  font-size: 2rem;
  text-align: center;
  color: #fff100;
}

#faq-list dl {
  padding: 22px 20px 20px;
  background-color: #191919;
}

#faq-list dt {
  margin-bottom: 15px;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #d6d4a9;
}

#faq-list dd + dd {
  margin-top: 10px;
}

#faq-list dd > ul {
  margin-top: 15px;
  padding-left: 1.3em;
}

#faq-list dd > ul li + li {
  margin-top: 5px;
}

#faq-list dd p {
  margin-bottom: .5rem;
  line-height: 1.6;
}

#faq-list dd + dt {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
}

#faq-list dl dl {
  padding: 0 0 0 1rem;
  margin: 15px 0 .5rem;
}

#faq-list dl dl dt {
  border-top: none;
  margin: 0 0 .5rem;
  font-size: 1rem;
}

#faq-list dl dl dd + dt {
  padding-top: 0;
  margin-top: 15px;
}

/* -----------------------------------------------------------------
* News
----------------------------------------------------------------- */
.entry-date {
  display: block;
}

/* List */
#news-list {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
}

#news-list li {
  margin-bottom: 0;
  padding-left: 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

#news-list .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

@media only screen and (max-width: 767px) {
  #news-list .content {
    display: block;
  }
}

#news-list a.content {
  position: relative;
  padding-right: 2.5rem;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

#news-list a.content::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  width: 8px;
  height: 11px;
  margin: auto;
  background: url("/img/home/icon_arrow-right.svg") no-repeat center center/contain;
}

#news-list .entry-date {
  width: 8.5em;
}

@media only screen and (max-width: 767px) {
  #news-list .entry-date {
    margin-bottom: .5rem;
  }
}

#news-list .entry-title {
  width: calc(100% - 8.5em);
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  #news-list .entry-date, #news-list .entry-title {
    min-width: 0;
  }
}

@media only screen and (max-width: 767px) {
  #news-list .entry-date, #news-list .entry-title {
    width: auto;
  }
}

#news-list .new {
  display: inline-block;
  margin-left: .5rem;
  color: #d61518;
  font-size: .8em;
}

/* Entry Post */
#news.post #contents-area .entry-title {
  margin-bottom: 55px;
  font-size: 2rem;
  text-align: center;
  color: #fff100;
}

@media only screen and (max-width: 767px) {
  #news.post #contents-area .entry-title {
    margin-bottom: 40px;
  }
}

#news.post #contents-area .entry-date {
  margin-bottom: 30px;
  text-align: right;
}

#news.post #contents-area .entry-content h2, #news.post #contents-area .entry-content h3, #news.post #contents-area .entry-content h4, #news.post #contents-area .entry-content h5 {
  margin-bottom: 20px;
  color: inherit;
}

#news.post #contents-area .entry-content * + h2, #news.post #contents-area .entry-content * + h3, #news.post #contents-area .entry-content * + h4, #news.post #contents-area .entry-content * + h5 {
  margin-top: 30px;
}

#news.post #contents-area .entry-content .h2, #news.post #contents-area .entry-content h2 {
  font-size: 1.75rem;
}

#news.post #contents-area .entry-content .h3, #news.post #contents-area .entry-content h3 {
  font-size: 1.5rem;
}

#news.post #contents-area .entry-content .h4, #news.post #contents-area .entry-content h4 {
  font-size: 1.25rem;
}

#news.post #contents-area .entry-content .h5, #news.post #contents-area .entry-content h5 {
  font-size: 1.15rem;
}

#news.post #contents-area .entry-content p, #news.post #contents-area .entry-content ul, #news.post #contents-area .entry-content ol, #news.post #contents-area .entry-content dl {
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  #news.post #contents-area .entry-content p, #news.post #contents-area .entry-content ul, #news.post #contents-area .entry-content ol, #news.post #contents-area .entry-content dl {
    font-size: 18px;
  }
}

#news.post #contents-area .entry-content + .btn-list {
  margin-top: 55px;
}

@media only screen and (max-width: 767px) {
  #news.post #contents-area .entry-content + .btn-list {
    margin-top: 40px;
  }
}
