@charset "UTF-8";
/* CSS Document */
/*
-------------------------------------
 base
-------------------------------------*/
html {
  font-family: 'Noto Sans JP', sans-serif;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.serif {
  font-family: 'Noto Serif', serif;
}
.inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 768px) {
  .inner {
    width: calc(100% - 40px);
    margin: 0 auto;
    max-width: 1000px;
  }
}
.palmtop {
  display: block !important;
}
@media (min-width: 768px) {
  .palmtop {
    display: none !important;
  }
}
.laptop {
  display: none !important;
}
@media (min-width: 768px) {
  .laptop {
    display: block !important;
  }
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  opacity: 50%;
	transition: opacity 0.5s ease-in-out;
}

.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*
-------------------------------------
 header
-------------------------------------*/
.header {
  background-color: #d9b1a9;
  height: 169px;
  position: relative;
}
.header-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header-right {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 5%;
  margin-top: 20px;
}
.header-right a {
  color: #fff;
  font-size: 11px;
}
.joli-logo {
  width: 160px;
}
.sns {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #d9b1a9;
  width: 100%;
  z-index: 2;
}
.fixed ul {
  display: flex;
  justify-content: space-around;
	margin: 10px;
	align-items: center;
}
.fixed a {
  color: #fff;
  font-size: 8px;
}
/*
-------------------------------------
 header sp
-------------------------------------*/
@media (max-width: 768px) {
  .header {
    height: 82px;
  }
  .header-logo img {
    width: 375px;
  }
  .header-right {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    margin-top: 20px;
    background-color: #333;
  }
}
/*
-------------------------------------
 top
-------------------------------------*/
/*==================================================
スライダーのためのcss
===================================*/

.slider {
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	width: 100%;
	height: auto!important;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider-item img {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: auto!important;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*矢印の設定*/

.slick-prev, 
.slick-next {
   display: none;
}

/*ドットナビゲーションの設定*/

.slick-dots {
	display: none;
}

.slick-dots button {
    display: none;
}


/*
-------------------------------------
 top sp
-------------------------------------*/

@media (max-width: 768px) {
  .slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	width: 100%;
	height: auto!important;
}
.slider-item img {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: auto!important;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
}

/*
-------------------------------------
 section-news
-------------------------------------*/
.news {
	padding: 30px 0 20px 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.news-title {
	color: #d9b1a9;
	letter-spacing: 1px;
	font-size: 20px;
	width: 7%;
	margin-right: 50px;
}
.news-list li {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 10px;
	font-size: 14px;
	flex-wrap: wrap;
	line-height: 1.6;
}
.news-list .date {
	margin-right: 30px;
}

.news-list a {
	text-decoration: underline!important;
	opacity: 1;
}

/*
-------------------------------------
 section-news sp
-------------------------------------*/
@media (max-width: 877px) {
	.news {
		padding-bottom: 0;
	}
	.news-title {
		margin-bottom: 30px;
	}
	.news-list .date, .news-list .para {
		margin-bottom: 5px;
	}
	.news-list li {
		margin-bottom: 15px;
	}
}

/*
-------------------------------------
 section1
-------------------------------------*/
.section1 {
  background-color: #f4e4df;
  padding: 80px 0 50px 0;
}
.section1-container {
  display: flex;
  justify-content: space-between;
}
.sec1-left {
  width: 50%;
  margin-bottom: 50px;
}
.sec1-left_img {
  width: 90%;
}
.sec1-right p {
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 25px;
  font-size: 15px;
}
.jp {
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}
.fs-b {
  font-size: 23px !important;
  line-height: 35px !important;
  letter-spacing: 8px;
}
@media (max-width: 768px) {
  .fs-b {
    font-size: 20px !important;
	  letter-spacing: 4px;
  }
	.fs-s {
		font-size: 18px!important;
	}
}
/*
-------------------------------------
 section1 sp
-------------------------------------*/
@media (max-width: 768px) {
.section1 {
  padding: 50px 0 10px 0;
}
  .section1-container {
    flex-wrap: wrap;
  }
	.sec1-left {
		width: 100%;
	}
  .sec1-left_img {
    width: 100%;
  }
  
}
/*
-------------------------------------
 section2
-------------------------------------*/
.section2 {
  background-color: #D9B1A9;
  padding: 80px 0 50px 0;
  font-size: 15px;
  line-height: 25px;
}
.section2-container {
  display: flex;
  justify-content: space-between;
}
.sec2-left p {
  color: #fff;
  letter-spacing: 2px;
}
.border-b {
  border-bottom: solid 2px #333;
  padding-bottom: 20px;
}
.sign {
  margin-left: 200px;
}
/*
-------------------------------------
 section2 sp
-------------------------------------*/
@media (max-width: 768px) {
	.section2 {
  padding: 50px 0 10px 0;
}
  .section2-container {
    flex-wrap: wrap;
  }
  .sec2-left, .sec2-mid, .sec2-right {
    width: 100%;
    margin-bottom: 30px;
  }
  .sp70 {
	  width: 70%;
	}
  .sign {
    margin-left: 150px;
  }
	
}
/*
-------------------------------------
 section3
-------------------------------------*/
.section3 {
  padding: 50px 0 80px 0;
  background-color: #F8F2EC;
}
.section3 h2 {
  text-align: center;
  letter-spacing: 10px !important;
	margin-bottom: 60px;
}
.item-list {
  display: flex;
  justify-content: flex-start;
	flex-wrap: wrap;
  margin-bottom: 40px;
}
.item-list li {
  width: 28%;
	margin-bottom: 30px;
  margin-right:8%;
}
.item-list li:nth-of-type(3n){
  margin-right:0;
}


.item-list img {
	width: 100%;
}
.item-list h3 {
  font-weight: 400;
  line-height: 20px;
}
.item-list p, .item-list span {
  font-size: 12px;
  line-height: 15px;
}
.online {
  text-align: center;
}
.click {
  text-decoration: none;
  color: #333;
  background-color: #D9B1A9;
  padding: 5px 50px;
  border-radius: 15px;
  letter-spacing: 2px;
  margin: auto;
}
.click:hover {
  background-color: #5c5a5a;
  color: #fff;
  transition: 0.5s;
}
/*
-------------------------------------
 section3 sp
-------------------------------------*/
@media (max-width: 768px) {
.section3 {
  padding: 40px 0 50px 0;
}	
	.section3 h2 {
		margin-bottom: 30px;
	}
  .item-list {
    flex-wrap: wrap;
  }
  .item-list h3 {
    font-size: 14px;
  }
  .item-list li {
    width: 48%;
    margin-right:4%;
    margin-bottom: 30px;
  }
  .item-list li:nth-of-type(3n){
    margin-right:4%;
}

  .item-list li:nth-of-type(2n){
    margin-right:0 !important;
}

  .item-list img {
    width: 100%;
  }
  
}
/*
-------------------------------------
 footer
-------------------------------------*/
.footer {
  background-color: #A5A097;
  display: flex;
  justify-content: space-between;
  color: #fff;
  padding: 30px;
  font-size: 13px;
  align-items: baseline;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  opacity: 70%;
}
.footer-left ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-left ul li {
  margin-right: 20px;
}
.footer-left ul li a {
  font-size: 7px;
}
.footer-right ul {
  display: flex;
  justify-content: flex-end;
}
.footer-right ul li {
  border-left: 1px solid #fff;
  padding: 0 20px;
}
.footer-right ul li:last-child {
  border-right: 1px solid #fff;
}
.center {
	text-align: center;
}
/*
-------------------------------------
 footer sp
-------------------------------------*/
@media (max-width: 768px) {
  .footer {
    flex-wrap: wrap;
  }
  .footer-left {
    width: 100%;
  }
  .footer-left ul {
    justify-content: space-around;
  }
  .footer-left ul, .footer-right ul {
    margin-bottom: 30px;
  }
  .footer-right {
    width: 100%;
  }
  .footer-right ul {
    justify-content: center;
  }
	.footer-right ul li {
  padding: 0 10px;
}
  small {
    margin: auto;
  }
}
/*
-------------------------------------
 240222追加
-------------------------------------*/
.page_container {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 30px auto 80px;
    line-height: 26px;
    letter-spacing: 0.3px;
}
.pankuzu {
    display: flex;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.page_news dl{
    margin:40px 0 20px;
}
.page_news dl dd{
    font-size: 22px;
}
@media (min-width: 769px) { /*pcのみ*/
    .page_news dl{
        display: flex;
    }
    .page_news dl dt {
        padding-right: 10px;
        margin-right: 10px;
        border-right: 1px solid #333;
    }
}
.page_news .contents p{
    margin-bottom: 16px;
    line-height: 30px;
}

@media (max-width: 768px) { /*spのみ*/
    .page_news .contents p{
        font-size: 14px;
    }
}


.media_box01{
margin:20px auto;
max-width:450px;
text-align:center;
}

.media_box02{
text-align:center;
margin:30px auto;
max-width:900px;
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
}

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

.media_box02 div{
width:48%;
}

.media_box02 div img{
border:solid 1px #ccc;
}

.media_box03{
width:900px;
text-align:center;
margin-left:auto;
margin-right:auto;
margin-top:30px;
margin-bottom:60px;
}

.bd1{border:solid 1px #ccc;}

.link_part01{
display:inline-block;
height:40px;
line-height:40px;
color:#fff;
background:#cc9999;
padding:0 1.5em;
border-radius:3px;
}

@media (max-width: 768px) {

.media_box01{
width:84%;
}

.media_box02 div{
width:84% !important;
margin-left:auto;
margin-right:auto;
}

.media_box03{
width:100%;
}

.link_part01{
font-size:14px;
padding:0 0.65em;
border-radius:3px;
}

}





