@charset "UTF-8";

/*ここにLP用のスタイルを記述します*/
/*ページテンプレートで「LP用テンプレート」を選択したときに、このCSSが適用されます*/
/*ページ毎にメインカラーを変更したい場合、固定ページのカスタムCSSに変数を入れてください。*/

/*変数*/
:root {

/*色*/
--main-color: #F1921F;
--red-color: #CC0C39;
--faq-color: #E3E6E6;
--btn-color: #FFCA00;
--text-color: #333333;
--border-color: #E3E6E6;
--gray-color: #F0F2F2;
--table-h-color: #FEBB6B;
--table-color: #FFF1DC;
--table-accent-color: #FFE0B1;
--table-z-color: #FFF8EC;

/*コンテンツ幅*/
--max-width: 652px;
--max-width-content: 1100px;

/*ボタンサイズ*/
--btn_width: 450px;
--btn_height: clamp(45px, 22.723px + 4.95vw, 55px);
--btn_font-size: clamp(16px, 2.634px + 2.97vw, 22px);

/*見出しサイズ*/
--h2_font-size: clamp(22px, 17.793px + 1.655vw, 36px);
--h2_height: clamp(55px, 41.034px + 3.724vw, 82px);
--h3_font-size: 22px;

/*マージン設定*/
--margin-bottom_L: clamp(73px, -85.168px + 35.149vw, 144px);
--margin-bottom_M: clamp(45px, 26.897px + 4.828vw, 80px);
--margin-bottom_S: 24px;
--margin-bottom_btn: 13px;

/*レスポンシブメディアクリ*/
--media-pc :1000px;
--media-tb: 600px;
}

/*---------------*/
/*--共通設定------*/
/*---------------*/

.flow--sentence {
    width: 100%;
}

.cf_fixed {
	display: none !important;
}
#common_footer {
	padding-bottom: 0 !important;
}
.footer
 {
    margin: 0 !important;
}

*{
	margin-top: 0;
}

.f-sml {
	font-size: 0.8em;
}

.f-big {
	font-size: 1.5em;
}

.color-bold {
	color: var(--main-color);
	font-weight: bold;
}
.flex-center {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
}
main {
	padding: 0 !important;
}
p {
	margin-top: 0 !important;
	margin-bottom: 1em !important;
}
.content-wrap {
width: 100%;
max-width: var(--max-width-content) !important;
margin: 0 auto var(--margin-bottom_M) !important;
}
.margin-bottom_L {
margin: 0 auto var(--margin-bottom_L) !important;
}
.margin-bottom_M {
margin: 0 auto var(--margin-bottom_M) !important;
}
.margin-bottom_S {
margin: 0 auto var(--margin-bottom_S) !important;
}
.margin-bottom_btn {
	margin-bottom: var(--margin-bottom_btn) !important;
}
.margin-none {
	margin-bottom: 0 !important;
}
.inner-wrap {
width: 90%;
max-width: var(--max-width) !important;
margin: 0 auto;
}
.mainColor {
color: var(--main-color);
}
.textColor {
color: var(--text-color);
}
.redColor {
color: var(--red-color);
}
.whiteColor {
color:#fff;
}
.scroll-box {
	width: 100%;
	height: 200px;
	overflow-y: scroll;
	border: 1px solid #707070;
	padding: 20px;
}
.scroll-box p {
	font-size: 14px;
}
.sp-display {
display:block;
}
@media screen and (min-width: 1000px) { 
.sp-display {
display:none;
}
}
.pc-display {
display:none;
}
@media screen and (min-width: 1000px) { 
.pc-display {
display:block;
}
}
/*ヘッダーライン*/
#common_header .ch_outer.ccus {
    border-bottom: 3px solid #7C5885;
}

/*---------------*/
/*--申込みボタン--*/
/*---------------*/

.cta_btn--wrap a {
width: 90%;
max-width: var(--btn_width);
height: var(--btn_height);
background-color: var(--btn-color);
border-radius: 30px;
display: flex;
justify-content: center;
align-items: center;
font-size: var(--btn_font-size);
text-decoration: none;
color: var(--text-color);
margin: 0 auto;
border-style: none;
	transition: all 0s;
font-weight: normal;
}
.cta_btn--wrap a:hover {
filter: brightness(90%);
	color: var(--text-color);
	transition: all 0s;
	cursor: pointer;
}
button.cta_btn--wrap {
width: 100%;
max-width: var(--btn_width);
height: var(--btn_height);
background-color: var(--btn-color);
border-radius: 30px;
display: flex;
justify-content: center;
align-items: center;
font-size: var(--btn_font-size);
text-decoration: none;
color: var(--text-color);
margin: 0 auto;
border-style: none;
	transition: all 0s;
font-weight: normal;
}
button.cta_btn--wrap:hover {
filter: brightness(90%);
	color: var(--text-color);
	transition: all 0s;
	cursor: pointer;
}

/*---------------*/
/*--白ボタン--*/
/*---------------*/
.white_btn--wrap a {
	width: 90%;
    max-width: var(--btn_width);
    height: var(--btn_height);
    background-color: #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--btn_font-size);
    text-decoration: none;
    color: var(--text-color);
    margin: 0 auto;
    border-style: none;
    font-weight: normal;
	border: 1px solid #898D8D;
	transition: all 0s;
}
.white_btn--wrap a:hover {
filter: brightness(95%) !important;
	color: var(--text-color) !important;
	transition: all 0s;
}
/*-----------------*/
/*--見出しスタイル--*/
/*-----------------*/

.h2 {
	font-size: var(--h2_font-size);
	font-weight: bold;
	text-align: center;
	color: var(--main-color);
	margin-bottom: var(--margin-bottom_S);
	margin-top: 10px !important;
	line-height: 1.5;
}
.h2-sml {
	font-size: clamp(16px, 13.931px + 0.552vw, 20px);
	font-weight: bold;
	text-align: center;
	color: var(--main-color);
}
.h2--style01 {
font-size: clamp(16px, 13.931px + 0.552vw, 20px);
font-weight: bold;
color: var(--main-color);
text-align: center;
position: relative;
margin-bottom: var(--margin-bottom_S) !important;
max-width: var(--wp--style--global--wide-size) !important;
}
.h2--style01-big {
font-size: var(--h2_font-size);
font-weight: bold;
color: var(--main-color);
text-align: center;
position: relative;
margin-bottom: var(--margin-bottom_S) !important;
max-width: var(--wp--style--global--wide-size) !important;
}
.h2--style01::before {
position: absolute;
content: "";
width: 100%;
height: 1px;
background-color: var(--main-color);
top: 50%;
left: 0;
transform: translateY(-50%);
}
.h2--style01-big::before {
position: absolute;
content: "";
width: 100%;
height: 1px;
background-color: var(--main-color);
top: 50%;
left: 0;
transform: translateY(-50%);
}
span.bg-white {
background-color: #fff;
position: relative;
padding: 0 15px;
display: inline-block;
}
.h2--style02 {
font-size: var(--h2_font-size);
color: #fff;
text-align: center;
background-color: var(--main-color);
margin-bottom: var(--margin-bottom_S) !important;
height: var(--h2_height);
display: flex;
justify-content: center;
align-items: center;
line-height: 1;
	margin-top: 0 !important;
}
.h2--style02 .h2-bigSize {
font-size: clamp(1.5rem, -0.066rem + 7.83vw, 3.125rem);
color: #fff;
}
.h3 {
font-size: 22px;
}
.h3--style {
	font-size: 22px;
	margin-bottom: var(--margin-bottom_M);
	color: var(--main-color);
}
.h4--style {
	font-size: 16px;
	border-left: 3px solid var(--main-color);
	padding-left: 14px;
	margin-bottom: 5px !important;
}
p.title--deco {
    font-weight: bold;
    width: 128px;
    height: 25px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 19px;
    line-height: 28px;
    text-align: center;
	margin-bottom: 0;
}

/*-----------------*/
/*--ボックススタイル--*/
/*-----------------*/
.content-inner__box {
border-radius: 10px;
background: #fff;
box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.12);
}
.h3--style01 {
    border: none;
    background-color: var(--main-color);
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-weight: bold;
    height: auto;
    padding: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 19px;
    line-height: 1.4;
}
.content-inner__box-content {
	padding: 35px clamp(1.25rem, 0.821rem + 2.15vw, 3.438rem);
	margin-top: 0 !important;
}
.content-inner__box ul {
	background-color: var(--gray-color);
    padding: 15px;
    border-radius: 11px;
	font-weight: bold;
	display: grid;
	gap: 5px;
}
[class*=is-style-icon-list-] > li::before {
    color: var(--main-color) !important;
}
.content-inner__box-content img {
    height: 150px;
    width: auto;
    margin: 0 auto;
}
.box {
	width: 100%;
	max-width: 350px;
    padding: 20px;
    border: 1px solid var(--main-color);
    border-radius: 3px;
}

/*-----------------*/
/*--ご加入の流れ--*/
/*-----------------*/
.flow figure {
	margin-bottom: 0 !important;
}
.flow div {
	margin-top: 0 !important;
}
.flow--wrap {
    display: grid;
    gap: 20px;
    align-items: center;
    grid-template-columns: clamp(6.688rem, 6.172rem + 2.58vw, 9.313rem) 1fr;
}


.flow--wrap figure img {
	width: clamp(6.688rem, 6.172rem + 2.58vw, 9.313rem);
}
p.flow--title {
    margin-bottom: 10px;
    font-size: 22px;
    color: var(--main-color);
    font-weight: bold;
}
figure.arrow--img img {
    width: clamp(3.375rem, 3.019rem + 1.78vw, 5.188rem);
}
p.kanryo--p {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
	margin-bottom: 10px;
}
figure.kanryo--img img {
    width: clamp(6.938rem, 6.545rem + 1.96vw, 8.938rem);
}

/*-----------------*/
/*--よくある質問--*/
/*-----------------*/
.wp-block-cocoon-blocks-toggle-box-1.toggle-wrap.toggle-box.block-box.not-nested-style.cocoon-block-toggle.faq_accordion {
    background-color: #E3E6E6 !important;
    border: none !important;
    border-radius: 10px !important;
}
.faq_accordion label.toggle-button {
    border: none;
    background-color: #E3E6E6;
    color: #333;
    font-weight: bold;
    font-size: clamp(1rem, 0.926rem + 0.37vw, 1.375rem);
    padding: 20px 50px 20px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px;
}
.faq_accordion .toggle-button::before {
    content: "Q" !important;
    display: block;
    font-size: 24px;
    color: #333;
    opacity: 1;
    line-height: 1;
}
.faq_accordion .toggle-checkbox:checked ~ .toggle-button::before {
    content: "Q" !important;
    display: block;
    font-size: 24px;
    color: #333;
    opacity: 1;
}
.faq_accordion .toggle-button::after {
    content: "+" !important;
    display: block;
    color: #333;
    opacity: 1;
    line-height: 1;
    transform: translate(0, -7px);
    font-size: 40px;
    font-weight: normal;
    margin-left: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
.faq_accordion .toggle-checkbox:checked ~ .toggle-button::after {
    content: "" !important;
	position: absolute;
    display: block;
	width: 18px;
	height: 3px;
    background-color: #333;
    opacity: 1;
    line-height: 1;
    transform: translate(0, 0);
	top: 50%;
	right: 20px;
	transform: translatey(-50%);
}
.faq_accordion .toggle-content{
	padding: 0 50px 0px;
	font-size: 16px;
}
.faq_accordion .toggle-checkbox:checked ~ .toggle-content {
    border: none;
	padding: 0 50px 20px;
	font-size: 16px;
}
.toggle-wrap .toggle-content {
    transition: opacity 0.3s ease-in-out !important;
}
.toggle-checkbox:checked ~ .toggle-content {
	transition: opacity 0.3s ease-in-out !important;
}

/*-----------------*/
/*--豊富な経験と実績のRJC--*/
/*-----------------*/
.relief .box {
    display: grid;
    grid-template-rows: 140px 80px auto;
	max-width: 300px;
	margin-top: 0;
	margin-bottom: 0 !important;
	border: 0;
}
.relief .h3 {
    display: flex;
    align-items: center;
	margin-top: 0 !important;
}
.RJC--item_wrap {
    display: flex;
    flex-direction: column;
	gap: 30px;
	max-width: 840px !important;
}
@media screen and (min-width: 1000px) {
    .RJC--item_wrap {
        flex-direction: row;
    }
}

/*-----------------*/
/*--お客様の声--*/
/*-----------------*/
.voice-wrap figure {
	margin-bottom: 0 !important;
}
.voice-wrap .title {
	width: 100%;
    display: grid;
    gap: 15px;
    grid-template-columns: 70px auto;
	align-items: center;
}
.voice-wrap .title p {
    width: 100%;
    margin-bottom: 0 !important;
}
.voice-wrap .box-wrap {
    display: flex;
    flex-wrap: wrap;
}
.voice-wrap .box {
    max-width: 350px;
    padding: 20px;
    border: 1px solid var(--main-color);
    border-radius: 3px;
    display: grid;
    grid-auto-rows: 120px auto;
    align-items: start;
}
p.hosyo {
    padding: 10px 20px;
    background-color: var(--gray-color);
    border-radius: 5px;
    font-weight: bold;
    color: var(--main-color);
}
p.hosyo--text {
    align-self: start;
}

/*-----------------*/
/*--お知らせ--*/
/*-----------------*/
.info_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0 !important;
  color: var(--main-color);
}

.info_menu p {
  width: 50%;
  text-align: center;
  margin: 0;
  padding: 5px;
  background-color: #fff;
  border: 0px;
  border-bottom: 5px solid #ccc;
  cursor: pointer;
  line-height: 3em;
  padding-bottom: 0;
}

.info_menu p.active {
  border: 1px solid var(--main-color);
  border-bottom: 5px solid var(--main-color);
  border-radius: 5px 5px 0 0;
}

.news-wrap ul li {
  border-bottom: 1px dotted #707070;
  padding: 10px;
  margin-bottom: 10px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.news-wrap ul li a {
  display: block;
  position: relative;
  color: #333;
  text-decoration: none !important;
  padding: 10px 35px 10px 10px;
}

.news-wrap ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--main-color);
  border-right: 0;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.wp-block-button.info_btn {
  position: relative;
  width: 300px;
}

.info_btn {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.info_btn .wp-block-button__link {
    width: 90%;
	max-width: var(--btn_width);
    height: var(--btn_height);
  border: 2px solid #44BB9F;
  border-radius: 4px;
  background-color: #fff;
  color: #44BB9F;
  padding: 10px 55px;
  font-size: 15px;
}
a.btn_cta.wp-block-button__link {
    width: 90%;
    max-width: var(--btn_width);
    height: var(--btn_height);
    background-color: var(--btn-color);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--btn_font-size);
    text-decoration: none;
    color: var(--text-color);
    margin: 0 auto;
}
button#show-more-faq-button {
    width: 90%;
    max-width: var(--btn_width);
    height: var(--btn_height);
    background-color: var(--btn-color);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--btn_font-size);
    text-decoration: none;
    color: var(--text-color);
    margin: 0 auto;
}
.wp-block-button.info_btn::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--main-color);
  border-right: 0;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.info_menu p.active {
    border: 1px solid var(--main-color);
    border-bottom: 5px solid var(--main-color);
    border-radius: 5px 5px 0 0;
}
a.wpp-post-title {
    line-height: 20px;
    text-decoration: none;
    color: #333;
}
a.att {
    display: flex;
    justify-content: center;
    width: 90%;
	margin: 0 auto;
}


/*-----------------*/
/*--マガジン--*/
/*-----------------*/
.popular-entry-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 20px;
    max-width: 1000px !important;
    margin: 0 auto 1.8em;
}
.popular-entry-card {
    display: grid;
    grid-template-areas:
        'img title'
        'img date';
    font-size: clamp(16px, 14.966px + 0.276vw, 18px);
    line-height: 20px;
    column-gap: 15px;
    grid-template-columns: clamp(8.75rem, 6.173rem + 12.88vw, 21.875rem) 1fr;
    text-align: left;
    text-decoration: none;
}
figure.popular-entry-card-thumb {
    grid-area: img;
    height: auto;
    width: 100% !important;
}
.popular-entry-card-content {
    margin-left: 0 !important;
}
@media screen and (max-width: 1024px) {
    .card-thumb img {
        max-width: 350px !important;
    }
}

/*-----------------*/
/*--ご来社での相談--*/
/*-----------------*/
li.box {
    list-style: none;
    display: grid;
    align-items: center;
    grid-template-columns: 21px auto;
    gap: 10px;
}
li.box:before {
    content: "";
    display: block;
    background-image: url(/wp-content/uploads/2025/08/icon-check.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 18px;
}
.raisha-wrap ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/*-----------------*/
/*--KVテキスト化--*/
/*-----------------*/
/*白背景*/
.inner-wrap.kv-text_inner.white {
    background-color: #fff;
}

/*共通設定*/
.kv-text_inner {
    background-size: cover;
    background-repeat: no-repeat;
}
.kouseiroudousyo {
    font-weight: bold;
    background-color: var(--text-color);
    color: #fff;
    width: 160px;
    border-radius: 30px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px !important;
}
.kouseiroudousyo.main-color {
    background-color: var(--main-color);
	width: 100%;
	max-width: 300px !important;
}
.kv-text_inner ul {
    width: 250px;
}
.kv--gyosyu span {
    background-color: var(--main-color);
    color: #fff;
    display: inline-flex;
    padding: 3px 5px;
    border-radius: 3px;
}
.KV--text-wrap {
	background-color: var(--main-color) !important;
}
.kv--text-sml {
	line-height: 1;
}
.KVtext-ttl {
    font-weight: 900;
    margin-top: 30px !important;
    line-height: 1.4;
}


/*-----------------*/
/*--表のスタイル--*/
/*-----------------*/
.about td,
.hosyo td {
	font-size: 14px;
}
.about table {
    width: 100% !important;
	table-layout: fixed;
	text-align: center;
}
.about th {
    background-color: var(--table-h-color) !important;
    border: 4px solid #fff !important;
	font-weight: normal;
}
.about td {
    background-color: var(--table-color) !important;
    border: 4px solid #fff !important;
}
.about td.accent {
	background-color: var(--table-accent-color) !important;
}

.about span.line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    margin: 3px 0;
}

.about tbody.z-color tr:nth-child(even) td {
    background-color: var(--table-z-color) !important;
}
.about .nichigaku .right td:nth-child(3) {
    text-align: right;
}
p.graph-title {
    background-color: #FFE0B1;
    display: flex;
    height: 36px;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hosyo table {
    width: 100% !important;
	border: 0;
}
.hosyo table thead th {
	background-color: var(--table-h-color);
	color: var(--text-color);
	font-size: 16px;
}
.hosyo th {
    background-color: var(--table-color);
    border: 4px solid #fff !important;
	font-weight: normal;
	color: #F1921F;
	font-weight: bold;
	width: 91px;
	font-size: 14px;
}
.hosyo table td {
    background-color: #fff !important;
	border-bottom: 2px solid var(--table-color);
	border-right: 0;
}
.hosyo tbody tr {
	height: 82px;
}

.zirei table thead th {
	background-color: var(--table-accent-color);
	color: var(--text-color);
	font-size: 16px;
}
.zirei th {
    background-color: var(--table-color);
    border: 4px solid #fff !important;
	font-weight: normal;
	width: 111px;
	font-size: 14px;
}
.zirei table td {
    background-color: #fff !important;
	border-bottom: 2px solid var(--table-color);
	border-right: 0;
	font-size: 16px;
}
.zirei tbody tr {
	height: 65px;
}

/*-----------------*/
/*--特別加入とは--*/
/*-----------------*/
.about p {
    margin-bottom: 10px;
}
.yoken-wrap .number {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: var(--main-color);
    display: flex;
    width: 33px;
    height: 38px;
    justify-content: center;
    border-radius: 3px;
}
.yoken-wrap {
    display: grid;
    gap: 15px;
    grid-template-columns: 33px auto;
    align-items: center;
    background-color: #FFF1DC;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 8px !important;
    font-weight: bold;
}



/*KVフォーム*/

/*KV部分*/
@media screen and (min-width: 1000px) {
	.kv_pc_img{	display: block; }
	.kv_sp_img{	display: none; }
}
@media screen and (max-width: 1000px) {
	.kv_pc_img{	display: none; }
	.kv_sp_img{	display: block; }
}

.kv_form_base_bg {
	/*background-image: url(https://www.xn--y5q0r2lqcz91qdrc.com/wp-content/uploads/2025/06/kv_bg_pc.png);
	background-size: contain;
	background-position-x: center;*/
}	
.kv_form_base_fg {
	max-width: 1100px;
	margin: 0 auto;
}
@media screen and (min-width: 1000px) {
	.kv_form_base_fg {
		display: grid;
		grid-template-columns: 1fr 430px;
	}
	.kv_box {
    display: flex;
    justify-content: center;
    align-items: center;
	}
}
	
.kv_form_box {
	background-color: var(--main-color);
    padding: 0px 0px 20px;
}
@media screen and (min-width: 1000px) {
 .kv_form_box {
   padding: 15px 15px;
 }
#content-top-in img {
    width: auto;
height: 480px;
}
.kv_form_base_bg {
background-color: var(--main-color);
}
}

.kv_form_inner {
	width: 90%;
	margin: 0 auto;
	background-color: #fff;
	padding: 30px 20px;
	border-radius: 10px;
}
.kv_form_title_pop {
	font-size: 14px;
	font-weight: bold;
	color: #27926b;
	line-height: 1em;
	padding-bottom: 8px;
}

.kv_form_title {
	font-size: 23px!important;
	font-weight: bold;
	color: var(--main-color);
	line-height: 1em;
	margin-bottom: 20px;
}

.form_item_title {
	font-size: 14px;
	text-align: left;
	margin-bottom: 5px;
}

.span_req {
	font-size: 10px;
	background-color: #f00;
	color: #fff;
	padding: 1px 3px;
	border-radius: 3px;
	margin-right: 7px;
}

.form_item {
	margin: 10px 0;
}
.form_item_input {
	font-size: 15px !important;
	padding: 15px !important;
}
.form_item_info {
	font-size: 12px;
	text-align: left;
	color: #666;
}
.submit-btn {
	background-color: #22893b;
	border: none;
	color: #fff;
	width: 100%;
	padding: 20px;
	/*font-size: clamp(22px, 5vw, 32px);*/
	font-size: 22px;
	font-weight: bold;
	border-radius: 50px;
	position: relative;
	cursor: pointer;
}
.submit-btn::after {
    font-family: "Font Awesome 5 Free";
    content: '\f054';
    font-size: clamp(18px, 4vw, 25px);
    font-weight: 900;
    color: #fff;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}

.slash {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.slash::before, .slash::after
{
    content: "";
    width: 15px;
    height: 1px;
    background-color: #27926b;
    margin: 0px -1px -1px;
}
.slash::before {
    transform: rotate(60deg);
}
.slash::after {
    transform: rotate(-60deg);
}
.button_lead {
    width: 320px;
    max-width: 90%;
    margin: 0 auto;
    padding-bottom: 10px;
}
/*事務所労災LP*/
.bg-orange{
	background-color:#FFA011;
	padding:60px 0 30px 0;
	text-align:center;
}
.wait-box{
	position: relative; 
    margin: 0 auto;
    overflow: visible;
	margin-bottom: 0 !important;

}
.hand-image {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 65px;
    height: auto;
}
.bg-white-container {
    background-color: #fff; 
	padding: 25px 20px;
    border-radius: 10px; 
	box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.12);
}
.office_list {
    list-style: none; 
    padding: 0;
    margin: 0;
}
.office_list li {
    display: flex; 
    align-items: center; 
    padding: 10px 0;
    line-height: 1.5;
}
.orange-list{
	border:2px solid #ffa011;
	border-radius: 10px; 
	padding: 10px
}
.custom-check {
    display: inline-block; 
    width: 24px; 
    height: 24px;
    margin-right: 10px; 
    flex-shrink: 0; 
    background-image: url('https://www.xn--y5q0r2lqcz91qdrc.com/wp-content/uploads/2025/11/グループ-7095.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.arrow {
    width: 5%;
}
.white-underline{
	border-bottom:3px solid #fff;
}
.injury-content {
    display: flex; 
    justify-content: space-around; 
    margin-bottom: 0px !important;
	align-items: baseline;
}
.injury-box {
    text-align: center;
    width: 30%; 
}
.injury-box img {
    width: 80px; 
    height: auto;
    display: block; 
    margin: 5px auto;
}
.check-image{
	position: absolute; 
    top: -4px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%); 
    z-index: 20;
	width: 150px;
    height: auto;
}
.office-image {
    width: 70%;
    padding-bottom: 20px;
}
.check-content{
	position: relative; 
	margin-bottom:0;
    margin: 0 auto;
    overflow: visible;
}
.check-content::after {
    content: ""; 
    position: absolute;
    bottom: 0; 
    left: 50%;
    transform: translateX(-50%); 
    z-index: 10; 
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 30px solid #fff; 
	bottom:-30px;
}
.bg-gray{
	background-color:#F5F5F5;
	text-align:center;
	padding:30px 0;
}
.task-cards {
    list-style: none;
    padding: 0;
    margin: 0;
}
.task-item {
	position:relative;
	border: 3px solid #FFA011;
    border-radius: 5px;
    margin-bottom: 20px; 
    padding: 15px; 
    background-color: #fff;
	box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.12);
}
.task-list-content{
	display:flex;
	align-items:center;
	margin-bottom:15px;
}
.number { 
    font-size: 32px; 
    font-weight: bold;
    margin-right: 10px; 
    flex-shrink: 0; 
    line-height: 1.4;
}
.task-image {
    display: block; 
    margin: 0 auto;
    height: auto;
	width:60%;
}
.task-title{ 
	font-size:24px;
	display:block;
    font-weight: bold;
    flex-grow: 1; 
    margin: 0; 
    padding: 0;
    line-height: 1.4; 
}
.red-underline{
	border-bottom:3px solid var(--red-color);
}
.caution-image {
    margin-top: 40px;
    width: 80px;
}
.faq-content{
	text-align:center;
	padding-top: 30px;
}
.faq-label {
    position: absolute;
    top: -15px;
    left: -15px;
	background-color: #E4E4E4;
    font-weight: bold;
    font-size: 1.5em;
    margin-right: 10px;
    width: 40px; 
    height: 40px; 
    line-height: 40px; 
    text-align: center;
    border-radius: 50%; 
    z-index: 10;
}
.faq-label-a {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #333; 
    color:#fff;
    font-weight: bold;
    font-size: 1.5em;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    z-index: 10;
}
.faq-question {
    position: relative;
    margin-top: -15px; 
	border:3px solid #E4E4E4;
    border-radius: 5px;
}
.faq-answer-container {
    position: relative;
    margin-top: -15px; 
	border:3px solid #333;
    border-radius: 5px;
}
.orange-underline{
	border-bottom:3px solid #FFA011;
}
.question-text{
    padding-top: 30px;
    width: 80%;
    text-align: left;
	margin: 0 auto;
	font-size:20px;
}
.answer-box-wrapper {
    padding:30px 20px 0 20px;
}
.down-arrow {
    width: 0;
    height: 0;
    margin: 0px auto 20px auto;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 20px solid #333;
}

.answer-message {
    background-color: #333;
    color: #fff;
    padding: 15px;
    margin:0 auto;
	margin-bottom:15px;
    width: 90%;
    text-align: center;
    font-weight: bold;
    border-radius: 3px;
    font-size: 1.1em;
}
.illustration-area {
    margin: 0 auto;
	width:50%;
	padding-bottom:10px;
}
.is-resized{
	width:40%;
}
.kourousyou p{
    text-align: center;
}
.kourousyou .link{
	font-weight:normal;
}
.kourousyou-box {
    width: 70%;
    max-width: var(--max-width) !important;
    margin: 0 auto;
}
@media screen and (max-width: 999px) {
	.pc-size30{font-size:24px;}
	.pc-size36{font-size:28px;}
}
@media screen and (min-width: 1000px) {
	.hand-image {
    top: -50px;
    width: 75px;
}
	.check-image {
    width: 180px;
}
	.pc-size30{font-size:30px;}
	.pc-size36{font-size:36px;}
	.bg-white-container {
    padding: 25px 125px;
}
	.task-item {
    padding: 30px 70px;
}
	.number {
    margin-right: 30px;
}
	.task-image {
    width: 55%;
    padding: 40px 0;
}
	.arrow {
    width:20px;
}
}
/*ダイアログ*/
#consultDialog {
    position: relative; 
    border: none;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 650px; 
    width: 90%; 
    padding: 0; 
    margin: auto; 
    top: 0; 
    bottom: 0;
    left: 0;
    right: 0;
}
#consultDialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}
.dialog-content {
    padding: 25px 30px; 
    text-align: center;
}
.dialog-content h3 {
    font-size:20px;
    margin-top: 0;
    margin-bottom: 10px;
}
.dialog-content .phone-number {
    font-size: 34px; 
    font-weight: bold;
    color: #333; 
    margin: 10px 0 10px 0!important;
}
.dialog-content .reception-hours {
    font-size: 14px;
    color: #333; 
    margin-bottom: 0;
	font-weight:normal;
}
#closeDialogButton {
    position: absolute; 
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #000;
    font-size: 1.5em; 
    line-height: 1; 
    cursor: pointer;
    padding: 5px;
    z-index: 1; 
}
.consult-trigger {
    display: flex;
    justify-content: center; 
    align-items: center; 
    text-decoration: none; 
    color: inherit;
    height: 50px; 
    background-color: #f7b733; 
    color: #fff; 
    border-radius: 5px; 
    font-size: 1.1em;
    padding: 0 20px; 
    box-sizing: border-box; 
}
.phone-icon{
    display: inline-block;
    width: 20px;
    height: 20px; 
    background-image: url('https://www.xn--y5q0r2lqcz91qdrc.com/wp-content/uploads/2025/11/グループ-7338.png'); 
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center;
    vertical-align: middle; 
    margin-right: 8px; 
}
@media (min-width: 1024px) {
    .consult-btn-wrap .pc-only {
        display: flex;
    }
    .consult-btn-wrap .sp-only {
        display: none;
    }
}
@media (max-width: 1023px) {
    .consult-btn-wrap .pc-only {
        display: none;
    }
    .consult-btn-wrap .sp-only {
        display: flex; 
    }
}