@charset "utf-8";

.mv-image {
}

.mv-text {
}

.mv-open {
  opacity: 0;
  animation: anim_mv-open 1s 4.5s forwards;
}

@keyframes anim_mv-text_sp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes anim_mv-text_pc {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim_mv-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*==========================================
 トップページ
===========================================*/

#recruit.topSection_wrap {
  background: var(--main-color);
}

#scene.topSection_wrap {
  background: #e5e5e5
}

@media print, screen and (min-width: 601px) {

}

/*==========================================
 コンテンツエリア -> メインビジュアル
===========================================*/

#mainVisual {
  width: 100%;
  padding-top: 80px;
  position: relative;
}

#mainVisual .topSection{
  padding: 0;
}

#mainVisual::after {
  content: '';
  display: block;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  background-size: contain;
  background-image: url(../images/scroll_1_w.svg);
  opacity: 0;
  animation: anim_mv-open 1s 4.5s forwards;
}

#mainVisual .topSectionBox .sectionDesc {
  margin-bottom: 0;
}

/* mvBlock */

.mvBlock {
  width: 100%;
}

.mvBlock .imageBlock {
  width: 252px;
  margin: 0 auto 20px;
}

.mvBlock .imageBlock .image {
  width: 100%;
}

.mvBlock .imageBlock .image img {
  width: 100%;
  height: auto;
}

.mvBlock .textBlock {
  color: #fff;
  text-align: center;
  opacity: 0;
  animation: anim_mv-text_sp 0s .5s forwards;
}

@media print, screen and (min-width: 601px) {

  #mainVisual {
  }

  .mvBlock {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    position: relative;
    height: 630px;
  }

  .mvBlock .imageBlock {
    width: 626px;
    margin: 0 100px 0 0;
  }

  .mvBlock .textBlock {
    position: absolute;
    bottom: 100px;
    left: 210px;
    text-align: left;
    opacity: 0;
    animation: anim_mv-text_pc 1s .5s ease-out forwards;
  }

}

/*==========================================
 コンテンツエリア -> ニュース
===========================================*/

#news {
  width: 100%;
}

#news .topSectionBox .sectionTitle {
  text-align: center;
  color: var(--main-color);
}

.newsBlock {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.topNewsList {
	position: relative;
	width: 100%;
	margin-bottom: 40px;
}

.topNewsList li {
	/* padding: 1px; */
	border-bottom: solid 1px #4B4B4B;
  text-align: left;
}

.topNewsList li:first-child {
	border-top: solid 1px #4B4B4B;
}

.topNewsList li a {
  display: flex;
  flex-direction: column;
  padding: 10px 0px;
  text-decoration: none;
  transition: all 0.5s;
}

.topNewsList li a:hover {
  background: #F8F3EF;
}

.topNewsList li a .newsHeader {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
}

.topNewsList li a .newsHeader .newsDate time {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #4b4b4b;
  margin-right: 1em;
}

.topNewsList li a .newsHeader .newsCategory {
  display: inline-block;
  padding: 4px 6px;
	font-size: 1.2rem;
  color: #fff;
  background: var(--main-color);
}

.topNewsList li a .newsTitle {
	font-size: 1.2rem;
  line-height: 1.6;
	font-weight: 400;
  color: var(--main-color);
}

#news .moreBtn {
margin: 0 auto;
}

@media print, screen and (min-width: 601px) {

  .newsBlock {
    width: 1010px;
    max-width: none;
    margin: 0 auto;
  }

  .topNewsList {
    padding: 0 145px;
  }

  .topNewsList li a {
    flex-direction: row;
    align-items: center;
    padding: 18px 0;
  }

  .topNewsList li a .newsHeader {
    margin-bottom: 0;
  }

  .topNewsList li a .newsHeader .newsDate time {
    margin-right: 1em;
  }

  .topNewsList li a .newsHeader .newsCategory {
    width: 6em;
    text-align: center;
    margin-right: 1em;
  }

  .topNewsList li a .newsTitle {
    font-size: 1.4rem;
  }

}

/*==========================================
 コンテンツエリア -> scene
===========================================*/

#scene {
  width: 100%;
}

#scene .topSectionBox .sectionTitle {
  text-align: center;
  color: var(--main-color);
}

.sceneBlock {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.sceneBox {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
}

.sceneBox:last-child {
  margin-bottom: 0;
}

.sceneBox a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.sceneBox .title {
  width: 190px;
  height: 60px;
  font-size: 1.5rem;
  line-height: 1.46;
	font-weight: 400;
  color: var(--main-color);
  text-align: center;
  border: 1px solid var(--main-color);
  
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.5s;
}

.sceneBox .title span {
  font-size: 1em;
}

.sceneBox .title span.subTitle {
  display: block;
  font-size: 0.8em;
}
      
.sceneBox .title::before,
.sceneBox .title::after {
  position: absolute;
  top: 50%;
  right: 100%;
  transform:translateY(-50%);
  content: '';
  border: 10px solid transparent;
  transition: all 0.5s;
}
 
.sceneBox .title::before {
  border-right: 10px solid var(--main-color);
}
 
.sceneBox .title::after {
  margin-right: -1px;
  border-right: 10px solid #e5e5e5;
}

.sceneBox .image {
  width: 95px;
	position: relative;
}

.sceneBox .image img {
  width: 100%;
  height: auto;
}

.sceneBox:hover .title {
  background: var(--main-color);
  color: #fff;
}
 
.sceneBox:hover .title::after {
  border-right: 10px solid var(--main-color);
}

@media print, screen and (min-width: 601px) {

  .sceneBlock {
    width: 940px;
    max-width: none;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .sceneBox {
    width: 300px;
    display: block;
    margin-bottom: 0;
  }

  .sceneBox .title {
    width: 260px;
    height: 80px;
    margin: 0 auto 30px;
    font-size: 2.0rem;
  }

  .sceneBox .title::before,
  .sceneBox .title::after {
    position: absolute;
    top: 100%;
    left: 50%;
    transform:translateX(-50%);
    content: '';
    border: 10px solid transparent;
    transition: all 0.5s;
  }

  .sceneBox .title::before {
    border-right: 10px solid transparent;
    border-top: 10px solid var(--main-color);
  }

  .sceneBox .title::after {
    margin-right: 0;
    border-right: 10px solid transparent;
    margin-top: -1px;
    border-top: 10px solid #e5e5e5;
  }

  .sceneBox .image {
    width: 100%;
    position: relative;
  }

  #scene_ideas-design.sceneBox .image::after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-image: url(../images/logo_ideas-design.svg);
    background-size: cover;
  }

  #scene_effective-use.sceneBox .image::after {
    content: '';
    display: block;
    width: 120px;
    height: 54px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-image: url(../images/logo_effective-use.svg);
    background-size: cover;
  }

  .sceneBox .image img {
    width: 100%;
    height: auto;
  }

  .sceneBox:hover .title {
    background: var(--main-color);
    color: #fff;
  }

  .sceneBox:hover .title::after {
    border-right: 10px solid transparent;
    border-top: 10px solid var(--main-color);
  }
  
}
/*==========================================
 コンテンツエリア -> ideaGroup
===========================================*/

#ideaGroup {
  width: 100%;
}

/* sectionBlock */

.sectionBlock {
}


.sectionBlock .imageBlock {
  width: 80px;
  margin: 0 auto 20px;
}

.sectionBlock .imageBlock .image {
  width: 100%;
}

.sectionBlock .imageBlock .image img {
  width: 100%;
  height: auto;
}

.sectionBlock .textBlock {
  text-align: center;
}

#ideaGroup .sectionBlock .textBlock {
  color: var(--main-color);
}

#recruit .sectionBlock .textBlock {
  color: #fff;
}

#ideaGroup .moreBtn,
#recruit .moreBtn {
  margin: 0 auto;
  text-align: left;
}

@media print, screen and (min-width: 601px) {

  .sectionBlock {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .sectionBlock .imageBlock {
    margin: 0 100px 0 0;
  }

  #ideaGroup .sectionBlock .imageBlock {
    width: 250px;
  }

  #recruit .sectionBlock .imageBlock {
    width: 150px;
  }

  .sectionBlock .textBlock {
    text-align: left;
  }

  #ideaGroup .moreBtn,
  #recruit .moreBtn {
    margin: 0;
  }

}


/*==========================================
 コンテンツエリア -> contentsMenuのスタイル
===========================================*/

#contentsMenu {
  width: 100%;
}

#contentsMenu .topSection {
	padding: 0;
}

.contentsMenuBox {
  width: 100%;
}

.contentsMenuBox .contentsImage {
  width: 100%;
  position: relative;
}

.contentsMenuBox .contentsImage img {
	width: 100%;
  height: auto;
}
  
#ideas-design.contentsMenuBox .contentsImage::after {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
	position: absolute;
	top: 0;
	left: 0;
  background-image: url(../images/logo_ideas-design.svg);
  background-size: cover;
}

#effective-use.contentsMenuBox .contentsImage::after {
  content: '';
  display: block;
  width: 132px;
  height: 58px;
	position: absolute;
	top: 10px;
	right: 10px;
  background-image: url(../images/logo_effective-use.svg);
  background-size: cover;
}

.contentsMenuBox .contentsText {
  width: 100%;
  color: #fff;
	background: var(--main-color);
  padding: 60px 0;
  text-align: center;
	position: relative;
	z-index: 1;
}

.contentsMenuBox .contentsText::before {
  content: '';
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--main-color);
	z-index: 0;
}

.contentsMenuBox .contentsText .contentsIcon {
  width: 80px;
  position: absolute;
  top: -40px;
  left: calc(50% - 40px);
	z-index: 1;
}

.contentsMenuBox .contentsText .contentsIcon img {
	width: 100%;
  height: auto;
}

.contentsMenuBox .contentsText .contentsTitle {
  font-size: 2.6rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-bottom: 30px;
}

.contentsMenuBox .contentsText .contentsTitle span  {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  margin-bottom: 10px;
}

.contentsMenuBox .contentsText .contentsTitle .sub1  {
  margin-bottom: 10px;
}

.contentsMenuBox .contentsText .contentsTitle .sub2  {
  margin-top: 10px;
}

.contentsMenuBox .contentsText .contentsSubTitle {
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 10px;
}

.contentsMenuBox .contentsText .contentsDesc {
	font-size: 1.2rem;
  line-height: 1.91;
  text-align: center;
  margin-bottom: 30px;
}

.contentsBtn {
  width: 200px;
  height: 34px;
  margin: 0 auto;
}

.contentsBtn a {
  display: block;
  font-size: 1.4rem;
  line-height : 32px;
  text-align: left;
  letter-spacing: 0.14em;
  color: #fff;
  text-decoration: none;
  padding-left: 10px;
  border: 1px solid #fff;
  transition: all 0.5s;
  position: relative;
}

.contentsBtn a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  content: '\f105';
  font-family: FontAwesome;
  font-size: 1.1em;
}

.contentsBtn a:hover {
  color: var(--main-color);
  background: #fff;
}

@media print, screen and (min-width: 601px) {

  .contentsMenuBox {
    height: 650px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 200px;
  }

  .contentsMenuBox:nth-child(even) {
    flex-direction: row-reverse;
  }

  .contentsMenuBox:last-child {
    margin-bottom: 0;
  }

  .contentsMenuBox .contentsImage {
    width: 67%;
    width: calc( 100% - 460px );
    height: 650px;
    position: absolute;
    top: 0;
  }

  .contentsMenuBox:nth-child(odd) .contentsImage {
    right: -20px;
  }

  .contentsMenuBox:nth-child(even) .contentsImage {
    left: -20px;
  }

  .contentsMenuBox .contentsImage img {
    display: block;
    width: 100%;
    height: 650px;
    /* height: auto; */
    object-fit: cover;
  }

  .contentsMenuBox:nth-child(odd) .contentsImage img {
    object-position: 0% 50%;
  }

  .contentsMenuBox:nth-child(even) .contentsImage img {
    object-position: 100% 50%;
  }

  #ideas-design.contentsMenuBox .contentsImage::after,
  #effective-use.contentsMenuBox .contentsImage::after {
    content: none;
  }

  .contentsMenuBox .contentsText {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    width: 40%;
    max-width: 560px;
    min-width: 440px;
    height: 560px;
    padding: 0 130px;
  }

  .contentsMenuBox:nth-child(odd) .contentsText {
    margin-left: 50px;
  }

  .contentsMenuBox:nth-child(even) .contentsText {
    margin-right: 50px;
  }

  .contentsMenuBox .contentsText::before {
    content: none;
  }

  #ideas-design.contentsMenuBox .contentsText::after {
    content: '';
    display: block;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0;
    left: -160px;
    background-image: url(../images/logo_ideas-design.svg);
    background-size: cover;
  }

  #effective-use.contentsMenuBox .contentsText::after {
    content: '';
    display: block;
    width: 206px;
    height: 94px;
    position: absolute;
    bottom: -20px;
    right: -246px;
    background-image: url(../images/logo_effective-use.svg);
    background-size: cover;
  }

  .contentsMenuBox:nth-child(odd).scrollin .contentsImage {
  /*  animation: anim_contentsImageR 1s 0s ease-out forwards; */
  }

  .contentsMenuBox:nth-child(even).scrollin .contentsImage {
  /*  animation: anim_contentsImageL 1s 0s ease-out forwards; */
  }

  .contentsMenuBox .contentsText .contentsIcon {
    width: 135px;
    margin: 0 auto;
    position: static;
  }

  .contentsMenuBox .contentsText .contentsTitle {
    font-size: 2.8rem;
    letter-spacing: 0.14em;
  }

  .contentsMenuBox .contentsText .contentsTitle span  {
    font-size: 1.4rem;
  }

  .contentsMenuBox .contentsText .contentsTitle .sub1  {
    margin-bottom: 10px;
  }

  .contentsMenuBox .contentsText .contentsTitle .sub2  {
    margin-top: 10px;
  }

  .contentsMenuBox .contentsText .contentsSubTitle {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
  }

  .contentsMenuBox .contentsText .contentsDesc {
    font-size: 1.4rem;
    line-height: 2.0;
    text-align: justify;
  }

  #effective-use.contentsMenuBox .contentsText .contentsDesc {
    text-align: center;
  }

  .contentsMenuBox .contentsText .contentsBtn {
    width: 300px;
    height: 48px;
  }

  .contentsMenuBox .contentsText .contentsBtn a {
    font-size: 2.0rem;
    line-height : 46px;
    padding-left: 20px;
  }

}

@keyframes anim_contentsImageR {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20px);
  }
}

@keyframes anim_contentsImageL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  }
}

@keyframes anim_contentsTextL {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(50px);
  }
}

@keyframes anim_contentsTextR {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50px);
  }
}

/*==========================================
 コンテンツエリア -> recruit
===========================================*/

#recruit {
  width: 100%;
  margin-top: 50px;
}

@media print, screen and (min-width: 601px) {

  #recruit {
    margin-top: 200px;
  }

}

/*==========================================
 共通
===========================================*/

.topSection_wrap {
	position: relative;
	width: 100%;
}

.topSection {
	position: relative;
  margin: 0 auto;
	padding: 50px 0;
  width: 100%;
}

/* topSectionBox */

.topSectionBox {
  position: relative;
	width: 100%;
	padding: 0 10px;
}

.topSectionBox .sectionIcon {
  width: 80px;
  margin: 0 auto;
}

.topSectionBox .sectionIcon img {
  width: 100%;
  height: auto;
}

.topSectionBox .sectionTitle {
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.46;
  letter-spacing: 0.26em;
  margin-bottom: 30px;
}

.topSectionBox .sectionDesc {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.91;
  margin-bottom: 30px;
}

@media print, screen and (min-width: 601px) {

  .topSection {
    padding: 130px 0;
  }

  .topSectionBox {
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }

  .topSectionBox .sectionIcon {
    width: 144px;
  }

  .topSectionBox .sectionTitle {
    font-size: 3.6rem;
  }

  .topSectionBox .sectionDesc {
    font-size: 1.4rem;
  }
	
}
