@charset "utf-8";


/*----------------------------------------------
	.c_nav_type01
---------------------------------------------*/
.c_nav_type01{
  display: flex;
  list-style: none;
  font-size: 2.2rem;
  font-weight: bold;
}

.c_nav_type01 li a, .c_nav_type01 li span{
  display: block;
  padding: 22px 35px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  text-align: left;
  white-space: nowrap;
  transition-duration: 0.2s;
}

.c_nav_type01 li span{
  cursor: pointer;
  line-height: 1;
  transition: 0.2s;
  position: relative;
}

.c_nav_type01 li span:hover{
  opacity: 0.7;
}

.c_nav_type01 li:not(:last-child) span::after{
  content: '';
  border-right: 1px solid #ffffff32;
  height: 2.2rem;
  background-size: contain;
  position: absolute;
  top: calc(50% - 2.2rem / 2);
  right: 0;
}
.c_nav_type01 li:hover a{
  color: var(--color);
}

/* 子要素 */
.c_nav_type01 li .is_child{
  position: absolute;
  /* box-shadow: 0px 0px 10px #00000029; */
  width: 100%;
  top: 66px;
  z-index: 3;
  padding: 30px 80px;
  background: #fff;
  border-radius: var(--radius);
  left: 0;
  min-height: 200px;
  box-shadow: 0 0 20px #00000026;
}
.c_nav_type01 li .is_child .is_inner{
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.c_nav_type01 li .is_child .is_inner ul{
  list-style: none;
  /* display: grid;
  grid-template-columns: repeat(4, 1fr); */
  gap: 10px 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 80px;
  border-left: 1px solid #ccc;
  padding-left: 50px;
  margin-left: 50px;
  min-height: 200px;
  align-content: flex-start
}
.c_nav_type01 .is_child .is_inner ul li a{
  font-size: 2rem;
  color: var(--color);
  position: relative;
  background: transparent;
  padding: 10px 0;
  padding-left: 1.5em;
}
.c_nav_type01 .is_child .is_inner ul li a::before{
  content: '';
  background: url(../images/icon_arrow_green.svg) no-repeat;
  width: 1em;
  height: 1em;
  background-size: contain;
  position: absolute;
  top: calc(50% - 1em / 2);
  left: 0;
}
.c_nav_type01 .is_child .is_inner ul li a:hover{
  color: var(--color);
  opacity: 0.7;
}


/* 孫要素 */
.c_nav_type01 .is_child .is_inner ul li span{
  font-size: 1.8rem;
  color: #333;
  position: relative;
  background: transparent;
  padding: 10px 0;
  cursor: default;
}
.c_nav_type01 .is_child .is_inner ul li span:hover{
  opacity: 1;
}
.c_nav_type01 .is_child .is_inner ul li .is_grandchild{
  list-style: none;
  display: flex;
  gap: 0 30px;
  flex-wrap: wrap;
  border-left: none;
  padding-left: 0;
  margin-left: 0;
  min-height: unset;
}
.c_nav_type01 .is_child .is_inner ul li .is_grandchild li a{
  position: relative;
  padding: 5px 0;
  font-size: 1.6rem;
  padding-left: 18px;
  font-weight: normal;
}
.c_nav_type01 .is_child .is_inner ul li .is_grandchild li a:hover{
  color: var(--color);
}
.c_nav_type01 .is_child .is_inner ul li .is_grandchild li a::before{
  content: '';
  background: var(--color);
  width: 10px;
  height: 1px;
  position: absolute;
  top: 17px;
  left: 0;
}


/* grid無視させたい項目 */
.is_child li:has(.is_grandchild){
  grid-column: 1 / -1;
}


/* スクロール時 */
/* .l_header_area.is_active .c_nav_type01{
  font-size: 1.6rem;
  gap: 50px;
}
.l_header_area.is_active .c_nav_type01 .is_child .is_inner ul li a{
  font-size: 1.5rem;
}
.l_header_area.is_active .c_nav_type01 .is_child{
  top: 40px;
  min-width: 200px;
} */


.c_nav_ttl{
  font-size: 3.6rem;
  width: 22%;
  flex-shrink: 0;
  min-width: 260px;
}



/*----------------------------------------------
    .c_event_label
---------------------------------------------*/
.c_event_label {
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  width: 100%;
  line-height: 1.2;
  background: #000;
  border-radius: 100px;
  padding: 7px 0;
}
.c_event_label.is_red { background: #b03021; }
.c_event_label.is_orange { background: #f2920d; }
.c_event_label.is_sky { background: #09a0e7; }
.c_event_label.is_navy { background: #153259; }
.c_event_label.is_green { background: #00a755; }
.c_event_label.is_violet { background: #ac5192; }
.c_event_label.is_blue {
  background: #0068b7;
  border: 1px solid #ac5192;
}



/*----------------------------------------------
    .c_about_card
---------------------------------------------*/
.c_about_card {
  display: flex;
  flex-direction: column;
}
.c_about_card .is_img {
  width: 100%;
  height: auto;
  aspect-ratio: 560 / 350;
  border-radius: 10px;
  overflow: hidden;
}
.c_about_card .is_img:hover img {
  opacity: 1;
}
.c_about_card img {
  transform: scale(1);
  transition: 0.2s;
}
.c_about_card img:hover {
  opacity: 1;
  transform: scale(1.1);
}
.c_about_card:hover img {
  opacity: 1;
  transform: scale(1.1);
}
.c_about_card .is_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  color: #333;
  border-bottom: 1px dotted var(--color);
  padding: 15px 0 3px;
  position: relative;
  margin-bottom: 15px;
}
.c_about_card .is_ttl::after{
  content: '';
  background: url(../images/icon_arrow_green.svg) no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  position: absolute;
  right: 0;
  top: calc(50% - 40px / 2 + 5px);
}
.c_about_card .is_txt{
  color: #333;
}


/*----------------------------------------------
    .c_ttl_type01
---------------------------------------------*/
.c_ttl_type01{
  font-size: 4rem;
  font-weight: bold;
}

/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
  font-size: 5rem;
  font-weight: bold;
  margin: 0 auto;
  position: relative;
  display: block;
  width: fit-content;
}
.c_ttl_type02::after,
.c_ttl_type02::before {
  content: '';
  background: url(../images/img_lines.svg) no-repeat;
  width: 235px;
  height: 7px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7px / 2);
  left: -220px;
}
.c_ttl_type02::before {
  left: unset;
  right: -220px;
  transform: scaleX(-1);
}


/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  font-size: 3rem;
  width: fit-content;
  position: relative;
  margin: 0 auto;
}
.c_ttl_type03::before,
.c_ttl_type03::after {
  content: '';
  background: var(--color);
  width: 40px;
  height: 2px;
  top: calc(50% - 2px / 2);
  position: absolute;
  left: -60px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.c_ttl_type03::after {
  left: unset;
  right: -60px;
}


/*----------------------------------------------
    .inner h2
---------------------------------------------*/
.c_ttl_type04{
  font-weight: bold;
  font-size: 3rem;
}
.block-editor-iframe__body h2,
.inner h2 {
  font-weight: bold;
  font-size: 3rem;
  position: relative;
  padding: 8px 0;
}
.block-editor-iframe__body h2::after,
.inner h2::after{
  content: '';
  background: var(--color);
  width: 3%;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.block-editor-iframe__body h2::before,
.inner h2::before{
  content: '';
  background: #CCCCCC;
  width: 96.5%;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
}


/*----------------------------------------------
    .inner h3
---------------------------------------------*/
.block-editor-iframe__body h3,
.inner h3{
  font-weight: bold;
  font-size: 2.6rem;
  padding: 6px 20px;
  background: #EFEFEF;
  border-radius: 5px;
}


/*----------------------------------------------
    .inner h4
---------------------------------------------*/
.block-editor-iframe__body h4,
.inner h4{
  font-weight: bold;
  font-size: 2.4rem;
  padding-left: 24px;
  position: relative;
}
.block-editor-iframe__body h4::after,
.inner h4::after{
  content: '';
  background: #aec4c7;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}


/*----------------------------------------------
    .inner h5
---------------------------------------------*/
.block-editor-iframe__body h5,
.inner h5{
  font-weight: bold;
  font-size: 2rem;
  padding-left: 13px;
  position: relative;
}
.block-editor-iframe__body h5::before,
.inner h5::before{
  content: '';
  background: var(--color);
  width: 5px;
  height: 5px;
  position: absolute;
  top: calc(50% - 5px / 2);
  left: 0;
}



/*----------------------------------------------
  	.c_para_type01
---------------------------------------------*/
.c_para_type01 {
  text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
}

/*----------------------------------------------
  	.c_para_type02
---------------------------------------------*/
.c_para_type02 {
  text-align: justify;
  text-indent: 1em;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
}

/*----------------------------------------------
  	.c_kome_type01
---------------------------------------------*/
.c_kome_type01 {
  padding-left: 1em;
  text-indent: -1em;
}

/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.wp-block-table tbody,
.wp-block-table thead {
  width: 100%;
}

.wp-block-table thead{
  border-bottom: 1px solid #D9D9D9!important;
}

.wp-block-table thead tr th,
.wp-block-table tbody tr:first-child th {
  background: #606060;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.wp-block-table tbody tr:first-child th:first-child {
  width: 40%;
}
.wp-block-table tbody th {
  background: #F1F1F1;
  color: #333;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  font-weight: bold;
}
.wp-block-table tbody td {
  background: #fff;
}

.wp-block-table th,
.wp-block-table td {
  padding: 14px 20px!important;
  border: 1px solid #D9D9D9!important;
}



/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
  width: 100%;
}

.c_table_type02 tr:nth-child(odd) {
  background: #eef1f2;
}

.c_table_type02 th {
  color: #333;
}

.c_table_type02 th,
.c_table_type02 td {
  padding: 10px;
  text-align: left;
}

/*----------------------------------------------
	.c_table_type03
---------------------------------------------*/
.c_table_type03 {
	width: 100%;
}

.c_table_type03 thead th {
  background: #051b70;
  color: #fff;
  text-align: center;
}

.c_table_type03 th,
.c_table_type03 td {
  padding: 10px;
	border: 1px solid #b7bbc8;
  vertical-align: middle;
}

.c_table_type03 th {
  white-space: pre-wrap;
  text-align: left;
  font-weight: normal;
}

.c_table_type03 td {
  text-align: center;
}

.c_table_type03 td img{
  vertical-align: middle;
}


.c_table_type03 th.is_blue,
.c_table_type03 td.is_blue {
  background: #ebefff;
}

/*----------------------------------------------
	.c_table_type04
---------------------------------------------*/
.c_table_type04 tr > * {
  border: 1px solid #333;
  vertical-align: top;
}

/*----------------------------------------------
	.wp-block-table.is-style-border
---------------------------------------------*/
.wp-block-table.is-style-border table{
  border: none;
  border-bottom: 1px solid #DADADA;
}
.wp-block-table.is-style-border table *{
  border: none!important;
}
.wp-block-table.is-style-border table tr td{
  border: none;
  border-top: 1px solid #DADADA!important;
  padding: 20px 0!important;
  line-height: 2;
}
.wp-block-table.is-style-border table tr td:first-child{
  width: 20%;
  font-weight: bold;
  vertical-align: top;
  padding-right: 30px;
}


/* FOR COLORED LIST TYPE */
/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.wp-block-list {
  vertical-align: top;
}

.wp-block-list li {
  list-style: none;
  position: relative;
	padding-left: .8em;
  margin-bottom: 5px;
}

.wp-block-list li::before {
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  color: #333;
  vertical-align: middle;
}

.wp-block-list li::before {
  top: 0;
  left: -0.2em;
  content: "・";
}

ol.wp-block-list li {
  padding-left: 1.8em;
}
ol.wp-block-list {
  counter-reset: is_decimal_counter;
}
ol.wp-block-list li::before {
  top: 0;
  width: 25px;
  margin-right: 5px;
  color: #333;
  /* font-weight: bold; */
  text-align: right;
  vertical-align: unset;
  content: counter(is_decimal_counter) ". ";
  counter-increment: is_decimal_counter;
}



/* 特典 */
.wp-block-list.is-style-benefits  {
  counter-reset: is_benefits_counter;
}
.wp-block-list.is-style-benefits li {
	padding-left: 80px;
  margin: 14px 0 50px;
}

.wp-block-list.is-style-benefits li::before {
  color: #A59255;
  content: counter(is_benefits_counter);
  counter-increment: is_benefits_counter;
  font-size: 2rem;
  width: 60px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  top: calc(50% - 2rem / 2);
  line-height: 1;
}

.wp-block-list.is-style-benefits li::after {
  content: '';
  background: url(../images/img_benefits.jpg) no-repeat;
  width: 60px;
  height: 52px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 52px / 2);
  left: 0;
  z-index: -1;
}


/* 取り組みヒントの中の時 */
.c_solution .wp-block-list li {
  margin-bottom: 10px;
}


/* FOR SIMPLE LIST TYPE */
/*----------------------------------------------
	.c_list_type02
---------------------------------------------*/
.c_list_type02 {
  padding-left: 20px;
  text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
}

.c_list_type02 li {
  margin-bottom: 5px;
}

.c_list_type02.is_disc li {
  list-style: disc;
}

.c_list_type02.is_decimal li{
  list-style: decimal;
}


/*----------------------------------------------
	.c_btn_type01
---------------------------------------------*/
.wp-block-button .wp-element-button,
.c_btn_type01 {
  display: inline-block;
  position: relative;
  font-weight: bold;
  padding: 24px 40px;
  border-radius: 10px;
  background: var(--color);
  color: #fff!important;
  text-decoration: none!important;
  border-bottom: 4px solid var(--color2);
  font-size: 3rem;
  transition: 0.2s;
  cursor: pointer;
  max-width: 560px;
  width: 100%;
  top: -4px;
  text-align: left;
}
.c_btn_type01::after{
  content: '';
  background: url(../images/icon_arrow_white.svg) no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 40px / 2);
  right: 40px;
}
*.c_btn_type01:hover {
  opacity: 0.7;
}


/* オレンジ */
.c_btn_type01.is_orange{
  background: #cda812;
  border-color: #a48404;
}


/* 診断 */
.c_btn_type01.is_test{
  padding: 20px 40px;
  font-size: 2rem;
}
.c_btn_type01.is_test::after{
  right: 25px;
}


/* 通常サイズ */
.wp-block-button .wp-element-button,
.c_btn_type01.is_center {
  padding: 18px 30px;
  font-size: 1.8rem;
  text-align: center;
  min-width: 360px;
  width: unset;
}
.wp-block-button .wp-element-button,
.c_btn_type01.is_center::after{
  content: none;
}


/* PDFアイコン */
.wp-block-button.is-style-pdf .wp-element-button{
  padding: 18px 80px;
}
.wp-block-button.is-style-pdf .wp-element-button::before {
  content: '';
  background: url(../images/icon_pdf.svg) no-repeat;
  width: 20px;
  height: 23px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 23px / 2);
  right: 30px;
}


/* 矢印アイコン */
.wp-block-button.is-style-arrow .wp-element-button::after{
  content: '';
  background: url(../images/icon_arrow_white.svg) no-repeat;
  width: 25px;
  height: 25px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 25px / 2);
  right: 30px;
}


/*----------------------------------------------
	.c_btn_contact
---------------------------------------------*/
.c_btn_contact{
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  padding-left: 40px;
  color: #333!important;
  flex-shrink: 0;
}
.c_btn_contact::before{
  content: '';
  background: url(../images/icon_arrow_green.svg) no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  top: calc(50% - 30px / 2);
  left: 0;
  transition: 0.2s;
}

.c_btn_contact:hover{
  opacity: 0.7;
}


/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 15px;
  border: 1px solid #c4e7f4;
  background: #f4fcff;
}
.c_box_type01_header {
  color: #447b8f;
  font-weight: bold;
  font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 15px;
  border: 1px solid #e4d1b9;
  background: #fff5e8;
}

.c_box_type02_header {
  color: #c27f2f;
  font-weight: bold;
  font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 25px;
/*  background: #FEEEEE;*/
  border: 1px solid #ee2b29;
  color: #ee2b29;
}

/*----------------------------------------------
.c_anchor_icon
---------------------------------------------*/
/*----------------------------------------------
.c_anchor_icon
---------------------------------------------*/
.is-style-external a {
  padding: 1px 20px 1px 0;
  background: url(../images/icon_external.png) no-repeat right center;
}

.is-style-excel a {
  padding: 1px 20px 1px 0;
  background: url(../images/icon_excel.png) no-repeat right center;
}

.is-style-word a {
  padding: 1px 20px 1px 0;
  background: url(../images/icon_word.png) no-repeat right center;
}

.is-style-ppt a {
  padding: 1px 20px 1px 0;
  background: url(../images/icon_powerpoint.png) no-repeat right center;
}

.is-style-pdf a {
  padding: 1px 20px 1px 0;
  background: url(../images/icon_pdf.png) no-repeat right center;
}

.is-style-arrow a {
  padding: 1px 0 1px 34px;
  background: url(../images/icon_circle_arrow.svg) no-repeat left center;
  background-size: contain;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  padding: 0;
  /* word-break: break-word; */
  line-height: 1.5!important;
}

.is-style-arrow a:hover {
  color: var(--color);
}

/*----------------------------------------------
.c_nav_icon
メニューの外部リンク用アイコン
---------------------------------------------*/
a.c_nav_icon {
  display: inline-block;
  padding: 3px 30px 3px 5px;
  background: url("../images/icon_external_nav.png") no-repeat right 5px center;
}
a.c_nav_icon:hover,
a.c_nav_icon.is_hover {
  background: url("../images/icon_external_nav_o.png") no-repeat right 5px center, #ccc;
  color: #333;
}


/*----------------------------------------------
.c_news
---------------------------------------------*/
.c_news{
  list-style: none;
  border-top: 1px solid #DADADA;
  max-width: 890px;
  width: 100%;
}
.c_news.is_inner{
  max-width: unset;
}
.c_news.is_no_border{
  border-top: none;
}
.c_news li{
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #DADADA;
}
.c_news li a{
  color: #333;
  transition: 0.2s;
}
.c_news li a:hover{
  color: var(--color);
}
.c_news span{
  flex-shrink: 0;
}
.c_news span.is_category{
  font-size: 1.4rem;
  padding: 4px 0;
  width: 100px;
  text-align: center;
  color: #fff;
  background: #000;
  border-radius: 100px;
  display: block;
}
.c_news span.is_category.is_orange{
  background: #b7981d;
}
.c_news span.is_category.is_mint{
  background: #0ca278;
}
.c_news span.is_category.is_brown{
  background: #bc5c7b;
}


/*----------------------------------------------
.c_service_card
---------------------------------------------*/
.c_service_card {
  display: block;
}
.c_service_card .is_img{
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  display: block;
}
.c_service_card .is_img img{
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s;
}
.c_service_card:hover .is_img img{
  transform: scale(1.1);
}
.c_service_card .is_img img:hover{
  opacity: 1;
}
.c_service_card .is_ttl{
  background: var(--color);
  color: #fff;
  padding: 12px 0;
  font-weight: bold;
  text-align: center;
  border-radius: 0 0 10px 10px;
  font-size: 3rem;
  display: block;
}


/*----------------------------------------------
.c_work
---------------------------------------------*/
.c_work {
  margin: 0 25px;
  overflow: hidden;
  border-radius: 10px;
}
.c_work img{
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s;
}
.c_work:hover img{
  transform: scale(1.1);
  opacity: 1;
}


/*----------------------------------------------
.c_menu_column
---------------------------------------------*/
.c_menu_column {
  list-style: none;
  width: 200px;
}
.c_menu_column > li:not(:last-child){
  margin-bottom: 30px;
}
.c_menu_column li > a:hover{
  opacity: 0.7;
}
.c_menu_column .is_child{
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 8px;
  margin-left: 12px;
}
.c_menu_column .is_child a,
.c_menu_column .is_child span{
  /*color: #fff;*/
  color: #333;
}
.c_menu_column .is_grandchild{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1.4rem;
  margin-top: 5px;
}
.c_menu_column .is_grandchild li{
  position: relative;
  padding-left: 20px;
}
.c_menu_column .is_grandchild li::before{
  content: '';
  background: #333;
 /* background: #ffffff6f;*/
  width: 10px;
  height: 1px;
  position: absolute;
  top: 10px;
  left: 0;
}

/*----------------------------------------------
.c_menu_ttl
---------------------------------------------*/
.c_menu_ttl{
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  display: block;
  color: #333;
  /*color: #fff;*/
}
.c_menu_ttl::after{
  content: '';
  background: var(--color);
  width: 15%;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  filter: brightness(1.2);
  bottom: -8px;
}
.c_menu_ttl::before{
  content: '';
  background: #A3A3A3;
  width: 84%;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  right: 0;
  bottom: -8px;
}


/*----------------------------------------------
.c_link_arrow
---------------------------------------------*/
*:not(.wp-block-button).is-style-arrow,
.c_link_arrow{
  font-weight: bold!important;
  font-size: 1.8rem!important;
  position: relative!important;
  padding-left: 45px!important;
  color: #333!important;
  flex-shrink: 0!important;
  width: fit-content!important;
}
*:not(.wp-block-button).is-style-arrow::before,
.c_link_arrow::before{
  content: '';
  background: url(../images/icon_arrow_green.svg) no-repeat;
  width: 30px!important;
  height: 30px!important;
  position: absolute!important;
  /* background-size: contain; */
  top: calc(50% - 30px / 2)!important;
  left: 0!important;
  transition: 0.2s;
}
*:not(.wp-block-button).is-style-arrow a,
.c_link_arrow span{
  position: relative;
  width: fit-content;
  color: #333;
  display: block;
}
*:not(.wp-block-button).is-style-arrow a::after,
.c_link_arrow span::after{
  content: '';
  background: #707070;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0;
}
*:not(.wp-block-button).is-style-arrow a:hover,
.c_link_arrow:hover{
  opacity: 0.7;
}
*:not(.wp-block-button).is-style-arrow:hover a::after,
.c_link_arrow:hover span::after{
  content: none;
}


/*----------------------------------------------
.c_bnr
---------------------------------------------*/
.c_bnr{
  display: block;
}


/*----------------------------------------------
.c_bc_arrow
---------------------------------------------*/
.c_bc_arrow{
  display: block;
  width: 6px;
  height: 10px;
  background: url(../images/icon_arrow_sm.svg) no-repeat;
  background-size: contain;
}


/*----------------------------------------------
.c_person
---------------------------------------------*/
.c_person{
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  margin-bottom: 10px;
}
.c_person > *{
  display: block;
}
.c_person > br{
  display: none!important;
}
.c_person .is_role{
  min-width: 180px;
}
.c_person .is_name{
  min-width: 120px;
}


/*----------------------------------------------
.wp-block-list is-style-objectives
---------------------------------------------*/
.wp-block-group__inner-container:has(> .wp-block-list.is-style-objectives){
  background: url(../images/img_obj_bg.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  padding: 70px 40px;
}
.wp-block-list.is-style-objectives{
  width: fit-content;
  counter-reset: is_decimal_counter;
  margin: 0 auto;
}
.wp-block-list.is-style-objectives li{
  font-size: 1.8rem;
  position: relative;
  padding-left: 70px;
}
.wp-block-list.is-style-objectives li:not(:last-child){
  margin-bottom: 50px;
}
.wp-block-list.is-style-objectives li::before {
  content: counter(is_decimal_counter);
  counter-increment: is_decimal_counter;
  position: absolute;
  font-size: 1.4rem;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: 1px solid #E2E2E2;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: calc(50% - 50px/2);
}
.wp-block-list.is-style-objectives li::marker {
  content: none;
}


/*----------------------------------------------
.c_member
---------------------------------------------*/
.c_member > *{
  display: block;
  width: fit-content;
}
.c_member .is_name{
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}
.c_member .is_url a{
  line-height: 1.5;
  display: inline-block;
  text-decoration: underline;
  color: var(--color);
}


/*----------------------------------------------
.c_media
---------------------------------------------*/
.c_media {
  display: block;
  border-top: 1px solid #DADADA;
  padding: 30px 0;
}
.c_media a{
  text-decoration: underline;
}
.c_media .is_header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.c_media .is_header .is_name{
  font-weight: bold;
  font-size: 1.8rem;
}
.c_media .is_header .is_date{
  font-size: 1.6rem;
  color: #6C6C6C;
}


/*----------------------------------------------
.wp-block-group.is-style-box
---------------------------------------------*/
.wp-block-group.is-style-box{
  background: #e5f2f4;
  border-radius: 10px;
  padding: 40px;
}


/*----------------------------------------------
.wp-block-group.is-style-organizations
---------------------------------------------*/
.wp-block-group.is-style-organizations{
  display: flex;
  align-items: center;
  gap: 30px;
}
.wp-block-group.is-style-organizations figure{
  flex-shrink: 0;
}
.wp-block-group.is-style-organizations img{
  width: 300px;
  height: auto;
}


/*----------------------------------------------
.c_merit_card
---------------------------------------------*/
.c_merit_card {
  background: #edf4f5;
  padding: 80px 20px 20px;
  position: relative;
  border-radius: 10px;
  margin-top: 70px;
  max-width: 290px;
}
.c_merit_card .is_img {
  background: #fff;
  width: 130px;
  height: 130px;
  border-radius: 200px;
  position: absolute;
  top: -70px;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c_merit_card .is_img img{
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
.c_merit_card .is_ttl {
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  font-size: 2rem;
}


/*----------------------------------------------
.c_hints_theme
---------------------------------------------*/
.c_hints_theme{
  border: 1px solid var(--color);
  padding: 20px 0;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  transition: 0.2s;
  cursor: pointer;
}
.c_hints_theme:hover{
  opacity: 0.7;
}
.c_hints_theme input{
  display: none;
}
.c_hints_theme .is_sub{
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  width: 110px;
  background: var(--color);
  border-radius: 100px;
  color: #fff;
}
.c_hints_theme .is_ttl{
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color);
}

/* checked */
.c_hints_theme:has(input:checked){
  background: var(--color);
}
.c_hints_theme:has(input:checked)  .is_sub{
  background: #fff;
  color: var(--color);
}
.c_hints_theme:has(input:checked)  .is_ttl{
  color: #fff;
}


/*----------------------------------------------
.c_prob
---------------------------------------------*/
.c_prob{
  border: 1px solid var(--color);
  padding: 14px;
  padding-left: 55px;
  border-radius: 10px;
  transition: 0.2s;
  cursor: pointer;
  display: block;
  position: relative;
}
.c_prob::before{
  content: '';
  background: #fff;
  width: 16px;
  height: 16px;
  border-radius: 100px;
  position: absolute;
  top: calc(50% - 16px / 2);
  left: 20px;
  outline: 1px solid var(--color);
  outline-offset: -2px;
}
.c_prob:hover{
  opacity: 0.7;
}
.c_prob input{
  display: none;
}
.c_prob .is_ttl{
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color);
}

/* checked */
.c_prob:has(input:checked){
  background: var(--color);
}
.c_prob:has(input:checked)::before{
  outline: 2px solid #fff;
  background: var(--color);
}
.c_prob:has(input:checked)  .is_ttl{
  color: #fff;
}


/*----------------------------------------------
.c_solution_num
---------------------------------------------*/
.c_solution_sec{
  margin-bottom: 30px;
}

.c_solution_num{
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5!important;
}

.c_solution{
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
}

.c_solution .is_head{
  position: relative;
  padding-right: 90px;
  line-height: 1.5!important;
}

.c_solution .is_dtl{
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #DADADA;
}

.c_sol_toggle{
  content: '';
  width: 40px;
  height: 40px;
  border: 1px solid var(--color);
  position: absolute;
  top: calc(50% - 40px / 2);
  right: 0;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 100px;
}
.c_sol_toggle:hover{
  opacity: 0.7;
}
.c_sol_toggle::after{
  content: '';
  background: url(../images/icon_plus.svg) no-repeat;
  width: 16px;
  height: 16px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 16px / 2);
  right: 0;
  left: 0;
  margin: 0 auto;
}
.c_sol_toggle.open::after{
  content: '';
  background: url(../images/icon_minus.svg) no-repeat;
  width: 16px;
  height: 1px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 1px / 2);
  right: 0;
  left: 0;
}


/*----------------------------------------------
.c_ttl_num
---------------------------------------------*/
.c_ttl_num::before,
.c_ttl_num::after{
  content: none!important;
}
.c_ttl_num{
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  gap: 20px;
}
.c_ttl_num span{
  display: block;
  background: #F2F2F2;
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/*----------------------------------------------
.c_login
---------------------------------------------*/
.c_login{
  position: relative;
  padding-left: 40px;
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
  text-decoration: none;
  color: #333!important;
}
.c_login::before{
  content: '';
  background: url(../images/icon_person_black.svg) no-repeat;
  width: 31px;
  height: 31px;
  background-size: cover;
  position: absolute;
  top: calc(50% - 31px / 2);
  left: 0;
}
.c_login.is_custom::before{
  background: url(../images/icon_person_white.svg) no-repeat;
  background-size: cover;
}


/*----------------------------------------------
.c_en
---------------------------------------------*/
.c_en{
  position: relative;
  padding-left: 40px;
  font-weight: bold;
  font-size: 1.6rem;
  color: #333!important;
}
.c_en::before{
  content: '';
  background: url(../images/icon_global.svg) no-repeat;
  width: 31px;
  height: 31px;
  background-size: cover;
  position: absolute;
  top: calc(50% - 31px / 2);
  left: 0;
}


/*----------------------------------------------
	.is-style-chronological
---------------------------------------------*/
.wp-block-table.is-style-chronological{
  border: none!important;
  position: relative;
  margin-left: 20px;
  overflow: hidden;
}
.wp-block-table.is-style-chronological table{
  table-layout: auto!important;
}
.wp-block-table.is-style-chronological table th,
.wp-block-table.is-style-chronological table td{
  border: none!important;
  background: transparent!important;
  padding: 8px 20px!important;
  vertical-align: top;
}
.wp-block-table.is-style-chronological table tbody tr td:has(.is_year){
  font-weight: bold;
  color: var(--color);
  width: 130px!important;
  text-align: center;
  position: relative;
  vertical-align: top;
}
.wp-block-table.is-style-chronological table tbody tr:has(.is_year) td{
  padding-top: 20px!important;
}
.wp-block-table.is-style-chronological table tbody tr td:has(.is_year)::before{
  content: '';
  background: var(--color);
  width: 15px;
  height: 15px;
  position: absolute;
  top: 25px;
  border-radius: 100px;
  display: block;
  left: 0;
}
.wp-block-table.is-style-chronological table tbody::after{
  content: '';
  background: var(--color);
  width: 1px;
  height: 95%;
  position: absolute;
  top: 30px;
  left: 7px;
  display: block;
}
.wp-block-table.is-style-chronological table tbody span.is_color{
  color: var(--color);
  font-weight: bold;
  display: inline-block;
  width: 30px;
  text-align: right;
  margin-right: 20px;
}
.wp-block-table.is-style-chronological table tbody tr td:has(.is_color){
  text-indent: -50px;
  padding-left: 60px!important;
}


/*----------------------------------------------
	.is-style-no-border
---------------------------------------------*/
.wp-block-table.is-style-no-border{
  border: none!important;
  position: relative;
}
.wp-block-table.is-style-no-border table{
  table-layout: auto!important;
}
.wp-block-table.is-style-no-border table th,
.wp-block-table.is-style-no-border table td{
  border: none!important;
  background: transparent!important;
  padding: 8px 0!important;
  vertical-align: top;
}
.is_kaiin_year{
  color: #909090;
}


/*----------------------------------------------
	.c_mv_copy
---------------------------------------------*/
.c_mv_copy{
  font-size: 6rem;
  text-align: center;
  position: absolute;
  color: #fff;
  font-weight: 500;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: calc(50% - 156px / 2 + 65px);
  line-height: 1.3;
  text-shadow: 0px 0px 15px #022a2f54;
  letter-spacing: 5px;
}