@charset "UTF-8";

/* 
----------------------------------------*/
.sec01 .sec01_inner,
.sec02 .sec02_inner,
.sec03 .sec03_inner,
.sec04 .sec04_inner,
.sec05 .sec05_inner,
.sec06 .sec06_inner{
	max-width: 100rem;
    margin: 0 auto;
}


figure figcaption {
	background: rgba(35, 24, 21, .5);
	font-size: .8rem;
	letter-spacing: .1em;
}


.asterisk{
	font-size: 1.1rem;
}
@media only screen and (max-width: 768px) {
	.sec01 .sec01_inner,
	.sec02 .sec02_inner,
	.sec03 .sec03_inner,
	.sec04 .sec04_inner,
	.sec05 .sec05_inner,
	.sec06 .sec06_inner{
		margin: 0 2rem;
	}
	
	p{
		font-size: 1.3rem;
        line-height: 1.5;
	}
	.asterisk{
		text-align: left !important;
		text-indent: -1em;
		padding-left: 1em;
	}
       
}

/* 見出し
----------------------------------------*/
.title01_grad{
	font-size: 1.8rem;
    letter-spacing: .1em;
	padding: 1.2rem 1.3rem 1.4rem;
    background: linear-gradient(to right, rgba(232, 244, 252, 1) 0%, rgba(215, 242, 246, 1) 70%, rgba(125, 229, 197, 1) 150%);
    margin-bottom: 1.5rem;
}

h3.en_sub{
	color: #BCB594;
	font-size: 1.6rem;
	text-align: center;
	padding: 8rem 0 2rem;
}

.catchcopy{
	font-size: 3rem;
	text-align: center;
	margin-bottom: 4rem;
}


p.subcopy{
	font-size: 1.6rem;
	text-align: center;
	line-height: 2.4;
	margin-bottom: 4rem;
}

h4{
	
}

h5{
	font-size: 1.5rem;
	padding: 1.5rem 0 1.2rem;
}

h5.line{
	border-bottom: 1px solid #1A1A1A;
	margin-bottom: 1.5rem;
}

.border_txt{
	font-size: 1.2rem;
	border: 1px solid #ccc;
	padding: .7rem;
	text-align: center;
	margin-bottom: 2.2rem;
}


@media only screen and (max-width: 768px) {
	.title01_grad{
		font-size: 1.5rem;
		padding: .8rem 0 .8rem .8rem;
		margin-bottom: 3rem;
	}

	h3.en_sub{
		color: #BCB594;
		font-size: 1.6rem;
		text-align: center;
		padding: 8rem 0 2rem;
	}

	.catchcopy{
		font-size: 2rem;
		text-align: center;
		margin-bottom: 2.4rem;
	}


	p.subcopy{
		font-size: 1.3rem;
		text-align: center;
		line-height: 1.6;
		margin-bottom: 3rem;
	}

	h4{

	}

	h5{
		font-size: 1.5rem;
		padding: 1.2rem 0 1.2rem;
	}



}



/* カラム
----------------------------------------*/

.kitchen_main_block{
	display: flex;
	justify-content: space-between;
	margin:1rem 0 4rem; 
}

.kitchen_main_block figure{
	width: 580px;
}

.kitchen_main_block figure + figure{
	width: 411px;
}


@media only screen and (max-width: 768px) {
	.kitchen_main_block{
		display: block;
		margin:1rem 0 3rem; 
	}

	.kitchen_main_block figure{
		width: 100%;
		margin-bottom: 2rem;
	}

	.kitchen_main_block figure + figure{
		width: 100%;
	}
	.item {
			 margin-bottom: 1.8rem;
	}
}	



/* 2カラム
----------------------------------------*/
.grid_2{
	display: grid;
    gap: 3rem 3rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3rem;	
}

.grid_2_txt{
	display: grid;
    gap: 0 3rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3rem;	
}

.grid_2_txt .txt_block {
  grid-column: 1 / span 2; 
}

@media only screen and (max-width: 768px) {
.grid_2 {
		margin-bottom: 1rem;
		display: block;
		overflow: hidden;
	}
}	



/* 3カラム
----------------------------------------*/
.grid_3{
	display: grid;
    gap: 3rem 3rem;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3rem;	
	
}

.grid_3 .long {
 	grid-column: span 2;
}


@media only screen and (max-width: 768px) {
.grid_3 {
		margin-bottom: 1rem;
		display: block;
		overflow: hidden;
	}
}


/* 4カラム
----------------------------------------*/
.grid_4 {
	display: grid;
	gap: 3rem 3rem;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 4rem;
}

.grid_4 .long {
  grid-column: span 3;
}

@media only screen and (max-width: 768px) {
	.grid_4 {
		margin-bottom: 1rem;
		display: block;
		overflow: hidden;
	}
	.grid_4 div{
		margin-bottom: 3rem;
	}
}

/* 5カラム
----------------------------------------*/
.grid_5 {
	display: grid;
	gap: 3rem 3rem;
	grid-template-columns: repeat(5, 1fr);
	margin-bottom: 4rem;
}

.grid_5 .long {
  grid-column: 1 / span 4;
}

@media only screen and (max-width: 768px) {
	.grid_5 {
		margin-bottom: 1rem;
		display: block;
		overflow: hidden;
	}
	.grid_5 div{
		margin-bottom: 2rem;
	}
	
	.grid_5 img{
		width: 35%;
		display: block;
		margin: 0 auto;		
	}
}

@keyframes horizontal {
	0% {
		transform: translateX(-30%);
	}
	100% {
		transform: translateX(-70%);
	}
}


/* --- ロゴ --- */

.logo_block{
	display: flex;
    margin: 0 auto 5rem;
    width: 380px;
    align-items: center;
    justify-content: space-around;
}
.logo_block p{
	font-size: 1.7rem;
}

.logo_block figure{
	width: 58%;
}


@media only screen and (max-width: 768px) {
	.logo_block{
		display: block;		
		width: 100%;
		margin: 0 auto 2.8rem;
		text-align: center;
	}
	.logo_block p{
		font-size: 1.4rem;
	}

	.logo_block figure{
		width: 46%;
		margin: .5rem auto 0;
	}
	
}	


/* 構造
----------------------------------------*/


/* --- タブ切り替え --- */
.structure .tab_nav {
  width: 100%;
  border-bottom: 1px solid #ddd;
  margin: 8rem 0 6rem;
}

.structure .tab_nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  padding: 0;
  margin: 0;
  list-style: none;
}

.structure .tab_nav li {
	width: 30rem;
  margin: 0 1rem;
}

.structure .tab_nav a {
  display: block;
  padding: 0.7rem 1.5rem;
  font-size: 1.6rem;
  text-decoration: none;
	text-align: center;
  color: #666;
  border-bottom: 3px solid transparent;
	transition: .4s;
}

.structure .tab_nav li.here a,
.structure .tab_nav li a:hover {
  color: #1C4065;
  font-weight: bold;
  border-bottom: 3px solid #1C4065;
}

.structure .tab_nav a:hover {
  color: #1C4065;
}

@media only screen and (max-width: 768px) {
	.structure .tab_nav {
		margin: 4rem 0 3rem;
	}
  .structure .tab_nav ul {
    flex-wrap: nowrap;
  }

  .structure  .tab_nav li {
    margin: 0 0.5rem;
  }

  .structure .tab_nav a {
	padding: 0.6rem 1rem;
	font-size: 1.3rem;
  }
}


.structure .sec02 .sec02_inner,
.structure .sec03 .sec03_inner{
	padding: 6rem 0 4rem 0;
}
.structure .sec01 {
	padding: 3rem 0 0 0;
}
.structure .sec03 {
	padding: 0 0 5rem 0;
}

.structure .subcopy{
	font-size: 1.8rem;
	margin-bottom: 2rem;
}

@media only screen and (max-width: 768px) {
	.structure .subcopy{
		font-size: 1.4rem;
		margin-bottom: 1.5rem;
	}
	.structure .sec02 .sec02_inner,
	.structure .sec03 .sec03_inner{
		padding: 4rem 0 2.5rem 0;
	}

}
/* --- メリット --- */
.merit_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  /*padding: 2.5rem;
  background: #f9f9f9;*/
  counter-reset: merit-counter; 
}

.merit_list {
  padding: 1.5rem;
  /*background: #f5ede4;*/
  border: 1px solid #ddd;
  position: relative;
}

.merit_list::before {
  counter-increment: merit-counter;
  content: counter(merit-counter);
  position: absolute;
  top: 3rem;
  left: 1.5rem;
  width: 2rem;
  height: 2rem;
  background: #1C4065;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.merit_list h5 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 0.5rem 2.5rem;
  color: #1C4065;
}

.merit_list p {
  font-size: 1.4rem;
  line-height: 1.6;
}


@media only screen and (max-width: 768px) {
  .merit_box {
    grid-template-columns: repeat(1, 1fr);	
  }
	
	.merit_list p{
		font-size: 1.3rem;
	}
	
	.merit_list h5{
		font-size: 1.3rem;
	}
}

/* --- 検査 ポイント --- */
.point_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	margin: 2rem 0;
}

.point_item {
	width: calc(50% - 2rem);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.point_circle {
	width: 50px;
	height: 50px;
	background: #1C4065;
	color: #fff;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	aspect-ratio:1/1;
}

.point_circle .label {
	font-size: 1rem;
	letter-spacing: -.05px;
}

.point_circle .number {
	font-size: 1.7rem;	
	line-height: 1;
}

.point_item p {
	font-size: 1.4rem;
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 768px) {
	.point_box {
		flex-direction: column;
		gap: 1.5rem;
	}

	.point_item {
		width: 100%;
		align-items: flex-start;
	}

	.point_circle {
		width: 52px;
        height: 52px;
	}
	.point_circle .number {
		font-size: 1.4rem;
	}
	.point_item p {
		font-size: 1.3rem;
		line-height: 1.7;
		margin: 0;
	}
}


/* ロゴ
----------------------------------------*/
.structure .logo_block {
	padding: 4rem 0 5rem;
	width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;   
	gap: 2rem;             
}

.structure .logo_block .logo img {
	width: 140px;         
	height: auto;
	display: block;
}

.structure .logo_block .txt {
	flex: 1;               
}

.structure .logo_block .txt .sub {
	font-size: 1.8rem;
	margin-bottom: 0.2rem;
}

.structure .logo_block .txt .main {
	font-size: 3rem;
	line-height: 1.2;
}


@media only screen and (max-width: 768px) {
	.structure .logo_block {
		padding: 2rem 0 3rem;
		width: 100%;
		flex-direction: column;
		text-align: center;
	}

	.structure .logo_block .logo img {
		width: 110px;
		margin-bottom: 1rem;
	}

	.structure .logo_block .txt .sub {
		font-size: 1.4rem;
		margin-bottom: 1.5rem;
	}
	.structure .logo_block .txt .main {
		font-size: 2rem;
	}
}


/* ロゴ
----------------------------------------*/
.structure .funen_logo_block {
	padding: 4rem 0 5rem;
	width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;   
	gap: 2rem;             
}

.structure .funen_logo_block .logo img {
	width: 320px;         
	height: auto;
	display: block;
}

.structure .funen_logo_block .txt {
	flex: 1;               
}

.structure .funen_logo_block .txt .sub {
	font-size: 1.8rem;
	margin-bottom: 0.2rem;
}

.structure .funen_logo_block .txt .main {
	font-size: 3rem;
	line-height: 1.2;
}


@media only screen and (max-width: 768px) {
	.structure .funen_logo_block {
		padding: 2rem 0 3rem;
		width: 100%;
		flex-direction: column;
		text-align: center;
	}

	.structure .funen_logo_block .logo img {
		width: 82%;
		margin: 0 auto 1rem;
	}

	.structure .funen_logo_block .txt .sub {
		font-size: 1.4rem;
		margin-bottom: 1.5rem;
	}
	.structure .funen_logo_block .txt .main {
		font-size: 2.2rem;
	}
}




/* セキュリティ
----------------------------------------*/

.internet_info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 2rem 0;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.info_item {
  flex: 1 1 calc(25% - 10px);
  background-color: #d7cbbb;
  /*color: #ffffff;*/
  text-align: center;
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.label {
  font-size: 1.6rem;
  margin-bottom: .8rem;
}

.value {
  font-size: 3.4rem;
  line-height: 1.2;
}

.value_lg {
  font-size: 2.8rem;
  line-height: 1.3;
}

.label_sm {
  font-size: 1.6rem;
  margin-top: 5px;
}

.note,
.tax {
  font-size: 1.1rem;
  vertical-align: super;
  margin-left: 3px;
}

@media screen and (max-width: 768px) {
  .internet_info {
	flex-direction: column;
	gap: 15px;
  }

  .info_item {
	flex: 1 1 100%;
	padding: 18px;
  }

  .value,
  .value_lg {
	font-size: 2.8rem;
  }

  .label {
	font-size: 1.4rem;
	margin-bottom: .5rem
  }
}


/* スワイプ
----------------------------------------*/
.slideBox .swipeIcon {
	display: none;
}
@media only screen and (max-width: 768px) {
	.swipe_img {
		overflow: auto;
	}
	.swipe_img > img {
		max-width: none;
		width: 90rem;
	}
	.swipe_img > img.w700 {
		max-width: none;
		width: 70rem;
	}
	.slideBox {
		position: relative;
	}
	.slideBox .swipeIcon {
		display: block;
		background: rgba(0, 0, 0, 0.3);
		position: absolute;
		top: calc(50% - 2.5rem);
		left: 100px;
		z-index: 5;
		width: 5rem;
		aspect-ratio: 1 / 1;
		border-radius: 50%;
		animation: horizontal 1s ease-in-out infinite alternate;
	}
}	


