@charset "UTF-8";
/* ==============================
  base
============================== */
.breadcrumb__wrap {
  background-color: #dfdfdf;
  margin-bottom: 30px;
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 0;
}

.breadcrumb__item {
  margin-right: 10px;
  font-size: 12px;
  position: relative;
}

.breadcrumb__item a {
  color: #111;
  font-size: 12px;
  text-decoration: underline;
  padding-right: 10px;
  display: block;
}

.breadcrumb__item::after {
  content: '>';
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.breadcrumb__item:last-child {
  margin-right: 0;
}

.breadcrumb__item:last-child::after {
  content: none;
}

/****************
header/kv
******************/
.header__nav {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(53, 35, 28, 0.7);
  padding: 15px 15px 5px;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .header__nav {
    display: none;
  }
}

.header__nav--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.header__nav--title {
  margin-right: 25px;
  font-size: 1.4vmin;
  width: 8vw;
}

.header__nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav--item {
  margin-right: 15px;
  margin-bottom: 10px;
  width: auto;
  border: none;
}

.header__nav--item a {
  color: #111;
  font-size: 1.4vmin;
  background: #fff;
  padding: 8px 25px 8px 35px;
  border-radius: 50px;
  display: block;
  position: relative;
}

.header__nav--item a::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6.1px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__nav--item a:hover::after {
  content: none;
}

.header__kv--wrap {
  padding: 110px 30px 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

@media screen and (max-width: 800px) {
  .header__kv--wrap {
    padding: 20px 15px;
  }
}

.header__kv--wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.header__kv--box {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 800px) {
  .header__kv--box {
    padding: 15px;
  }
}

.header__kv--title {
  font-size: 5vmin;
  margin-bottom: 20px;
  max-width: 940px;
}

@media screen and (max-width: 800px) {
  .header__kv--title {
    font-size: 6vmin;
  }
}

.header__kv--title-sub {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
  .header__kv--title-sub {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.header__kv--read {
  font-size: 18px;
  line-height: 1.8;
}

@media screen and (max-width: 800px) {
  .header__kv--read {
    font-size: 12px;
  }
}

.header__content {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/****************
section area menu
******************/
.section__area {
  padding-bottom: 40px;
}

.section__area--head {
  margin-bottom: 30px;
}

.section__area--title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 800px) {
  .section__area--title {
    font-size: 22px;
  }
}

.section__area--title::before {
  content: '';
  width: 40%;
  height: 1px;
  background: #111;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 800px) {
  .section__area--title::before {
    width: 35%;
  }
}

.section__area--title::after {
  content: '';
  width: 40%;
  height: 1px;
  background: #111;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 800px) {
  .section__area--title::after {
    width: 35%;
  }
}

.area__menu--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.area__menu--item {
  max-width: 32.3%;
  border: 1px solid #666;
  margin-right: 15px;
  margin-bottom: 10px;
}

@media screen and (max-width: 800px) {
  .area__menu--item {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.area__menu--item:last-child {
  margin-right: 0;
}

.area__menu--item:nth-child(3n) {
  margin-right: 0;
}

.area__menu--inner {
  padding: 15px;
}

.area__menu--name {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .area__menu--name {
    font-size: 16px;
  }
}

.area__menu--discription {
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn__sectionMove--list {
  border-top: 1px solid #111;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn__sectionMove--item {
  width: 48%;
  margin-right: 15px;
}

.btn__sectionMove--item:last-child {
  margin-right: 0;
}

.btn__sectionMove--item a {
  padding: 8px 20px 10px 40px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: #d6001d;
  -webkit-box-shadow: 0 4px 0 0 #222;
          box-shadow: 0 4px 0 0 #222;
  border-radius: 50px;
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn__sectionMove--item a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.btn__sectionMove--item a.tourism {
  background-image: url("../img/fda/icon-btn-tourism.png");
  background-size: 16px;
  background-position: 20px center;
  background-repeat: no-repeat;
}

.btn__sectionMove--item a.tour {
  background-image: url("../img/fda/icon-btn-tour.png");
  background-size: 16px;
  background-position: 20px center;
  background-repeat: no-repeat;
}

/****************
section 観光情報
******************/
.section__tourism {
  background: #f3f2f2;
  padding: 40px 0;
}

.section__title {
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 3.5px;
  color: #3b3028;
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 5px solid #716243;
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {
  .section__title {
    font-size: 22px;
    padding-bottom: 8px;
    width: 100%;
  }
}

.section__title.tourism {
  background: url("../img/fda/icon-title-tourism.svg") no-repeat right bottom;
  background-size: 10%;
}

@media screen and (max-width: 800px) {
  .section__title.tourism {
    background-size: 14%;
  }
}

@media screen and (max-width: 600px) {
  .section__title.tourism {
    background-size: 19%;
  }
}

.tourism__area--item {
  margin-bottom: 30px;
  position: relative;
}

.tourism__area--item:last-child {
  margin-bottom: 0;
}

.tourism__area--head {
  margin-bottom: 20px;
}

.tourism__area--name {
  font-size: 28px;
  font-weight: bold;
  border-left: 5px solid #d6001d;
  padding: 5px 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
  .tourism__area--name {
    font-size: 20px;
  }
}

.tourism__area--galleryWrap {
  margin: 0;
  padding: 0;
}

.tourism__area--section {
  display: none;
  margin: 0;
  padding: 0;
}

.tourism__area--section.active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@media screen and (max-width: 800px) {
  .tourism__area--section.active {
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
  }
}

.tourism__area--read {
  font-size: 24px;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .tourism__area--read {
    font-size: 16px;
  }
}

.tourism__area--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 18vw;
}

@media screen and (max-width: 1200px) {
  .tourism__area--inner {
    height: 22vw;
  }
}

@media screen and (max-width: 800px) {
  .tourism__area--inner {
    height: auto;
    display: block;
    margin-bottom: 15px;
  }
}

.tourism__area--img {
  width: 27vw;
  height: 18vw;
}

@media screen and (max-width: 1200px) {
  .tourism__area--img {
    height: 22vw;
  }
}

@media screen and (max-width: 800px) {
  .tourism__area--img {
    width: 100%;
    margin-bottom: 5px;
    height: auto;
  }
}

.tourism__area--img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 800px) {
  .tourism__area--img img {
    height: auto;
  }
}

.tourism__area--note {
  width: 56vw;
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 1366px) {
  .tourism__area--note {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .tourism__area--note {
    width: 66vw;
  }
}

@media screen and (max-width: 800px) {
  .tourism__area--note {
    width: 100%;
    font-size: 12px;
  }
}

.gallery__list {
  position: absolute;
  bottom: 0;
  left: 29vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 800px) {
  .gallery__list {
    position: relative;
    left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 42px;
  }
}

.gallery__list::before {
  content: '※画像にカーソルを合わせると切り替わります。クリックすると表示が固定されます。';
  font-size: 12px;
  color: #666;
  border: 1px solid #666;
  border-radius: 50px;
  padding: 3px 15px;
  display: inline-block;
  margin-bottom: 6px;
  position: absolute;
  top: -32px;
}

@media screen and (max-width: 800px) {
  .gallery__list::before {
    content: '※画像を押すと切り替わります。';
  }
}

.gallery__item {
  width: 15.3%;
  border: 1px solid #999;
  margin-right: 1%;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1200px) {
  .gallery__item {
    width: 13%;
  }
}

@media screen and (max-width: 800px) {
  .gallery__item {
    width: 48%;
    margin-bottom: 15px;
    margin-right: 0;
  }
}

.gallery__item:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 1px 6px #666;
          box-shadow: 0 1px 6px #666;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/****************
section ツアー情報
******************/
.section__tour {
  padding: 40px 0;
}

.section__title {
  width: 100%;
  font-style: normal;
}

.section__title.tour {
  width: 100%;
  background: url("../img/fda/icon-title-tours.svg") no-repeat right 105%;
  background-size: 10%;
}

@media screen and (max-width: 800px) {
  .section__title.tour {
    background-size: 14%;
  }
}

@media screen and (max-width: 600px) {
  .section__title.tour {
    background-size: 19%;
  }
}

.tour__area--item {
  margin-bottom: 80px;
}

@media screen and (max-width: 800px) {
  .tour__area--item {
    margin-bottom: 40px;
  }
}

.tour__area--item:last-child {
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {
  .tour__area--item:last-child {
    margin-bottom: 20px;
  }
}

.tour__area--head {
  text-align: center;
  color: #3b3028;
  background: url("../img/fda/icon-tour-head.svg") no-repeat center top;
  background-size: 20px;
  padding-top: 30px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.tour__area--name {
  font-size: 30px;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .tour__area--name {
    font-size: 22px;
  }
}

.tour__area--read {
  font-size: 18px;
  line-height: 1.7;
  color: #3d322a;
}

@media screen and (max-width: 800px) {
  .tour__area--read {
    font-size: 14px;
  }
}

.hotel__item {
  border-bottom: 2px solid #3d322a;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.hotel__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.hotel__info--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 800px) {
  .hotel__info--wrap {
    display: block;
    position: relative;
    padding-top: 65px;
  }
}

.hotel__image {
  width: 33%;
  margin-right: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .hotel__image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.hotel__detail {
  width: 67%;
}

@media screen and (max-width: 800px) {
  .hotel__detail {
    width: 100%;
  }
}

.hotel__detail--head {
  background: #eaeaea;
  border-left: 5px solid #d6001d;
  padding: 5px 10px 5px 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
  .hotel__detail--head {
    position: absolute;
    top: 0;
    width: 100%;
  }
}

.hotel__catch {
  font-size: 18px;
  margin-bottom: 5px;
  color: #3d322a;
}

@media screen and (max-width: 800px) {
  .hotel__catch {
    font-size: 14px;
  }
}

.hotel__name {
  font-size: 30px;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .hotel__name {
    font-size: 18px;
  }
}

.hotel__link {
  display: inline-block;
  margin-top: 10px;
}

.hotel__link a {
  display: block;
  border: 1px solid #333;
  padding: 10px 25px 10px 15px;
  border-radius: 20px;
  font-size: 12px;
  background: url("../img/fda/icon-arrow-black-right.svg") no-repeat 95% center #fff;
  background-size: 10px;
  -webkit-transition: .3s;
  transition: .3s;
}

.hotel__link a:hover {
  background-color: #eee;
}

.hotel__read {
  margin-bottom: 20px;
}

.hotel__point--wrap {
  background: url("../img/fda/hotel-point.png") no-repeat left top;
  background-size: 200px;
  padding: 5px 10px 15px 220px;
  color: #111;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .hotel__point--wrap {
    padding: 50px 0 10px 0;
  }
}

.hotel__access--wrap {
  position: relative;
  background: #eaeaea;
  padding: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
}

.hotel__access--head {
  position: absolute;
  top: -10px;
  left: -10px;
  display: inline-block;
  padding: 5px 20px;
  background: #c6c6c6;
}

.hotel__access--info {
  padding-left: 12%;
  line-height: 1.8;
}

@media screen and (max-width: 800px) {
  .hotel__access--info {
    padding: 20px 5px 10px;
  }
}

.hotel__facility--head {
  color: #3d322a;
  font-size: 18px;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .hotel__facility--head {
    margin-top: 20px;
  }
}

.hotel__facility--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

.hotel__facility--item {
  width: 32.5%;
  margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
  .hotel__facility--item {
    width: 100%;
  }
}

.hotel__facility--name {
  display: inline-block;
  background: #eaeaea;
  border: 1px solid #111;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px 30px;
  margin-bottom: 8px;
}

@media screen and (max-width: 800px) {
  .hotel__facility--name {
    padding: 8px 20px;
  }
}

.hotel__facility--detail {
  position: relative;
}

.hotel__facility--note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
}

@media screen and (max-width: 800px) {
  .hotel__facility--note {
    font-size: 12px;
  }
}

.departure__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.departure__item {
  width: 14vw;
  max-width: 195px;
  margin-right: 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
  .departure__item {
    width: 30%;
  }
}

.departure__item a {
  display: block;
  border-radius: 3px;
  border: 2px solid #111;
  padding: 19% 10% 8%;
  background: url("../img/fda/logo-FDA.svg") no-repeat 42% 10px #fff;
  background-size: 39%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 800px) {
  .departure__item a {
    padding: 19px 10px 6px;
    font-size: 13px;
    background-size: 50%;
    background-position-y: 4px;
  }
}

.departure__item a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.departure__item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 800px) {
  .departure__item:nth-of-type(3n) {
    margin-right: 0;
  }
}

/****************
common
******************/
.content__body {
  max-width: 85vw;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .content__body {
    max-width: 95vw;
  }
}

/****************
archive
******************/
.page__head {
  text-align: center;
  padding: 30px 20px;
  border-bottom: 1px solid #111;
  margin-bottom: 20px;
}

.page__head h2 {
  font-size: 22px;
}

@media screen and (max-width: 800px) {
  .page__head h2 {
    font-size: 18px;
  }
}

.tourismTour__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
}

.tourismTour__item {
  width: 48%;
  border: 1px solid #333;
  position: relative;
  margin-bottom: 20px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 800px) {
  .tourismTour__item {
    width: 100%;
  }
}

.tourismTour__item--inner {
  padding: 15px;
  padding-bottom: 80px;
}

.tourismTour__item--title {
  font-size: 18px;
  margin-bottom: 20px;
}

.tourismTour__item--title-sub {
  font-size: 14px;
}

.tourismTour__item--read {
  font-size: 14px;
}

.tourismTour__item--more {
  background: #d6001d;
  padding: 15px 20px;
  color: #fff;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.tourismTour__item--more span {
  position: relative;
  display: block;
  width: 100%;
}

.tourismTour__item--more span::after {
  content: '＞';
  font-size: 10px;
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: .3s;
  transition: .3s;
}

.tourismTour__item:hover {
  -webkit-box-shadow: 0px 0px 12px -3px #777777;
          box-shadow: 0px 0px 12px -3px #777777;
}

.tourismTour__item:hover .tourismTour__item--more {
  background: #fb5468;
}

.tourismTour__item:hover .tourismTour__item--more span::after {
  right: 1%;
}

.tourismTourlist__footer--read {
  background: #efefef;
  padding: 20px;
  margin-bottom: 25px;
}

.tourismTourlist__footer h4 {
  font-weight: bold;
  border-left: 5px solid #d6001d;
  border-bottom: 1px solid #d6001d;
  padding-left: 10px;
  padding-bottom: 3px;
  margin-bottom: 10px;
}

.tourismTourlist__footer--announce {
  margin-bottom: 30px;
}

.tourismTourlist__footer--announce dt {
  color: #d6001d;
  font-weight: bold;
  margin-bottom: 3px;
  margin-top: 20px;
}

.tourismTourlist__footer--announce dd {
  padding-left: 20px;
}

.tourismTourlist__footer--announce .num {
  margin-right: 5px;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}

.navigation a {
  display: block;
  width: 18%;
  border-radius: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 15px 10px;
  background: #111;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.navigation a:hover {
  text-decoration: underline;
}

.navigation a:first-child {
  padding-left: 20px;
}

.navigation a:last-child {
  padding-right: 20px;
}
