@charset "UTF-8";

/****************************************
	こちらは各サイト独自のcssを記載します
*****************************************/

/* TOP
-----------------------*/
/* top-FV-area */
.fv_bgi {
	background-image: url(../img/top/fv_bgi_sp.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center; /* 下辺固定 */
	padding-bottom: 5rem;
}

.fv_tit {
	width: 85%;
    text-align: center;
	margin: 0 auto;
	padding: 50px 0;
}

.fv_img {
	width: 92%;
}

@media (min-width:768px) {
	.fv_bgi {
		/* max-height: 930px; */
		width: 100%;
		height: 65vw;
		background-image: url(../img/top/fv_bgi.png);
		display: flex;
        align-items: flex-end; /* 内部要素も下寄せ */
        background-position: bottom center; /* 下辺固定 */
		padding-bottom: 0;
	}
	.fv_inner {
		margin-bottom: 17vw;
	}
	.fv_flex {
		display: flex;
		align-items: center;
		background: rgb(255 255 255 / 70%);
		max-height: 630px;
	}
	.fv_tit {
		width: 100%;
		padding: 60px;
	}
	.fv_img {
		width: 100%;
		text-align: right;
	}
	.fv_img img {
		max-height: 630px;
		width: 100vw;
		height: auto;
		object-fit: cover;
	}
}

/* タイトル装飾 */
.top_h2 {
  font-size: 2.4em;
	font-weight: bold;
	margin-bottom: 2rem;
}

.ttl_deco {
	font-size: 1.3rem;
    letter-spacing: .5px;
	position: relative;
	display: inline-block;
}
.ttl_deco:before {
    background: #e6eef3;
    position: absolute;
    content: "";
    width: 50px;
    height: 20px;
    top: 10px;
    left: 26px;
    z-index: -1;
}
.ttl_deco.deco_wh:before {
    background: var(--bg-main-color);
}
.wrap p.ttl_deco {
  margin-bottom: 0;
    font-size: 1rem;
}
.ttl_deco:after {
	content: '';
	position: absolute;
	top: 50%;
	width: 55px;
	left: calc(50% - 23px);
	display: inline-block;
	height: 1px;
	background-color: #333;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	z-index: -2;
}
.ttl_deco.deco_wh:after {
    background-color: #fff;
}

@media (min-width: 768px) {
  .top_h2 {
	font-size: 2.3em;
  }
}


/* cd-fixed-bg 背景画像固定パララックス */
.cd-fixed-bg-on {
	background-color: rgba(0,53,81,.9);
	color: #FFF;
}
.cd-fixed-bg {
	box-sizing: border-box;
	color: #FFF;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
    min-height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
}

.cd-fixed-bg.cd-bg01  {
  background-image: url('../img/top/para_img01_dummy.jpg');
}
.cd-fixed-bg.cd-bg02  {
  background-image: url('../img/top/para_img02_dummy.jpg');
}



/*****************************************
	Elements Page1
*****************************************/
/* ギャラリー
   elements---0002
-----------------------------------*/
.gallery01 li, .gallery01 li:first-of-type, .gallery02 li, .gallery02 li:last-of-type {
  width: 100%;
  margin: 0 0 3%;
}

.gallery03 {
  columns: 1;
}
.gallery03 li {
  padding-bottom: 3%;	
}
.gallery03 img {
	width:100%;
	height:auto;
	vertical-align: bottom;	
}

@media (min-width:768px) {
  .gallery01 li {
  	float: left;
    margin: 0 0 2% 0;
    width: 32%;
  }
  .gallery01 li:first-of-type {
    margin: 0 2% 2% 0;
    width: 65.7%;
  }
  .gallery02 li {
    float: left;
    margin: 0 2% 2% 0;
    width: 32%;
  }
  .gallery02 li:nth-of-type(3) {
    margin: 0 0 2% 0;
  }
  .gallery02 li:last-of-type {
    width: 66%;
    margin: 0 0 2% 0;
  }
  .gallery03 {
    columns: 3;
  }
  .gallery03 li {
    padding-bottom: 5%;
  }
}


/* control_list
   elements---0003
-----------------------------------*/
.item_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.item_list .item_list_blk {
	width: 47%;
	margin-bottom: 0;
}
.item_list .item_list_blk p {
    margin: .6rem 0 1rem;
}

@media (min-width:768px) {
	.item_list .item_list_blk {
		width: 30%;
		margin-bottom: 1.5em;
		text-align: center;
	}
}



/* control_list
   elements---0004
-----------------------------------*/
.control_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.control_list .blk {
	width: 100%;
	margin-bottom: 35px;
	position: relative;
}
.control_list .blk:first-of-type:after,
.control_list .blk:nth-of-type(2):after {
	content: "";
    background: url(../img/common/arr_ctrl.gif) no-repeat center;
    width: 26px;
    height: 72px;
    position: absolute;
	top: auto;
    right: 50%;
	bottom: -40px;
	transform: rotate(90deg) translateY(-14px);
}
.control_list .blk dl {
	border: var(--main-color) 2px solid;
	border-radius: 10px;
	padding: 1em;
	text-align: center;
	margin-bottom: 1em;
}
.control_list .blk dl dt {
	font-size: 1.5em;
}
.control_list .blk dl dd {
	font-size: 1.125em;
}

@media (min-width: 768px) {
	.control_list .blk {
		width: 28%;
		margin-bottom: 0;
	}
	.control_list .blk:first-of-type:after, .control_list .blk:nth-of-type(2):after {
		top: 20px;
		right: -60px;
		bottom: 0;
		transform: rotate(0);
	}
}


/* control_list
   elements---0006
-----------------------------------*/
blockquote {
    position: relative;
    padding: 45px 15px 5px;
	margin-bottom: 1.5em;
    box-sizing: border-box;
    background: var(--main-color);
}
blockquote:before{
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 15px;
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
	color: #aaa;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}

/* control_list
   elements---img-4
-----------------------------------*/
.clm_wrap {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0;
}
.clm_wrap .clm_blk {
	width: 100%;
	margin: 0 0 5%;
}
.clm_wrap .clm_blk_ttl {
	background: var(--btn-color);
    padding: 1rem;
	position: relative;
	text-align: center;
	color: #fff;
	line-height: 1.3;
    font-size: 1.4em;
	border-radius: 5px;
}
.display_none {
	display: none;
}
.clm_wrap .clm_blk_ttl.open {
	border-radius: 5px 5px 0 0;
}
	.acc_label {
		cursor: pointer;
	}
	.acc_label i {
		display: block;
		width: 18px;
		height: 18px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		transform-origin: center center;
		transition-duration: 0.2s;
		top: 50%;
		position: absolute;
		right: 4%;
		transform: translateY(-50%);
	}
	.acc_label i:before, .acc_label i:after {
		display: flex;
		content: '';
		background-color: #fff;
		border-radius: 10px;
		width: 18px;
		height: 4px;
		position: absolute;
		top: 7px;
		left: 0;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		transform-origin: center center;
	}
	.acc_label i:before {
		width: 4px;
		height: 18px;
		top: 0;
		left: 7px;
	}
	.acc_label.open i:before {
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
.clm_wrap .clm_blk_inner {
	padding: 1em;
	border: var(--btn-color) 1px solid;
    border-radius: 0 0 5px 5px;
}

.clm_wrap .blk .txt_blue {
	font-size: 1.2em;
    margin-bottom: 0.5em;
}
.clm_blk .blk2_area .blk:nth-of-type(1) {
	width: 32%;
}
.clm_blk .blk2_area .blk:nth-of-type(2) {
	width: 63%;
}
.clm_wrap .blk2_area .blk:first-of-type p:last-of-type {
	text-align: center;
}
	
@media (min-width:768px) {
	.clm_wrap .clm_blk {
		width: 46%;
	}
	.clm_wrap .clm_blk_inner {
    	padding: 1em 2em;
	}
}



/*****************************************
	Elements Page2
*****************************************/
/* フロー表パターン１
   elements---0006
-----------------------------------*/

.flow_blk {
	display: flex;
	flex-wrap: wrap;
} 
.flow_ttl {
	background: var(--bg-sub-color);
	text-align: center;
	font-size: 1.4em;
	color: var(--acent-color);
	width: 100%;
	box-sizing: border-box;
	position: relative;
	padding: .8em;
	display: flex;
    justify-content: center;
    align-items: center;
}
.flow_column {
	background: var(--bg-sub-color);
	padding: 2em;
	box-sizing: border-box;
	width: 100%;
}

.arrow_down {
	position: relative;
    margin: 1.5em 0;
    display: block;
    height: 30px;
}

.arrow_down:before {
	content: "";
    background: url(../img/common/arr_ctrl.gif) no-repeat center;
    width: 26px;
    height: 72px;
    position: absolute;
    transform: rotate(-90deg) translate(50%, -25%);
    top: -25%;
    left: 50%;
}

.arrow_down_right {
	position: relative;
}
.arrow_down_right:before {
	content: "";
    background: url(../img/common/arr_ctrl.gif) no-repeat center;
    position: absolute;
    width: 26px;
    height: 72px;
    transform: rotate(-90deg) translate(-100%,25%);
    bottom: -26px;
    right: 50%;
    background-size: 65%;
}

@media (min-width:678px) {
	.flow_column {
		width: 80%;
	}
	.flow_ttl {
		width: 20%;
		font-size: 1.625em;
	}
	.arrow_down {
		margin: 1.5em 0;
	}
	.arrow_down:before {
		top: -20%;
		transform: rotate(-90deg) translate(50%, 50%);
	}
	.arrow_down_right:before {
		transform: rotate(-180deg) translateY(50%);
		top: 50%;
		right: -30px;
		bottom: auto;
	}
	.blk2_area .blk.arrow_down_right {
		margin: 2% auto 20px;
	}
}


/* フロー表パターン2
   elements---0007
-----------------------------------*/

.flow_inner {
	padding-left: 25px;
    padding-bottom: 3rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.flow_inner:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #bdbdbd;
    position: absolute;
    top: 0;
    left: 6px;
    z-index: -2;
}

.flow_inner .flow_blk {
	padding-top: 3rem;
	display: block;
}
.flow_heading {
	font-size: 1.7rem;
    line-height: 1;
    font-weight: 700;
    position: relative;
	color: var(--acent-color);
}
.flow_heading:before {
    --size: 16px;
    content: "";
    display: block;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--acent-color);
    position: absolute;
	left: -26px;
	top: calc(0.5em * 1 - 7px);

}
.flow_content {
	margin-top: 1rem;
}
.flow_head {
	padding: 1.3rem 1.5rem;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: #bdbdbd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px 10px 0 0;
    background-color: var(--bg-sub-color);
}
.flow_head h2 {
	font-size: 1.25rem;
	color: var(--bg-main-color);
}
.flow_body {
    padding: 1.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #bdbdbd;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.flow_body_wrap, .flow_body_wrap table th {
	    width: 100%;
	}
.flow_img {
	margin: 1.5rem 0 0;
	width: 100%;
}

@media (min-width: 768px) {
	.flow_inner .flow_blk {
		padding-top: 5rem;
	}
	.flow_inner {
	    padding-left: 48px;
	}
	.flow_heading {
		font-size: 2.4rem;
	}
	.flow_heading:before {
	    left: -48px;
		top: calc(0.5em * 1 - 8px);
	}
	.flow_content {
		margin-top: 2.5rem;
	}
	.flow_head {
		padding: 2rem 3rem;
	}
	.flow_head h2 {
	    font-size: 1.5rem;
	}
	.flow_body {
		padding: 3rem;
	}	.flow_body_wrap {
		width: 65%;
	}
	.flow_body_wrap table th {
		width: 25%;
	}
	.flow_img {
		position: absolute;
		top: -5rem;
		right: 2rem;
		transform: rotate(5deg);
		width: 350px;
	}
}


/*****************************************
	Elements Page3
*****************************************/

/* スタッフ紹介
   elements---0002
-----------------------------------*/
.box_shadow {
	box-shadow: #dfdfdf 1px 1px 10px;
	padding: 3%;
	box-sizing: border-box;
}
.staff_blk {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.staff_photo {
	width: 55%;
	margin: 0!important;
}
.staff_name {
	font-size: 1.6rem;
    font-weight: bold;
}
.staff_name .degree,
.staff_name .en_name{
	font-size: .95rem;
	display: block;
	line-height: 1.3;
}

.staff_blk .staff_name {
	margin: 0!important;
	width: 40%;
}



/*****************************************
	Elements Page4
*****************************************/
/* 比較表 */
.price-box01 {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.price-box01>div {
	width: 100%;
	margin-bottom: 20px;
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
}
	.price-box01 .box-left {
		border: 2px solid #ccc;
	}
	.price-box01 .box-right {
		border: 2px solid var(--main-color);
	}
.price-box01 .ttl {
    margin: 0 20px 15px;
    padding: 3px 15px;
    text-align: center;
    background: var(--main-color);
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
	font-size: 1.15em;
}
	.price-box01 .box-left .ttl {
		background: #ccc;
		color: #333;
	}
.price-box01 .staff-date {
    padding: 0 40px;
    margin-bottom: 20px;
}
	.price-box01 .box-left .staff-date {
		padding: 0 20px;
	}
.staff-date li {
    display: flex;
}
.price-box01 .staff-date .date {
    font-weight: bold;
    width: 30px;
}
.price-box01 .staff-date .detail {
    width: calc(100% - 30px);
}
.price-box01 .child-box {
    margin: 0 20px 20px;
}
.price-box01 .child-box dt {
    padding: 3px 15px;
    text-align: center;
    background: #cfdee8;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.price-box01 .child-box dd {
    background: var(--bg-sub-color);
    padding: 15px 20px;
}
.price-box01 .child-box .staff-date {
    padding: 0;
    margin-bottom: 0;
}
.price-box01 .price {
    margin: auto 0 0;
    text-align: right;
    padding: 7px 20px;
    border-top: 2px solid var(--main-color);
    font-weight: bold;
    color: var(--main-color);
}
.price-box01 .price .num {
    font-size: 150%;
    position: relative;
    top: 2px;
}
.price-box01 .box-left .price {
	border-top: 2px solid #ccc;
	color: #333;
}

@media (min-width: 768px) {

	.price-box01 {
		margin-bottom: 15px;
	}
	.price-box01 > div {
		    width: 32%;
			margin-bottom: 0;
	}
}


/* 料金表 */
.tbl_price th {
	border: #ccc 1px solid;
	background: #e6eef3;
	text-align: left;
	padding: 2%;
}
.tbl_price td {
	border: #ccc 1px solid;
	background: #fff;
	text-align: right;
	padding: 2%;
}
.tbl_price tr:first-of-type th, .tbl_price tr:first-of-type td {
	border-top: #ccc 1px solid;
}


/* スタッフ紹介
   elements---FAQ
-----------------------------------*/
.faq-blk {
  position: relative;
}

.faq-blk-box {
  margin-bottom: 1.3rem;
  padding: 30px 32px 30px 25px;
  border-radius: 15px;
  box-shadow: #dfdfdf 1px 1px 10px;
}

.faq-blk-a {
  display: none;
  font-size: 1rem;
  position: relative;
  padding-left: 25px;
  margin-top: 25px;
  margin-bottom: 0!important;
}
.faq-blk-box.open .faq-blk-a {
  display: block;
}
.faq-blk-q {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-bottom: 0;
	font-size: 1rem;
    font-weight: 600;
}
.faq-blk-q::after {
    content: "+";
    position: absolute;
    right: -20px;
    top: 42%;
    transform: translateY(-50%);
    font-size: 26px;
    font-weight: bold;
}
.faq-blk-box.open .faq-blk-q::after {
  content: "−";
  color: var(--bg-green);
}
.faq-blk-q:before {
    content: "Q";
    color: var(--title-color);
    font-size: 20px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    position: absolute;
    left: -12px;
    top: -6px;
    padding: 1px 7px;
    border-radius: 30px;
}
.faq-blk-a:before {
  content: "A";
  font-size: 20px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: -10px;
  top: -4px;
  padding: 0 7px;
  border-radius: 30px;
}
.faq_wrap .btn_style {
    min-width: 350px;
	margin-top: 70px;
}

@media (min-width: 768px) {
  .faq-blk-q {
    font-size: 20px;
  }
  .faq-blk-q:before {
    top: -3px;
  }
  .faq-blk-box {
    padding: 44px;
  }
  .faq-blk-a {
    font-size: 1em;
  }
  .faq-blk-a:before {
    top: -5px;
  }
}

/*****************************************
	Elements Page5
*****************************************/

.aces_txt {
	font-size: 1.25em;
}

/*説明文用*/
pre code {
    display: block;
    line-height: 1.75em;
    padding: 1em 1.5em;
    overflow-x: auto;
}
code {
    background: rgb(200 205 227 / 45%);
    border-radius: 4px;
    font-size: 1.1em;
    margin: 0 0.25em;
    padding: 0.25em 0.65em;
}

/*****************************************
	Top Page
*****************************************/
.top_tit_treat {
	width: fit-content;
	margin: 0 auto 1rem;
	position: relative;
	font-size: 1.85em;
	padding-bottom: 0.3em;
}
.top_tit_treat h3 {
	font-weight: 500;
}
.strong_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	margin: 5rem 0;
}
.strong_menu ul li {
	width: auto;
	text-align: center;
}
.strong_menu ul li div {
    display: flex;
    justify-content: center;
    background: #def1fd;
    border-radius: 15px;
    width: 120px;
    height: 120px;
    padding: 20px 0;
    box-sizing: border-box;
}
.strong_menu ul li p {
	padding-top: 7px;
	font-size: 1em;
	color: var(--title-color);
}
.strong_menu .btn_style {
	margin-top: 4rem;
}
p.relief_text {
  margin: 0 0 4rem!important;
}
.sec_relief .flex {
  text-align: center;
}
.sec_relief .flex img {
  padding-bottom: 50px!important;
}
.peace_list {
	margin-bottom: 3rem;
}
.peace_list_blk {
    position: relative;
    background: var(--btn-light-blue);
    border-radius: 15px;
    padding: 50px 10px 20px;
    margin-top:  4rem!important;
}
.peace_list_blk span {
    position: absolute;
    top: -22px;
    left: 15px;
    color: var(--background-body);
    background: var(--title-color);
    border-radius: 30px;
    font-size: 1.7em;
    font-weight: 500;
    padding: 10px 12px;
}
.peace_list_blk img {
	padding-bottom: 25px;
}
#service01 .page_blk_normal_clm,
#service02 .page_blk_normal_clm {
	margin-bottom: 2rem;
}
#service03 .blk3_area .blk h4,
#service04 .blk3_area .blk h4 {
	margin: 2rem 0 1.2rem;
}
#service03 .blk3_area {
	margin-top: 3rem;
}
#service03 .blk3_area .blk,
#service04 .blk3_area .blk {
	margin-bottom: 3rem;
}
#service04 .border_blk .blk {
	margin-bottom: 0;
}
.top_tit_center h3 {
	position: relative;
	display: inline-block;
	font-size: 2.1em;
	font-weight: 600;
	color: var(--title-color)
}
.top_tit_center h3::before {
	content: "";
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 50px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: var(--title-color);
}
.top_tit.ac h2::before {
		left: 50%;
}
.voice_bgi {
	background: var(--bg-blue);
	clip-path: polygon(0 110px, 100% 0, 100% calc(100% - 0px), 0 100%);
}
.top_voice_wrap .blk3_area .blk {
	background: #fff;
	border-radius: 15px;
	margin-bottom: 1.3rem;
}
.top_voice_wrap .blk3_area .blk img {
	border-radius: 15px 15px 0 0;
}
.blk_inner {
    padding: 0.1rem 1.8rem 1.3rem;
}
.blk_inner p {
	margin-bottom: 30px;
}
.sec.sec_faq {
	padding: 19% 0;
}

.sec_faq .btn_style a {
    padding: 20px 53px;
}

.blue_bgi {
	background: var(--bg-blue);
	clip-path: polygon(0 110px, 100% 0, 100% calc(100% - 0px), 0 100%);
	padding-top: 9rem;
}
.sub_wrap .blk {
	border-radius: 15px;
	box-shadow: #dfdfdf 1px 1px 10px;
	background: var(--background-body);
}
.sub_wrap .blk p img {
	border-radius: 15px 15px 0 0;
}
.sub_wrap .blk h4,
.sub_wrap .blk a {
	color: var(--title-color);
}
.sub_wrap .blk2_area .blk:first-of-type {
	margin-bottom: 30px;
}
.sub_wrap .blk_inner {
	padding: 0.1rem 2rem 2.5rem;
}
.top_btn_area .btn_style {
	width: 14rem;
	font-weight: 600;
	color: var(--title-color);
	background: var(--background-body);
	border-radius: 40px;
}
.sub_wrap .blk2_area {
	margin-top: 150px;
}
.faq_bgc {
	padding-bottom: 200px;
    margin-bottom: -180px;
    background: var(--bg-gray);
    clip-path: polygon(0 0px, 100% 0, 100% calc(100% - 180px), 0 100%);
}
.top_news_area {
	width: 55%;
	margin: -180px auto 0;
	padding: 50px 50px 40px;
	background: var(--background-body);
	border-top: solid 1px var(--title-color);
	border-bottom: solid 1px var(--title-color);
}
.top_news_area.flex {
	justify-content: left;
	gap: 7rem;
}

.top_tit h2 {
	font-size: 5rem;
	position: relative;
	display: inline-block;
	font-weight: 600;
	color: var(--title-color);
	margin-bottom: 80px;
}
.top_tit h3 {
	position: relative;
	display: inline-block;
	font-size: 2.9em;
	font-weight: 600;
	color: var(--title-color)
}
.top_tit h2::before {
	content: "";
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 2px;
	left: 9%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: var(--title-color);
}

.top_tit h3::before {
	content: "";
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 2px;
	left: 12%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: var(--title-color);
}
.top_tit h4 {
	color: var(--title-color);
	font-size: 1.45em;
	margin-bottom: 1.4rem;
}
.top_news_blk a p {
	font-weight: 600;
}
.top_news_blk a p:first-of-type {
	padding: 0 30px 15px 0;
}
.top_news_blk a p:last-of-type {
	text-align: left;
}
.top_news_blk .flex {
	justify-content: initial;
}
.top_page_wrap {
	margin: 8rem 0 3rem;
}
.top_page_wrap .top_tit h3 {
	font-size: 2.6em;
	color: var(--mv-title);
	line-height: 1.7;
	margin-bottom: 60px;
}
.top_page_wrap .top_tit h3::before {
	display: none;	
}
.top_ser_box {
	width: 29rem;
}
.top_page_wrap .flex {
	justify-content: initial;
	gap: 7.1388888vw;
}
.gray_bgi {
	background-image: url(../img/top/gray_bgi.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
.top_ser_wrap .box_shadow {
	padding: 5%;
	border-radius: 15px;
	background: var(--background-body);
	margin-bottom: 1.3em;
}
.top_ser_wrap .blk img {
	padding-bottom: 60px;
}
.top_ser_wrap .blk h3,
.strong_area .blk h4 {
	font-size: 1.8em;
	font-weight: 600;
	color: var(--title-color);
}
.top_ser_wrap .blk p {
	font-weight: 600;
	color: var(--title-color);
	margin-bottom: 0;
}
.top_ser_wrap .blk{
	width: 49%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
.top_btn_area .btn_style:first-of-type {
	margin-right: 50px;
}
.top_ser_wrap .blk2_area:nth-of-type(3) {
	margin-bottom: 60px;
}
.diagonal {
	background: var(--bg-blue);
	clip-path: polygon(0 110px, 100% 0, 100% calc(100% - 0px), 0 100%);
	padding-top: 170px;
}
.diagonal .top_btn_area .btn_style:first-of-type a {
	margin: 0;
}
.diagonal .top_btn_area .btn_style:first-of-type {
    margin-right: 0;
    margin-bottom: 2rem;
    margin-top: 3rem;
}
.strong_area .blk {
	width: 31%;
	margin: 0 0 2%;
	padding: 15px 0 30px;
	border-radius: 15px;
}
.sec.sec_news {
	padding-bottom: 0;
}
.strong_area {
	margin: 80px 0 100px;
}
.strong_area .blk img {
	padding: 20px 0;
}
.sec_strength {
	padding-bottom: 200px;
	margin-bottom: -180px;
	background: var(--bg-gray);
	clip-path: polygon(0 0px, 100% 0, 100% calc(100% - 180px), 0 100%);
}
.sec.voice_bgi {
	padding-top: 0;
}
.voice_bgi .top_tit {
	padding-top: 15rem;
}
.voice_bgi .blk h4 {
	color: var(--title-color);
	margin-bottom: 1.2em;
}
.arrow_right_btn {
	text-align: right;
	font-weight: 600;
}
.arrow_right_btn img {
	padding-bottom: 6px;
	padding-left: 2px;
}
.support_page_wrap .blk {
	border-radius: 15px;
	box-shadow: #dfdfdf 1px 1px 10px;
	padding-bottom: 25px;
	margin-top: 60px;
	margin-bottom: 0;
}
.support_page_wrap .blk img {
	border-radius: 15px 15px 0 0;
}
.sec_order .page_blk_clm {
	padding: 1rem 2rem 2rem; 
	box-sizing: border-box;
}
.sec_order ul {
	margin: 0 auto!important;
}
#service02 .sec_page_wrap .page_blk_clm h4,
.sec_order h4 {
	padding-bottom: 1rem;
}
#service02 .sec_page_wrap .page_blk_clm li,
.sec_order ul li {
	padding-bottom: 0.7rem;
}

@media (min-width: 767px) {
	.diagonal {
		clip-path: polygon(0 180px, 100% 0, 100% calc(100% - 0px), 0 100%);
		padding-top: 230px;
	}
	.sec_strength {
	    padding-bottom: 200px;
	    margin-bottom: -180px;
	    clip-path: polygon(0 0px, 100% 0, 100% calc(100% - 180px), 0 100%);
	}
	.voice_bgi {
	    clip-path: polygon(0 180px, 100% 0, 100% calc(100% - 0px), 0 100%);
	}
	.faq_bgc {
		padding-bottom: 200px;
	    margin-bottom: -180px;
	    clip-path: polygon(0 0px, 100% 0, 100% calc(100% - 180px), 0 100%);
	}
	.blue_bgi {
		padding-top: 8rem;
	    clip-path: polygon(0 180px, 100% 0, 100% calc(100% - 0px), 0 100%);
	}
	.diagonal .top_btn_area .btn_style:first-of-type {
		margin-right: 50px;
}
}

@media (max-width: 768px) {
	.top_news_area {
		width: 85%;
		margin: 0 auto;
		padding: 50px 5% 40px;
		background: var(--background-body);
		border-top: solid 1px var(--title-color);
		border-bottom: solid 1px var(--title-color);
		box-sizing: border-box;
	}
	.top_news_area .top_tit h3 {
		margin-bottom: 50px;
	}
	.top_page_wrap {
		margin: 5rem 5% 5rem;
	}
	.top_page_wrap .top_tit h3 {
		font-size: 2em;
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.top_ser_box {
		width: 100%;
	}
	.top_ser_img {
		width: 90vw;
		margin-left:calc(-50vw + 50%);
	}
	.top_tit h2 {
		font-size: 3.8rem;
	}
	.top_tit h2::before {
		left: 12%;
	}
	.top_ser_wrap .blk {
		width: 47%;
	}
	.top_ser_wrap .blk h3, 
	.strong_area .blk h4 {
		font-size: 1.45em;
	}
	.top_ser_wrap .blk img {
		padding: 25px 0 35px;
		width: 70%;
	}
	.top_ser_wrap .blk:nth-of-type(2) img,
	.top_ser_wrap .blk:nth-of-type(4) img {
		padding-bottom: 70px;
	}
	.top_ser_wrap .blk2_area:nth-of-type(3) {
		margin-bottom: 50px;
	}
	.top_btn_area .btn_style:first-of-type a {
		margin: 40px 0 30px;
	}
	.strong_area .blk {
		width: 48%;
		margin: 0 0 5%;
		padding: 15px 4% 30px;
	}
	.strong_area .blk img {
		width: 75%;
		padding: 30px 0;
	}
	.top_tit_center h3 {
		font-size: 1.9em;
	}
	.support_page_wrap img {
		width: 100%;
	}
	.strong_menu ul li div {
		width: 140px;
		height: 140px;
	}
	.strong_menu ul {
		margin: 5rem 0 3rem;
	}
	.strong_menu .btn_style {
		margin-top: 2rem;
	}
	.top_voice_wrap .blk3_area .blk {
		width: 85%;
	}
	.top_voice_wrap p img {
		width: 100%;
	}
	.blk_inner p {
		margin-bottom: 20px;
	}
	.blk_inner {
		padding: 0.1rem 1.5rem 2.3rem;
	}
	.arrow_right_btn img {
		padding-bottom: 0px;
	}
	.support_page_wrap .top_tit {
		padding: 0 20px;
	}
	.voice_bgi .top_tit {
		padding-top: 10rem;
	}
	.support_page_wrap .blk {
		width: 85%;
	}
	.faq_wrap .btn_style {
		margin-top: 50px;
	}
	.faq-content .faq-blk-box:last-of-type {
		margin-bottom: 1.3rem;
	}
	.faq-blk-box {
		margin-bottom: 2.2rem;
	}
	.sub_wrap .blk2_area {
		margin-top: 30px;
	}
	.sub_wrap .blk p:first-of-type {
		margin-bottom: 0;
	}
	.btn_main a img {
		bottom: 18px;
	}
    .cv_area .btn_style.btn_main a {
        font-size: 2.7rem;
        padding: 0;
    }
	.cv_area .btn_style.btn_main {
		width: 100%;
		padding: 50px 20px 30px;
		border: solid 1px var(--title-color);
		margin-bottom: 50px;
	}
	.btn_style.btn_sub {
		width: 100%;
		padding: 30px 20px 20px;
		border: solid 1px var(--title-color);
	}
	.cv_area h3 {
		margin-bottom: 3em;
	}
	.footer_inner_cv {
		padding: 60px 40px;
	}
	.cv_area .btn_style.btn_sub a {
		padding: 20px 10px;
	}
}

@media (min-width: 768px) {
	.service_tit {
		margin-top: 100px;
	}
	.sec_relief .flex {
		align-items: center;
		justify-content: center;
	}
	.peace_list {
		margin: 90px 0;
	}
	.peace_list.blk3_area {
		margin-top: 1rem;
		justify-content: space-around;
	}
	.peace_list_blk {
		position: relative;
		background: var(--btn-light-blue);
		border-radius: 15px;
		padding: 50px 10px 20px;
	}
	.peace_list_blk.blk {
		width: 29%;
		margin-bottom: 2%;
	}
	.peace_list_blk span {
		position: absolute;
		top: -22px;
		left: 15px;
		color: var(--background-body);
		background: var(--title-color);
		border-radius: 30px;
		font-size: 1.7em;
		font-weight: 500;
        padding: 4px 12px 0;
	}
	.peace_list_blk img {
		padding-bottom: 25px;
	}
	.peace_list .peace_list_blk:nth-of-type(4),
	.peace_list .peace_list_blk:nth-of-type(5) {
		margin-top: 80px;
	}
	#service01 .page_blk_normal_clm,
	#service02 .page_blk_normal_clm {
        width: 57%;
    }
	#service01 .page_blk_normal_photo,
	#service02  .page_blk_normal_photo {
        width: 37%;
    }
	#service02 .top_tit_center {
		margin: 7rem 0 4rem;
	}
	#service02 .page_blk {
		margin-top: 4rem;
	}
	#service02 .page_blk h4{
		margin-top: 0;
	}
	#service03 .blk3_area,
	#service04 .blk3_area {
		margin-top: 3.5rem;
	}
	#service03 .blk3_area{
		margin-bottom: 2rem;
	}
	#service03 .blk3_area .blk h4,
	#service04 .blk3_area .blk h4 {
		margin: 2rem 0 1.2rem;
	}
	#service03 .border_blk,
	#service04 .border_blk {
		padding: 2.5em 3em 2.5em;
	}
	#service03 .border_blk h4,
	#service04 .border_blk h4 {
		margin-top: 0;
	}
	#service04 .border_blk ul {
		margin-bottom: 0;
	}
	#service04 .blk3_area {
		margin-top: 3rem;
	}
		p.relief_text {
		margin: 0;
	}
	.sec_relief .flex img {
		padding-bottom: 0;
	}
	.border_blk .blk3_area {
		margin-top: 0!important;
	}
	.blk3_area.other_area {
		justify-content: inherit;
	} 
	.blk3_area.other_area .blk{
		margin: 0 3rem 3rem 0;
	} 
	.blk3_area.other_area .blk:nth-of-type(3),
	.blk3_area.other_area .blk:nth-of-type(6) {
		margin-right: 0;
	}
	.order_blk_clm {
		margin-top: 4rem;
	}
	.page_blk.order_blk_clm .page_blk_photo {
		width: 34%;
	}
	.page_blk.order_blk_clm .page_blk_clm {
		width: 60%;
		padding: 2.2rem 3rem 1.2rem;
		box-sizing: border-box;
	}
	.page_blk.order_blk_clm .page_blk_clm h4 {
		margin-top: 0;
	}
}

.anchor_lnk.center_anchor_lnk {
    margin: 4rem 0 5rem;
}
.anchor_lnk.center_anchor_lnk ul {
    justify-content: space-between;
}
.anchor_lnk.center_anchor_lnk li a span {
    color: var(--background-body);
    background: var(--title-color);
}
.sec.short{
	padding-top: 15.7%;
}
.form_btn_area {
	margin-bottom: 4rem;
	display: block;
}
.form_btn_area img {
	width: 1.8rem;
	padding-right: 5px;
}
.form_btn_area a {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--title-color);
    display: flex;
    align-items: center;
    padding-bottom: 13px;
}
.form_btn_area span {
	display: block;
}
.sec_form p:first-of-type {
	padding-bottom: 4rem;
}
.form_table table tr {
	border-bottom: solid 2px var(--background-body);
}
.form_table table th {
	background: var(--btn-light-blue);
	width: 100%;
	display: block;
	padding: 1.2em;
	text-align: left;
	border-right: solid 2px var(--background-body);
}
.form_table table th span {
	background: var(--bg-red);
	color: var(--background-body);
	border-radius: 7px;
	display: inline-block;
	margin-left: 20px;
	text-align: center;
	padding: 4px 10px 2px;
}
.form_table table td {
    background: var(--bg-gray);
    width: 100%;
    padding: 2em 1.2em;
    display: block;
}
.form_table table td input {
	width: 100%;
	box-sizing: border-box;
	height: 10vh;
}
.form_table table td input {
    width: 100%;
    height: 7vh;
    padding: 1em;
    font-size: 1em;
}
.form_tr td label {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}
.form_tr td input {
	height: 2vh!important;
	width: auto!important;
	margin-bottom: 5px;
}
.form_tr td label:last-of-type {
	margin-bottom: 0;
}
.form_table table td textarea {
    width: 100%;
    height: 40vw;
    padding: 1em;
    font-size: 1em;
	box-sizing: border-box;
	line-height: 1.5;
}
.form_policy_box {
	margin-top: 5rem;
}
.form_policy_box p {
	padding-bottom: 1rem!important;
}
.form_policy_box a {
	text-decoration: underline;
}
.form_policy_box label span {
	background: var(--bg-red);
	color: var(--background-body);
	border-radius: 7px;
	display: inline-block;
	margin-right: 10px;
	text-align: center;
	padding: 2px 10px 0;
}
.form_policy_box label {
	font-weight: 600;
}
.form_policy_box label input {
	margin-right: 8px;
}
.form_btn {
	margin-top: 4rem;
}
.form_btn input,
.form_btn a {
    background: var(--title-color);
    border: none;
    color: var(--background-body);
    border-radius: 35px;
    font-weight: 600;
    box-shadow: #b3b3b3 1px 1px 12px -3px;
    min-width: 270px;
    height: 55px;
}
.form_btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
    margin: 0 auto;
}
.thanks_btn {
	display: flex;
	justify-content: center;
	align-items: center;
}
.thanks_btn a {
    background: var(--title-color) !important;
    color: var(--background-body) !important;
    width: 250px;
    margin-top: 3rem;
}
.form_table select {
	width: 90px;
    height: 40px;
    font-size: 1em;
    padding: 0 10px;
	margin-right: 5px;
}
.entry_form_top {
	margin-top: 5rem;
}
@media (min-width: 767px) {
	.sec.short{
		padding-top: 7%;
	}
	.anchor_lnk.center_anchor_lnk {
		margin: 5rem 0 7rem!important;
	}
	.anchor_lnk.center_anchor_lnk ul {
		justify-content: center;
	}
	.form_btn_area {
		display: flex;
		align-items: center;
	}
	.form_btn_area span {
		padding-left: 20px;
	}
	.form_btn_area a {
    	padding-bottom: 0;
	}
	.form_btn_area a {
		font-size: 2em;
	}
	.form_btn_area {
	margin-bottom: 4rem;
	display: block;
	}
	.form_btn_area img {
		width: 1.8rem;
		padding-right: 5px;
	}
	.form_btn_area a {
		font-size: 1.8em;
		font-weight: 600;
		color: var(--title-color);
		display: flex;
		align-items: center;
		padding-bottom: 13px;
	}
	.form_btn_area span {
		display: block;
	}
	.form_table table th {
		display: table-cell;
		width: 30%;
		padding: 1.2em 1.5em;
	}
	.form_table table th span {
		padding: 2px 10px 0;
	}
	.form_table table td {
		display: table-cell;
		width: 70%;
		padding: 1.2em 1.5em;
	}
	.form_table table td input {
		width: 100%;
		box-sizing: border-box;
		height: 10vh;
	}
	.form_table table td input {
		width: 100%;
		height: 7vh;
		padding: 1em;
		font-size: 1em;
	}
	.form_tr td label {
		margin-bottom: 1.2rem;
		display: flex;
		align-items: center;
	}
	.form_tr td input {
		height: 2vh!important;
		width: auto!important;
		margin-bottom: 5px;
	}
	.form_tr td label:last-of-type {
		margin-bottom: 0;
	}
	.form_table table td textarea {
		height: 13vw;
	}
	.form_policy_box {
		margin-top: 5rem;
	}
	.form_policy_box p {
		padding-bottom: 1rem!important;
	}
	.form_policy_box a {
		text-decoration: underline;
	}
	.form_policy_box label span {
		background: var(--bg-red);
		color: var(--background-body);
		border-radius: 7px;
		display: inline-block;
		margin-right: 10px;
		text-align: center;
		padding: 2px 10px 0;
	}
	.form_policy_box label {
		font-weight: 600;
	}
	.form_policy_box label input {
		margin-right: 8px;
	}
	.form_btn input:hover {
		opacity: 0.6;
		transition: 0.7s ease;
		cursor: pointer;
	}
	.thanks_btn a {
		margin-top: 3rem;
	}
	.form_table select {
		width: 110px;
	}
	.entry_form_top {
		margin-top: 8rem;
	}
}

#recruit01 .page_ltit h2 {
    letter-spacing: -0.045em;
}
.rec_page_wrap .page_blk_photo {
	width: 100%;
}
.rec_page_wrap .page_blk_clm {
	width: 100%;
}
.rec_page_wrap {
	margin-bottom: 4rem;
}
#recruit01 .top_tit_center {
	margin-bottom: 4rem;
}
#recruit01 .border_blk,
#recruit02 .border_blk {
	padding: 1.5em;
	margin: 3.5rem auto;
}
.rec_page_wrap .page_blk_photo {
		width: 100%;
}
.rec_page_wrap .page_blk_clm {
	width: 100%;
}
.flow {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 2.5rem;
}
.flow > li {
	padding: 20px;
	margin-bottom: 15vw;
	-ms-flex-preferred-size: 48%;
	flex-basis: 100%;
	border: 2px solid rgb(107,144,219);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 下向きの青い矢印を追加 */
.flow > li:not(:last-child) {
  position: relative;
}
.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child)::before {
  border-width: 21px;
  border-top-color: rgb(107,144,219);
}
.flow > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}
.flow > li .icon {
	font-size: 0.9em;
	color: #fff;
	background: rgb(107,144,219);
	background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
	background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
	background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
	padding: 5px 20px;
	display: block;
	border-radius: 20px;
	position: absolute;
	top: -15px;
	left: 10px;
	z-index: 100;
}
.flow > li dl dt {
	font-weight: 600;
	color: rgb(107,144,219);
}
#recruit02 .page_blk_clm h4 {
	line-height: 1.8;
}
#recruit01 .btn_style.btn_main,
#recruit02 .btn_style.btn_main {
	margin: 4em 0 0;
}
#recruit01 .rec_page_wrap img {
	margin: 1rem 0 2rem;
}
#recruit01 .sec_page_wrap:last-of-type,
#recruit02 .sec_page_wrap:last-of-type {
	margin-bottom: 2%;
}

@media (min-width: 767px) {
	.rec_page_wrap .page_blk_photo {
		width: 42%;
	}
	.rec_page_wrap .page_blk_clm {
		width: 52%;
	}
	.rec_page_wrap {
		margin-bottom: 7rem;
	}
	.flow {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.flow > li {
		padding: 20px;
		margin-bottom: 8vh;
		-ms-flex-preferred-size: 48%;
		flex-basis: 10%;
		border: 2px solid rgb(107,144,219);
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#recruit02 .flow > li {
		flex-basis: 18%;
	}
	#recruit02 .flow > li .icon {
        left: 68px;
    }
	.flow > li:not(:last-child)::before,
	.flow > li:not(:last-child)::after {
		content: "";
		border: solid transparent;
		position: absolute;
		top: 50%;
		left: 100%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.flow > li:not(:last-child)::before {
		border-width: 22px;
		border-left-color: rgb(107,144,219);
	}
	.flow > li:not(:last-child)::after {
		border-width: 20px;
		border-left-color: #fff;
	}
	.flow > li .icon {
		top: -20px;
		left: 25px;
	}
}

/*-- 会社概要--*/
.three_circles {
    position: relative;
    padding: 0px;
    margin: 5rem auto;
    width: 20em;
    height: 19em;
    list-style: none;
}
.three_circles > li {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 11em;
    height: 11em;
    box-sizing: border-box;
    border: solid 2px var(--title-color);
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
}
.three_circles > li:nth-of-type(1) {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0px 0.5em;
}
.three_circles > li:nth-of-type(2) {
    bottom: 0px;
    left: -8px;
    padding: 0px 1em;
}
.three_circles > li:nth-of-type(3) {
    bottom: 0px;
    right: -8px;
    padding: 0px 1em;
}
.three_circles span {
	color: var(--title-color);
	margin-bottom: 0.7rem;
    display: inline-block;
}
.three_circles h3 {
	font-size: 1.15em;
	font-weight: 600;
}
.philosophy_list {
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
}
.philosophy_list dl {
	margin-bottom: 3rem;
	display: block;
	text-align: center
}
.philosophy_list dl:last-of-type {
	margin-bottom: 0;
}
.philosophy_list dt {
	font-size: 3.5rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--title-color);
	border-right: none;
	padding-bottom: 0.8rem;
	margin-bottom: 1rem;
	border-bottom: solid 2px var(--title-color);
}
.philosophy_list dd h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: var(--title-color);
}
.philosophy_list dd p {
	margin-bottom: 0;
}
.evolution_box dl {
	margin-top: 3rem;
}
.evolution_box dl:last-of-type {
	margin-bottom: 3rem;
}
.evolution_box dt {
	font-size: 1.3rem;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 1.3rem;
}
.evolution_box .border_blk {
	background: var(--bg-gray);
	border-radius: 15px;
	padding: 1.8em 1.5em 1.5em;
}
.evolution_box dd {
	line-height: 1.6;
}
#philosophy .sec_page_wrap {
	margin-bottom: 0;
}
.company_page_wrap img {
	margin: 2rem 0 1.5rem;
}
.company_page_wrap table tr {
	display: inline-block;
	margin-bottom: 1.5rem;
}
.company_page_wrap table th {
	color: var(--title-color);
	border-right: solid 1px var(--title-color);
	padding-right: 1rem;
}
.company_page_wrap table td {
	padding-left: 1rem;
}

@media (min-width:767px) {
	.evolution_box dt {
		margin-bottom: 0.8rem;
	}
	.evolution_box dd {
		line-height: 1.8;
	}
	.evolution_box .border_blk {
		padding: 1.8em 2em 1.5em;
	}
	.three_circles > li {
		width: 15em;
		height: 15em;
	}
	.three_circles > li:nth-of-type(1) {
		top: -30px;
		left: 50%;
		transform: translateX(-50%);
		padding: 0px 0.5em;
	}
	.three_circles > li:nth-of-type(2) {
		bottom: -90px;
		left: -65px;
		padding: 0px 1em;
	}
	.three_circles > li:nth-of-type(3) {
		bottom: -90px;
		right: -65px;
		padding: 0px 1em;
	}
	.three_circles h3 {
		font-size: 1.25em;
	}
	.three_circles {
		margin: 7rem auto 11rem;
	}
	.philosophy_list dl {
		margin-bottom: 3rem;
		display: flex;
		align-items: center;
		text-align: initial;
	}
	.philosophy_list dt {
		font-size: 4rem;
		border-right: solid 2px var(--title-color);
		padding-right: 2.5rem;
		margin-right: 2.5rem;
		padding-bottom: 0;
		margin-bottom: 0;
		border-bottom: none;
	}
	.company_page_wrap table tr:last-of-type {
		margin-bottom: 0;
	}
	.company_page_wrap table th {
		padding: 0 1.5rem 0 0;
	}
	.company_page_wrap table td {
		padding: 0 0 0 1.5rem;
	}
	.company_page_wrap .page_blk {
		align-items: center;
	}
}

/*-- 業務の流れ --*/
#flow01 .flow_ttl {
    background: none;
}
#flow01 .flow_column {
    background: none;
	padding: 2em 1.2em 0;
}
#flow02 .flow_ttl {
	padding-top: 1.5em;
    background: var(--background-body);
}
#flow02 .flow_column {
    background: var(--background-body);
	padding: 2em 1.2em 1.3em;
}

#flow01 .anchor_lnk ul {
    display: block;
}
#flow01 .anchor_lnk ul li:first-of-type {
    margin-bottom: 2rem;
}
#flow01 .flow_column h3,
#flow02 .flow_column h3 {
	font-size: 1.5em;
	font-weight: 700;
	color : var(--title-color);
	margin-bottom: 1rem;

}
#flow01 .flow_column h3 span,
#flow02 .flow_column h3 span {
	font-size: 0.8em;
	display: block;
	margin-bottom: 0.5rem;
}
#flow01 .flow_blk,
#flow02 .flow_blk {
	margin-bottom: 3.5rem;
}
#flow01 .flow_wrap .flow_blk:last-of-type {
	margin-bottom: 0;
}
#flow01 .sec_page_wrap,
#flow02 .sec_page_wrap {
	margin-bottom: 0;
}
#flow01 .flow_wrap .flow_blk:first-of-type,
#flow02 .flow_wrap .flow_blk:first-of-type {
	margin-top: 3.5rem;
}
@media (min-width:767px) {
	#flow01 .anchor_lnk ul {
		display: flex;
	}
	#flow01 .anchor_lnk li {
        flex-basis: 30%;
    }
	#flow01 .flow_ttl,
	#flow02 .flow_ttl {
		width: 30%;
	}
	#flow01 .flow_column,
	#flow02 .flow_column {
		width: 70%;
	}
	#flow01 .sec_page_wrap, 
	#flow02 .sec_page_wrap {
		margin-bottom: 5%;
	}
	#flow01 .flow_wrap .flow_blk:first-of-type,
	#flow02 .flow_wrap .flow_blk:first-of-type {
		margin-top: 5rem;
	}
}

/*-- 料金システム --*/
.price_formula {
	background: var(--foot-cvr);
	border-radius: 10px;
	padding: 50px 20px 30px;
	box-shadow: #f3f3f3 1px 1px 5px;
	margin-top: 3rem;
	margin-bottom: 3rem;
	text-align: center;
}
.price_formula li {
	color: var(--background-body);
	font-weight: 600;
	padding: 10px 10px 7px;
	display: block;
}
.price_formula li i,
.price_formula li:last-of-type {
	color: var(--font-base-color);
}
li.price_01,
.price_01 dt {
	background: var(--price01);
}
li.price_02,
.price_02 dt {
	background: var(--price02);
}
li.price_03,
.price_03 dt {
	background: var(--price03);
}
li.price_04,
.price_04 dt {
	background: var(--price04);
}
li.price_05,
.price_05 dt {
	background: var(--price05);
}
li.price_06,
.price_06 dt {
	background: var(--price06);
}
.price_desc {
	margin-top: 7rem;
}
.price_desc dl {
	margin-bottom: 3rem;
}
.price_desc dt {
	width: 120px;
	display: inline-block;
	color: var(--background-body);
	padding: 8px 10px 5px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 1rem;
}
.sec_price .sec_page_wrap ul {
	padding-bottom: 2.5rem;
}
.sec_price .sec_page_wrap dl {
	padding-bottom: 2rem;
}
.sec_price .sec_page_wrap dt {
	font-weight: 600;
}
.sec_price .sec_page_wrap h4 {
	color: var(--title-color);
	margin-bottom: 2rem;
}
.sec_price .sec_page_wrap .border_blk {
	border-radius: 15px;
	padding-bottom: 1.5em;
}
.sec_price .sec_page_wrap .border_blk li {
	padding-bottom: 1rem;
	line-height: 1.5;
}
.price_desc dl:last-of-type {
    margin-bottom: 0;
}
@media (min-width: 767px) {
	.price_formula {
		margin-top: 5rem;
		padding: 4rem;
	}
	.price_formula li {
		padding: 4px 10px 1px;
	}
	.price_desc dt {
		padding: 4px 10px 1px;
	}
	.sec_price .sec_page_wrap .border_blk li {
		padding-bottom: 0.3rem;
	}
}

/*-- 当社の強み --*/
#point01 .page_blk {
	align-items: center;
	padding: 1.3em 1.2em 2em;
}
#point01 .page_blk .page_blk_photo {
	width: 100%;
	margin: 0 6% 6% 0;
	text-align: center;
}
#point01 .page_blk .page_blk_clm {
	width: 100%;
}
#point01 .border_blk .bg_gray {
	padding: 1.5em;
	border-radius: 10px;
}
#point01 .border_blk .bg_gray p {
	margin-bottom: 0;
}
#point01 .border_blk {
	border-radius: 15px;
	border: solid 3px var(--bg-blue);
}
#point02 .strong_area .blk {
    padding: 15px 25px 30px;
    background: var(--background-body);
	border: solid 3px var(--bg-blue);
}
#point02 .strong_area .blk h4 {
	font-size: 1.5em;
	margin: 1em 0 1.2em;
}
.voice_photo {
	width: 100%;
}
.voice_clm {
	width: 100%;
}
#voice p.ac {
	margin-bottom: 4rem;
}
.voice_blk {
	display: block;
	background: var(--background-body);
	border-radius: 15px;
	box-shadow: #f3f3f3 1px 1px 5px;
	padding: 2em 1.2em;
	margin-bottom: 4rem;
}
#point03 .blk3_area img {
	width: 100%;
}
#point02 .strong_area .blk img {
	width: 100%;
}
#point02 .strong_area .blk {
	width: 100%;
	margin-bottom: 4rem;
}
#point02 .strong_area .blk:last-of-type {
	margin-bottom: 0;
}
#point01 .page_blk {
	display: block;
}
#point01 .border_blk .bg_gray {
	margin-top: 2rem;
}
#point01 .border_blk h4 {
	margin-bottom: 1.5rem;
}
#point01 .strong_area,
#point02 .strong_area {
	margin: 50px 0 30px;
}
#point01 .page_ltit h3 {
	margin-top: 3rem;
}
@media (min-width: 767px) {
	#point01 .page_blk {
		display: flex;
		padding: 1.3em 2em 2em;
	}
	#point02 .strong_area .blk {
		margin-bottom: 0;
	}
	#point03 .page_blk_normal {
		justify-content: space-between;
	}
	#point03 .page_blk_normal .page_blk_normal_photo {
        margin: 0 0 0 6%;
    }
	#point03 .page_blk_normal .page_blk_normal_photo{
		width: 42%;
	}
	#point03 .page_blk_normal .page_blk_normal_clm{
		width: 52%;
	}
	#point03 .page_blk_normal.reverse .page_blk_normal_photo {
		margin: 0 6% 0 0;
	}
	#point02 .strong_area .blk {
		width: 31%;
	}
	#point03 .sec_page_wrap {
		margin: 0 0 4%;
	}
	#point01 .page_blk .page_blk_photo {
		width: 10%;
	}
	#point01 .page_blk .page_blk_clm {
		width: 84%;
	}
	#point01 .page_ltit h3 {
		margin-top: 4rem;
	}
	.voice_blk {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 1.5em 2em;
	}
	.voice_wrap .voice_blk:last-of-type {
		margin-bottom: 0;
	}
	.voice_photo {
		width: 42%;
	}
	.voice_clm {
		width: 70%;
	}
}

@media (max-width: 1241px) {
	.voice_photo {
		margin-right: 2rem;
	}
}

/* 投稿ページ
---------------------------------- */
/* お知らせ */
.news_page_wrap li {
	display: flex;
}
.news_page_wrap li {
	position: relative;
	display: flex;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	border-bottom: solid 1px var(--bg-blue);
}
.news_page_wrap h4 {
	margin: 0 0 0 2.5rem;
} 
.news_page_wrap h4 a,
.news_page_wrap h4 {
	color: var(--mv-title);
} 
.news_page_wrap p {
	margin-bottom: 0;
}
.news_page_wrap i {
	color: var(--mv-title);
	position: absolute;
	top: 2px;
	right: 0;
}
.news_text {
	margin-bottom: 5rem!important;
}
.page_ltit h1 {
	font-size: 4rem;
	margin-top: 0;
	line-height: 1.4;
	color: var(--title-color);
    font-weight: 600;
    font-style: italic;
}
.singles_ttl_ul {
	display: flex;
	align-items: center;
	font-size: .8em;
	line-height: 1;
}
.blog_tag {
	background: #fff;
    border-radius: 15px;
    padding: 2px 2em 2px 0;
	color: var(--main-hover-color);
}
.blog_tag .tag {
	font-size: 1.2em;
	padding: 6px 10px 5px;
}
.single_info{
	margin-left: 0.5em;
    font-size: 1.2em;
    padding: 2px 0;
}

.singles_main {
  float: left;
  width: 72.7%;
}

.post_lists_info .tag {
	margin-left: 1rem;
}

.tag {
	display: inline-block;
	background: var(--title-color);
	color: var(--background-body);
	padding: 2px 8px 1px;
	font-weight: 600;
	margin-bottom: 0 !important;
	font-size: 0.9em;
	border-radius: 5px;
}
/* 実績紹介 */
.works .singles_main,
.works .singles_side{
	width: 100%;
	float: none;
}
.works .single_thumb {
	margin-bottom: 8%;	
}

.works .single_clms h2.wp-block-heading {
	font-size: 2rem;
}
.works .single_clms h3.wp-block-heading {
	font-size: 1.5rem;
	margin-bottom: .6em;
	padding-bottom: 0;
}
.works .single_clms h3.wp-block-heading:before {
	position: initial;
	display: none;
}

.single_more_ttl {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.single_more_ttl .c-btn a {
	position: relative;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--title-color);
    color: var(--background-body);
    border-radius: 30px;
    padding: 18px 10px 15px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
}

.single_more_ttl .c-btn a img {
    width: 20px;
    position: absolute;
    bottom: 14px !important;
    right: 10px;
}

/* ブログ一覧 */
.blog-category-filter {
    margin-bottom: 30px;
    text-align: center;
}

.blog-category-filter ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-category-filter li a {
    text-decoration: none;
    color: #00509e;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid #00509e;
    transition: 0.3s;
}

.blog-category-filter li a:hover {
    background: #00509e;
    color: #fff;
}



/* 本文 */
.single_clms h2.wp-block-heading,
.single_more_ttl h3 {
	font-weight: 600;
	color: var(--title-color);
	border-bottom: 1px solid var(--title-color);
	font-size: 2.1rem;
    padding-bottom: 12px;
    margin-bottom: 1em;
}
.single_clms  p + h2.wp-block-heading {
    margin-top: 2em;
}
.single_clms h3.wp-block-heading {
	font-size: 1.7rem;
    padding-bottom: 15px;
    margin-bottom: .9em;
    position: relative;
    line-height: 1.4;
}
.single_clms h3.wp-block-heading:before {
	display: block;
    content: "";
    position: absolute;
    width: 55px;
    height: 1px;
    background-color: var(--main-color);
    left: 0;
    bottom: 0;
}
.single_clms h4.wp-block-heading {
	font-size: 1.3rem;
}
.single_clms  p + h3.wp-block-heading {
    margin-top: 1.3em;
}
.single_clms p + h2, .single_clms ul + h2 {
	margin-top: 2em;
}
.single_clms p + h3, .single_clms ul + h3 {
	margin-top: 1.6em;
}

dl.wp-block-simple-definition-list-blocks-list dt {
	font-weight: bold;
	font-size: 1.2em;
}

@media (max-width: 767px) {
	.works .single_clms h2.wp-block-heading {
		font-size: 1.6rem;
		margin-bottom: .5em;
	}
	.works .single_clms h3.wp-block-heading, .single_clms h3.wp-block-heading {
    	font-size: 1.3rem;
    }
    .single_thumb {
		margin-top: 1rem;
	}
    .single_clms h2.wp-block-heading, .single_more_ttl h3, .single_clms p + h2.wp-block-heading {
    	font-size: 1.75rem;
    	padding-bottom: 7px;
    }
    .singles_main, .singles_side {
    	width: 100%;
    	float: none;
    }
	.page_ltit h1 {
		font-size: 2.3rem;
	}
	.news_page_wrap h4 a,
	.news_page_wrap h4 {
		font-size: 1em;
	}
	.news_page_wrap h4 {
		margin: 0 0 0 2rem;
	}
}

/* 関連記事 */
.single_more {
  margin-top: 125px;
    padding: 70px 0 0;
  border-top: 1px solid var(--bg-gray);
}

.single_more .post_lists {
	margin-top: 2.5rem;
}
.single_more .post_lists a {
	color: #333;
}
.single_more .post_lists:hover h3 {
  text-decoration: underline;
	color: var(--title-color);
}

.post_lists_tit h3 {
	font-weight: 600;
    font-size: 1.2em;
    margin-top: 0.9rem;
}

.single_more_tit {
  padding-bottom: 40px;
}

.single_more_tit h3 {
  font-size: 160%;
  color: #8a64ac;
}


/*-- サイドメニュー --*/
.singles_side {
  float: right;
  width: 22.7%;
}
 
.singles_side_list h3, .singles_side_list .widgettitle {
    font-size: 1.5rem;
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
}
.yearArchiveList {
	margin-bottom: 1rem;
}

.yearArchiveList .year:before,
.yearArchiveList .singleList a:before,
.singles_side .cat-item a:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 10px 0 0;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    -webkit-transform: rotate(-45deg) translateY(-50%);
    -ms-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
}

.yearArchiveList .year:hover:before,
.yearArchiveList .singleList a:hover:before {
	border-right: 1px solid #f37302;
    border-bottom: 1px solid #f37302;
}

.yearArchiveList .year:before {
    -webkit-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
}
.yearArchiveList .year {
	position: relative;
    display: block;
	margin: 0;
	padding: 8px 0;
	cursor: pointer;
}
.yearArchiveList .singleList a,
.singles_side .cat-item a {
	padding: 15px 1em;
	position: relative;
    display: block;
	text-decoration: none;
}
.yearArchiveList .year:hover,
.yearArchiveList .singleList a:hover {
	color: var(--main-color);
}
.eachYear {
	display: none;
}

.singles_side .cat-item a {
	text-decoration: none;
	border-bottom: 1px solid var(--title-color);
}
.singles_side .cat-item:first-of-type a {
	border-top: 1px solid var(--title-color);
}
.singles_side .cat-item a:hover {
	color: var(--main-color);
}

.zoho_table th {
    width: 30%;
}

/* --- アーカイブ開閉式CSS (Font Awesome版) --- */
.sidebar .archive-year .year-toggle {
    display: block;
    position: relative;
    padding: 15px 1em 15px 0.7em;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.sidebar .archive-year .year-toggle:hover {
    background-color: #f0f0f0;
}

.sidebar .archive-year .year-toggle .fa {
    margin-right: 3px;
    width: 1em; 
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.sidebar .archive-year.open .year-toggle .fa {
    transform: rotate(90deg);
}

.sidebar .archive-months {
    list-style: none; /* list-style-typeを使うので念のためnoneに */
    margin: 0;
    padding: 5px 0 10px 30px;
}

.sidebar .archive-months li {
    list-style-type: '・';
    padding-left: 5px; /* 「・」とテキストの間隔調整 */
}

.sidebar .archive-months li a {
    display: block;
    padding: 3px 0;
}

.sidebar h2 {
	color: var(--title-color);
	font-weight: 600;
    font-size: 20px;
    padding-bottom: 1.2rem;
}

.news_list {
    padding-top: 40px;
}

.news_list h2{
    border-bottom: 1px solid var(--title-color);
}

.news_list span,
.news_list i {
    color: var(--title-color);
}

.works_sidebar {
    margin-top: 80px;
}

.wp-pagenavi {
    clear: both;
    text-align: center;
    margin-top: 50px;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: var(--title-color);
    background: var(--title-color);
    color: var(--background-body);
}

.sidebar ul {
	padding-left: 40px;
}

#archive-list li {
	padding: 20px 1em 0;
}

@media (max-width: 768px) {
    .singles_side {
        width: 100%;
        margin-top: 70px;
    }
    .works_sidebar {
        margin-top: 0;
    }
    .sub-menu {
        border-top: solid 1px var(--box-hover-color);
    }
	.sidebar ul {
		padding-left: 0;
	}
}

/*-- アーカイブ一覧 --*/
.news-subttl .cat {
	display: inline-block;
	background: var(--title-color);
	color: var(--background-body);
	padding: 2px 8px 1px;
	font-weight: 600;
	margin-bottom: 0 !important;
	font-size: 0.9em;
	border-radius: 5px;
	margin-right: 20px;
}