@charset "utf-8";
/* CSS Document */



/*---------フェードイン用----------*/
.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
  transform: translateY(50px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/*---------基本スタイル設定----------*/
html { 
	scroll-behavior: smooth;
	}

body {
 	font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Sans", Meiryo, sans-serif;
	background: #fcfffc;
}

a{
	text-decoration: none;
}

a:hover, button:hover{	
	opacity: 70%;
	transition: 0.5s;
	cursor: pointer;
}

a, button, input{
	outline: none !important;
}

section, footer{
	padding: 60px 80px;
    margin: 0 auto;
}

h1{
	margin: 0 auto 40px;
	position: relative;
}

h1::after{
	content: "";
	position: absolute;
	background: #EDDD8B;
    height: 8px;
    width: 48px;
    bottom: -22px;
    left: calc(50% - 24px);
	clip-path: polygon(0 0, 86% 0, 100% 100%, 0% 100%);
}

ul{
	padding: 0;
}

li{
	list-style: none;
}


.sp{
	display: none;
}

.bg-gray{
	background: #f6f6f6;
	border-radius: 72px;
	margin: 0 8px;
}

.shadow{
	box-shadow: 6px 6px 12px #e6e6e6;
}

.txt-gray{
	color: #595757;
}
/*
.txt-red{
	color: red;
}
*/
.txt-green{
	color: #384;
}

.bold{
	font-weight: bold;
}

.size28-18{
	font-size: 28px;
}
.size22-16{
	font-size: 22px;
}
.size20-16{
	font-size: 20px;
}
.size18-16{
	font-size: 18px;
}
.size17-14{
	font-size: 17px;
}
.size16-14{
	font-size: 16px;
}
.size16-13{
	font-size: 16px;
}
.size16-12{
	font-size: 16px;
}
.size14-13{
	font-size: 14px;
}
.size14-12{
	font-size: 14px;
}
.size14-11{
	font-size: 14px;
}
.size12{
	font-size: 12px;
}
.size10-9{
	font-size: 10px;
}

.center{
	text-align: center;
}

.right{
	text-align: right;
}

@media screen and (max-width: 768px) {
	section, footer{
		padding: 50px 30px;
	}
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
	.bg-gray{
	border-radius: 56px;
	margin: 0 4px;
	}
	.size28-18{
	font-size: 18px;
	}
	.size22-16{
	font-size: 16px;
	}
	.size20-16{
    font-size: 16px;
	}
	.size18-16{
	font-size: 16px;
	}
	.size17-14{
	font-size: 14px;
	}
	.size16-14{
	font-size: 14px;
	}
	.size16-13{
	font-size: 13px;
	}
	.size16-12{
	font-size: 12px;
	}
	.size14-13{
	font-size: 13px;
	}
	.size14-12{
	font-size: 12px;
	}
	.size14-11{
    font-size: 11px;
	}
	.size10-9{
    font-size: 9px;
	}
}


/*---------header----------*/

header{
	display: flex;
	justify-content: space-between;
    align-items: center;
	width: 100%;
	height: 60px;
	position: fixed;
	left: 0;
	top: 0;
	background: white;
	z-index: 1;
}

header .gov_logo{
	width: auto;
	height: 32px;
	margin: 0 0 0 1rem;
}

#nav-menu ul{
  	display: flex;
    margin: 0 auto;
    justify-content: flex-end;
}

#nav-menu ul a{
	display: block;
	position: relative;
	padding: 0 1rem;
}

#nav-menu ul a:last-of-type{
	padding-right: 1.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
	header{
	height: 50px;
}
	header .gov_logo{
	height: 24px;
}
	
  /* ハンバーガー出す */
  #hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 1000;
  }

  #hamburger span {
    width: 24px;
    height: 3px;
    background: #384;
	border-radius: 20px;
    transition: 0.3s;
  }

  /* 初期状態はメニュー隠す */
  #nav-menu {
    position: fixed;
    top: 0;
    right: -80%;
    width: 50%;
    height: 100vh;
    background: #fff;
    transition: right 0.3s ease;
    padding-top: 80px;
    z-index: 999;
  }

  /* 表示時 */
  #nav-menu.active {
    right: 0;
  }

  #nav-menu ul {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 8px;
  }

  #nav-menu ul li a {
    display: block;
    padding: 10px 0;
  }

	#nav-menu ul a:last-of-type{
	padding: 10px 0;
}
}


/*---------fv----------*/

#fv{
	background: linear-gradient(45deg, #c6e5c2, #f2ffea);
	max-width: 100%;
	padding: 50px;
    margin: 50px 0 0 0;
}

.fv-wrapper{
	display: flex;
	justify-content: center;
    align-items: end;
    column-gap: 3rem;
}

.fv-div_01{
	width: 42%;
    margin: 20px 0;
}

.fv-div_01 .gyosei_logo{
	width: 160px;
	height: auto;
    display: block;
}

.fv-div_01 .gov_logo{
	display: block;
	width: 100%;
	margin: 40px auto 32px;
}

.fv-div_01 p{
	margin: 0 20px 0 0;
	text-align: center;
	letter-spacing: 1px;
}

.fv-div_02{
	/*width: 44%;*/
	height: 280px;
}

.fv-div_02 img{
	width: 100%;
	max-height: 100%;
    transform: rotateY(180deg);
}

@media screen and (max-width: 768px) {
	#fv{
    	margin: 30px 0 0 0;
		padding: 40px 30px;
}
	.fv-wrapper{
		display: block;
	}
	.fv-div_01{
		width: 100%;
	}
	.fv-div_01 .gyosei_logo{
		width: 120px;
	}
	.fv-div_01 .gov_logo{
		margin: 32px auto;	
	}
	.fv-div_02{
	    width: 90%;
    	height: auto;
		margin: 0 auto;
	}
}

/*---------about----------*/

.about-p{
	margin: 0;
	line-height: 2.4;
}

.about-p span{
	letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
	.about-p{
	line-height: 1.6;
}
	.about-p span{
	margin: 1rem 0 0 0;
    display: block;
}
}

/*---------nayami----------*/

#nayami{
	position: relative;
	padding-bottom: 40px;
	border-radius: 72px 72px 0 0;
}

#nayami p{
	margin: 0 auto;
    width: fit-content;
    max-width: 530px;
	padding: 10px 30px;
	background: #EDDD8B;
}

.nayami-wrapper{
	width: 100%;
	max-width: 840px;
	margin: 32px auto 0;
}

.nayami-wrapper ul{
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	column-gap: 2rem;
}

.nayami-wrapper ul li{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42%;
	border: 1px solid #EDDD8B;
    border-radius: 16px;
    padding: 32px 24px;
    background: #fff;
}

.nayami-wrapper ul li:nth-of-type(1),
.nayami-wrapper ul li:nth-of-type(2){
	margin-bottom: 2rem;
}

.nayami-wrapper ul li img{
	display: block;
	width: 110px;
	margin: 0 0 0 10px;
}

#nayami::after{
	content: "";
	display: block;
	background-color: #f6f6f6;
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	width: 100%;
	height: 60px;
	position: absolute;
	bottom: -58px;
	left: 0;
}

@media screen and (max-width: 768px) {
	#nayami{
	border-radius: 56px 56px 0 0;
	padding-bottom: 16px;
}
	#nayami p{
    max-width: 240px;
	padding: 10px 16px;
}
	.nayami-wrapper ul li{
	width: 90%;
    padding: 24px 16px;
}
	.nayami-wrapper ul li:nth-of-type(1),
	.nayami-wrapper ul li:nth-of-type(2),
	.nayami-wrapper ul li:nth-of-type(3){
	margin-bottom: 1rem;
}
	.nayami-wrapper ul li img{
	display: block;
	width: 72px;
	margin: 0 0 0 10px;
}
}


/*---------solution----------*/

#solution{
	padding-top: 100px;
}

.solution-p{
	margin: 0;
}

.solution-p02{
	margin: 40px auto 16px;
	line-height: 1.6;
    letter-spacing: 1px;
}

.gov_logo_02{
	width: 200px;
	margin: 0px 10px -3px;
}

@media screen and (max-width: 768px) {
	#solution{
	padding-top: 80px;
}
	.gov_logo_02{
		width: 160px;
	}
	.solution-p02{
		margin: 32px auto;
	}
}

/*---------features----------*/

#features{
	padding-bottom: 0;
}

.features-wrapper{
    margin: 50px auto 0;
    width: 70%;
}

.features-wrapper ul li{
	background: #fff;
	padding: 16px 74px;
	border: 1px solid #384;
	position: relative;
	margin: 0 0 30px 0;
	border-radius: 16px;
	display: flex;
    align-items: center;	
}

.features-wrapper ul li:last-of-type{
	margin: 0;
}

.features-wrapper ul li div{
	width: 100%;
}

.features-txt{
	line-height: 1.8;
}

.features-kome{
	display: block;
	margin-top: 10px;
}

.features-wrapper ul li img{
	width: 100px;
	margin: 0px 40px 0 0;
	position: relative;
}

.features-wrapper ul li:nth-of-type(1)::after{
	content: "01";
}
.features-wrapper ul li:nth-of-type(2)::after{
	content: "02";
}
.features-wrapper ul li:nth-of-type(3)::after{
	content: "03";
}
.features-wrapper ul li:nth-of-type(4)::after{
	content: "04";
}
.features-wrapper ul li::after{
	position: absolute;
	background: #384;
	color: white;
	font-size: 16px;
	font-weight: bold;
	border-radius: 100%;
	padding: 8px 10px;
	top: 24px;
	left: 24px;
}

@media screen and (max-width: 768px) {
	.features-wrapper{
		width: 100%
}
	.features-wrapper ul li{
		padding: 20px;
		display: block;	
}
	.features-wrapper ul li img{
		width: 60px;
		margin: 0 auto;
		display: block;
}
	.features-title{
		text-align: center;
}
	.features-txt{
		margin: 0;
    	text-align: center;
}
	.features-wrapper ul li::after{
	font-size: 13px;
	padding: 6px 8px;
	top: 16px;
	left: calc(50% - 64px);
}
}

/*---------features----------*/

#movie video{
	display: block;
	margin: 0 auto;
	width: 700px;
}

@media screen and (max-width: 768px) {
	#movie video{
	width: 100%;
}
}


/*---------howto----------*/

.howto-img{
	width: 70%;
	height: auto;
	display: block;
	margin: 0 auto 50px;
}

#howto .howto-img:last-of-type{
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.howto-img{
	width: 100%;
	margin: 0 auto 16px;
}
}

/*---------field----------*/

.field-wrapper{
    margin: 50px auto 0;
    max-width: 70%;
}

.field-wrapper ul{
	display: grid;
    justify-content: center;
    column-gap: 1rem;
    grid-template-columns: repeat(5, auto);
}

.field-wrapper ul a{
	display: block;
	color: black;
	width: 152px;
    height: 100px;
	align-content: center;
	border-radius: 16px;
	margin-bottom: 2rem;
	border: 1px solid #384;
	background: white;
}

.field-wrapper ul a:hover{
	background: #fffce5;
	opacity: 100%;
}

@media screen and (max-width: 768px) {
	.field-wrapper{
    margin: 24px auto 0;
}
	.field-wrapper ul{
	grid-template-columns: repeat(3, auto);
    column-gap: .5rem;
	}
	.field-wrapper ul a{
	width: 80px;
    height: 56px;
	margin-bottom: 1.5rem;
	padding: 8px;
}
	.field-wrapper ul a:nth-of-type(13),
	.field-wrapper ul a:nth-of-type(14),
	.field-wrapper ul a:nth-of-type(15){
		margin-bottom: 0;
	}
}


/*---------schedule----------*/

.schedule-wrapper{
    margin: 50px auto 0;
    width: 70%;
}

.schedule-wrapper ul li{
	background: #fff;
	padding: 16px 30px;
	border: 1px solid #384;
	position: relative;
	margin: 0 0 50px 0;
	border-radius: 16px;
	display: flex;
    align-items: center;	
}

.schedule-wrapper ul li:last-of-type{
	margin: 0;
}

.schedule-wrapper ul li::after{
	content: "";
	background-image: url("../img/icon_arrow_02.png");
	width: 72px;
	height: 24px;
	position: absolute;
	bottom: -36px;
	left: calc(50% - 36px);
	background-size: contain;
    background-repeat: no-repeat;
}

.schedule-wrapper ul li:last-of-type::after{
	display: none;
}

.schedule-wrapper ul li img{
	width: 110px;
	margin: 0px 30px 0 0;
}

.schedule-txt{
	line-height: 1.8;
}

@media screen and (max-width: 768px) {
	.schedule-wrapper{
		width: 100%;
	}
	.schedule-wrapper ul li{
	    display: block;
	}
	.schedule-wrapper ul li img{
		margin: 0 auto;
		display: block;
		width: 88px;
	}
	.schedule-txt{
		margin: 0;
	    text-align: left;
	}
}

/*---------footer（contact）----------*/

.gov_logo_03{
	width: 300px;
	margin: 0px 10px -3px;
}

.contact-wrapper{
	display: flex;
	justify-content: center;
	column-gap: 2rem;
	margin: 32px 0 0 0;
}

.contact-wrapper a{
	display: block;
	color: white;
	min-width: 220px;
	padding: 16px 24px;
	background: #384;
	border-radius: 40px;
}

.contact-wrapper a:nth-of-type(2){
	letter-spacing: 1px;
}

.contact-wrapper a img{
	width: 16px;
	margin: 0 6px -2px 0;
}

@media screen and (max-width: 768px) {
	.gov_logo_03{
		width: 200px;
    	margin: 0 auto 4px;
	}
	.contact-wrapper{
		display: block;
    	margin: 24px 0 0 0;
	}
	.contact-wrapper a{
		margin: 0px 0 16px;
	}
}

/*---------field-search----------*/

#contents{
    background: white;
	margin-top: 40px;
}

#contents h1{
	border-bottom: 2px solid #384;
    padding: 0 0 8px 0;
}

#contents h1::after{
	display: none;
}

.search-keyword{
    display: flex;
    justify-content: space-around;
    width: 240px;
    height: 40px;
	border: 1px solid #384;
    border-radius: 50px;
    padding: 0 8px;
}

input#search-keyword, button#search-keyword-btn{
	background: none;
    border: none;
    display: block;
}

button#search-keyword-btn img{
	width: 20px;
}

ul.search_list{
	display: flex;
	flex-wrap: wrap;
	width: 70%;
	margin: 40px 0;
}

ul.search_list li{
	padding: 6px 20px;
    border: 1px solid #384;
    border-radius: 50px;
    margin: 0 10px 12px 0;
}

ul.search_list li:hover{
	cursor: pointer;
	background: #384;
	color: white;
	transition: 0.3s; 
}

ul.search_list li.active{
	background: #384;
	color: white;
}


ul.search_contents li dl{
    background: #e5f6e4;
    padding: 16px 10px 10px;
    border-radius: 12px;
	margin: 0 0 36px 0;
}

ul.search_contents li dl dt{
	padding: 0 0 0 8px;
    font-weight: bold;
}

ul.search_contents li dl dd{
    margin: 16px 0 0 0;
    background: white;
    padding: 16px;
    border-radius: 12px;
}

mark{
    background: #fffd9c;
}


ul.search_contents li img{
	width: 90%;
    display: block;
    margin: 0 auto 60px;
}

ul.search_contents li p{
	margin: 24px auto;
}

@media screen and (max-width: 768px) {
	ul.search_list{
		margin: 24px 0;
		width: 100%;
}
	ul.search_list li{
		padding: 6px 14px;
		margin: 0 10px 10px 0;
}
	ul.search_contents li dl{
		margin: 0 0 16px 0;
}
	ul.search_contents li img{
	width: 100%;
    margin: 0 auto 40px;
}
}




