@charset "UTF-8";

/*
Theme Name:
Theme URI:
Author:			O-GOE
*/

/* --------------------------------------------------------------------------------
	main
-------------------------------------------------------------------------------- */
main{
  width: 100%;
  padding-top: 80px;
}
.main__wrap{
  width: 100%;
  & h2{
    font-size: 5.2rem;
    line-height: 1.2em;
    font-weight: 900;
    margin-top: 30px;
  }
  & h3{
    font-family: "Poppins", sans-serif;
    font-size: 3.2rem;
    line-height: 1em;
    margin-top: 25px;
    font-weight: bold;
    display: flex;
  	align-items: center;
    &::before{
      content: '・';
      color: var(--color-bl);
      margin-right: 5px;
    }
    &::after {
    	content: "";
    	flex-grow: 1;
    	height: 1px;
    	display: block;
      margin-left: .4em;
	    background: #ccc;
    }
  }
}
.main__imgbox{
  width: 100%;
  margin-top: 50px;
  background: rgb(255,255,255);
  & img{
    width: 100%;
    aspect-ratio: 4 / 1;
    object-fit: cover;
    border-radius: 10px;
  }
}
.main__txtbox{
  width: 100%;
  margin-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 0px) and (max-width: 834px) {
  main{
    width: 100%;
    padding-top: 60px;
  }
  .main__wrap{
    & h2{
      font-size: 2.4rem;
      margin-top: 20px;
    }
    & h3{
      font-size: 1.6rem;
      margin-top: 20px;
    }
  }
  .main__imgbox{
    margin-top: 30px;
    & img{
      aspect-ratio: 1 / 1;
    }
  }
}
/* --------------------------------------------------------------------------------
	common
-------------------------------------------------------------------------------- */
.cnt__wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cnt__ttlbox{
  width: 30%;
  & h2{
    font-size: 3.2rem;
    line-height: 1em;
    font-weight: bold;
  }
  & h3{
    line-height: 1em;
    margin-top: 10px;
    color: var(--color-bl);
  }
}
.cnt__cntbox{
  width: 70%;
  & p{
    margin-top: 5px;
    &:first-of-type{
      margin-top: 0;
    }
  }
  & p.indent01{
    text-indent: -1.1em;
    padding-left: 1.1em;
  }
  & p.indent02{
    text-indent: -1.84em;
    padding-left: 2.84em;
  }
  & p.indent03{
    text-indent: -1.25em;
    padding-left: 4.09em;
  }
}
@media screen and (min-width: 0px) and (max-width: 834px) {
  .cnt__ttlbox{
    width: 100%;
    & h2{
      font-size: 2.6rem;
    }
    & h3{
      font-size: 1.4rem;
      margin-top: 10px;
    }
  }
  .cnt__cntbox{
    width: 100%;
    margin-top: 30px;
  }
}
/* --------------------------------------------------------------------------------
	news
-------------------------------------------------------------------------------- */
.news__wrap{
  width: 100%;
  & ul{
    width: 100%;
  }
  & ul li{
    width: 100%;
    border-bottom: 1px dotted #333;
    padding: 0 30px 5px 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
  }
  & ul li:first-child{
    margin-top: 0;
  }
  & ul li::before{
    font-family: 'Font Awesome 6 Pro';
    content: '\f054';
    line-height: 1em;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    color: var(--color-bl);
  }
}
.news__date{
  width: 7em;
}
.news__txtbox{
  width: calc(100% - 7em);
  & a{
    width: 100%;
    text-decoration: underline;
    color: #333;
  }
  & a:hover{
    opacity: 0.5
  }
}
@media screen and (min-width: 0px) and (max-width: 834px) {
  .news__wrap{
    width: 100%;
    & ul{
      width: 100%;
    }
    & ul li{
      width: 100%;
      border-bottom: 1px dotted #333;
      padding: 0 30px 5px 0;
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      position: relative;
    }
  }
  .news__date{
    width: 100%;
  }
  .news__txtbox{
    width: 100%;
  }
}
