@charset "utf-8";
/* CSS Document */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

html{
	scroll-behavior: smooth;
}

body,a,p,h1{font-family:'Helvetica','Lucida Grande','Hiragino Kaku Gothic ProN','Meiryo','Arial',sans-serif}

.chuo{
	text-align: center;
}

iframe{
	 width: 672px;
	height: 378px; 
	margin-bottom: 80px;
}

body{
	overflow-x: hidden !important;
}

.wrapper{
	width: 100%;
	background-image: url("images/bgimg.jpg");
	background-repeat: repeat-y;
	background-position: center;
	
	padding-bottom: 80px;
	margin-bottom: -100px;
	overflow-x: hidden !important;
}

.yokohaba{
	width:1000px;
	margin:100px auto 150px;
}

.yokohaba2{
	width:1000px;
	margin:100px auto 0px;
}

.demo-bnr{
	width: 900px;
	margin: 0 auto -20px;

}

.center{
	text-align: center;
	margin: 0 auto;
}

.reserve{
	display: flex;
	justify-content: center;
	margin-top: 20px;
}


/*スクロール */

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}



/* ヘッダー */

#header{
  position: fixed; /* スクロールに関わらずviewportに対して固定 */
  top: 0;
  left: 0; /* 必要に応じて */
  width: 100%; /* 必要に応じて */
	z-index:10000;
	background-color: transparent; /* 背景を透明にする */
  transition: background-color 0.3s ease;
  box-sizing: border-box; /* 追記：paddingやborderを幅に含まれるように */
}


#header.change-color {
  background-color: rgb(255 255 255 / 0.7);
}




.c-header {
  align-items: center;
  /* カスタマイズしてください */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem; /* カスタマイズしてください */
  width: 100%;
}

.c-header__logo {
  color: #000; /* カスタマイズしてください */
  min-width: 80px; /* カスタマイズしてください */
  text-decoration: none;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
}

.c-header__list-link {
  color: #000; /* カスタマイズしてください */
  display: block;
  margin-right: 50px; /* カスタマイズしてください */
  text-decoration: none;
  padding: 10px 0px; /* カスタマイズしてください */
}

.c-header__list-link:hover {
  filter: opacity(0.6); /* カスタマイズしてください */
}

.c-hamburger-menu {
  position: relative;
}



.logosize{
	max-height: 40px;
	min-height: 35px;
	height:5vw;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    background-color: #f7f8f8; /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
	 box-sizing: border-box; /* 追記 */
  }
	
	  .c-header__list-link {
    margin-right: 0;
    margin-bottom: 10px;
    box-sizing: border-box; /* 追記 */
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; /* カスタマイズしてください */
    height: 32px; /* カスタマイズしてください */
    justify-content: center;
    width: 32px; /* カスタマイズしてください */
  }
}

.c-hamburger-menu__button-mark {
  background-color: #333; /* カスタマイズしてください */
  display: block;
  height: 1px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 20px; /* カスタマイズしてください */
}

@media screen and (max-width: 750px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}

/* トップ画像 */


.abslt{
	position: relative;
}

.big-bg{
	background-image: url("images/topimg.jpg");
	object-fit: cover;
	background-size: cover;
	background-position: center top;
	background-repeat:no-repeat;
	max-height:750px;
	height:100vh;
	z-index: 9999; 
}

h1{
	width: 1000px;
	margin: 0 auto;

}

.topgazou-sp{
	display: none;
}

.topgazou{
  max-width: 700px;
  width: 100vw;
	margin-top: 120px;

}



/* ボタン */

.btn,
a.btn,
button.btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--blue,
a.btn--blue {
  color: #fff;
  background-color: #5083de;
background-image: linear-gradient(77deg, #5083de 0%, #2b66ba 24%, #5083de 49%, #2b57b0 75%, #5067de 100%);
}

.btn--blue:hover,
a.btn--blue:hover {
  color: #fff;
 background-image: linear-gradient(78deg, #58cdff 0%, #469deb 25%, #58cdff 45%, #469deb 75%, #58cdff 100%);


}


a.btn--radius {
  border-radius: 100vh;
}


.btn-chuo{
	text-align: center;
	margin-right: -50px;
	display: block;	
}


/* 文言 */

.topsnt{
	text-align: center;
	font-size: 28px;
	font-weight: 600;
	padding-top: 80px;
}

.toppoint{
	font-size: 36px;
	background: linear-gradient(transparent 60%, #F6EF66 0%);
	color: #2B48B0;
	font-weight: bold;
	
}

.yokosen{
	display: flex;
	align-items: center;
  justify-content: center;
}

.yokosen::after{
	content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: #2B48B0;
	margin-left: 5px;
}


.ga{
	font-size: 28px;
}


/* 見出し2 */
.midashi{
	text-align: center;
	margin-bottom: 50px;
}

.subttl{
	color: #00D3E3;
	font-weight: bold;
}

h2{
	font-size: 30px;
	padding-bottom: 25px;
	position: relative;
	text-align: center; 
}

h2 span:not(.small) { /* .small クラスを持たない span 要素に適用 */
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin: 0 5px; /* 丸同士の間隔 */
  position: absolute; /* 相対配置の h2 要素を基準に絶対配置 */
  bottom: 0.3em; /* 下からの位置を調整 */
}

h2 span:nth-child(2) { /* 最初の丸 (.small の次の span) */
  background-color: #2B48B0;
  left: calc(50% - 28px); /* 中央から左に少しずらす */
}

h2 span:nth-child(3) { /* 真ん中の丸 */
  background-color: #00D3E3;
  left: 50%; /* 中央に配置 */
  transform: translateX(-50%); /* 中央揃え */
}

h2 span:nth-child(4) { /* 最後の丸 */
  background-color: #CDE9EB;
  left: calc(50% + 16px); /* 中央から右に少しずらす */
}

.small{
	font-size: 24px;
}

/* 見出し3 */

h3{
	font-size: 22px;
	margin-bottom: 10px;
}

.h3-big{
	color: #00D3E3;
	font-size: 30px;
}

/* メリット */

.merit{
	width: 750px;
	margin: 20px auto 40px;
}

.merit-img{
	
	max-height: 320px;
	
}

.merit1{
	display: flex;
	align-items: center;
	gap: 40px;
}

.merit2{
	display: flex;
	align-items: center;
}

.merit-img2{
	
	max-height: 320px;
	
}

/* オリジナルレシピ */

.original{
	width: 100%;
	background-color: #E0F0F7;
}

.original-midashi{
	width: 1000px;
	margin: 0 auto;
	text-align: center ;
	padding-top: 40px;
	color:#2B48B0;
}

.original__tittle{
	text-align: center;
	font-size:18px;
	padding:5px 0px;
	font-weight: bold;
}

.original__text{
	text-align: justify;
}

.yokonarabi{
	display: flex;
	padding:30px 0 40px;
	justify-content: center;
	column-gap: 28px;
}

.original-img{
	width: 96%;
}


/* 導入事例 */

.case1{
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 20px;
}

.case2{
		display: flex;
	align-items: center;
	gap: 40px;	
	margin-bottom: 20px;
}

.case-img{
	width: 500px;
}

.todofuken{
	font-size: 16px;
}

.bottom{
	margin-bottom: 15px;
}

.case-basyo{
  padding: 5px 20px;	
  font-size: 14px;
  border:solid 1.5px #2B48B0;
  border-radius: 100vh;
  color: #2B48B0;
	background-color: #fff;
}

.case-kakigori{
	background-color: #E0F0F7;
	padding: 30px 20px;
	text-align: justify;
    text-justify: inter-ideograph;
	margin: 15px 0 20px;
}

.futoji{
	font-weight: bold;
	font-size: 18px;
}


/* 機器紹介 */

.kiki-merit{
	background-color: #E0F0F7;
	display: flex;
	text-align: center;
	padding: 30px 40px;
	gap:50px;
}

.kiki{
	width: 48%;
}

.kiki-img{
	width: 300px;
}

.kiki-cmnt{
	padding: 13px 0 2px;
	font-weight: bold;
	color: #2B48B0;
}

.kiki-cmnt2{
	text-align: left;
}

.tatesen{
	
	border-left: solid 2px #fff;
	
}

.siyo{
	display: flex;
	margin: 50px auto ;
	text-align: center;
}

.junsetsu{
	width: 400px;
}

.siyo-spc{
	margin: 0 auto;
	
}

.siyo-tbl {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 400px;
  table-layout: fixed;
 
}

.siyo-tbl tr {
  
  border-bottom: 2px dotted #BAE2F5;
}

.siyo-tbl th,
.siyo-tbl td {
  padding: 10px 8px;
}

.siyo-tbl td {
  text-align: left;
  width: 55%;
}

.careful{
	font-size: 14px;
	margin-top: 5px;
	text-align: left;
}


/* 使い方 */

.howtoimg{
	width:100%;
}

.howto-cnt{
	width: 350px;
	margin-bottom: 80px;	
}

.tejun{
	font-size: 20px;
	font-weight: bold;
	padding: 8px 0;
}

.nmb{
	color: #2B48B0;
	font-size: 22px;
}

.howtomidashi{
	text-align: center;
	padding-bottom: 8px;
	border-bottom: 4px dotted #2B48B0;
	color: #2B48B0;
}

/* デモボタン */
.fixed_btn { 
position: fixed;
bottom: 20px;
right: 20px;
padding: 6px 30px;
border-radius: 50%;
width: 160px;
height: 160px;
color: #FFFFFF;
text-align: center;
text-decoration: none;
display: flex;
justify-content: center;
 align-items: center;
background-color: #2fbdf0;
background-image: linear-gradient(0deg, #00d3e3, #558dff);
 box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
background-size: 200% 100%;
font-size: 16px;
transition: .3s;
z-index:10001;
}

.fixed_btn:hover{
	 transform: scale(1.1);
	background-position: 100% 0;
}



/* デモ */

.demoimg{
	width: 480px;
}

.mannaka{
	align-items: center;
}

.demobtn{
	margin: 30px 0 ;
}


/* フッター */

.footer{
	background-color:#efefef;
	padding:20px 0; 
	text-align: center;
	
	}

.ft-cnt{
	font-size: 12px;
}

.ft-cnt2{
	line-height: 18px;
	font-size: 12px;
	
}


.contact{
	background-color: #fff;
	padding: 20px;
}


@media screen and (max-width: 750px) {
	p{
		font-size: 14px;
	}
	
	.big-bg{
	background-image: url("images/topimg-sp.jpg");
	object-fit: cover;
	background-size: cover;
	background-position: center top;
	background-repeat:no-repeat;
	max-height:800px;
	
	height:auto;
	width: auto;
	
}
	
	h1{
	width: 100%;
	
}
	
	.yokohaba{
	text-align: center;
	margin: 80px auto 0;
	width: 90vw;
	
}
	
	.yokohaba2{
	text-align: center;
	margin: 80px auto -80px;
	width: 90vw;
}

.demo-bnr{
	width: 100%;
	margin: 0 auto;

}

.center{
	text-align: center;
	margin: 0 auto;
}

.reserve{
	display: block;
	margin-top: 20px;
}
	
	.yokonarabi{
	display: block;
	padding:30px 0 40px;
	justify-content: center;
	column-gap: 28px;
}
	
	.wrapper{
	background-image: url("images/bgimg.jpg");
	background-size:150%;
	padding-bottom: 150px;
}
	
	
	.btn-sp-chuo{
		margin: 0 auto;
		text-align: center;
		display: block;
		width: 350px;
	}
	
	.btn-chuo{
	
	margin-right: 0px;
	
}
	
	
	.topgazou-sp{
	display: block;
	 width: 100vw;
	padding-top: 80px;
}
	
	.logosize{
	max-height: 40px;
	min-height: 30px;
	height:5vw;
	}
	

.topgazou{
  display: none;

}
	
	
		.btn,
a.btn,
button.btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #212529;
  border-radius: 0.5rem;
}
	
	.btn--blue,
a.btn--blue {
  color: #fff;
  background-color: #2fbdf0;
	margin-right:-10px;
}
	a.btn--radius {
  border-radius: 100vh;
}

	

	
	
	/* 文言 */

.topsnt{	
	font-size: 20px;
	padding-top: 80px;
}

.toppoint{
	font-size: 26px;
	background: linear-gradient(transparent 60%, #F6EF66 0%);
	color: #2B48B0;
	font-weight: bold;
	
}

.yokosen{
	display: flex;
	align-items: center;
  justify-content: center;
}

.yokosen::after{
	content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #2B48B0;
	margin-left: 5px;
}


.ga{
	font-size: 24px;
}
	
	.kuhaku{
		display: none;
	}
	
	
	/* 見出し2 */
.midashi{
	text-align: center;
	margin-bottom: 40px;
}

.subttl{
	color: #00D3E3;
	font-weight: bold;
}

h2{
	font-size: 26px;
	padding-bottom: 25px;
	position: relative;
	text-align: center; 
}



.small{
	font-size: 20px;
}

/* 見出し3 */

h3{
	font-size: 18px;
	margin-bottom: 10px;
}

.h3-big{
	color: #00D3E3;
	font-size: 28px;
}


	
	/* メリット */
	.merit1{
		flex-direction: column;
		text-align:justify;
		gap: 20px;
		margin-bottom: 40px;
	}
	.merit2{
		flex-direction: column-reverse;
		text-align:justify;
		margin-bottom: 40px;
	}
	
	.merit{
	width: 90vw;
	margin: 20px auto 40px;
}

.merit-img{
	max-height: 300px;
	
}
	
	.merit-desc h3{
		text-align: center;
	}
	
	.merit-desc{
		margin-bottom: 20px;
	}
	

	
	
	/* 導入事例 */

.case1{
	flex-direction: column;
		text-align:justify;
		gap: 20px;
		margin-bottom: 40px;
}

.case2{
	flex-direction: column-reverse;
		text-align:justify;
		margin-bottom: 40px;
}

.case-img{
	width: 90vw;
}
	
	.case-cent{
		width: 90vw;
		margin-bottom: 30px;
	}	
	
  
	/* 機器紹介 */
	
	.kiki-merit{
		flex-direction: column;
		text-align:justify;
		gap: 20px;
	}
	
	.kiki{
	width: 98%;
	text-align: center;
		margin:0 auto;
		padding: 20px 0;
}
	
	.careful{
	font-size: 12px;
	margin-top: 5px;
	text-align: left;
}
	
	.tatesen{
	
	border-left: none;
	border-bottom: solid 2px #fff;
}
	
	.siyo{
	display: block;
	margin: 50px auto ;
	text-align: justify;
}
	
	.siyo-tbl {
    border: 0;
    width:90%;
	margin-bottom: 30px;
  }
	
	.junsetsu{
	width: 90vw;
	max-width: 400px;
	min-width: 300px;
	margin: 0 auto;
		display: block;
}
	
	/* オリジナルレシピ */

.original{
	width: 100%;
	background-color: #E0F0F7;
}

.original-midashi{
	width: 98%;
	margin: 0 auto;
	text-align: center ;
	padding-top: 40px;
	color:#2B48B0;
}

.original__tittle{
	text-align: center;
	font-size:16px;
	padding:5px 0px;
	font-weight: bold;
}
	
	.original__container{
		margin-bottom: 50px;
	}



.original-img{
	width: 100%;
}

	
	/* 使い方 */

.howtoimg{
	width:100%;
}

.howto-cnt{
	width: 90vw;
	margin-bottom: 50px;	
}

.tejun{
	font-size: 18px;
	font-weight: bold;
	padding: 8px 0;
}

.nmb{
	color: #2B48B0;
	font-size: 20px;
}

.howtomidashi{
	width:90vw ;
	
}
	
	iframe{
		width: 90vw;
		height: 308px;
	}

	.demoimg{
	width: 100%;
	margin-bottom: 10px;
}

.mannaka{
	align-items: center;
}

.demobtn{
	margin: 30px 0 ;
}
	
		.fixed_btn { 
position: fixed;
bottom: 20px;
right: 20px;
padding: 6px 5px;
border-radius: 50%;
width: 120px;
height: 120px;
color: #FFFFFF;
text-align: center;
text-decoration: none;
display: flex;
justify-content: center;
 align-items: center;
background-color: #2fbdf0;
background-image: linear-gradient(0deg, #00d3e3, #558dff);
 box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
background-size: 200% 100%;
font-size: 14px!important;
transition: .3s;
}
 
}









