@charset "UTF-8";
/*各ページ独自のcss設定*/


/*以下に指定を記述する*/
body{
   background-color:#fafbe6;   
}



p{
   font-weight:500;
   color:#3E3A39;
   text-align: center;
}

/*タイトル*/
.page-title{
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}

.page-title h1{
   font-size:28px;
   text-align: center;
   margin-top:40px;
   font-weight: bold;
}






/*概要*/
.gaiyo{
    background-color: var(--white);
    border: 1px solid var(--emeraldgreen);
    margin: 50px auto 0;
    margin-top: 50px;
    position: relative;
    color: #3e3a39;
    font-size: 14px;
    padding: 15px;
}


.gaiyo::before{
    position: absolute;
    content: "";
    background-color: var(--skyblue);
    height: 20px;
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
}


.orime1{
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 0;
    border-color: var(--skyblue) transparent transparent transparent;
}

.orime2{
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent var(--beige) transparent;
}

.gaiyo a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  color: var(--emeraldgreen);

}

.gaiyo a:hover {
  opacity: 0.75;
}

.cap{
   font-weight:500;
   color:var(--black);
   text-align: center;
   margin: 0;  
   font-size:14px;
}

/*企画詳細*/
.title {
    width: 335px;
    height: 220px;
    margin: 40px auto;

    background-color: var(--white);
    box-shadow: inset 0 0 0 1px var(--emeraldgreen);
    
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;  
}  



.name{
   font-size: 19px;
   font-weight: 700;
   position: relative;
}

.name::after{
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--emeraldgreen);
}

.host{
   font-size: 15px;
   margin-top: -50px;
}

.flex-hz{
   display: flex;
   margin-top: -30px;
}

.flex-vt{
   display: flex;
   flex-direction: column;
   width: 190px;
}

.photo{
   height:100px;
   width: 100px;
   margin-right: 10px;
   /*仮*/background-color: grey;
}

.date{
   font-size: 17px;
}

.detail{
   text-align: center;
   font-size: 16px;
   font-weight: 500;
   color: #3E3A39; 

   width: 120px;
   margin: 17px auto 0;

   border: solid 1.5px var(--emeraldgreen);
}

.detail:hover{
   color: rgba(62, 58, 57, 0.5);
   border: solid 1.5px rgba(237, 170, 11, 0.5);
}



@media screen and (min-width:1024px) {
   .page-title h1{
      font-size: 32px;
   }

  .capbox{
    width: 80%;
    margin-bottom: 30px;
  }

  .cap{
    font-size: 20px;
    line-height: 27px;
  }

  .container{
    padding: 0 5%;
  }

  .flex-vt{
    width: 210px;
  }

  .title{
    width: 40%;
    margin: 30px auto;
  }

  .name{
    font-size: 20px;
  }
  
  .host{
    font-size: 17px;
    margin-top: -40px;
  }

  .photo{
    margin-right: 30px;
  }

  .date{
    font-size: 19px;
  }


  .detail{
    width: 150px;
  }

}
    