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



/* 料金プラン */
.price-plan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}

.price-plan-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.price-plan-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.price-plan-card__header {
  background: #4A5568;
  color: white;
  padding: 20px;
  text-align: center;
}

.price-plan-card__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.price-plan-card__target {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
  padding: 0 20px;
}

.price-plan-card__content {
  padding: 24px;
}

.price-plan-card__section {
  margin-bottom: 24px;
}

.price-plan-card__section-title {
  font-size: 16px;
  font-weight: bold;
  color: #2D3748;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #edf2f7;
}

.price-plan-card__price {
  font-size: 28px;
  font-weight: bold;
  color: #2D3748;
}

.price-plan-card__unit {
  font-size: 14px;
  color: #666;
  margin-left: 4px;
}

.price-plan-card__support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-plan-card__support-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f7;
}

.price-plan-card__support-label {
  color: #4A5568;
  font-size: 14px;
}

.price-plan-card__support-price {
  font-weight: bold;
  color: #2D3748;
  font-size: 14px;
}

/* バリエーション */
.price-plan-card--pay-per-use .price-plan-card__header {
  background: #4dad07;
}

.price-plan-card--monthly .price-plan-card__header {
  background: #045929;
}

.price-plan-card--lump-sum .price-plan-card__header {
  background: #F27F1B;
}

.price-plan-card--monthly-payment .price-plan-card__header {
  background: #8C6F5E;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
  .price-plan-grid {
    flex-direction: row;
  }

  .price-plan-card {
    width: calc(25% - 15px);
  }
}

@media (max-width: 767px) {
  .price-plan-card {
    width: 100%;
  }

  .price-plan-card__title {
    font-size: 18px;
  }

  .price-plan-card__price {
    font-size: 24px;
  }
}

/* 個別の料金プラン */
.plan-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}

.plan-header {
  text-align: center;
  position: relative;
  padding-top: 100px;
  margin-bottom: 40px;
}

.plan-target {
  /* position: absolute; */
  /* top: 0; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  /* background: #FFD1DC; */
  /* border-radius: 50%; */
  /* width: 80px; */
  /* height: 80px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* font-size: 16px; */
  /* margin-bottom: 20px; */
}

.plan-target {
	 position: relative;
	 padding: 15px;
	 outline: 2px solid #a88c8c;
	 outline-offset: 2px;
	 background: #f2d0e0;
	 color: #924848;
	 font-size: 26px;
	 font-weight: bold;
}

.plan-target:before {
    position: absolute;
    top: calc(100% + 2px);
    left: 20px;
    height: 20px;
    width: 15px;
    background-color: #f2f2f2;
    border-right: 2px solid #a88c8c;
    content: "";
}

.plan-title {
    color: #006E54;
    font-size: 21px;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: 700;
}

.plan-price {
  font-size: 18px;
  margin-bottom: 15px;
}

.plan-price strong {
  color: #006E54;
  font-size: 24px;
}

.plan-description {
  text-align: center;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.plan-content {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.plan-basic-info {
  background: #eeeeee;
  padding: 20px;
  border-radius: 4px;
  width: 200px;
  border: 1px solid #d9d9d9;
}

.plan-basic-info dl {
  margin: 0;
}

.plan-basic-info dt {
  float: left;
  clear: left;
  margin-bottom: 15px;
}

.plan-basic-info dd {
  margin-left: 80px;
  margin-bottom: 15px;
}

.plan-image {
  flex-grow: 1;
  background: #FFD700;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.support-fees {
  margin-top: 30px;
}

.support-fees h3 {
  font-size: 16px;
  margin-bottom: 20px;
}

.support-fees table {
  width: 100%;
  border-collapse: collapse;
}

.support-fees tr {
  border-bottom: 1px solid #ddd;
}

.support-fees th,
.support-fees td {
  padding: 15px 2%;
  text-align: left;
}

.support-fees td {
  text-align: right;
}

.note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.note::before {
  content: "※";
  margin-right: 5px;
}

figure.wp-block-media-text__media {
    flex-grow: 1;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 767px) {
  .plan-content {
    flex-direction: column;
  }

  .plan-basic-info {
    width: auto;
  }
}


/* ボタ０１ */
.original-button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 20px;
  width: 200px;
  height: 40px;
  font-weight: bold;
  border-bottom: 5px solid #b46436;
  transition: 0.3s;
  background-color: #eb8b54;
}

.original-button:hover {
  border-bottom-width: 0;
  transform: translateY(5px);
}
a.original-button {
    margin: 0 auto;
}


/* ４グリッド */
.merits-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}

.merits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 20px;
}

.merit-item {
  text-align: center;
}

.merit-number {
  font-size: 36px;
  color: #2E8B57;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1;
}

.merit-icon {
  background: #FFF8DC;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  /* 画像が丸からはみ出ないように */
  position: relative;
  /* 画像の位置調整用 */
}

.merit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 画像のアスペクト比を保持しながら枠内に収める */
  position: absolute;
  top: 0;
  left: 0;
}

.merit-title {
  color: #2E8B57;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: bold;
}

.merit-description {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .merits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .merit-icon {
    width: 160px;
    height: 160px;
  }
}

/* アコーディオン */
.accordion-007 {
    max-width: 900px;
    margin-bottom: 7px;
}

.accordion-007 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border: 2px solid #f27f1b;
    border-radius: 4rem;
    color: #f27f1b;
    font-weight: 600;
    cursor: pointer;
}

.accordion-007 summary::-webkit-details-marker {
    display: none;
}

.accordion-007 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-bottom: 3px solid #f27f1b;
    border-right: 3px solid #f27f1b;
    content: '';
    transition: transform .3s;
}

.accordion-007[open] summary::after {
    transform: rotate(225deg);
}

.accordion-007 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin-top: 20px;
    padding: .8em 1.2em;
    border: 2px solid #f27f1b;
    border-radius: 25px;
    background-color: #fff;
    color: #8c6f5e;
    transition: transform .5s, opacity .5s;
}

.accordion-007[open] p {
    transform: none;
    opacity: 1;
}

.accordion-007 p::before,
.accordion-007 p::after {
    position: absolute;
    top: -15px;
    left: 1.2em;
    width: 30px;
    height: 15px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: '';
}

.accordion-007 p::before {
    background-color: #f27f1b;
}

.accordion-007 p::after {
    top: -12px;
    background-color: #fff;
}

.post_content h2 {
    margin: 4em 0 1.2em !important;!i;!;
}

.post_content h3:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title))::before {
	    display: none;
}
.post_content h3:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)) {
    padding: 0.25em 0em;
    color: #006835;
    margin-bottom: 1rem;
}
.advantage_point .wp-block-column p {
	border-radius: 5px;
    padding: 1.5rem 5%;
}
.service_1 h3 {
	    margin-top: 1.5rem;
}
.service_2 {
	    margin-bottom: 1.5rem;
}
.service_2 .wp-block-column {
    padding: 1% 2%;
    border-radius: 2px;
}
.service_2 .wp-block-column img {
    margin: 0 1rem 0 0;
}
.uagb-post__cta {
    display: block;
    width: 100%;
    text-align: center;
}
.uagb-post__comment {
	display: none !important;
}

.accordion-007 summary::after {
    border-bottom: 3px solid #006835;
    border-right: 3px solid #006835;
}
.accordion-007 summary {
    border: 2px solid #006835;
    color: #006835;
}
.timing_box {
    border: 3px solid #006835;
    margin: 0;
}
.timing_box .point {
    padding: 1.5%;
    400: 400;
    width: 450px;
	margin: 1.5% 0;
}
.timing_box h3 {
	margin: 0;
}
.timing_box .point ul {
	    padding: 0;
}
.timing_box .point li {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    list-style: none;
}
.timing_box .point li:before {
    content:  "";
    width: 15px;
    height: 15px;
    display:  inline-block;
    background-color: #006835; 
    border-radius:  50%;
    margin: 0 5px 0 0;
}
.timing_box .point h4 {border: none;padding: 0;margin: 0 0 1rem 0;}
.timing_box .point p {
    margin: 1rem 0 0 0;
}
.box_color1 {
    border: 3px solid #f39800;
}
.box_color1 .point li:before {
    background-color: #f39800;
}
.box_color2 {
	border: 3px solid #63504f;
}
.box_color2 .point li:before {
    background-color: #63504f;

}
.top_contact {
    border-top: 6px solid #f1d0e0;
}
.top_footer_button .button_color1 img {
    margin: 0 1rem 0 0;
}
.top_footer_button .button_color2 img {
    margin: 0 0 0 1rem;
}
.top_footer_button .button_color1 .wp-block-group,
.top_footer_button .button_color2 .wp-block-group {
    border-radius: 15px;
    justify-content: center;
    padding: 3%;
    /* height: 145px; */
}
.l-footer {
	background-color: #f1d0e0;
}