@charset "utf-8";
/* CSS Document */
body{
    background: #E5F8F3;
    background-image: url("image/24298171.png");
    background-repeat: no-repeat;
    background-size: contain;
     text-align: center;
    font-family: "fot-tsukuardgothic-std", sans-serif;
font-weight: 400;
font-style: normal;
}

img{
    max-width: 100%;
    height: auto;
}


.intro{
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-family: "adobe-caslon-pro", serif;
font-weight: 700;
font-style: normal;
}

.menu-wrapper{
    position: relative;
}

.menu-lists ul{
    display: flex;
    justify-content: center;
}



.menu-lists ul li a{
	color: #545454;
	text-decoration: none;
	font-size: 14px;
    margin-left: 10px;
}

.menu-lists ul{
    list-style-type: none;
    
}

.menu-lists li{
    padding: 10px;
    text-align: center;
}


.menu-lists ul li a:hover{
	opacity: 0.5;
}

span{
	font-size: 16px;
    color: #FDB9C8;
  
}



.cta_btn05 {
  font-weight: bold; /* 文字の太さ */
  line-height: 1.5;
  position: fixed;
 top:0;
right: 0;
  display: inline-block;
  padding: 1em 2em 1em calc(5em - 15px);
  transition: 0.3s;
  text-decoration: none;
  color: #545454; /* 文字色 */
  border-radius: 0.5rem;
  background: #FDB9C8; /* 背景色 */
  box-shadow: 0 5px 0 #FDB9C8;
  margin-left: 10px;
 margin-top: 20px;
}

.cta_btn05 p {
  margin: 0;
}

.cta_btn05 .cta_btn05_copy {
  position: absolute;
  bottom: 0.5em;
  left: -10px;
  display: inline-block;
  width: 5em;
  height: 5em;
  line-height: 5em;
  text-align: center;
  color: #FDB9C8;
  font-size: 80%;
  font-weight: bold;
  background: #fff;
  border: 3px solid #FDB9C8;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-10deg);
}

.cta_btn05 .cta_btn05_copy::before {
  position: absolute;
  content: "";
  bottom: -5px;
  right: -10px;
  border: 9px solid transparent;
  border-left: 15px solid #FFF;
  z-index: 0;
  transform: rotate(45deg);
}

/* マウスオーバーした際のデザイン */
.cta_btn05:hover {
  transform: translate(0, 3px);
  background: #FDB9C8; /* 背景色 */
  box-shadow: 0 2px 0 #FDB9C8;
}




h1{
    color: #545454;
    width: 100%;
    font-family: "adobe-caslon-pro", serif;
font-weight: 700;
font-style: normal;
margin-top: 10px;
}

h2{
    color: #29C4A0;
    font-family: "adobe-caslon-pro", serif;
font-weight: 700;
font-style: normal;
}

p{
    font-size: 14px;
    color: #545454;
}

.more{
	margin-top: 30px;
	margin-bottom: 80px;
}


.more a{
	color: #545454;
  background-color: #FDB9C8;
	padding: 10px 25px 10px 25px;
	text-decoration: none;
   
}

.more a:hover{
	opacity: 0.5;
}


/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:94%;
    margin:0 auto;
}

.slider img {
    width:60%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
    padding: 0;
    border: 0;
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

ifram{
    width: 100%;
    aspect-ratio: 16/9;
}

@media (max-width:768px){
.btn{
        width: 100%;
        display: block;      
        width: 39px;      
        height: 39px;      
        position: absolute;
        left: 0;
        z-index: 999;/*追記：いつも一番上*/
    }
      
    .bar{      
        width: 20px;      
        height: 2px;        
        display: block;      
        position: absolute;      
        left: 50%;      
        transform: translateX(-50%);      
        background-color: #000;    
    }
      
    .bar-top{ top: 10px;}
    .bar-middle{    
        top: 50%;
        transform: translate(-50%,-50%);
    }
    .bar-bottom{ bottom: 10px;}
    
    .btn.close .bar-top{      
        transform: translate(-50%,10px) rotate(45deg);      
        transition: transform .3s;    
    }  
    
    .btn.close .bar-middle{      
        opacity: 0;       
        transition: opacity .3s;    
    }    
    
    .btn.close .bar-bottom{      
        transform: translate(-50%,-8px) rotate(-45deg);      
        transition: transform .3s;    
    }
    
    .menu-lists{
        display: none;
        background-color: #fff;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        padding-top: 100px;
        text-align: center;
    }

    .menu-lists ul{
        display: block;
           list-style-type: none;
    }
    
    .logo{
        margin-top: 80px;
    }
 
    img{
    max-width: 100%;
    height: auto;
}
}