@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
*/

:root {
  --brown: #8b7058;
  --brown-dark: #79624e;
  --orange: #ff843a;
  --orange-line: #ff9a57;
  --orange-light: #fff8f1;
  --blue: #26aee9;
  --green: #2ac52b;
  --text: #333333;
  --muted: #a5a5a5;
}

* {
  box-sizing: border-box;
}

@media screen and (max-width: 680px) { 
  * {
  max-width: 100%;
}
 }

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.62;
}

.lp-parts {
  width: min(676px, calc(100% - 30px));
  margin: 0 auto;
  padding: 38px 0 90px;
}

/* 目次 */
.toc-box {
  width: 88%;
  margin: 0 auto 31px;
  padding: 20px 28px 18px;
  background: #f6f1ee;
  border-radius: 12px;
  color: #6e5a4b;
  font-size: 13px;
}

.toc-title {
  margin: 0 0 5px;
  font-weight: 700;
}

.toc-box ol {
  margin: 0;
  padding-left: 1.35em;
}

.toc-box ul {
  margin: 2px 0 4px;
  padding-left: 1.2em;
}

.toc-box li {
  line-height: 1.45;
}
.toc-box ol li ul li{
   list-style-type: disc;
}
/* 見出し */
.hd {
  margin: 19px 0;
  font-weight: 700;
}

.hd-2 {
  min-height: 36px;
  padding: 4px 10px;
  border: 2px solid var(--orange-line);
  border-radius: 3px;
  color: #f47b32;
  position: relative;
}


h4.wp-block-heading {
  min-height: 24px;
  padding: 2px 11px;
  color: #8a725d;
}

h4.wp-block-heading {
  position: relative;
  padding-bottom: 12px;
  line-height: 38px;
}

h4.wp-block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: #ffd99b; /* 上の線 */
}

h4.wp-block-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #937960; /* 下の線 */
}

.post_content h4{
  border: 0;
  line-height: 38px;
  margin: ;
}


/* ポイント */
.point {
  margin: 25px 0 32px;
  min-height: 38px;
  padding: 16px 16px 12px;
  border: 2px solid var(--orange-line);
  border-radius: 4px;
  position: relative;
  background: #fff;
}

.point::before {
  content: "!";
  position: absolute;
  top: -12px;
  left: -2px;
  width: 20px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0, 62% 100%, 0 100%);
}

.point-title {
  position: absolute;
  top: -17px;
  left: 15px;
  margin: 0;
  padding: 0 8px;
  background: #fff;
  color: #f47b32;
  font-weight: 700;
}

.point p:not(.point-title) {
  margin: 0;
}

/* 表 */
.compare-table {
  width: 100%;
  margin: 0 0 32px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
}

.compare-table th {
  padding: 11px 10px;
  background: var(--brown);
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  font-weight: 700;
}

.compare-table td {
  padding: 10px 13px;
  border: 1px solid var(--brown);
  background: #fffaf6;
  vertical-align: middle;
}

.compare-table td:first-child {
  width: 25%;
  text-align: center;
  font-weight: 700;
}

/* リスト */
.list-wrap {
  margin: 0 0 28px;
}

.list-wrap h5 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
}

.list-box {
  min-height: 108px;
  margin: 0;
  padding: 18px 25px;
  border: 1px solid #ffd4ad;
  border-radius: 7px;
  background: #fff;
  font-size: 13px;
}

.list-box li {
  margin: 5px 0;
}

.num-list {
  counter-reset: num;
  list-style: none;
}

.num-list li {
  counter-increment: num;
}

.num-list li::before {
  content: counter(num);
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: inline-grid;
  place-items: center;
  background: var(--brown);
  color: #fff;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.normal-list {
  list-style: none;
}

.normal-list li::before {
  content: "・";
  margin-right: 5px;
  color: var(--brown);
  font-weight: 700;
}

.icon-list {
  list-style: none;
}

.icon-list li::before {
  display: inline-block;
  width: 18px;
  margin-right: 3px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  color: var(--orange);
}

.circle-list li::before {
  content: "○";
  color: var(--orange);
}

.cross-list li::before {
  content: "×";
  color: var(--brown);
}

/* 吹き出し */
.voice {
  display: grid;
  grid-template-columns: 82px 1fr;
  column-gap: 16px;
  align-items: start;
  margin: 43px 0 47px;
}

.human-icon {
  width: 64px;
  height: 70px;
  margin: 23px auto 0;
  position: relative;
  color: #777;
}

.human-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 23px;
  width: 22px;
  height: 22px;
  background: currentColor;
  border-radius: 50%;
}

.human-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 28px;
  width: 54px;
  height: 42px;
  background: currentColor;
  clip-path: polygon(50% 0, 86% 20%, 100% 100%, 0 100%, 14% 20%);
}

.voice-woman .human-icon {
  color: var(--orange);
}

.balloon_in {
  min-height: 151px;
  padding: 39px 26px 15px;
  border: 3px solid #888;
  border-radius: 6px;
  position: relative;
  background: #fff;
}

.balloon_in::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 37px;
  width: 24px;
  height: 22px;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.balloon_in::after {
  content: "";
  position: absolute;
  left: -28px;
  top: 33px;
  width: 28px;
  height: 30px;
  background: #888;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  z-index: -1;
}

.voice-label {
  position: absolute;
  top: -19px;
  left: 25px;
  min-width: 224px;
  margin: 0;
  padding: 7px 20px 6px;
  background: #888;
  color: #fff;
  border-radius: 0 0 4px 4px;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

.voice-text {
  margin: 0 0 21px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.voice-source {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.voice-woman .balloon {
  border-color: var(--orange);
}

.voice-woman .balloon::after,
.voice-woman .voice-label {
  background: var(--orange);
}

.post_content h2  {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px;
  border: 5px solid #ff7b2f;
  border-radius: 10px;
  background-color: #ffffff;
  text-align: left !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ff7b2f;
  width: 100%;
}

.post_content h2::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  border-style: solid;
  border-width:  20px 22.5px 0 22.5px;
  border-color: #ff7b2f transparent transparent;
  translate: -50% 100%;
}

/*
.post_content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  border-style: solid;
  border-width: 11.3px 19.5px 0 19.5px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
*/
.post_content h3 {
  min-height: 25px;
  padding: 4px 0.5em 3px;
  color: #666;
  background: #fff8f1;
  border-radius: 10px;
}

.post_content h3::before{
    content: "■";
    background: none;
    display: block;
    left: -5px;
    position: absolute;
    z-index: 0;
    bottom:100%;
    margin-left: 20px;
    color: #f47b32;
    transform: translateY(3px);
}

.post_content h3 strong{
  display: block;
  margin-left: 25px;
}

.post_content h3{
  /* ▼ ここだけを変更！（0 .5em 0 から上下に2px追加） */
  padding: 4px .5em 2px;
}
/* CTA */
.cta-card {
  margin: 32px 0;
  padding: 26px 22px 18px;
  border: 1px solid #ffd2aa;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.cta-check {
  margin: 0 0 14px;
  display: inline-block;
  text-align: left;
  font-weight: 700;
  color: #6b5a4b;
}

.cta-main {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
}

.cta-main strong {
  color: #ff4f2e;
}

.cta-button {
  width: min(440px, 90%);
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: inset 0 8px 13px rgba(255,255,255,.35), inset 0 -8px 12px rgba(0,0,0,.15), 0 6px 10px rgba(0,0,0,.12);
  position: relative;
}

.cta-button::after {
  content: "›";
  position: absolute;
  right: 26px;
  font-size: 28px;
  line-height: 1;
}

.cta-button.orange {
  background: linear-gradient(#ffbf77, #ff7a2d 58%, #f06a24);
}

.cta-button.blue {
  background: linear-gradient(#57d8f3, #1aa9e5 58%, #2488d6);
}

.cta-button.green {
  background: linear-gradient(#64e36c, #21c62d 58%, #16a717);
}

.cta-note {
  margin: 14px 12px 0 0;
  text-align: right;
  font-size: 12px;
  color: #3e9ed8;
}

.standalone {
  display: flex;
  margin: 38px auto;
}

@media (max-width: 560px) {
  .page {
    width: calc(100% - 24px);
  }

  .toc {
    width: 100%;
    padding: 18px;
  }

  .voice-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .avatar {
    margin: 0 auto;
  }

  .voice-box::before {
    display: none;
  }

  .badge {
    left: 16px;
    min-width: auto;
    right: 16px;
  }
}


.midashi{
    font-weight: bold;
    font-size: 22px;
    margin:0 auto 50px;
    width: 900px;
}
.p-postList{
  width: 900px;
  margin: 0 auto;
}
.p-postList__item{
    width: 32% !important;
    float: left;
    margin: 0 0 2%;
    background: #f4f1ef;
    border-radius: 10px;
    height: 280px;
    padding: 0 !important;
}
.p-postList__item:nth-child(3n+2){
    margin: 0 2% 2%;
}

#main_content {
    background: none;
    padding: 130px 0 70px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.p-postList__thumb{
  box-shadow: none;
}

.p-postList,.aside-access{
    width: 900px;
    margin: 0 auto;
}

.c-pagination{
    clear: both;
    background: #f4f1ef;
    padding: 50px 10%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
     display: flex;
    justify-content: center;
}

.page-numbers{
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    margin-right: 3px;
}

.c-pagination__dot{
        margin: 15px 3px;
}


.c-postThumb__cat,.p-postList__excerpt{
    display: none;
}

.p-postList__body{
    padding: 2%;
    box-sizing: border-box;
}

.p-postList__times{
    text-align: right;
}

.p-postList__title{
    height: 66px;
    overflow: hidden;
}

#comments{
   clear: both;
}

.p-postList.-type-card{
  margin-right: 0;
  margin-left:0;
}

.post_content a{
  color: #fff !important;
}
.cta-button::after{
  top: 10px;
}

.list-wrap li::marker {
  content: none;
}

.post_content ol, .post_content ul{
  margin-left: 0;
}
.compare-table thead tr th{
  background: #937960;
  border: 1px solid #937960;
}
.compare-table tbody tr th{
  background: #f4f1ef;
  color: #000;
}
.compare-table tbody th,.compare-table tbody td{
  border: 1px solid #937960;
  box-sizing: border-box;
}
.compare-table tbody td{
  background: #fff;
}

.post_content h2::before{
  border:0 !important;
}

.point-box {
  position: relative;
  border: 2px solid #f27435;
  border-radius: 10px;
  padding: 5px 30px 0px 30px;
  color: #f27435;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

/* 左の「！」アイコン */
.point-box::before {
  content: "!";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: bold;
}

/* 右端の二重ライン */
.point-box::after {
  content: "";
  position: absolute;
  top: -11px;
  right: -2px;
  width: 45px;
  height: 65px;

  background:
    linear-gradient(
      135deg,
      transparent 40%,
      #f27435 40%,
      #f27435 48%,
      transparent 48%
    ),
    linear-gradient(
      135deg,
      transparent 60%,
      #f27435 60%,
      #f27435 68%,
      transparent 68%
    );
}

[class*=page-numbers].current, [class*=page-numbers]:hover{
  background: #fff;
  color: #000;
}
.cta-note a{
  color: #3e9ed8 !important;
}


.wp-block-list li a{
  color: #000 !important;
}

.faq_q::before{
      content: "Q" !important;
      margin-left: 0 !important;
}

#header_logo a{
  opacity: 1 !important;
}

.wp-block-table th {
      border: 1px solid #04384c !important;
      box-sizing: border-box;
}

#page_header .catch span{
  opacity: 1 !important;
}

.swell-block-faq__item h3{
  background: #fff;
}

.swell-block-faq__item h3 strong{
  margin-left: 0px;
}

@media only screen and (max-width: 800px) {
     #main_content{
        padding: 70px 20px !important;
        box-sizing: border-box;
    }