@charset "utf-8";

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  height: 92px;
  padding: 24px 4% 16px;
/* 追従 */
	/* position: fixed; */
	width: 100%; 
	top: 0; 
	left: 0; 
	z-index: 10000;
	background-color: var(--white);
	box-shadow: 3px 3px 4px rgb(from var(--gray)r g b / 30%);
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > .menu__item {
  margin: 0 1.5rem;
  overflow: hidden;
}

.menu-button-container {
	container: layout inline-size;
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: var(--red);
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}
@container (max-width: 767px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 90px;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
		z-index: 100;
		font-size: 1.8rem;
		font-weight: 500;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px dotted var(--base_light);
    height: 3em;
    padding: 0.5em 1em;
		justify-content: space-between;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
	#menu-toggle:checked ~ .menu li::after {
		font-family: "Font Awesome 7 Free";
		content: '\f054';
		font-weight: 900;
		}
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1em 0;
    width: 100%;
    color: var(--white);
    background-color:var(--red);
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid var(--base_light);
  }
	.menu__item a{
		display: block;
		width: 100%;
	}
}
@container (max-width: 767px) {
	.nav__item img {
		display: inline-block;
		vertical-align: -3px;
		margin-right: 24px;
	}
	.header__btn {
		display: block;
		color: var(--red);
		position: absolute;
		top:37px;
		right: 10px;
	}
	.nav__btn >i,
	.header__btn >i{font-size: 32px;}

	.nav__btn {
		color: var(--red);
	}
	.nav.active .nav__btn{
		color: var(--white);
	}
	.nav.active {
		transform: translateX(0);
		opacity: 0.9;
	}
	.navmenu {
		background:var(--red);
		width: 100%;
		height: 100vh;
		position: fixed;
		top:0;
		left:0;
		z-index: 100;
		padding: 24px 6.4%;
		transform: translateY(-100%);
		transition: transform 0.1s;
	}
	.header .nav__item {
		font-weight: 700;
		font-size: 1.8rem;
		line-height: 2;
		color: var(--white);
	}
	.header .nav__item {
		margin: 1rem 0;
		padding-bottom: 1rem;
		border-bottom: 1px dashed var(--base_light);
		display: flex;
		padding: 1rem 25px;
		justify-content: space-between;
		align-items: center;
	}
	.header .nav__item a {
		color: var(--white);
	}
	.header .nav__item a.home {
		font-size: 1.2rem;
	}
	.header .nav__item::after {
		font-family: "Font Awesome 7 Free";
		content: '\f061';
		font-weight: 900;
	}
}/* max-width: 767px */


@container (min-width: 768px) {
	.nav__header {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header {
		max-width: 1680px;
		padding: 24px 60px 24px;
		display: flex;
		justify-content: space-between;
		/* align-items: center; */
	}
	.header__topic {
		font-size: 3.2rem;
		line-height: 1;
	}
	.navmenu {
		background: transparent;
		width: auto;
		height: auto;
		padding: 0;
		position: static;
		transform: translate(0);
	}
	.nav__list {
		margin-top: 0;
		display: flex;
	}
	.menu__item {
		margin-top: 0;
		font-weight: 700;
		color: var(--black);
		font-size: 1.6rem;
		line-height: 1.3;
		margin-top: 2rem;
		margin-left: 32px;
	}
	.menu__item a{
		color: var(--black);
		display: block;
	}
	.menu__item a:hover{
		color: var(--red);
		opacity: 0.6;
	}
	.menu__item.contact_btn {
		background-color: var(--red);
		padding: 1px 1em 4px;
		border-radius: 20px;
	}
	.menu__item.contact_btn a {color: var(--white);}
	.menu__header {
		display: none;
	}
	.menu__item img {
		display: none;
		margin-right: 0;
	}
	.header__btn {
		display: none;
	}
}/* min 768px */

@container (max-width: 767px) {
	.navmenu {
		background:var(--red);
		width: 100%;
		height: 100vh;
		position: fixed;
		top:0;
		left:0;
		z-index: 100;
		padding: 24px 6.4%;
		transform: translateY(-100%);
		transition: transform 0.1s;
	}
	.nav__header {
		container-name: news__list;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}
/*=============================
breadcrumb  
=============================*/
.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  list-style: none;
	padding: 10px 2.7%;
	font-size: 1.4rem;
}

.breadcrumb li:not(:last-of-type)::after {
		font-family: "Font Awesome 7 Free";
		content: '\f054';
		font-weight: 700;
		font-size: 0.6em;
  margin: 0 .6em; 
  color: var(--gray);
}
.breadcrumb a {
color: var(--red);
}
/* End breadcrumb */

@container (min-width: 768px) {
	body.home .menu__item .home,
	body.home .footenav__item .home,
	body.profile .menu__item .profile,
	body.profile .footenav__item .profile,
	body.works .menu__item .works,
	body.works .footenav__item .works,
	body.news .menu__item .news,
	body.news .footenav__item .news,
	body.recipe .menu__item .recipe,
	body.recipe .footenav__item .recipe,
	body.activity .menu__item .activity,
	body.activity .footenav__item .activity,
	body.shop .menu__item .shop,
	body.shop .footenav__item .shop,
	body.contact .footenav__item .contact {
		color: var(--red);
	}
}
/* 追従するメニュー */
 #fixed-toc ol{
  width: 150px;
  position: fixed;
  top: 0;
  right: 0;
}
 #fixed-toc li{
  list-style-type:none;
}
 #fixed-toc  a{
  display: block;
  width: 100%;
  background-color: rgba(70 70 70 / 70%);
  color: #fff;
  margin-bottom: 1px;
  text-decoration: none;
  padding: 3px 5px 3px 10px;
}
 #fixed-toc a.current{
  background-color: #fff;
  color: #000;
}

/* モーダル表示用
------------------------------------------------------------------- */

#myCarousel {
  --f-arrow-pos: 10px;
  --f-arrow-bg: rgba(255,255,255,0.75);
  --f-arrow-hover-bg: rgba(255,255,255,1);
  --f-arrow-color: #333;
  --f-arrow-width: 40px;
  --f-arrow-height: 40px;
  --f-arrow-svg-width: 20px;
  --f-arrow-svg-height: 20px;
  --f-arrow-svg-stroke-width: 2px;
  --f-arrow-border-radius: 50%;

  height: 400px;
}

#myCarousel .f-carousel__slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
}

#myCarousel img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
