@charset "utf-8";
* { 
    margin: 0px; 
    padding: 0px; 
}


/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modalArea2 {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modalArea3 {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}
.modalBg2 {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}
.modalBg3 {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}
.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  min-width: 75% ;
  max-width: 85% ;
  width: 150%;
  height: 100%;
  padding: 10px 30px;
  background-color: #fff;
  overflow : auto; 
}
.modalWrapper2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  min-width: 75% ;
  max-width: 85% ;
  width: 150%;
  height: 100%;
  padding: 10px 30px;
  background-color: #fff;
  overflow : auto; 
}
.modalWrapper3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  min-width: 75% ;
  max-width: 85% ;
  width: 150%;
  height: 100%;
  padding: 10px 30px;
  background-color: #fff;
  overflow : auto; 
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.closeModal2 {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}
.closeModal3 {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}
#nav-toggle {
  position: fixed;
  top: 25px;
  right: 25px;
  height: 32px;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 36px;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #333;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 28px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 4px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 23px;
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#gloval-nav {
  background: #139DB9;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 29px;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 5vh;
  padding: 10px 0;
  transition: color 0.6s ease;
}
#gloval-nav a:hover {
  color: #666;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.6s ease, opacity 0.2s ease;
}
#gloval-nav ul li:nth-child(2) {
  transition-delay: 0.15s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(4) {
  transition-delay: 0.45s;
}
#gloval-nav ul li:nth-child(5) {
  transition-delay: 0.6s;
}
#gloval-nav ul li:nth-child(6) {
  transition-delay: 0.75s;
}
#gloval-nav ul li:nth-child(7) {
  transition-delay: 0.9s;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

.icons3 {
	list-style: none;
	display: flex;
	flex-wrap:wrap;
}

.icons3 li{
	width: calc(100% /3);
	padding:0 20px 0 20px;
	box-sizing: border-box;
}


.icons3 li img{
	max-width: 95%;
	height:auto;
	margin-bottom: 30px;
}

.icons4 {
	list-style: none;
	display: flex;
	flex-wrap:wrap;
}

.icons4 li{
	list-style: none;
	width: calc(100% /4);
	padding:0 10px;
	box-sizing: border-box;
}


.icons4 li img{
	list-style: none;
	max-width: 100%;
	height:auto;
	margin-bottom: 30px;
}

.icons2 {
	list-style: none;
	display: flex;
	flex-wrap:wrap;
}

.icons2 li{
	list-style: none;
	width: calc(100% /2);
	padding:0 10px;
	box-sizing: border-box;
}


.icons2 li img{
	list-style: none;
	max-width: 100%;
	height:auto;
	margin-bottom: 30px;
}

.icons6 {
	list-style: none;
	display: flex;
	flex-wrap:wrap;
}

.icons6 li{
	list-style: none;
	width: calc(100% /6);
	padding:0 10px;
	box-sizing: border-box;
}


.icons6 li img{
	list-style: none;
	max-width: 100%;
	height:auto;
	margin-bottom: 30px;
}
.icons5 {
	list-style: none;
	display: flex;
	flex-wrap:wrap;
}

.icons5 li{
	list-style: none;
	width: calc(100% /5);
	padding:0 10px;
	box-sizing: border-box;
}


.icons5 li img{
	list-style: none;
	max-width: 100%;
	height:auto;
	margin-bottom: 30px;
}
.iconsmnu {
	display: flex;
	flex-wrap:wrap;
	width: 80%;
	margin-top:30px;
	margin-left:auto;
    
}

.iconsmnu li{
	list-style: none;
	width: calc(100% /6);
	padding:0 10px;
	box-sizing: border-box;
}


.iconsmnu li img{
	list-style: none;
	max-width: 100%;
	height:auto;
	margin-bottom: 30px;

}
.iconsmnu li img:hover{
     transform: scale(1.1)
	
}