@charset "UTF-8";
body{
  width: 100%;
}
main{
  width: 100%;
  overflow-x: hidden;
  background-color: #FFFFFF;
}
header{
  background: #FFFFFF;
  width: 100%;
  position: fixed;
  position: -webkit-fixed;
  z-index: 20000;
  top: 0;
  left: 0;
  padding-top: 0;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", sans-serif;
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}
header img{
  width: 100%;
}
header .header_inner{
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
}
header .nav_list{
  display: flex;
  padding: 0 20px;
  margin-top: 20px;
}
header .nav_item{
  padding-left: 10px;
  padding-right: 10px;
  font-size: 24px;
  font-family: "Yu Mincho";
  font-weight: bold;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 40px;
}
header .nav_item a{
  display: inline-block;
}
header .nav_item a:hover{
  border-bottom: solid 1px;
  transition: 0.8s;
}
/* ハンバーガー
---------------------------------- */
header .nav_list{
  flex-direction: column;
  text-align: left;
  min-width: 0;
}
#nav {
  position: fixed;
  right: 0; /* 右から出てくる */
  top: -100vh;
  width: 100vw; /* スマホに収まるサイズ */
  height: 100vh;
  padding-top: 60px;
  background-color: #FFFFFF;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
  position: absolute;
  right: 15px;
  top: 8px;
  width: 40px; /* クリックしやすい幅 */
  height: 40px; /* クリックしやすい高さ */
  cursor: pointer;
  z-index: 300;
}
.nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav_item {
  text-align: center;
  padding: 0 14px;
}
.nav_item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
}
.hamburger_border {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}
.hamburger_border_top {
  top: 14px;
}
.hamburger_border_center {
  top: 20px;
}
.hamburger_border_bottom {
  top: 26px;
}
.black_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}

/* 表示された時用のCSS */
.nav-open #nav {
  right: 0;
  top: 0;
}
.nav-open .black_bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger_border_top {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}
.nav-open .hamburger_border_bottom {
  transform: rotate(-45deg);
  top: 20px;
}


.companyLogo{
  font-family: "Times New Roman";
}

.wrap{
  padding: 100px 50px;
  width: 100%;
}
.sectionTitle{
  font-family: YakuHanJP,EB Garamond,serif;
  font-size: 3rem;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-left: 110px;
  width: fit-content;
}

.sectionTitle .subTitle{
  font-size: 1rem;
  margin-left: 10px;
}
.sectionTitle:before{
  content: "";
  width: 90px;
  height: 2px;
  background-color: black;
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
}
.textArea{
  margin: 30px auto 0;
  font-size: 0.95rem;
  letter-spacing: 1px;
  line-height: 1.3rem;
  width: 90%;
  overflow-wrap: normal;
}

#mainVisual{
  width: 100%;
  height: 100vh;
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
  background: #FFFFFF;
}
.main_img{
  width: 100%;
  height: 100%;
  position: relative;
}
.top_inner{
  position: absolute;
  top: calc(40%);
  right: 0;
  width: 100%;
}
.top_logo{
  padding-left: 20%;
  font-weight: bold;
}
@keyframes line{
  0%{
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100%{
    webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.top_logo h1{

}
.top_logo h1::after{
  content: '';
  display: block;
  height: 1px;
  background: black;
  animation: line 3s ease;
}
.top_logo h1 img{
  width: 50%;
  max-width: 250px;
}
@keyframes bgRLextendAnime{
  0% {
    transform-origin:right;
    transform:scaleX(0);
  }
  50% {
    transform-origin:right;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:left;
  }
  100% {
    transform-origin:left;
    transform:scaleX(0);
  }
}
/*右から左*/
.bgRLextend::before{
	animation-name:bgRLextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0067C0;/*伸びる背景色の設定*/
}
.bgappearTrigger,
.bgRLextendTrigger{
    opacity: 0;
}
@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;
}
}
@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}


@keyframes fadeInUp{
	0% {
	opacity: 0;
  transform: translateY(100px);
	}
	100% {
	opacity: 1;
  transform: translateY(0);
}
}
.is-animated{
  animation: fadeInUp 1.5s forwards;
}
#main_section{
  padding: 100px 0;
  position: relative;
  background: rgba(0,0,0,0);
}
.sectionWrapper{
  background-color: rgba(255,255,255,0.5);
  padding: 50px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.3);
}
/* PHILO------------------- */

#corpPhilo .philoText{
  font-family: 'Yu Gothic UI',sans-serif;
  margin: 50px auto 0;
  color: #6495ED;
}
#corpPhilo .philoText .philo{
  margin: 0 0 30px auto;
}
#corpPhilo .philoText .philo .philoContentTitle{
  font-weight: 900;
  font-size: 2rem;
  border-bottom: 1px solid #6495ED;
}
#corpPhilo .philoText .philo .text{
  color: black;
  font-size: 1rem;
  font-weight: 400;
  padding-top: 10px;
}

/* WORKS-------------------- */
.works_flex{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto 0;
}
.works_wrap{
  width: 33%;
  min-width: 200px;
}
.works_img{
  width: 70%;
  margin: 0 auto 10%;
}
.works_img:hover{
  margin-bottom: 0;
  width: 80%;
  transition: 0.3s;
}
.works_wrap img{
  width: 100%;
}
.works_txt h3{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}


#outline{
  position: relative;
  background-blend-mode: overlay;
}
#outlineText table tr th{
  padding: 0.6em;
  font-weight: 700;
  text-align: right;
}
#outlineText table tr td{
  padding: 0.6em;
  vertical-align: middle;
}

/* CONTACT */
.contact_txt{
  width: 90%;
  margin: 30px auto 0;
}
footer{
  background: #0067C0;
  position: relative;
}
.footerInner{
  display: flex;
  justify-content: space-between;
  padding: 100px 20px;
  font-size: 0.95rem;
  max-width: 1080px;
  margin: 0 auto;
}
#address{
  margin-top: 40px;
}
#footerNav ul li{
  margin-bottom: 10px;
  font-weight: 600;
}
#footerNav ul li a:hover{
  opacity: 0.5;
  transition: opacity 0.5s;
}

@media screen and (max-width: 1020px){
  .works_img{
    width: 80%;
  }
  .works_img:hover{
    width: 90%;
  }
}
@media screen and (max-width: 678px) {

  .sectionTitle{
    font-size: 2rem;
    padding-left: 50px;
  }
  .sectionTitle .subTitle{
    font-size: 0.5rem;
    margin-left: 10px;
  }
  .sectionTitle:before{
    content: "";
    width: 40px;
    height: 2px;
    background-color: black;
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
  }
  .textArea{
    font-size: 0.78rem;
  }
  .wrap{
    padding: 50px 20px;
  }
  .sectionWrapper{
    padding: 20px;
  }
  #corpPhilo .philoText{
    flex-direction: column;
  }
  #corpPhilo .philoText .philo{
    width: 100%;
    font-size: 20px;
    margin-bottom: 30px;
  }
  /* WORKS--------------- */
  .works_img{
    width: 100%;
    margin: 0 auto;
  }
  .works_img:hover{
    width: 100%;
  }

  /* FOOTER---------------- */
  .footerInner{
    font-size: 0.7rem;
  }
  footer{
    margin-top: 50px;
  }
  #address{
    margin-top: 20px;
  }
  #footerLocation{
    width: 60%;
  }
  #footerNav{
    text-align: center;
    width: 40%;
  }
}
