@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;
}

.movie-info {
    margin: 30px 0;
}

.movie-info-table {
    width: 100%;
    border-collapse: collapse;
}

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

.movie-info-table th {
    width: 25%;
    background: #f7f7f7;
    text-align: left;
}

.movie-affiliate-button {
    margin-top: 20px;
}

.movie-affiliate-button a {
    display: inline-block;
    padding: 12px 20px;
    background: #d62828;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.home-card-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:20px 0;
}

.home-card{
    display:block;
    border:1px solid #ddd;
    text-decoration:none;
    color:inherit;
    overflow:hidden;
}

.home-card img{
    width:100%;
    display:block;
}

.home-card-title{
    padding:10px;
    font-size:14px;
    line-height:1.5;
}

.home-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:20px 0;
}

.home-button{
    padding:8px 12px;
    border:1px solid #ddd;
    text-decoration:none;
}

@media(min-width:768px){
    .home-card-grid{
        grid-template-columns:repeat(4,1fr);
    }
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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