@charset UTF-8;

body {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif, Verdana, "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

body, html {
  overflow-x: hidden;
}


.noto-sans-jp-{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* トップに戻るボタン  */
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 25px;
    width: 25px;
    position: fixed;
    right: 10px;
    bottom: 30px;
    background: #aa3746;
    border: solid 1px #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

/* ハンバーガーメニュー  */
button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 32px;
	right: 16px;
	/* 最前面に */
	z-index: 10;
	/* ボタンの大きさ  */
	width: 48px;
	height: 48px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 3px;
	/* バーガー線の色 */
	background-color: #969696;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #969696;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-16px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(16px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}


.nav-list {
	/* メニューを縦に */
	display: block;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -100%;
	width: 100%;
	height: 100vh;
	background-color: #f3eed9;
	color: #333;
	transition: .3s;
}

.nav-item:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}


/***** メニューオープン時位置0にして画面内に *****/
.nav-list.open {
	right: 0;
	top: 0;
	bottom: 30%;
}

.nav-item {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	width: 100%;
	height: 10%;
	color:#333;
	font-size: 18px;
	padding:10px 20px;
}

ul{
	list-style: none;
	display: flex;
	font-size: 16px;
	}

.line{
  border: none;
  width:90%;
  border-top: 2px dashed #999;
  margin: 0 auto;
}

.nav-item .navi img {
  vertical-align: middle;
}
	
.navi{
	margin-right: 10px;
	text-decoration:none;
	color: #696969;
	white-space: nowrap;
}


header .wrap{
	position: fixed;
	z-index: 2;
	max-width: 1160px;
	top: 0;
	left: 0;
	right: 0;
	margin: 20px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #696969;
}

.about{
	padding: 20px;
}

header a{
	margin: 0 30px;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
	
.main-visual{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.photo{
	width: 70%;
	height: 390px;
}

.photo img{
	object-fit:contain;
	width: 100%;
}

.scroll{
	display: block;
	align-items: center;
	position: relative;
	margin: 80px 30px 40px;
}
.scroll::before {
  animation: scroll 3.5s infinite;
  border: solid #000;
  border-width: 0 0 1px 1px;
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  bottom: 5%;
  transform: rotate(-45deg);
  width: 15px;
  height: 15px;
}
@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  80% {
    transform: rotate(-45deg) translate(-30px, 30px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

.index{
	background-color: #FFF;
}

.cake-content{
	background-color: #f3eed9;
}

.cake-index1{
	padding-left: 30px ;
}

.index ul{
	display: block;
	list-style: none;
	text-align: center;
	font-size: 18px;
}

.index ul li{
	padding-top: 20px;
}

.cake-index2{
	
	padding-left: 70%;
}


.index{
	padding: 20px 20px;
}

.cake{
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 50px;
}

.content{
	background-color: #f3eed9;
}


.cake-text{
	position: relative;
	border-radius: 10px;
	background-color: #fff;
	padding: 50px 50px;
	margin:0 30px ;
}

.story{
	position: absolute;
	left: -30px;
	top: -100px;
	z-index: 10;
}

.story img{
	width: 180px;
}

.cake-text p{
	font-family: Noto Sans JP;
}

.sentence1{
	font-size: 18px;
	line-height: 1.5;
}

.sentence2{
	font-size: 14px;
	line-height: 1.5;
}

.cake-line{
	border: none;
    width:70%;
    border-top: 4px dotted #aa3746;
    margin: 40px auto;
}


.topic{
	writing-mode: vertical-rl;
	font-family: "Zen Kaku Gothic New";
	font-size: 30px;
	font-weight: bold;
	color: #000;
	opacity: 0.7;
}

.zen-kaku-gothic-new-regular {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
  }
  

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 40px;
}

.main-section{
	margin: 80px 0 100px;
}



.heading-group{
	text-align: center;
	margin: 60px 0 60px;
	color: #f3eed9;
	font-size: 36px ;
	font-weight: bold;
	font-family: "Kosugi Maru";
	overflow: hidden;
	.red {
       color: #aa3746;
	}
}

.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
	&.red{
		transform: translate(0,30px);
	}
	&.scrollin{
	  opacity: 1 !important;
	  transform: translate(0, 0) !important;
	}
  }

.kosugi-maru-regular {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.sliderphoto{
	width: 700px;
}


.text-wrap{
	text-align: center;
	margin: 50px 0 50px 0;
	display: inline-block;
	width: 100%;
}


.text-wrap p{
	font-size: 14px;
	line-height: 1.5;
	width: 200px;
	margin:0 auto;
}

.news{
	text-align: center;
	background-color:#fff;
}
.news h2{
	color: #aa3746;
}

.news ul{
	display: block;	
	text-align: left;
	font-size: 16px;
	width: 400px;
	margin: 0 auto;
	line-height: 1.8;
	padding-top: 50px;
}

.footer{
	background-color: #f3eed9;
	font-size: 10px;
	padding: 20px;
	text-align: center;
}

/*ここからタブレットサイズ（画面の横幅が560px〜959px）*/

@media screen and (max-width: 959px){
	
	

	.logo img{
			width: 80px;
		}
		ul{
			font-size: 14px;
		}
	.main-visual .catch-copy{
		font-size: 50px;	
		}
		
	h2{
		font-size: 28px;	
		}
	.first{
		width: 70%
	}

}
	
/*ここからSPサイズ（画面の横幅が559pxまで）*/	
	
	@media screen and (max-width: 559px){

	    .story{
	       position: absolute;
	       left: -30px;
	       top: -70px;
	       z-index: 10;
          }

        .story img{
	      width: 120px;
         }

		.btn {
		/* ボタンの大きさ  */
	    width: 30px;
	    height: 30px;
        }

		.btn-line::before {
	    /* 上の線の位置 */
	    transform: translateY(-12px);
        }
        .btn-line::after {
	    /* 下の線の位置 */
	    transform: translateY(12px);
        }
		
		.nav-item{
			height: 5%;
		}

        .navilogo{
        width: 50px;
        }

		.cake{
	     	flex-direction: column;
			margin: 0 auto;
			justify-content: center;
			padding: 0;
		}

		.cake-index1{
	       padding-left: 0 ;
        }

		.cake-text{
	        padding: 20px 10px;
	        margin: 20px 0 ;
            
		}
	

		.logo img{
			width: 45px;
		}
		ul{
			font-size: 10px;
		}
		.txt p{
		font-size: 10px;	
		}

		.topic p{
			font-size: 18px;
		}
		
		header p{
			font-size: 10px;
		}
		header p span{
			font-size: 20px;
		}

		.main-visual img{
			height: 100%;
			object-fit: cover;
		}

		.cake-index2{
	
	      padding-left: 30%;
         }

		.sliderphoto{
			width: 300px;
		}

		.instagram img{
			width: 30px;
		}
		h2{
		font-size: 24px;	
		}
	
		.photo img{
			width: 100;
		}

		.first{
			width: 90%;
			font-size: 14px;
		}
		
		.text-wrap img{
			width: 40%;
			margin-top: 30px;
		}
	
		.ready{
			font-size:30px;
			margin: 50px;
			color:#aa3746;
		}
		  
}