@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

body {
  background: #f8f6f2;
}
:root {
  --swl-block-margin: 2.3em;

}

/*-------この記事を書いた人------- */

/* カード全体 */
.writer-profile-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
	margin: 30px 0 60px!important;
	border: 2px dashed #eee;
}
/* カードの右・左共通 */
.wp-left, .wp-right {
  padding: 25px 20px;
}
/* カードの左側 */
.wp-left {
  width: 35%;
  border-right: 2px dashed #eee;
  text-align: center;
}
/* カードの右側 */
.wp-right {
  width: 65%;
}

/* 左側 */

/* 吹き出し */
.wp-label {
  position: relative;
  margin: 0 0 15px;
  padding: 10px 15px;
  border: 1px solid #222;
  display: inline-block;
  min-width: 120px;
  max-width: 100%;
  border-radius: 20px;
}
/* 三角 */
.wp-label::before,
.wp-label::after {
  content: '';
  border: 14px solid transparent;
  position: absolute;
  left: 50%;
  margin-left: -14px;
}
/* 線 */
.wp-label::before {
  border-top-color: #222;
  bottom: -28px;
}
/* 地 */
.wp-label::after {
  border-top-color: #fff;
  bottom: -27px;
}
/* 吹き出し内のテキスト */
.wp-label p {
	 color: #222;
	 margin-bottom: 0!important;
	 font-size: 14px!important;
	 font-weight: 700!important;
}

/* 画像 */
.wp-img {
  width: 100px;
  height: 100px;
  margin: 10px auto;
}
/* 画像を丸く、枠線をつける */
.wp-img img {
  border-radius: 50%;
  border: 2px solid #eee;
}
/* 名前 */
.wp-name {
  font-size: 18px;
  color: #6C9FCE!important;
  margin-bottom: 5px!important;
	font-size: 16px!important;
  font-weight: 700!important;
}
/* 職業 */
.wp-job {
  color: #7b7b7b;
	 margin-bottom: 0!important;
	 font-size: 14px!important;
	 font-weight: 700!important;
}

/* 右側 */

/* リストを左揃え・中央寄せに */
.ul-center {
  display: flex;
  align-items: center;
  flex-direction: column;
}
/* 最後の要素にだけ下に余白をつけない */
.ul-center ul li:not(:last-child) {
  padding-bottom: 3px;
}

/* リストの文字色 */
.ul-center ul .li-point {
  color: #7b7b7b;
	 font-size: 14px!important;
  font-weight: 400!important;
  line-height: 1.7!important;
}
/* リストの✓ */
.li-point:before {
  font-family: "Font Awesome 6 Brands";
  content: "\";
  color: #6C9FCE;
  padding-right: 10px;
}

/* 文章を左揃え・中央寄せに */
.wp-content {
  text-align: center;
  display: block;
}
/* 文章 */
.wp-content p {
  text-align: left;
  display: inline-block;
  color: #7b7b7b;
	 margin-bottom: 0!important;
	 font-size: 14px!important;
  font-weight: 400!important;
  line-height: 1.7!important;
}
/* SNSボタン全体 */
.wp-sns {
  text-align: center;
  padding: 20px 0 0!important;
	 margin: 0!important;
	 list-style: none!important;
}
/* SNSボタン */
.wp-sns li {
  display: inline-block;
  border: 1px solid #222;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding-bottom: 0!important;
	margin: 0 3px;
	box-sizing: border-box;
}
/* SNSボタンにポイントをあてた時の挙動 */
.wp-sns li:hover{
  position: relative;
  top: 1px;
}
/* SNSアイコン */
.wp-sns li a i {
  font-size: 19px;
  color: #222;
}
/* SNSアイコンの位置 */
.wp-sns li a i::before {
  position: relative;
  top: 6px;
	left: 0;
}

/* 767px（iPad）以下 */

@media (max-width: 767px) {
  /* カードを縦並びに */
  .writer-profile-card {
    display: block;
  }
  /* 左右の幅を100%に */
  .wp-left, .wp-right {
    width: 100%;
    padding: 35px;
  }
  /* 点線を左から下に */
  .wp-left {
    border-right: none;
    border-bottom: 2px dashed #eee;
  }
}

/*------------------------ 
 * リンク
 * ------------------------ */
/* Kimini英会話 CTAボタン */
.kimini-cta {
  display: block;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
  background: linear-gradient(135deg, #6bb6ff 0%, #4f8cff 100%);
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(79, 140, 255, 0.25);
  transition: all 0.25s ease;
  line-height: 1.6;
}

.kimini-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(79, 140, 255, 0.35);
  opacity: 0.95;
}

.kimini-cta .mini {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 2px;
}

.kimini-cta .main {
  display: block;
}

.textlink {
  color: #4f8cff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

.textlink:hover {
  color: #2f6fe4;
  opacity: 0.9;
}

