
/* #006038 */

.border-gray { border-color: #adadad !important; }
.bg-gray { background-color: #e2e2e2 !important; }
.bg-bk { background-color: #2c2c2c !important; }
.bg-red { background-color: #a00 !important; }
.color-red { color: #a00; }
.color-gray { color: #6c6c6c; }
.color-lightgray { color: #9c9c9c; }
.color-wh { color: white; }

/*body { font-family: "M PLUS 1p"; }*/

/* ヘッダ header */
header {
	box-sizing: border-box;
	position: relative;
	width: 100%;
}

header h1 {
	position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
	width: 100%;
  min-height: 60px;
  padding: 0;
  background-color: rgba(255,255,255,1);
  z-index: 1;
  text-align: center;
  line-height: 1;
  box-shadow: 0 3px 3px 0 rgba(0,0,0,0.15);
}

header h1 a {
  text-decoration: none;
  color: #333;
}

header .logo {
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  min-width: 400px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

header .logo span {
  display: block;
  width: 100%;
}

header .logo span:first-child {
	margin-bottom: 3em;
}

.btn-scroll {
  display: block;
	position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50% , 0);
}

.btn-scroll a {
  display: block;
  width: 6em;
  text-align: center;
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-scroll a:after {
  content: '';
  display: block;
  width: 100%;
  height: 2em;
  background: url("/images/ico_chevron-down-solid.svg") no-repeat center center;
  background-size: contain;
}

@media(max-width:640px) {
  header h1 {
    justify-content: flex-start;
    padding-left: 1em;
    text-align: left;
  }
  
  header .logo {
    min-width: 75vw;
  }
}/*end @media(max-width:640px)*/

/* スライド slider */
#sliderwrap {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}

@media(max-width:900px) {
  #sliderwrap {
    margin: 0 auto;
    padding: 0;
  }
}/*end @media(max-width:900px)*/

#sliderwrap ul {
	box-sizing: border-box;
	position: relative;
	list-style-type: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

@media( max-width: 900px ) {
  #sliderwrap ul {
    width: auto;
  }
}/*end @media(max-width:900px)*/

#sliderwrap ul li {
	position: relative;
	width: 100%;
  height: 90vh;
  min-height: 600px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
@media( max-width: 900px ) {
  #sliderwrap ul li {
  }
}/*end @media(max-width:900px)*/


/* ドロワーメニュー */
.menu h1 {
/*
  display: flex;
  align-items: center;
*/
  border-bottom: 1px solid #d9d9d9;
  padding: 1.5em 0 ;
  padding-left: 1em;
  background-image: none;
  background-size: 0.5em;
  text-decoration: none;
  color: #131313;
  line-height: 1;
}

.menu h1 a {
  text-decoration: none;
  color: #131313;
}

.menu h1 + ul {
  background-color: rgba(255,255,255,1);
}

.menu h1 + ul li {
  border-bottom: 1px solid #d9d9d9;
}

.menu h1 + ul li a {
  display: block;
  padding: 1.5em 0 ;
  padding-left: 1.75em;
  background: url("/images/ico_chevron-right-solid.svg") no-repeat 1em center;
  background-size: 0.5em;
  text-decoration: none;
  color: #131313;
  line-height: 1;
}

.menu h1 + ul li a:hover {
  background-color: #f3f3f3;
}

.drawer-nav {
/*  background-color:rgba(0,0,0,1);*/
}

.drawer-hamburger {
  background-color:rgba(255,255,255,1);
  opacity: 1;
}

.drawer-hamburger:hover {
  background-color:rgba(255,255,255,1);
  opacity: 0.3;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #131313;
}

.drawer--right .drawer-nav {
  right:-30vw;
}

.drawer-nav {
  width: 30vw;
}

@media screen and (max-width:640px) {

  .drawer--left .drawer-nav {
    left:-100vw;
  }

  .drawer--right .drawer-nav {
    right:-100vw;
  }
  
  .drawer-hamburger {
    top: auto;
  }
  
  .drawer-nav {
    width: 100vw;
  }
}/*end @media(max-width:640px)*/

.drawer--right .drawer-hamburger,
/*.drawer--right.drawer-open .drawer-nav,*/
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  top: 0;
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  top: 0;
  right: 0;
}

.drawer--left .drawer-hamburger,
/*.drawer--right.drawer-open .drawer-nav,*/
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
/*
  bottom: 10px;
  left: 10px;
*/
}

.drawer--left.drawer-open .drawer-hamburger {
/*
  bottom: 10px;
  left: 10px;
*/
}

.drawer-overlay {
  background-color:rgba(0,0,0,.5);
}

/* モーダル remodal */
.remodal {
  width: auto;
}

.remodal img {
  max-height: 640px;
}

@media screen and (max-width:640px) {
  .remodal {
    padding: 25px;
  }
}


/* グローバルナビ */
header + nav {
  background-color: #000;
}

header + nav ul {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
}

header + nav ul li {
  display: block;
  width: calc( 100vw / 6 );
  font-size: 114%;
}

header + nav ul li a {
  display: block;
  width: 100%;
  padding: 20px 0;
  text-decoration: none;
  color: #fff;
  text-align: center;
  transition: all 0.5s 0s ease;
}

.hst header + nav ul li a.hst,
.evt header + nav ul li a.evt,
.icp header + nav ul li a.icp,
.abt header + nav ul li a.abt,
.map header + nav ul li a.map,
.pry header + nav ul li a.pry,
header + nav ul li a.current,
header + nav ul li a:hover {
  background-color: rgba(255,255,255,0.25);
}

/* メイン */
main {
  position: relative;
  width: 100%;
  margin: 60px 0 0;
  background-color: #fff;
}

main .article {
  position: relative;
  max-width: calc( 1000px - 4em );
  width: calc( 100% - 30px );
/*  padding: 0 30px;*/
  margin: 0 auto;
}

main .title {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.5em;
  border-bottom: 10px solid #00AD65;
/*  color: #339cd0;*/
}

@media screen and (max-width:640px) {
  main .article {
    padding: 0 15px;
    margin-bottom: 30px;
  }
}/*end @media(max-width:640px)*/

main > div .article {
  padding: 0 2em;
  text-align: justify;
  text-justify: inter-character;
}

@media screen and (max-width:640px) {
  main > div .article {
    padding: 0 1em;
  }
}/*end @media(max-width:640px)*/

main #about .res-flex {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-around;
}

main #about .res-flex > div {
  width: calc( 50% - 60px);
  margin: 0 auto;
  margin-bottom: 60px;
}

@media screen and (max-width:640px) {
  main #about .res-flex > div {
    margin-bottom: 15px;
  }
}/*end @media(max-width:640px)*/

main #sdg {
  width: 100%;
  border-top: 2em solid #00AD65;
  border-bottom: 2em solid #00AD65;
  background: url("/images/bg_sdgs.svg") #00AD65 no-repeat center right;
  background-size: contain;
}

@media screen and (max-width:640px) {
  main #sdg {
    background: url("/images/bg_sdgs.svg") #00AD65 no-repeat center bottom;
    background-size: 90%;
  }
}/*end @media(max-width:640px)*/

main #sdg .res-flex {
  min-height: 50vh;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width:640px) {
  main #sdg .res-flex {
  min-height: 60vh;
  }
}/*end @media(max-width:640px)*/

main #sdg .res-flex > div {
  width: calc( 50% - 30px);
  margin: 0 auto;
  margin-bottom: 60px;
}

main #sdg div p {
 font-size: 3em;
  text-shadow:
  3px 3px 3px #00AD65, -3px -3px 3px #00AD65,
  -3px 3px 3px #00AD65,  3px -3px 3px #00AD65,
  3px 0px 3px #00AD65, -3px -0px 3px #00AD65,
  0px 3px 3px #00AD65,  0px -3px 3px #00AD65;
}

@media screen and (max-width:640px) {
  main #sdg div p {
   font-size: 2em;
  }
}/*end @media(max-width:640px)*/

main #overview table {
  width: 100%;
  border-top: 1px solid #ccc;
}

main #overview table th,
main #overview table td {
  padding: 1em;
  border-bottom: 1px solid #ccc;
}

main #inquiry {
  background: #00AD65;
}

main #inquiry .article {
  min-height: 50vh;
  padding: 60px 0;
}


.form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

@media screen and (max-width: 640px) {
  .form {
    margin-top: 40px;
  }
}
.form-item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .form-item {
/*
    padding-left: 14px;
    padding-right: 14px;
*/
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.form-item:nth-child(5) {

}
.form-item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  .form-item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.form-item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 640px) {
  .form-item-Label.isMsg {
    margin-top: 0;
  }
}
.form-item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #545454;
  color: #fff;
  font-size: small;
}
@media screen and (max-width: 640px) {
  .form-item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: small;
  }
}
.form-item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
/*  max-width: 410px;*/
  background: #eaedf2;
/*  font-size: 18px;*/
}
@media screen and (max-width: 640px) {
  .form-item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.form-item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding: 1em;
  min-height: 14em;
  flex: 1;
  width: 100%;
/*  max-width: 410px;*/
  background: #eaedf2;
/*  font-size: 18px;*/
}
@media screen and (max-width: 640px) {
  .form-item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
/*    font-size: 15px;*/
  }
}
.btn-form {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  border: none;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #545454;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: 1s all ease;
}
.btn-form:hover {
  background: #333;
}
@media screen and (max-width: 640px) {
  .btn-form {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}


/* footer */
footer {
	box-sizing: border-box;
	position: relative;
	width: 100%;
  padding: 45px 0;
  background-color: #000;
}

footer .copyright {
	text-align: center;
  color: #fff;
  font-size: 75%;
}

footer .nav ul {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 45px;
}

footer .nav ul li {
  display: block;
  padding: 0 1em;
}

footer .nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 88%;
  text-align: center;
}

footer .nav ul li a:hover {
  text-decoration: underline;
}

/* ページのトップに戻る */
#returntop {
	z-index: 1;
	box-sizing: border-box;
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px; 
	opacity: 0.7;
}
#returntop img {
	width: 45px;
	height: auto;
	cursor: pointer;
}
