@charset 'UTF-8';
/* CSS Document */
    

/*▼SP用CSSここから▼*/


@keyframes fadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}


/*▽スライダー矢印*/

.slick-prev
{
    left: 17%;
}
.slick-next
{
    right: 17%;
}
.slick-prev,
.slick-next
{
    z-index: 999;
	background: rgba(0,0,0,0);
	border: none;
	width: 25px;
}

.slick-prev::before {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 100%;	
  background-image: url("../img/prev_arrow.png");
  background-repeat:no-repeat;
  background-size: contain;
  background-position: center;
  }
 .slick-next::before {
    content: '';/*何も入れない*/
    display: inline-block;/*忘れずに！*/
    width: 100%;	
    background-image: url("../img/next_arrow.png");
    background-repeat:no-repeat;
    background-size: contain;
    background-position: center;
 }

/*△スライダー矢印*/


.top {
	margin:10px 0 17px 0;
}	

.top img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.slider {
	margin-bottom: 20px;
}

.slider img {
	width: 94%;
	margin: 0 auto;
}

/*▽リンクテキスト*/

.textbox {
	text-align: center;
	max-width: 62%;
	margin: 16% auto 40px auto;
}

.flex {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

.flex div {
	width: 50%;
}

.flex div, .no-flex div {
	margin-bottom: 5px;
  line-height: 1em;
}

.slick-slider a {
	margin-bottom: 0;
}

a .disabled {
	pointer-events: none;
}

.textbox a {
	padding-bottom: 1px;
	display: inline-block;
	text-decoration: none;
}	

.textbox pre {
	color: #333333;
	font-family: source-sans-pro, "Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-size: 13px;
	letter-spacing: 0.5px;
	display: inline-block;
	border-bottom: 1px solid #333333;
}
.textbox nopre {
	color: #333333;
	font-family: source-sans-pro, "Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-size: 13px;
/*	letter-spacing: -0.1px;*/
	display: inline-block;

}

.textbox pre:active {
	color: #cccccc;
}

/*△リンクテキスト*/


/*▽インスタポップアップ部分*/
/* モーダルを開くボタン */
.modal-open{
  width: 90%;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  margin: auto 20px 20px;
  padding: 0;
}
.modal-open img {
  width: 100%;
}

/* モーダルと背景の指定 */
.modal{
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}

/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
}

/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: #fff;
  text-align: left;
  line-height: 1.8;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p{
  margin: 1em 0;
}
	
.modal.is-active {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
/*△インスタポップアップ部分*/









/* PC版対応 ---------------------------------------------------------------------------*/
@media screen and (min-width:769px) {

main.spring_ikki {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
		
.top {
	margin:10px 0 32px 0;
}

/*.slick-prev,
.slick-next {
	height: 100%;
	width: auto;
	background: rgba(255,255,255,0.25)
}*/
	
.slick-prev::before {
    height: 80px;
  }
 .slick-next::before {
    height: 80px;	
 }
	
.slick-prev
{
    left: 11%;
	width: 40px;
    top: 50%;
}
.slick-next
{
    right: 11%;
	width: 40px;
    top: 50%;
}

.slider img {
	width: 92%;
}

.slider {
	margin-bottom: 30px;
}
	
.textbox {
	max-width: 65%;
	margin: 10% auto 100px auto;
}

.flex {
	display: block;
}

.flex div {
	width: 100%;
	margin-bottom: 12px;
}
	
.flex div, .no-flex div {
	margin-bottom: 12px;		
}

.textbox pre {
	font-size: 16px;
}
.textbox nopre {
	font-size: 16px;
}

.textbox a {
	padding-bottom: 2px;
	outline: none
}
	

	
/*▽インスタポップアップ部分*/
/* モーダルを開くボタン */
.modal-open{
  width: 65%;
  color: #fff;
  /* background: #000; */
  border: none;
  cursor: pointer;
  margin: 0 auto 50px;
}

/* モーダルと背景の指定 */
.modal{
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}

/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 50%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p{
  margin: 1em 0;
}
	
/* モーダルが閉じた際のアニメーションの指定 */	
.modal.is-active {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
/*△インスタポップアップ部分*/
	
}


