@charset "utf-8";
@media screen and (min-width: 820px) {
  .pc{
    display: block;
  }
  .sp{
    display: none;
  }
	.carousel{
		height: calc(100vh - 100px) !important;
	}
	.carousel-item{
    flex-direction: row;
  }
  .carousel-item__image{
    width: 60%;
  }
  .carousel-item__info{
    width: 40%;
    padding: 0 40px;
  }
  .carousel-item__description{
    font-size: 100%;
    padding: 10px;
  }

	.news{
		padding: 80px 0 !important;
    margin: 0;
	}
  .news .inner{
		display: flex;
    justify-content: space-between;
		align-items: stretch;
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
  }
	.news .title{
    display: flex;
    justify-content: center;
    align-items: center;
		width: 25% !important;
    height: auto;
    padding: 30px 0;
    margin: 0;
    overflow: hidden;
	}
	.news ul{
		width: 70% !important;
	}

  .introduction{
    margin: 120px auto;
  }
  .introduction .lead{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 50px;
  }
  .introduction .lead .img-box{
    width: 50%;
    margin: 0;
  }
  .introduction .lead p{
    font-size: 160%;
  }
  .introduction > .text{
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
    font-size: 116%;
  }
  .introduction .flex-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: 1100px;
    margin: 120px auto;
    position: relative;
    z-index: 0;
  }
  .introduction .flex-box:nth-child(odd)::before{
    height: 140%;
    top: -20%;
  }
  .introduction .flex-box:nth-child(odd)::after{
    height: 140%;
    top: -20%;
  }
  .introduction .flex-box .img-box{
    width: 45%;
    margin: 0;
  }
  .introduction .flex-box .text{
    width: 50%;
    padding: 30px;
    margin-bottom: 0;
    font-size: 116%;
  }
  .introduction .last-text{
    font-size: 125%;
  }


  .column{
    width: 95%;
    max-width: 1100px;
    padding: 40px 0;
    margin: 0 auto 100px;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  .column::before{
    content: '';
    width: 100%;
    height: 100vh;
    background: #eec7c0;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    transition: 0.5s;
  }
  .column.active::before{
    bottom: 0%;
  }
  .column .title{
    color: var(--page_color);
    background: #fff;
  }
  .column ul{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    padding: 60px 0;
  }
  .column ul::before{
    display: none;
  }
  .column ul li{
    margin: 0;
    width: calc(95% / 3);
    transition: 0.3s;
  }
  .column a{
    display: block;
    color: #fff;
    transition: 0.3s;
    padding: 10px;
  }
  .column a:hover{
    color: var(--page_color);
    background: #fff;
  }
  .column .more-btn{
    background: #fff;
    color: var(--page_color);
    border: 2px solid #fff;
    font-size: 130%;
  }
  .column .more-btn:hover{
    background: var(--page_color);
    color: #fff;
    font-weight: bold;
  }
}