@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

.tagline{
	display:none;
}

/* ベースのスタイル */
/* ベースのスタイル */
.profile-card {
    display: flex;
    align-items: flex-start;
    border: 1px solid #8ACAB4;
    border-radius: 5px;
    padding: 20px;
    background-color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 30px; /* 要素間に余白を追加 */
}

/* PC用の基本スタイル（例） */
.profile-imagetop img {
  width: auto;
  height: 350px;
  object-fit: cover;
  border: 2px solid #eee;
  display: block;
  max-width: 100%;
}


/* スマホ（幅768px以下）では画像幅を広げる */
@media (max-width: 768px) {
  .profile-imagetop img {
    width: 100%;
    height: auto;
    object-fit: cover; /* 切り抜きOKなら cover, 全体表示したいなら contain */
  }

  .profile-imagetop {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .profile-card {
    flex-direction: column; /* 縦並びに変更 */
    align-items: center;
    text-align: center;
  }

  .profile-details {
    padding: 0;
  }
}

.article h2{
	border:none;
}

.profile-details {
    flex-grow: 1; /* 残りのスペースを全て使う */
	padding-left:20px;
}

.profile-details h2 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    color: #333;
}

.profile-details p {
    margin-bottom: 20px;
    font-size: 1.0em;
    color: #666;
    line-height: 1.6;
}

.profile-details .btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    background-color: #0073e6;
    color: #fff;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.profile-details .btn:hover {
    background-color: #005bb5;
}


/* 全体レイアウト */
.profile-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
}

/* ヘッダーカード */
.header-card {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #f8f9fa;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    gap: 20px;
    flex-wrap: wrap;
}

.profile-image {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border: 2px solid #eee;
}

/* プロフィール情報とボタンの列 */
.profile-content {
    display: flex;
    flex-grow: 1;
    gap: 20px;
}

/* プロフィール情報 */
.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.catchphrase {
    background-color: #007acc;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.qualifications {
    list-style: none;
    padding-left: 0;
}

.qualifications li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.qualifications li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #007acc;
}

/* ボタン列 */
.button-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 1em;
}

.line-btn {
    background-color: #00c300;
}

.line-btn:hover {
    background-color: #009900;
}

.reservation-btn {
    background-color: #007acc;
}

.reservation-btn:hover {
    background-color: #005ea6;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .header-card {
        flex-direction: column;
    }
    .profile-content {
        flex-direction: column;
    }
    .profile-image {
        width: 100%;
        height: auto;
    }
}


/* ヘッダーカード */
.header-card {
    display: flex;
    align-items: flex-start;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #f8f9fa; /* ライトグレー */
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.profile-image {
    width: 180px;
    height: 240px;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #eee;
}

.profile-info {
    flex-grow: 1;
}

.profile-info h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.catchphrase {
    background-color: #20B2AA; /* アクセントブルー */
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.qualifications {
    list-style: none;
    padding-left: 0;
}

.qualifications li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.qualifications li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #20B2AA; /* アクセントブルー */
}

/* プロフィールセクション */
.profile-section {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.profile-section h2 {
    color: #20B2AA;
    font-size: 1.5em;
    margin-bottom: 10px;
    border-bottom: 2px solid #20B2AA;
    display: inline-block;
}

/* 執筆取材セクション */
.works-section {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.works-section h2 {
    color: #20B2AA;
    font-size: 1.5em;
    margin-bottom: 10px;
    border-bottom: 2px solid #20B2AA;
    display: inline-block;
}

/* リンクボタン */
.profile-details .btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    background-color: #007acc; /* メインブルー */
    color: #fff;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.profile-details .btn:hover {
    background-color: #005ea6; /* 少し暗めのブルー */
}

.button007{
	margin-bottom:20px;
}

/* 007 */
.button007 a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button007 a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -1em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}
.button007 a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #6bb6ff;
    transition: 0.3s;
}
.button007 a:hover:before, .button007 a:hover:after {
    right: -0.5em;
}
.button007 a:hover {
    background: #edf6ff;
    color: #6bb6ff;
}

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

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

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