@charset UTF-8;

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

html {
    scroll-behavior: smooth;
}


/* 目次に戻る*/
.pagetop,
.tocback {
   position: fixed;
  right: 10px;
  z-index: 2;
}

.tocback {
   bottom: 80px; /* トップより少し上に */
}

.pagetop {
  bottom: 30px;
}

.pagetop__icon,
.tocback__icon {
     width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

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: 4px;
	/* バーガー線の色 */
	background-color: #333;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #333;
	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;
}

.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: #333;
	white-space: nowrap;
	font-size: 18px;
}


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: #333;
}


header a{
	margin: 0 30px;
}

.zen-kaku-gothic-new-regular {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
  }
  
.container {
  max-width: 1160px;
  margin: 100px auto;
  padding-inline: 40px;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.index-line {
  position: relative;
  display: inline-block;
  padding-bottom: 8px; /* 文字と線の間隔 */
}

.index-line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 160%; /* ←ここで線の長さを調整（100%より長く） */
  height: 2px;
  background-color: #aa3746;
}

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

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

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

.sliderphoto{
	width: 700px;
}

.sliderphoto-tate{
	width: 450px;
}

.slider img{
	width: 700px;
}

.layout{
		display: flex;
		justify-content: flex-start;
        margin-top: 20px;
		align-items: center;
        background-color: #f3eed9;
	    }


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


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

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

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

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

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

.layout img{
	object-fit: cover;
	width: 100%;
}

.sliderphoto{
	width: 500px;
}

.container img{
	width: 500px;
	margin: 0 auto;
}


}
	
/*ここからSPサイズ（画面の横幅が559pxまで）*/	
	
	@media screen and (max-width: 559px){
		
		.btn {
		/* ボタンの大きさ  */
	    width: 30px;
	    height: 30px;
        }

		.btn-line::before {
	    /* 上の線の位置 */
	    transform: translateY(-12px);
        }
        .btn-line::after {
	    /* 下の線の位置 */
	    transform: translateY(12px);
        }
		
		.logo img{
			width: 45px;
		}
		ul{
			font-size: 10px;
		}
		
		.topic p{
			font-size: 18px;
		}
		
		header p{
			font-size: 10px;
		}
		header p span{
			font-size: 20px;
        }

		
		.container{
			padding: 10px 10px;
            margin: 50px auto;
		}


		.sliderphoto{
			width: 350px;
		}

		.sliderphoto-tate{
			width: 350px;
		}

		.instagram img{
			width: 30px;
		}
		h2{
		font-size: 24px;	
		}
		.layout{
			flex-direction: column;
			justify-content: center;
            padding-top: 20px;

		}
		.first{
			width: 90%;
			font-size: 14px;
		}
		.container img{ 
			margin: 0 auto;
			display: block;
			width: 350px;
		}
		.text-wrap img{
			width: 40%;
			margin-top: 30px;
		}

		.nav-item{
		height: 5%;
	    }

		.navilogo{
        width: 50px;    
		}

		
}