@charset "UTF-8";
/**************************************************/
/* mixin */
/**************************************************/
/***** font-size ******/
/**例
h1 {
	font-size: rem(24px); // -> 1.5rem
}
**/
/***** clearfix ******/
/***** opacity *****/
/***** placeholder *****/
/*************** 矢印 線タイプ ****************/
/*************** 矢印 線タイプ2重 ****************/
/*************** 矢印 塗りタイプ ****************/
/*************** 吹き出しボックス ****************/
/*************** フロー矢印 ****************/
/* 塗り矢印 */
/* 線矢印 */
/*************** テーブル風リスト ****************/
/*********************************************/
/* Components button */
/*********************************************/
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 15px;
  font-size: 22px;
  height: 60px;
  width: 100%;
  border: none;
  background-color: #00a0e9;
  color: #ffffff;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-btn {
    font-size: 18px;
  }
}
.c-btn:hover {
  opacity: 0.8;
  color: #ffffff;
  text-decoration: none;
}
.c-btn.is-takeout {
  height: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-btn.is-takeout {
    font-size: 0.75rem;
    white-space: nowrap;
  }
}
.c-btn.is-takeout:hover {
  opacity: 1;
}

/***** ボタン 状態 *****/
.c-btn.is-primary {
  border-color: transparent;
  background: #0086ae;
  color: #ffffff;
  position: relative;
}
.c-btn.is-primary:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-primary.is-no-arrow {
  position: relative;
}
.c-btn.is-primary.is-no-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 0px;
  margin-top: 0px;
  width: 0px;
  height: 0px;
  border-right: 0px solid #696969;
  border-bottom: 0px solid #696969;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-primary:hover {
  background: rgba(0, 134, 174, 0.9);
  color: #ffffff;
}
.c-btn.is-success {
  border-color: #398439;
  background: #449d44;
  color: #ffffff;
}
.c-btn.is-success:hover {
  background: #398439;
  color: #ffffff;
}
.c-btn.is-link {
  border-color: #0086ae;
  border-width: 1px;
  background: #ffffff;
  color: #0086ae;
  position: relative;
}
.c-btn.is-link:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #0086ae;
  border-bottom: 1px solid #0086ae;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-link:hover {
  position: relative;
  background: #0086ae;
  color: #ffffff;
}
.c-btn.is-link:hover:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-disable {
  border-color: #dddddd;
  background: #e5e5e5;
  color: #aaaaaa;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: default;
}
.c-btn.is-disable:hover {
  margin: 0 2px 2px 0;
}
.c-btn.is-arrow {
  padding-right: 30px;
  position: relative;
}
.c-btn.is-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-arrow-bottom {
  padding-right: 30px;
  position: relative;
}
.c-btn.is-arrow-bottom:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-no-arrow {
  position: relative;
}
.c-btn.is-no-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 0px;
  margin-top: 0px;
  width: 0px;
  height: 0px;
  border-right: 0px solid #696969;
  border-bottom: 0px solid #696969;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-back {
  min-width: 420px;
  border: 1px solid #cccccc;
  background-color: #eee;
  color: #000;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-btn.is-back {
    min-width: auto;
    width: 100%;
  }
}
.c-btn.is-send {
  min-width: 420px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-btn.is-send {
    min-width: auto;
    width: 100%;
  }
}
.c-btn.is-pdf {
  padding: 12px 45px;
}

/***** ボタン サイズ *****/
.c-btn.is-s {
  padding: 4px 5px;
  font-size: 0.75rem;
}
.c-btn.is-m {
  padding: 11px 30px;
}
.c-btn.is-l {
  padding: 15px 30px;
  font-size: 1.125rem;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-btn.is-l {
    padding: 11px 30px;
    font-size: 1rem;
  }
}

/*********************************************/
/* Components main-visual */
/*********************************************/
/***** 画像スライダー *****/
.main-visual-bg {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .main-visual-bg {
    margin-top: -5px;
  }
}

.img-slider {
  position: relative;
  border-top: 2px solid #cccccc;
  background: #f9f9f9;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .img-slider {
    position: relative;
    padding-top: 0;
  }
}

.img-slider-indicator {
  position: absolute;
  bottom: 5%;
  width: 100%;
  text-align: center;
}

.img-slider-indicator__num {
  display: inline-block;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
}
.img-slider-indicator__num:hover, .img-slider-indicator__num.is-active {
  background: #ffffff;
}

.img-slider-control__btn {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  line-height: 1;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.img-slider-control__btn:hover {
  color: rgb(255, 255, 255);
}

.img-slider-control__btn.is-prev {
  left: 3%;
}

.img-slider-control__btn.is-next {
  right: 3%;
}

.bx-controls-direction {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .bx-controls-direction {
    display: none;
  }
}

.img-slider__item {
  width: 100%;
}
.img-slider__item img {
  width: 100%;
  min-width: 100%;
}

/*********************************************/
/* Components title */
/*********************************************/
.c-ttl-main {
  position: relative;
  margin-bottom: 45px;
  line-height: 1.2;
  font-size: 36px;
  color: #0086ae;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-ttl-main {
    position: relative;
    margin-bottom: 30px;
    font-size: 21px;
  }
}
.c-ttl-main:before, .c-ttl-main:after {
  position: absolute;
  bottom: -23px;
  content: "";
  height: 2px;
  width: 30px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-ttl-main:before, .c-ttl-main:after {
    position: absolute;
    bottom: -15px;
    content: "";
    height: 2px;
    width: 15px;
  }
}
.c-ttl-main:before {
  left: 50%;
  background: #e60012;
}
.c-ttl-main:after {
  right: 50%;
  background: #009844;
}
.c-ttl-main.is-second {
  margin-bottom: 90px;
}
.c-ttl-main.is-top {
  margin-bottom: 60px;
  font-size: 48px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-ttl-main.is-top {
    margin-bottom: 45px;
    font-size: 30px;
  }
}
.c-ttl-main.is-top:before, .c-ttl-main.is-top:after {
  width: 105px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-ttl-main.is-top:before, .c-ttl-main.is-top:after {
    width: 30px;
  }
}
.c-ttl-main.is-left {
  text-align: left;
}
.c-ttl-main.is-left:before {
  left: 30px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-ttl-main.is-left:before {
    left: 15px;
  }
}
.c-ttl-main.is-left:after {
  left: 0;
}

.c-ttl-sub {
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-size: 24px;
  color: #000000;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-ttl-sub {
    font-size: 18px;
  }
}
.c-ttl-sub.is-left {
  text-align: left;
}
.c-ttl-sub.is-left:before {
  left: 0;
  margin-left: 0;
}

.c-ttl-sub-s {
  margin-bottom: 15px;
  border-left: 5px solid #0086ae;
  padding-left: 10px;
  font-size: 18px;
  color: #0086ae;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-ttl-sub-s {
    margin-bottom: 15px;
    border-left: 5px solid #0086ae;
    padding-left: 10px;
    font-size: 18px;
  }
}

.c-ttl-sub-ss {
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
}

.c-lead {
  margin-bottom: 45px;
  color: #81511c;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-lead {
    margin-bottom: 30px;
    font-size: 12px;
  }
}
.c-lead.is-top-main {
  font-size: 1.375rem;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-lead.is-top-main {
    font-size: 0.75rem;
  }
}
.c-lead.is-takeout {
  font-size: 0.9375rem;
  line-height: 1.6;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .c-lead.is-takeout {
    font-size: 0.75rem;
  }
}

/**************************************************/
/* top */
/**************************************************/
/***** TOP TOPICS *****/
.top-topics {
  background: #f5f5f5;
  overflow: hidden;
  border-bottom: 1px solid #f5f5f5;
}

.top-news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-news-list__item {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.top-news-list__item:first-child {
  border-top: 1px dashed #cccccc;
}
.top-news-list__item.is-topics {
  margin-right: -500%;
  margin-left: -500%;
  padding-right: 500%;
  padding-left: 500%;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0;
}
.top-news-list__item.is-topics a {
  color: #81511c;
}
.top-news-list__item.is-topics:nth-child(even) {
  background-color: #ffffff;
}

.top-news-list-head {
  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;
  margin-right: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-news-list-head {
    margin-right: 0;
  }
}

.top-news-list__date {
  margin-right: 30px;
  font-size: 1.125rem;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-news-list__date {
    margin-right: 15px;
    font-size: 1rem;
  }
}

.top-news-list__category {
  width: 120px;
  font-size: 10px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-news-list__category {
    min-width: 115px;
    width: auto;
  }
}
.top-news-list__category span {
  display: block;
  padding: 3px 10px;
  border-radius: 5px;
  background: #0086ae;
  color: #ffffff;
  text-align: center;
}

.top-news-list__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 2px;
  font-size: 18px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-news-list__ttl {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    margin-top: 10px;
    width: 100%;
    font-size: 16px;
  }
}

/********** TOP クリスマスオードブル **********/
.top-xmas {
  padding: 90px 0;
  background: #ffffff;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-xmas {
    padding: 60px 0;
  }
}

.top-xmas-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -15px;
  margin-bottom: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-xmas-img-wrap {
    display: block;
    margin: 0;
    margin-bottom: 30px;
  }
}

.top-xmas-img {
  padding: 0 15px;
  width: 450px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-xmas-img {
    padding: 0;
    width: auto;
  }
  .top-xmas-img:first-child {
    margin-bottom: 30px;
  }
}

.top-xmas-btn-wrap {
  text-align: center;
}

.top-xmas-btn {
  display: inline-block;
  min-width: 240px;
  border: 1px solid #0086ae;
  color: #ffffff;
  background: #0086ae;
  line-height: 60px;
  text-align: center;
}
.top-xmas-btn:hover {
  color: #0086ae;
  background: #ffffff;
  text-decoration: none;
}

/********** TOP メイン **********/
.top-main {
  position: relative;
  margin-top: 120px;
  margin-bottom: 90px;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-main {
    margin-top: 45px;
  }
}

.top-main-img {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-main-img {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.top-main-img img {
  width: 720px;
}

.top-main-img__left {
  display: none;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media (min-width: 1300px) {
  .top-main-img__left {
    display: block;
    position: absolute;
    top: 120px;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .top-main-img__left {
    display: block;
    position: absolute;
    top: -10px;
    left: 0;
    width: 120px;
  }
}
@media (max-width: 479px) {
  .top-main-img__left {
    top: 20px;
    width: 75px;
  }
}

.top-main-img__right {
  display: none;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media (min-width: 1300px) {
  .top-main-img__right {
    display: block;
    position: absolute;
    top: 120px;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .top-main-img__right {
    display: block;
    position: absolute;
    top: -10px;
    right: 0;
    width: 120px;
  }
}
@media (max-width: 479px) {
  .top-main-img__right {
    top: 20px;
    width: 75px;
  }
}

/********** TOP Menu **********/
.top-menu {
  margin-bottom: 75px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-menu {
    margin-bottom: 60px;
  }
}

.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
  }
}

.menu-list__item {
  margin-bottom: 45px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .menu-list__item {
    margin-bottom: 30px;
    padding-left: 5px;
    padding-right: 5px;
    width: 50%;
  }
}

.menu-list__img {
  margin-bottom: 10px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .menu-list__img {
    margin-bottom: 5px;
  }
}
.menu-list__img img {
  border-radius: 10px;
}

.menu-list__ttl {
  margin-bottom: 10px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .menu-list__ttl {
    margin-bottom: 5px;
    font-size: 15px;
  }
}

.more-link {
  font-size: 18px;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .more-link {
    font-size: 15px;
  }
}

/********** TOP party **********/
.top-party {
  position: relative;
  margin-top: 60px;
  background-image: url(../images/top-party-img__bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}

.top-party-box__list {
  background-color: #0086ae;
  padding: 45px 60px;
  opacity: 0.8;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-party-box__list {
    padding: 30px 20px;
  }
}

.top-party-box__ttl {
  color: #ffffff;
  font-size: 32px;
  font-family: YakuHanMPs, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
  padding-bottom: 15px;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-party-box__ttl {
    font-size: 28px;
  }
}

.top-party-box-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-party-box-menu__item {
    display: block;
  }
}

.top-party-box-menu__img {
  width: 50%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
.top-party-box-menu__img img {
  padding-right: 30px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-party-box-menu__img img {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .top-party-box-menu__img {
    width: 100%;
  }
}

.top-party-box-menu__txt {
  position: relative;
  width: 50%;
  color: #ffffff;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-party-box-menu__txt {
    width: 100%;
    margin: 15px 0;
  }
}

.top-party-box-menu__ttl {
  margin-bottom: 30px;
  font-size: 28px;
  font-family: YakuHanMPs, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-party-box-menu__ttl {
    margin-bottom: 15px;
    font-size: 24px;
  }
}

.top-party-box-menu__label {
  display: inline-block;
  background: #fae628;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #000000;
  font-family: YakuHanMPs, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  right: 20px;
  bottom: 170px;
  padding-top: 10px;
  font-size: 18px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
.top-party-box-menu__label span {
  font-size: 24px;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-party-box-menu__label span {
    font-size: 20px;
    bottom: 130px;
  }
}
.top-party-box-menu__label.is-2 {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-party-box-menu__label.is-2 {
    bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .top-party-box-menu__label {
    bottom: 170px;
    right: 0;
  }
}

.recruit-bnr {
  margin-top: 0;
  margin-bottom: 45px;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .recruit-bnr {
    margin-top: 2.8125rem;
    margin-bottom: 2.8125rem;
  }
}

/********** TOP movie **********/
.top-movie {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-movie {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #ffffff;
  }
}

.instagram-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .instagram-list {
    margin-bottom: 45px;
    margin-left: -5px;
    margin-right: -5px;
  }
}

.instagram-list__item {
  width: 25%;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .instagram-list__item {
    width: 25%;
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.movie-link {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .movie-link iframe {
    height: 300px;
  }
}

.movie-txt {
  font-size: 12px;
  text-align: right;
  padding-bottom: 30px;
}

/********** TOP News **********/
.top-news {
  padding-top: 75px;
  padding-bottom: 75px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-news {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.instagram-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .instagram-list {
    margin-bottom: 45px;
    margin-left: -5px;
    margin-right: -5px;
  }
}

.instagram-list__item {
  width: 25%;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .instagram-list__item {
    width: 25%;
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

/********** TOP Access **********/
.top-access {
  padding-top: 75px;
  padding-bottom: 75px;
  margin-bottom: 75px;
  text-align: center;
  background: #ffffff;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-access {
    margin-bottom: 60px;
    text-align: center;
  }
}

.access-address {
  margin-bottom: 60px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .access-address {
    margin-bottom: 30px;
  }
}

.access-img {
  margin-bottom: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .access-img {
    margin-bottom: 30px;
  }
}

.access-info__ttl {
  margin-bottom: 15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .access-info__ttl {
    margin-bottom: 15px;
  }
}

.access-info-list {
  margin-bottom: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .access-info-list {
    margin-bottom: 30px;
  }
}

.access-info-list__item {
  margin-bottom: 15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .access-info-list__item {
    margin-bottom: 15px;
  }
}

.top-facebook {
  margin-left: auto;
  margin-right: auto;
  width: 500px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .top-facebook {
    margin-left: 15px;
    margin-right: 15px;
    width: auto;
  }
}

.fb-page {
  display: inline-block;
  position: relative;
  width: 100% !important;
}

/********** TOP news **********/
.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .news-list {
    display: block;
  }
}

.news-list__item {
  margin-bottom: 45px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 767px) {
  .news-list__item {
    margin: 0 auto;
    margin-bottom: 60px;
    max-width: 600px;
    width: auto;
  }
}

.news-list__link {
  color: #000000;
}
.news-list__link:hover {
  color: #000000;
  text-decoration: none;
}
.news-list__link:hover img {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
}

.news-list__img {
  margin-bottom: 5px;
  border-radius: 15px;
  overflow: hidden;
}
.news-list__img img {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.news-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

.news-list__category {
  margin-left: 10px;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 15px;
  background: #00a0e9;
  color: #ffffff;
}

.news-list__date {
  color: #696969;
}

.news-list-event {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #81511c;
}
/*# sourceMappingURL=style-top.css.map */