@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
.actress-profile {
    margin: 30px 0;
}

.actress-profile-table {
    width: 100%;
    border-collapse: collapse;
}

.actress-profile-table th,
.actress-profile-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.actress-profile-table th {
    width: 30%;
    background: #f7f7f7;
    text-align: left;
}


.actress-movies{
    margin-top:40px;
}

.actress-movie-list{
    list-style:none;
    padding:0;
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:20px;
}

.actress-movie-list li{
    border:1px solid #ddd;
    padding:10px;
    text-align:center;
}

.actress-movie-list img{
    width:100%;
    height:auto;
}

.movie-title{
    margin-top:10px;
    font-size:14px;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}