@charset "UTF-8";
/* CSS Document */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);


/* スマートフォン用CSS */
@media screen and (max-width: 639px) {
 
/*キーフレームアニメーション開始*/
@keyframes RightToLeft {
0% {
    opacity: 0;/* 透明 */
    transform: translateX(50px);/* X軸方向に50px */
}
100% {
    opacity: 1;/* 不透明 */
    transform: translateX(0);/* X軸方向に0px */
}
}
/*キーフレームアニメーション終了*/
	
	
img{
max-width: 100%;
height: auto;
width /***/:auto;
}
	

body{
	font-family: 'Noto Sans Japanese', sans-serif;
	width:100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	color: #343434;
	background:#fff;
	line-height: 0;}

	a{
		color: #343434;
		text-decoration: none;
	}

#wrap{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
	
	.pc{
		display: none;
	}
	
	.breadcrumb{
		display: none;
	}
	.cp_navi{
		display: none;
	}
	
	
	.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #00996E;
	border-radius: 50px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
	
#menu-btn-check:checked ~ .menu-btn span {
    background-color: #00996E;/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
	
#menu-btn-check {
    display: none;
}

.menu-content {
	padding-top: 70px;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color:  #00996E;
    transition: all 0.5s;/*アニメーション設定*/
}
	
	.parentsmenu{
		line-height: 0;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 20px;
		text-align: center;
		color: #01996E;
		list-style: none;
		font-weight: 600;
		padding:20px 0px 20px;
		width: 80%;
		background: #fff;
		border-radius: 50px;
	}
	
	.parentsmenu a{
		color: #01996E;
		text-decoration: none;
	}
	
	.childmenu{
		color: #fff;
		list-style: none;
		padding-left: 0;
		padding-bottom: 0;
 	    line-height: 30px;
		display: none;
		font-weight: 400;
		margin-top: 40px;
		font-size: 13px;
		transition: all 0.5s;/*アニメーション設定*/

	}
	
	.childmenu a{
		color: #01996E;
		list-style: none;
		padding-left: 0;
	}
	
	.parentsmenu:hover .childmenu{
display: block;
transition: all 0.5s;/*アニメーション設定*/

	}
	

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}	header .header_contact{
		font-size: 0.8em;
		color: #fff;
		text-align: center;
		line-height: 1em;
		margin-top: 2em;
	}
	
	.header_contact a{
		color: #fff;
		text-decoration: none;
	}
	
	.hidden{
		visibility: hidden;
	}

	
	
	
	
.card-container {
  display: flex;
  align-items: center;
  gap: 1px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}

/* 左側画像 */
.card-image {
  flex: 0 0 50%;
  max-width: 50%;
}

.card-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* 右側コンテンツ */
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title {
  font-size: 28px;
  font-weight: normal;
  line-height: 1.3;
  color: #111111;
  text-align: center;
  margin-bottom: 20px;
}

/* ボタン部分 */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  display: block;
  background-color: #ef475d;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  padding: 20px 80px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
}

/* レスポンシブ対応（スマホ表示時） */
@media (max-width: 640px) {
  .card-container {
    flex-direction: column;
    gap: 24px;
  }

  .card-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
	
	
	.features-section{
	 display: flex;
  align-items: center;
  gap: 1px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 40px;
  font-family: sans-serif;
background: rgba(255,246,117,1.00);
		margin-top: 20px;
		
}
	
	.feature-title{
		line-height: 1em;
	}
	
	.feature-img{
		margin-bottom:30px;
	}
	
	
	.steps-section{
		line-height: 1em;
  align-items: center;
  gap: 1px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 40px;
  font-family: sans-serif;
		margin-top: 20px;
	}
	
	.step-title{
	padding-top: 10px;
	}
	
	
	
	.contents5{
				line-height: 1em;
  align-items: center;
  gap: 1px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 40px;
  font-family: sans-serif;

	}
	
	.contents5 li{
		line-height: 1.2em;
		padding-bottom: 0.8em;
		text-align: left;
		
	}
	
	
	.BackToArchive {
		padding: 0em 2em 0em;
		margin: 2em 0em 4em;
		text-align: right;
		
	}
	
	.BackToArchive a{
				border-bottom: solid 1px #343434;
	}
	
	.bg{
	background:  hsla(219,72%,45%,0.16);
	padding:2px 5px;
	margin:0;
}

.bg p{
		text-align: left;

	font-weight: 600;
	margin-bottom: 1em;
	margin-right: 1em;
	line-height: 1.3em;
}


.ud p{
	font-weight: 600;
	text-decoration: underline;
		margin-bottom: 1em;
		margin-right: 1em;
}

	
	
	#footer_m{
		background: #343434;
		color: #fff;
		margin-right: auto;
		margin-left: auto;
		text-align:center;
		padding: 2em;
		line-height: 2em;
		font-size: 0.9em;
		font-weight: 600;

	}
	
	#footer_m a{
		color: #fff;

	}
	
	#footer_m .footer_m_nav ul{
	list-style: none;
	padding-left: 0;
		line-height: 1.5em;
		margin-bottom: 2em;
}
	
	#footer_m .footer_m_nav ul li{
		margin: 0.7em;
		font-weight: 300;
	}
	
	#footer_m .SNS{
		padding: 0em;
	}
	
	#footer_m .SNS a p{
		background: #fff;
		color: #343434;
		line-height: 2em;
		margin: 1em;
		border-radius: 3em;
	}
	
	#footer_m .copyright{
		margin-top: 1em;
		font-weight: 300;
		font-size: 0.5em;
	}
	
	

	
	
	
	
/* フェードイン用のCSS */

/* 上からフェードイン */
.slide-top {
	opacity: 0;
	transform: translate(0, -20px);
	transition: all 1s ease-out;
 }

/* 下からフェードイン */
.slide-bottom {
	opacity: 0;
	transform: translate(0, 30px);
	transition: all 0.5s ease-out;
 }

 /* 左からフェードイン */
.slide-left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 1s ease-out;
 }

/* 右からフェードイン */
.slide-right {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 1s ease-out;
 }


	