@charset "utf-8";

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    padding: 0;
    color: #2C3E50;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    text-align: center;
    background: #FFF;
}

.content_wrap {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}
header .content_wrap {
    padding-top: 0;
    width:100%;
}
.inner_wrap {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
header .content_wrap {
    width: 90%;
}
.mv_wrap {
    width: 100%;
    aspect-ratio: 16 / 9; 
    background-color: #c8c8c8;
    margin-bottom: 24px;
    border: 2px solid #000;
    overflow: hidden;
}
.mv_wrap video {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    display: block;
}
/* SCROLL保留 */
.video-below-decoration {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 40px;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    gap: 4px;
}
.scroll-indicator .scroll-text {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: #999;
}
.arrow-wrapper {
  display: inline-block;
  animation: bounce 1.2s infinite;
}
.arrow-down {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(45deg);
}
/* 上下にふわっと動く */
@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(6px); }
  100% { transform: translateY(0); }
}

.catch_wrap {
    background: url(images/lp2/speed_line.png) no-repeat center / cover;
    padding-top: 40px;
}
.header_title {
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    /* font-feature-settings: "palt"; */
    margin-bottom: 20px;
    color: #2C3E50;
		border-bottom: 7px solid #2C3E50;
    padding-bottom: 10px;
}
    @media (max-width: 910px) {
        .header_title {
            font-size: 4rem;
            line-height: 1.5;
            padding-bottom: 5px;
        }
    }
    @media (max-width: 450px) {
        .header_title {
            font-size: 3.2rem;
            line-height: 1.5;
            padding-bottom: 5px;
        }
    }

.heder_title_under {
    font-size: 8rem;
    font-weight: 900;
    /* color: #FF8C42; */
    color: #ffef42;
    font-style: normal;
    display: inline-block;
    transform: skewX(-10deg); 
    text-shadow:
	0px 4px 1px #000,
	1px 3px 1px #000,
	2px 3px 1px #000,
	2px 2px 1px #000,
	3px 2px 1px #000,
	3px 1px 1px #000,
	4px 0px 1px #000,
	3px -1px 1px #000,
	3px -2px 1px #000,
	2px -2px 1px #000,
	2px -3px 1px #000,
	1px -3px 1px #000,
	0px -4px 1px #000,
	-1px -3px 1px #000,
	-2px -3px 1px #000,
	-2px -2px 1px #000,
	-3px -2px 1px #000,
	-3px -1px 1px #000,
	-4px 0px 1px #000,
	-3px 1px 1px #000,
	-3px 2px 1px #000,
	-2px 2px 1px #000,
	-2px 3px 1px #000,
	-1px 3px 1px #000;
}
    @media (max-width: 840px) {
        .heder_title_under {
            font-size: 6rem;
        }
    }
    @media (max-width: 640px) {
        .heder_title_under {
            font-size: 4rem;
        }
    }
    @media (max-width: 450px) {
        .heder_title_under {
            font-size: 3.6rem;
        }
    }

.header_sub_title {
    font-size: 3.2rem;
    font-weight: 900;
    /* border: 1px solid #2C3E50;
    padding: 10px; */
    text-align: center;
    margin-bottom: 40px;
}
    @media (max-width: 840px) {
        .header_sub_title {
            font-size: 2.4rem;
            text-align: center;
            line-height: 1.5;
        }
    }

/* ボタン */
.btn {
    position: relative;
    background-color: #FF8C42;
    color: #fff !important;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 9999px;
    transition: .5s;
}
.btn:after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 28px;
    background: url(images/lp2/arrow.png) no-repeat center / contain;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.btn:hover {
    opacity: 0.8;
}
.btn-01 {
    margin: 0 auto;
    font-size: 2.6rem;
    text-align: center;
    max-width: 462px;
    height: 90px;
}
    @media (max-width: 450px) { 
        .btn-01 {
            font-size: 2rem;
            text-align: left;
            width:100%;
            height: 80px;
            padding: 30px;
        }  
    }/* Media Queries 450px END */

/* section01 */
.bg01 {
    background-color: #E4F4FD;
}
.flex01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
    @media (max-width: 910px) { 
        .flex01 {
            flex-direction: column;
        }
    }
.title_wrap {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 30px;
}
.title_wrap:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #2C3E50, #2C3E50 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #2C3E50, #2C3E50 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cont_title {
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1.4;
  font-feature-settings: "palt";
  text-align: center;
}
.cont_title span {
  font-size: 5.6rem;
}
  @media (max-width: 768px) { 
    .cont_title {
            font-size: 3.2rem;
    }
    .cont_title span {
      font-size: 4.6rem;
    }
  }/* Media Queries 450px END */

ul.list01 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
  @media (max-width: 840px) { 
        ul.list01 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }
  }
  
ul.list01 li {
    background-color: #2C3E50;
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.5;
}
  @media (max-width: 910px) { 
    ul.list01 li {
        padding: 15px;
        font-size: 2.4rem;
    }
  }

.subject01 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffef42;
    text-align: center;
    font-style: normal;
    display: inline-block;
    transform: skewX(-10deg); 
    text-shadow:
	0px 4px 1px #000,
	1px 3px 1px #000,
	2px 3px 1px #000,
	2px 2px 1px #000,
	3px 2px 1px #000,
	3px 1px 1px #000,
	4px 0px 1px #000,
	3px -1px 1px #000,
	3px -2px 1px #000,
	2px -2px 1px #000,
	2px -3px 1px #000,
	1px -3px 1px #000,
	0px -4px 1px #000,
	-1px -3px 1px #000,
	-2px -3px 1px #000,
	-2px -2px 1px #000,
	-3px -2px 1px #000,
	-3px -1px 1px #000,
	-4px 0px 1px #000,
	-3px 1px 1px #000,
	-3px 2px 1px #000,
	-2px 2px 1px #000,
	-2px 3px 1px #000,
	-1px 3px 1px #000;
}
.subject01 span {
    border-bottom: 5px double #2C3E50;
}
    @media (max-width: 767px) { 
        .subject01 {
            font-size: 3.8rem;
            line-height: 1.8;
        }
    }

.section01 .content_wrap {
    padding-bottom: 70px;
}

/* section02 */
.item_wrap01 {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}
    @media (max-width: 450px) { 
        .item_wrap01 {
            flex-direction: column;
            gap: 30px;
            margin-bottom: 30px;
        }
    }

.img_three_points {
    width: 167px;
}
ul.list_check {
    flex: 1;
    text-align: left;
}
ul.list_check li {
    display: flex;
    gap: 10px;
    font-size: 2.4rem;
    font-weight: 900;
    border-bottom: 2px dashed #444;
    padding: 15px 0;
}
    @media (max-width: 450px) { 
        ul.list_check li {
            font-size: 2rem;
            line-height: 1.5;
        }
    }

ul.list_check li:first-child {
    border-top: 2px dashed #444;
}
.subject02 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 2.3;
}
    @media (max-width: 767px) {
        .subject02 {
            font-size: 2rem;
        }
    }
.subject02 span {
    border-bottom: 7px solid #FF8C42;
}
.item_wrap02 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 680px;
    background-color: #fff;
    border: 5px solid #2C3E50;
    border-radius: 643px;
    margin: 0 auto;
    padding: 20px 50px;
    position: relative;
    margin-bottom: 60px;
}
    @media (max-width: 950px) {
        .item_wrap02 {
            flex-direction: column;
            gap: 20px;
            width: 300px;
            border-radius: 40px;
            padding: 20px;
            margin-bottom: 40px;
        }
    }


.item_wrap02::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 30px 20px 0 20px;
  border-color: #2c3e50 transparent transparent;
  translate: -50% 100%;
}

.item_wrap02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 21px 14px 0 14px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
.img_illust02 {
    width: 99px;
}
    @media (max-width: 950px) {
        .img_illust02 {
            width: 30%;
        }
    }

.item_wrap02_text {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.3;
    text-align: left;
}
    @media (max-width: 950px) {
        .item_wrap02_text {
            font-size: 2.4rem;
            text-align: center;
        }
    }


/* カード全体を囲むコンテナ */
.card_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}


/* 各カードのスタイル */
.card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    /* max-width: 200px;  */
    flex-shrink: 0; /* 縮まないように設定 */
    display: flex;
    flex-direction: column;
}

/* カードの上部（アイコンと背景色） */
.card_header {
    height: 77px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* 各ヘッダーの背景色 */
.color-blue {
    background-color: #ADD8EB;
}
.color-pink {
    background-color: #FBCBCB;
}
.color-yellow {
    background-color: #FFEAB1;
}
.color-green {
    background-color: #A6DCDA;
}


/* カードの下部（テキスト部分） */
.card_body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
}

.card_body p {
    font-size: 2rem;
    font-weight: 900;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 955px) {
    .card_container {
        grid-template-columns: repeat(2, 200px);
    }
}
@media (max-width: 500px) {
    .card_container {
        grid-template-columns: 1fr;
    }

    /* カードのレイアウトを横並びに変更 */
    .card {
        flex-direction: row;
        /* align-items: center; を削除することで、中の要素が高さ100%に伸びる */
        min-height: 120px;
    }

    /* アイコン部分（左側）の調整 */
    .card_header {
        flex-basis: 100px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    /* テキスト部分（右側）の調整 */
    .card_body {
        flex-grow: 1;
        /* ★重要：ここで改めて指定することで、テキストを上下中央に配置 */
        display: flex;
        align-items: center !important;
        justify-content: flex-start; /* テキストブロックは左寄せ */
        padding: 15px 20px; /* 内側の余白を調整 */
    }
    
    .card_body p {
        text-align: left; /* テキストの文字を左揃えに */
    }
}

.sample_movie_wrap {
    max-width: 400px;
    margin: 40px auto 0;
}
.sample_movie_text {
    padding: 15px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    background: #000;
    color: #fff;
}
.sample_movie_text span {
    background: #fff;
    color: #000;
    display: block;
    border-radius: 50px;
    width: 50%;
    margin: 0 auto 10px;
    font-size: 1.8rem;

}
    @media (max-width: 880px) {
        .sample_movie_text {
            width: 100%;
            font-size: 1.6rem;
        }
    }
.sample_movie {
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 9 / 16; 
    background-color: #c8c8c8;
    border: 2px solid #000;
    overflow: hidden;
}
    @media (max-width: 880px) {
        .sample_movie {
            width: 100%;
        }
    }

.sample_movie iframe {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    display: block;
}


/* section04 */
.sbject03 {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 45px;
}
    @media (max-width: 768px) {
        .sbject03 {
            font-size: 2rem;
            line-height: 1.5;
            margin-bottom: 30px;
        }
    }

.flow_container {
    margin-bottom: 60px;
}
/* フロー　カラー */
:root {
    --color-green: #35c6ac;
    --color-green-light: #DBFBEC;
    --color-red: #f28072;
    --color-red-light: #FFD1CB;
    /* --color-yellow: #f5c543; */
    --color-yellow: #ffc116;
    /* --color-yellow-light: #FFEC9E; */
    --color-yellow-light: #fff4c9;
    --color-blue: #64c5e8;
    --color-blue-light: #D8F2FF;
    --text-color-main: #444;
    --text-color-sub: #555;
    --arrow-color: #3f6072;
}

.flow_list {
    display: flex;
    flex-direction: row;
    gap: 0 15px;
    counter-reset: flow-counter;
}
    @media (max-width: 850px) {
        .flow_list {
            display: flex;
            flex-direction: column;
            gap: 50px 0;
            /* padding: 0 20px; */
            max-width: 400px;
            margin: 0 auto;
        }
    }
    
.flow_item {
    position: relative;
    background-color: var(--color-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex-grow: 1;
    flex-basis: 0;
}
.flow_item:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 31px;
    background-image: url(images/lp2/flow_arrow@2x.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 70px;
    right: -25px;
    /* transform: translateY(-50%); */
    z-index: 1;
}
    @media (max-width: 850px) {
        .flow_item:not(:last-child)::after {
            top: auto;
            right: auto;
            left: 50%;
            bottom: -40px;
            transform: translateX(-50%) rotate(90deg);
        }
    }
/* Color variations for each step */
.flow_item--green {
     --color-bg: var(--color-green-light); --color-icon-bg: var(--color-green);
}
.flow_item--red {
    --color-bg: var(--color-red-light); --color-icon-bg: var(--color-red);
}
.flow_item--yellow {
    --color-bg: var(--color-yellow-light); --color-icon-bg: var(--color-yellow);
}
.flow_item--blue {
    --color-bg: var(--color-blue-light); --color-icon-bg: var(--color-blue);
}

.flow_icon_wrapper {
    width: 123px;
    height: 123px;
    border-radius: 50%;
    background-color: var(--color-icon-bg);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow_title {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.4;
    color: var(--color-icon-bg);
    margin: 0 0 15px;
    text-align: center;
    font-feature-settings: "palt";
}
    @media (max-width: 850px) {
        .flow_title {
            font-size: 2.4rem;
        }
    }
.flow_description {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color-main);
    font-size: 1.6rem;
    font-weight: bold;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    @media (max-width: 850px) {
        .flow_description {
            font-size: 2rem;
        }
    }

.plan_wrap {
    background: #FFF7E0;
    border-radius: 10px;
    padding: 30px;
}

.plan_title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    position: relative;
    padding: 0 30px;
    margin-bottom: 30px;
    display:flex;
    align-items: center;
    justify-content: center;
}
    @media (max-width: 450px) {
        .plan_title {
            font-size: 2.2rem;
            padding: 0;
        }
    }

.plan_title::before,
.plan_title::after {
    content: "";
    border-top: 2px solid #444;
    width: 3em;
}
    @media (max-width: 450px) {
        .plan_title::before,
        .plan_title::after {
            width: 2em;
        }
    }
.plan_title:before {
  margin-right: 2rem; 
}
.plan_title:after {
  margin-left: 2rem; 
}
    @media (max-width: 450px) {
        .plan_title:before {
        margin-right: 1rem; 
        }
        .plan_title:after {
        margin-left: 1rem; 
        }
    }
.plan_item_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}
.plan_item {
    width: 260px;
    border: 3px solid #2C3E50;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}
.plan_name {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    background: #2C3E50;
    border-radius: 100px;
    height: 45px;
    line-height: 45px;
    margin-bottom: 15px;
}
.plan_text01 {
    font-size: 3rem;
    font-weight: 900;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
    margin-bottom: 15px;
}
.plan_text02 {
    display: inline-block;
    font-size: 5rem;
    font-weight: 900;
}
.plan_text02 span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    text-align: right;
    font-feature-settings: "palt";
    margin-top: 3px;
}

/* section05 */
.faq_item {
    margin-bottom: 30px;
}
    @media (max-width: 450px) {
        .faq_item {
            margin-bottom: 10px;
        }
    }

.faq_item:last-of-type {
    margin-bottom: 0;
}

.faq_item_q {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: #fff;
    border: 3px solid #444;
    padding: 15px;
    border-radius: 10px;
}
.q_text {
    flex: 1;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.5;
    text-align: left;
}
    @media (max-width: 450px) {
        .q_text {
            font-size: 1.8rem;
        }
    }

.faq_item_a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 18px;
}
.a_text {
    flex: 1;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    padding-top: 4px;
}
    @media (max-width: 450px) {
        .a_text {
            font-size: 1.8rem;
            padding-top: 0;
        }
    }

.faq_icon {
    flex-shrink: 0;
    width: 40px;
}
    @media (max-width: 450px) {
        .faq_icon {
            width: 30px;
        }
    }

/* section05 */
.section05 p {
    font-size: 2rem;
    line-height: 2;
    text-align: left;
}
    @media (max-width: 450px) {
        .section05 p {
            font-size: 1.6rem;
        }
    }

/* フッター
----------------------------------------------- */
.footer_wrap {
    padding: 30px 0;
    border-top: 1px solid #111;
}
ul.footer_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    font-size: 1.4rem;
    margin-bottom: 30px;
}
ul.footer_link a:hover {
    text-decoration: underline;
}
    @media (max-width: 586px) { 
        .footer_wrap {
            padding-top: 0;
        }
        ul.footer_link {
            flex-direction: column;
            gap: 0;
        }
        ul.footer_link li {
            width: 100%;
            text-align: left;
            border-bottom: 1px solid #4d4d4d;
        }
        ul.footer_link a {
            display: block;
            background: #000;
            color: #fff;
            padding: 15px 20px;
            position: relative;
        }
        ul.footer_link a:after {
            display: block;
            content: "";
            position: absolute;
            top: 50%;
            right: 20px;
            width: 6px;
            height: 6px;
            margin: -4px 0 0 0;
            border-top: solid 2px #898989;
            border-right: solid 2px #898989;
            -webkit-transform: rotate(45deg);
                    transform: rotate(45deg);
        }
    }/* Media Queries 430px END */

.footer_wrap p {
        font-size: 1.4rem;
}

/* お問い合わせフォーム
----------------------------------------------- */
.section05 .content_wrap {
    margin-bottom: 0;
}
.wpcf7-form p {
    margin: 0 !important;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1.6rem;
} 
.contact_form_wrap {
    text-align: left;
    margin: 40px 0 0;
}

    
.form-row {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #999;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
    @media (max-width: 767px) { 
        .form-row {
            flex-direction: column;
            align-items: flex-start;
        }
    }
.form-row:first-of-type {
    border-top: 1px solid #999;
    padding-top: 20px;
}
.form-label {
  font-weight: bold;
  display: block;
  width: 240px;
}
    @media (max-width: 767px) { 
        .form-label {
            width: 100%;
        }
    }

.form-input {
  flex: 1;
}
    @media (max-width: 767px) { 
        .form-input {
            width: 100%;
        }
    }

.form-textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  box-sizing: border-box;
}

.form-textarea {
  min-height: 160px;
}

.badge {
  display: inline-block;
  font-size: 1.2rem;
  padding: 4px 8px;
  margin-right: 6px;
  border-radius: 12px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  font-weight: bold;
}

.badge.required {
  background-color: #FF4D4D;
}

.badge.optional {
  background-color: #999;
}

.privacy-row {
    border: 1px solid #999;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.4rem;
    margin: 30px 0;
    height: 210px;
    overflow: auto;
}
.privacy-text p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 1em !important;
}
ul.privacy_list {
    margin: 0 0 2em 1em;
}
ul.privacy_list li {
    list-style-type: disc;
    margin: 0 0 5px;
    text-align: left;
    line-height: 1.8;
}
.privacy-check > p {
  display: contents;
}
.privacy-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.4rem !important;
    font-feature-settings: "palt";
}
.privacy-check .wpcf7-list-item-label {
    font-size: 1.4rem !important;
}
.privacy-check .wpcf7-form-control-wrap {
    margin: 0;
    padding: 0;
}
.privacy-check input[type="checkbox"] {
  margin: 0 5px 0 0;
  width: 18px;
  height: 18px;
}
.submit-row {
    margin-top: 50px;
    text-align: center;
}
.submit-row > p {
    display: contents;
    margin: 0;
}
.form-submit {
    display: block;
    background-color: #FF8C42;
    color: #fff !important;
    font-weight: 900;
    border-radius: 9999px;
    transition: .5s;
    border: none;
    cursor: pointer;
    max-width: 480px;
    width: 100%;
    height: 90px;
    line-height: 90px;
    font-size: 2.6rem;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}
        @media (max-width: 450px) { 
            .form-submit {
                height: 80px;
                font-size: 2rem;
                line-height: 80px;
            }
        }

/* === Contact Form 7 エラー表示のスタイル === */

/* 1. 各入力欄の下に表示される個別のエラーメッセージ */
span.wpcf7-not-valid-tip {
  color: #d9534f; /* 文字色 */
  font-size: 14px; /* 文字サイズ */
  font-weight: bold;
  margin-top: 8px; /* 上の余白 */
  display: block;
  text-align: left;
}

/* 2. フォーム全体のエラー概要メッセージ（エラー時） */
/* （例：「入力内容に問題があります。」）*/
.wpcf7-form.invalid .wpcf7-response-output {
  /* Contact Form 7のデフォルトの枠線を消す */
  border: none !important; 
  background-color: transparent !important; /* 背景も透過に */

  /* デザインを調整 */
  color: #333333; /* 文字色を黒っぽく */
  padding: 0;
  margin: 20px auto 0;
  text-align: center;
  font-weight: bold;
}

/* 3. 送信成功時のメッセージ */
.wpcf7-form.sent .wpcf7-response-output {
  /* デフォルトの緑の枠線を消す */
  border-color: #4cae4c !important; /* 色は成功とわかる緑などがおすすめ */
  background-color: #dff0d8 !important; /* 薄い緑の背景 */
  color: #3c763d !important;
  padding: 15px !important;
  border-radius: 8px !important;
  margin: 20px auto 0 !important;
  text-align: center !important;
  line-height: 1.5;
}


/* 料金プラン */
  table.plan_table {
    width: 100%;
    border: 1px solid #c0c0c0;
    min-width: 600px;
  }
    table.plan_table th, td {
    border: 1px solid #c0c0c0;
    padding: 12px;
    vertical-align: middle;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  /* ヘッダー行のスタイル */
  table.plan_table .header_row th {
    background-color: #2C3E50;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
  /* 青セクションのスタイル */
  table.plan_table .section_header01 {
    background-color: #eee;
    font-weight: bold;
    width: 200px;
  }
  /* 赤セクションのスタイル */
  table.plan_table .spc_section_row {
    background-color: #fcf69c;
    border-top: 5px double #2C3E50;
  }
  table.plan_table .spc_section_foot {
    background-color: #fbf8ce;
    font-weight: bold;
  }
  table.plan_table .highlight {
    font-weight: bold;
  }
.ft_s01 {
    font-size: 90%;
}
.ft_s02 {
    font-size: 70%;
}
  @media screen and (max-width: 768px) {
  .table-responsive-wrapper {
    width: 100%;
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
  }
}

.price_text {
    font-size: 2.4rem;
    font-weight: 900;
}
