@charset "utf-8";


/*----------------------------------------------
	.c_nav_type01
---------------------------------------------*/
.c_nav_type01{
  display: flex;
  list-style: none;
  font-size: 1.6rem;
  font-weight: bold;
  gap: 30px;
}

.c_nav_type01 li{
  position: relative;
}

.c_nav_type01 li a, .c_nav_type01 li span{
  display: block;
  padding: 10px 0;
  background: transparent;
  color: #333;
  text-decoration: none;
  text-align: center;
  text-align: left;
  white-space: nowrap;
  transition-duration: 0.2s;
}

.c_nav_type01 li span{
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}

.c_nav_type01 li:hover a{
  color: var(--color);
  opacity: 1;
}

/* 子要素 */
.c_nav_type01 li .is_child{
  list-style: none;
  position: absolute;
  width: fit-content;
  min-width: 230px;
  box-shadow: 3px 3px 10px #00000010;
  top: 40px;
  z-index: 3;
  padding: 14px 20px;
  background: #ffffffe9;
  border-radius: 10px;
  left: -40%;
  display: none;
}
/* .c_nav_type01 li:hover .is_child{
  opacity: 1;
} */
.c_nav_type01 .is_child li a{
  color: #333;
  position: relative;
  background: transparent;
}
.c_nav_type01 .is_child li a:hover{
  color: var(--color);
  opacity: 1;
}
.c_nav_type01 .is_child li a::after{
  content: '';
  background: var(--color);
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 10px;
  left: 0;
  transition: 0.2s;
}
.c_nav_type01 .is_child li a:hover::after{
  width: 100%;
}


/*----------------------------------------------
	.c_nav_type02
---------------------------------------------*/
.c_nav_type02{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  font-size: 3rem;
  font-weight: 500;
  gap: 50px 200px;
  width: 100%;
}

.c_nav_type02 li{
  position: relative;
}

.c_nav_type02 li a, .c_nav_type02 li span{
  font-family: "Montserrat", "Noto Sans JP", 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', arial, helvetica, sans-serif;
  display: block;
  background: transparent;
  color: #fff;
  text-decoration: none;
  text-align: center;
  text-align: left;
  white-space: nowrap;
  transition-duration: 0.2s;
}

.c_nav_type02 li span{
  position: relative;
  transition: 0.2s;
}

.c_nav_type02 li:hover a{
  color: #fff;
}

.c_nav_type02 li a .is_sub{
  font-size: 1.6rem;
  font-weight: normal;
}

/* 子要素 */
.c_nav_type02 li .is_child{
  list-style: none;
  z-index: 3;
  margin-top: 10px;
}
/* .c_nav_type02 li:hover .is_child{
  opacity: 1;
} */
.c_nav_type02 .is_child li a{
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}
.c_nav_type02 .is_child li a::before{
  content: '';
  background: #fff;
  width: 13px;
  height: 1px;
  position: absolute;
  left: 0;
  top: calc(50% - 2px / 2 + 1px);
}
.c_nav_type02 .is_child li a:hover{
  opacity: 0.7;
}



/*----------------------------------------------
.c_news
---------------------------------------------*/
.c_news{
  list-style: none;
  width: 100%;
}
.c_news li{
  border-top: 1px dotted #CCCCCC;
  padding: 20px 0;
}
.c_news li:first-child{
  border-top: none;
  padding: 0 0 20px;
}
.c_news li a.is_inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  padding-right: 53px;
}
.c_news li a.is_inner::after {
  content: '';
  background: url(../images/icon_arrow.svg) no-repeat;
  width: 33px;
  height: 33px;
  background-size: 12px;
  background-position: center;
  position: absolute;
  background-color: var(--color);
  border-radius: 100px;
  right: 0;
  top: calc(50% - 33px / 2);
  display: block;
}
.c_news li a.is_inner .is_img{
  width: 250px;
  height: 140px;
  overflow: hidden;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid #DDDDDD;
}
.c_news li a.is_inner .is_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}
.c_news li a.is_inner:hover .is_img img{
  transform: scale(1.05);
}


.c_news li a.is_inner .is_dtl .is_date {
  color: #555555;
  margin-bottom: 16px;
  line-height: 1;
}
.c_news li a.is_inner .is_dtl .is_ttl {
  font-size: 1.8rem;
  color: #333;
  font-weight: 700;
}

/* 中ページ */
.l_news_dtl.is_inner .c_news li a.is_inner {
  padding-right: 0;
}
.l_news_dtl.is_inner .c_news li a.is_inner::after {
  content: none;
}

/*----------------------------------------------
    .c_about_card
---------------------------------------------*/
.c_about_card{
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}
.c_about_card::after{
  content: '';
  background: #00000034;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s;
  border-radius: 20px;
}
.c_about_card:hover{
  opacity: 1;
}
.c_about_card:hover img{
  opacity: 1;
}
.c_about_card:hover::after{
  opacity: 0;
}
.c_about_card .is_ttl{
  position: absolute;
  bottom: 20px;
  left: 35px;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  z-index: 2;
}
.c_about_card .is_ttl span{
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700!important;
}


/*----------------------------------------------
    .c_bottom_card
---------------------------------------------*/
.c_bottom_card{
  padding: 30px 30px 35px;
  border-radius: 20px;
  background: #fff;
  width: 100%;
  text-align: center;
  height: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 10px 0 #0000001b;
}
.c_bottom_card:hover{
  opacity: 1;
}
.c_bottom_card .is_img{
  width: 80px;
  height: auto;
}
.c_bottom_card .is_img:hover{
  opacity: 1;
}
.c_bottom_card .is_ttl{
  font-weight: 500;
  font-size: 1.4rem;
  color: #888888;
  margin-top: auto;
  transition: 0.2s;
}
.c_bottom_card .is_ttl span{
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--color);
}

.c_bottom_card:hover .is_img,
.c_bottom_card:hover .is_ttl{
  opacity: 0.7;
}


/*----------------------------------------------
.c_bc
---------------------------------------------*/
.c_bc a{
  color: var(--color3);
  text-decoration: underline;
}

/*----------------------------------------------
.c_bc_arrow
---------------------------------------------*/
.c_bc_arrow{
  display: block;
  width: 7px;
  height: 12px;
  background: url(../images/icon_mini_arrow.svg) no-repeat;
  background-size: contain;
  filter: brightness(0);
  opacity: 0.7;
}


/*----------------------------------------------
    .c_ttl_type01
---------------------------------------------*/
.c_ttl_type01{
  font-size: 2.6rem;
  color: var(--color);
}
.c_ttl_type01.is_orange{
  color: var(--color2);
}
.c_ttl_type01.is_white{
  color: #fff;
}
.c_ttl_type01.is_black{
  color: #333;
}
.c_ttl_type01.is_blue{
  color: var(--color5);
}
.c_ttl_type01 span{
  font-size: 7.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.c_ttl_type01.is_inner{
  font-size: 2.4rem;
  color: #fff;
  position: relative;
  z-index: 2;
  line-height: 2.3;
}
.c_ttl_type01.is_inner span{
  font-size: 8.2rem;
}

/*----------------------------------------------
    h2
---------------------------------------------*/
.block-editor-iframe__body h2,
.inner h2 {
  font-size: 3.2rem;
  padding-top: 15px;
  position: relative;

  &::before{
    content: '';
    background: linear-gradient(90deg, var(--color) 0%, var(--color) 7%, #dddddd 7%, #dddddd 100%);
    width: 100%;
    height: 3px;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
}


/*----------------------------------------------
    .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
---------------------------------------------*/
.block-editor-iframe__body h2,
.inner h2 {
  font-weight: bold;
  font-size: 3.4rem;
  position: relative;
}
/* .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.4rem;
  padding: 5px 20px;
  background: #E9EDF7;
  border-left: 5px solid var(--color4);
}


/*----------------------------------------------
    .inner h4
---------------------------------------------*/
.block-editor-iframe__body h4,
.inner h4{
  font-weight: 900;
  font-size: 2.6rem;
  padding-left: 20px;
  position: relative;
  color: var(--color4);
}
.block-editor-iframe__body h4::before,
.inner h4::before{
  content: '';
  background: var(--color4);
  width: 5px;
  height: calc(100% - 10px - 2px);
  position: absolute;
  top: 8px;
  left: 0;
}

/*----------------------------------------------
    .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
---------------------------------------------*/
.c_table_type01 tbody,
.c_table_type01 thead {
  width: 100%;
}

.c_table_type01 thead tr{

}

.c_table_type01 tbody td {
  padding: 0;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #DDDDDD!important;
  height: 100px;
  padding: 25px 0;
}

.c_table_type01 tbody tr td:first-child {
  color: var(--color3);
  font-weight: bold;
  width: 120px;
  font-size: 1.6rem;
}

/* factory */
.c_table_type01.is_factory tbody td {
  height: unset;
  padding: 30px 0;
  vertical-align: top;
}
.c_table_type01.is_factory tbody tr:first-child td {
  padding-top: 40px;
}
.c_table_type01.is_factory tbody tr:last-child td {
  padding-bottom: 0;
  border-bottom: none!important;
}
.c_table_type01.is_factory tbody tr td:first-child {
  color: #333;
  width: 140px;
}

/* サービス紹介 */
.c_table_type01.is_custom01 td{
  height: unset;
  padding: 18px 0;
}
.c_table_type01.is_custom01 tbody tr td:first-child{
  color: #333;
  width: 100%;
  font-weight: normal;
  font-size: unset;
}


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

.c_table_type02 thead tr{

}

.c_table_type02 tbody tr td {
  padding: 0;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #DDDDDD!important;
  padding: 30px 0 18px;
}

.c_table_type02 tbody tr td:first-child {
  font-weight: bold;
  width: 110px;
  font-size: 1.6rem;
}


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

.c_table_type03 thead tr{

}

.c_table_type03 tbody tr td {
  padding: 0;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #DDDDDD!important;
  padding: 25px 0 18px;
}


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


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

.c_table_type05 thead th {
  background: var(--color4);
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.c_table_type05 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #333;
  background: #E9EDF7;
}

.c_table_type05 th,
.c_table_type05 td {
  padding: 14px;
  border: 1px solid #bbb;
}

.c_table_type03 thead tr:last-of-type th {
/*  border-bottom: 1px solid #333;*/
}
.c_table_type03 tbody tr th,
.c_table_type03 tbody tr td {
  border-top: none;
}
.c_table_type03 tbody tr:not(:last-of-type) th,
.c_table_type03 tbody tr:not(:last-of-type) td {
  border-bottom: 1px dotted #aaa;
}





/*----------------------------------------------
	.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: 20px 30px;
  border-radius: 100px;
  background: var(--color);
  color: #fff!important;
  text-decoration: none!important;
  font-size: 2rem;
  transition: 0.2s;
  cursor: pointer;
  min-width: 280px;
  text-align: left;
  border: none;
}
.c_btn_type01::after,
.wp-block-button .wp-element-button::after{
  content: '';
  background: url(../images/icon_arrow.svg) no-repeat;
  width: 19px;
  height: 18px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 19px / 2);
  right: 20px;
}
*.c_btn_type01:hover {
  opacity: 0.7;
}

.wp-block-button .wp-element-button{
  background: var(--color3);
}
.wp-block-button.is_w250,
.c_btn_type01.is_w250{
  max-width: 250px;
  width: 100%;
  min-width: unset;

  .wp-element-button{
    max-width: 250px;
    width: 100%;
    min-width: unset;
    padding: 18px 30px;
    font-size: 1.6rem;
  }
}
.wp-block-button.is_w280,
.c_btn_type01.is_w280{
  max-width: 280px;
  width: 100%;

  .wp-element-button{
    max-width: 280px;
    width: 100%;
  }
}
.wp-block-button.is_w350,
.c_btn_type01.is_w350{
  max-width: 350px;
  width: 100%;

  .wp-element-button{
    max-width: 350px;
    width: 100%;
  }
}
.wp-block-button.is_w380,
.c_btn_type01.is_w380{
  max-width: 380px;
  width: 100%;

  .wp-element-button{
    max-width: 380px;
    width: 100%;
  }
}


/* 通常サイズ */
.c_btn_type01.is_default {
  padding: 12px 30px;
  font-size: 1.6rem;
  min-width: unset;
  width: 200px;
}
.c_btn_type01.is_default::after{
  width: 11px;
  height: 9px;
  top: calc(50% - 9px / 2);
  right: 15px;
  background: url(../images/icon_arrow_sm.svg) no-repeat;
  background-size: contain;
}

/* 灰色 */
.c_btn_type01.is_gray {
  background: #AAAAAA;
}

/* オレンジ */
.c_btn_type01.is_orange {
  background: var(--color2);
}

/* 白 */
.c_btn_type01.is_white {
  background: #fff;
  color: var(--color)!important;
}
.c_btn_type01.is_white::after{
  background: url(../images/icon_arrow_color.svg) no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}


/* 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_form{
  position: relative;
  display: block;
  max-width: 250px;
  border-radius: 100px;
  overflow: hidden;
  transition: 0.2s;
}
.c_btn_form:hover{
  opacity: 0.7;
}
.c_btn_form::after{
  content: '';
  background: url(../images/icon_arrow.svg) no-repeat;
  width: 19px;
  height: 18px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 19px / 2);
  right: 20px;
}
.c_btn_form input{
  display: inline-block;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none !important;
  cursor: pointer;
  text-align: left;
  border: none;
  width: 100%;
  background: var(--color2);
  min-width: unset;
  padding: 20px 30px;
}
.c_btn_form .wpcf7-spinner{
  display: none;
}



/*----------------------------------------------
	.c_btn_contact
---------------------------------------------*/
.c_btn_contact{
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  padding: 10px 27px;
  color: #fff!important;
  background: var(--color);
  flex-shrink: 0;
  border-radius: 100px;
}

.c_btn_contact:hover{
  opacity: 0.7;
}


/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 90px 65px!important;
  background:#F4F6FB;
  border-radius: 25px;
}
.c_box_type01.is_factory {
  padding: 51px 60px 60px!important;
  background:#F4F6FB;
  border-radius: 20px;
}
.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_menu_column
---------------------------------------------*/
.c_menu_column {
  list-style: none;
}
.c_menu_column > li:not(:last-child){
  margin-bottom: 20px;
}
.c_menu_column li > a{
  color: #fff;
}
.c_menu_column li > a:hover{
  opacity: 0.7;
}
.c_menu_column .is_child{
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 10px;
  position: relative;
}
.c_menu_column .is_child li{
  position: relative;
  padding-left: 18px;
  font-size: 1.4rem;
}
.c_menu_column .is_child li:last-child{
  margin-bottom: 12px;
}
.c_menu_column .is_child li a{
  color: #fff;
}
.c_menu_column .is_child li::before{
  content: '';
  background: #ffffff6c;
  width: 10px;
  height: 1px;
  position: absolute;
  top: calc(50% - 1px / 2);
  left: 0;
}


/*----------------------------------------------
.c_menu_ttl
---------------------------------------------*/
.c_menu_ttl{
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: block;
  color: #fff;
  margin-bottom: 12px;
}


/*----------------------------------------------
.c_copy_link
---------------------------------------------*/
.c_copy_link{
  display: block;
  position: relative;
  padding-left: 16px;
  color: #fff!important;
}
.c_copy_link::before{
  content: '';
  background: url(../images/icon_mini_arrow.svg) no-repeat;
  width: 6px;
  height: 10px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 10px / 2 + 1px);
  left: 0;
}


/*----------------------------------------------
.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;
}


/*----------------------------------------------
.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;
}


/*----------------------------------------------
.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_chrono
---------------------------------------------*/
.c_chrono{
  border: none!important;
  position: relative;
  overflow-x: visible!important;
}
.c_chrono table{
  table-layout: auto!important;
}
.c_chrono table tr{
  position: relative;
}


.c_chrono table tr td{
  padding: 0;
  border: none;
}

.c_chrono table tr:nth-child(odd) td{
  padding: 10px 0;
  color: var(--color3);
  font-weight: bold;
  font-size: 2.4rem;
  padding-left: 22px;
  position: relative;
}
.c_chrono table tr:nth-child(odd) td::after{
  content: '';
  background: #EEEEEE;
  position: absolute;
  width: 1px;
  height: 150px;
  top: 50%;
  left: 2px;
  z-index: -1;
}
.c_chrono table tr:nth-last-child(2) td::after{
  background: #fff;
}
.c_chrono table tr:nth-child(odd) td::before{
  content: '';
  background: var(--color3);
  width: 5px;
  height: 5px;
  border-radius: 100px;
  position: absolute;
  top: calc(50% - 5px / 2 + 2px);
  left: 0;
}
.c_chrono table tr:nth-child(even) td{
  padding-bottom: 40px;
  font-weight: bold;
  font-size: 1.6rem;
  padding-left: 22px;
}



/*----------------------------------------------
	.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_num_ttl
---------------------------------------------*/
.c_num_ttl{
  font-weight: 900;
  color: var(--color3);
  font-size: 2.6rem;
}
.c_num_ttl img{
  width: auto;
  height: 60px!important;
  margin-right: 15px;
}


/*----------------------------------------------
	.c_service_item
---------------------------------------------*/
.c_service_item:not(.block-editor-block-list__block),
.c_service_item > .block-editor-block-list__layout{
  position: relative!important;
  padding-left: calc(50% + 30px)!important;
}
.c_service_item .is_img{
  position: absolute!important;
  top: 0!important;
  left: 0!important;
  max-width: 540px;
  width: 50%;
  height: auto;
  margin: 0;
}

.c_service_item.is_even:not(.block-editor-block-list__block),
.c_service_item.is_even > .block-editor-block-list__layout{
  padding-right: calc(50% + 30px)!important;
  padding-left: unset!important;
}
.c_service_item.is_even .is_img{
  right: 0!important;
  left: unset!important;
}


/*----------------------------------------------
	.c_service_flow
---------------------------------------------*/
.c_service_flow{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10vw;
  position: relative;
}
.c_service_flow:not(:last-child)::after{
  content: '';
  background: url(../images/img_arrows.svg) no-repeat;
  width: 190px;
  height: 30px;
  background-size: contain;
  position: absolute;
  top: 20px;
  right: -16%;
}
.c_service_flow .is_num{
  font-weight: 700;
  font-size: 3rem;
  background: #AAAAAA;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  border-radius: 100px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  padding-top: 5px;
  letter-spacing: 2px;
  margin: 0 auto;
  margin-bottom: 28px;
  transition: 0.3s;
  position: relative;
}
.c_service_flow .is_num span{
  transform: scaleX(0.9);
  transform-origin: center;
}
.c_service_flow img{
  height: 250px;
  width: auto;
  margin: 0 auto;
  margin-bottom: 50px;
  object-fit: contain;
  max-width: 250px;
}
.c_service_flow .is_ttl{
  font-size: 2.4rem;
  transition: 0.3s;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* カレント */
.c_service_flow.slick-current .is_num{
  font-size: 4.3rem;
  background: var(--color3);
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
}
.c_service_flow.slick-current .is_ttl{
  color: var(--color3);
  font-weight: 900;
}


/*----------------------------------------------
	.c_comp_data_card
---------------------------------------------*/
.c_comp_data_card {
  display: flex;
  flex-direction: column;
}
.c_comp_data_card .is_ttl{
  background: var(--color5);
  padding: 12px 0 10px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
.c_comp_data_card .is_inner{
  background: #fff;
  padding: 35px 10px;
  text-align: center;
  border-radius: 0 0 10px 10px;
  box-shadow: 1px 1px 5px 0 #01345d1a;
  flex-grow: 1;
}
.c_comp_data_card .is_inner img{
  height: 95px;
  width: auto;
  margin-bottom: 25px;
}
.c_comp_data_card .is_inner .is_num{
  font-size: 6rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  gap: 5px;
  line-height: 1;
  letter-spacing: 2px;
  transform: scaleX(1.1);
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.c_comp_data_card .is_inner .is_num span{
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  transform: scaleX(0.9);
  letter-spacing: 0;
  width: fit-content;
  left: 100%;
  white-space: nowrap;
}

/* 従業員数 */
.c_comp_data_card.is_worker .is_inner{
  padding: 16px 0 0;
}
.c_comp_data_card.is_worker .is_inner img{
  height: 130px;
  width: auto;
  margin-bottom: 0;
}
.c_comp_data_card.is_worker .is_inner .is_num{
  font-size: 9rem;
}
.c_comp_data_card.is_worker .is_inner .is_num span{
  font-size: 3.8rem;
}

/* 男女の比率 */
.c_comp_data_card.is_gender .is_inner .is_cat{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20%;
  margin-bottom: 10px;
}
.c_comp_data_card.is_gender .is_inner .is_cat img{
  height: 100px;
  width: auto;
  margin: 0;
}
.c_comp_data_card.is_gender .is_inner .is_rate{
  display: flex;
  gap: 3px;
  align-items: center;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 15px;
}
.c_comp_data_card.is_gender .is_inner .is_rate > *{
  background: #E6EEF5;
  padding: 2px;
  font-family: "Montserrat", sans-serif;
  color: var(--color5);
  font-weight: 700;
  font-size: 2rem;
}
.c_comp_data_card.is_gender .is_inner .is_total{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 75%;
  margin: 0 auto;
}
.c_comp_data_card.is_gender .is_inner .is_total .is_num{
  font-size: 5.8rem;
}


/*----------------------------------------------
	.c_work_card
---------------------------------------------*/
.c_work_card{
  border: 3px solid var(--color5);
  background: #fff;
  border-radius: 10px;
  position: relative;
  padding: 30px 40px 100px;
  max-width: 540px;
  width: 100%;
}
.c_work_card .is_num{
  position: absolute;
  font-size: 4rem;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
  top: 0;
  left: 10px;
  transform: scaleX(1.1);
}
.c_work_card .is_ttl{
  font-size: 3.2rem;
  font-weight: 900;
  text-align: center;
  color: var(--color5);
  margin-bottom: 20px;
}
.c_work_card .is_img{
  width: auto;
  height: 175px;
  background-size: contain;
  position: absolute;
  bottom: -70px;
  right: 30px;
  z-index: 2;
}
.c_work_card:nth-child(3) .is_img{
  height: 135px;
  bottom: -30px;
}
.c_work_card::before{
  content: '';
  background: var(--color5);
  width: 120px;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  height: 120px;
  position: absolute;
  border-radius: 10px 0 0 0;
  top: -2px;
  left: -2px;
}


/*----------------------------------------------
  	.c_tab
---------------------------------------------*/
.c_tab{
  background: #fff;
  display: block;
  width: 100%;
  padding: 12px 12px;
  padding-left: 35px;
  font-size: 1.4rem;
  text-align: left;
  color: var(--main_color);
  position: relative;
  cursor: pointer;
  border: 1px solid #DDDDDD;
  transition: none;

  &:not(:last-child){
    border-bottom: none;
  }

  &:first-child{
    border-radius: 8px 8px 0 0;
  }

  &:last-child{
    border-radius: 0 0 8px 8px;
  }

  &::after{
    content: '';
    position: absolute;
    background: #AAAAAA;
    width: 5px;
    height: 5px;
    margin: 0;
    top: calc(50% - 5px / 2);
    left: 20px;
    border-radius: 100px;
  }

  &:hover, &.is_active{
    color: var(--color5);
    font-weight: bold;
    background: #F0F4F9;
    opacity: 1!important;

    &::after{
      background: var(--color5);
      width: 7px;
      height: 7px;
    }
  }
}


/*----------------------------------------------
	.c_select
---------------------------------------------*/
.c_select{
  display: block;
  position: relative;
  width: 100%;

  &::before{
    display: block;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    position: absolute;
    top: calc(50% - 8px / 2 + 2px);
    right: 15px;
    z-index: 1;
    width: 10px;
    height: 8px;
    margin: 0;
    background: #C9C9C9;
    content: '';
    pointer-events: none;
  }

  select, input{
    width: 100%;
    padding: 10px 15px;
    padding-right: 35px;
    border: 1px solid #C9C9C9;
    border-radius: 3px;
    background: #fff;
    font-size: 1.4rem;
    outline: none;
    cursor: pointer;
    appearance: none;
  }
}


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

.c_table_require tbody tr th,
.c_table_require tbody tr td {
  padding: 40px 0;
  vertical-align: top;
  border-bottom: 1px solid #DDDDDD;
  text-align: left;
}

.c_table_require tbody tr:first-child th,
.c_table_require tbody tr:first-child td {
  padding: 0 0 40px;
}

.c_table_require tbody tr th {
  font-weight: bold;
  width: 140px;
}


/*----------------------------------------------
	.c_recruit_flow
---------------------------------------------*/
.c_recruit_flow{
  background: #fff;
  padding: 50px 0 55px;
  text-align: center;
  border-radius: 10px;
  width: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.c_recruit_flow:not(:last-child)::after{
  content: '';
  background: #fff;
  width: 100%;
  height: 20px;
  position: absolute;
  top: calc(50% - 20px / 2);
  left: 100%;
}
.c_recruit_flow img{
  width: auto;
  height: 80px;
  margin-bottom: 15px;
}
.c_recruit_flow .is_ttl{
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}


/*----------------------------------------------
	.c_interview
---------------------------------------------*/
.c_interview {
  color: #fff!important;
  max-width: 340px;
  cursor: pointer;
}
.c_interview:hover {
  opacity: 1;
}
.c_interview .is_img{
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  height: auto;
}
.c_interview .is_img img{
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: 0.2s;
}
.c_interview:hover .is_img img{
  transform: scale(1.05);
}
.c_interview .is_img img:hover{
  opacity: 1;
}
.c_interview .is_copy{
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}
.c_interview .is_aff{
  background: #3F7EB2;
  padding: 5px 15px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: bold;
  width: fit-content;
  text-align: center;
  margin-bottom: 15px;
}
.c_interview .is_name{
  font-size: 1.8rem;
  font-weight: 900;
}


/*----------------------------------------------
	.c_contact
---------------------------------------------*/
.c_contact{
  padding: 30px 15px;
  border-top: 1px solid #CCCCCC;
}
.c_contact:last-child{
  border-bottom: 1px solid #CCCCCC;
}
.c_contact > *{
  display: flex;
  align-items: flex-start;
}
.c_contact .is_ttl{
  font-weight: bold;
  font-size: 2rem;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 295px;
  margin-top: 15px;
  flex-shrink: 0;
}
.c_contact .is_ttl .is_sub{
  font-size: 1.4rem;
  font-weight: normal;
}


/*----------------------------------------------
	.c_hissu
---------------------------------------------*/
.c_hissu{
  display: inline-block;
  font-size: 1.2rem;
  background: #DC3232;
  width: 45px;
  border-radius: 100px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  padding: 2px;
}


/*----------------------------------------------
	.c_faq
---------------------------------------------*/
.c_faq{
  border-bottom: 1px solid #DDDDDD;
  padding: 30px 0;
  cursor: pointer;
}
.c_faq:first-of-type{
  border-top: 1px solid #DDDDDD;
}

/* Q */
.c_faq .is_q {
  display: flex;
  gap: 30px;
  align-items: center;
  position: relative;
  padding-right: 50px;
}
.c_faq .is_q .is_icon{
  border: 1px solid #DDDDDD;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #555555;
  border-radius: 100px;
  flex-shrink: 0;
}

/* A */
.c_faq .is_a {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #F7F7F7;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
  font-weight: bold;
}
.c_faq .is_a .is_icon{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  border-radius: 100px;
  flex-shrink: 0;
  background: #CE1A1A;
}

/* toggle */
.c_faq .c_faq_toggle {
  background: #AAAAAA;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  color: #fff;
  flex-shrink: 0;
  position: absolute;
  transition: 0.2s;
  right: 0;
  top: calc(50% - 30px / 2);
}
.c_faq .c_faq_toggle:hover {
  opacity: 0.7;
}
.c_faq .c_faq_toggle::before {
  content: '';
  background: #fff;
  width: 15px;
  height: 2px;
  position: absolute;
  top: calc(50% - 2px / 2);
  right: 0;
  left: 0;
  margin: 0 auto;
}
.c_faq .c_faq_toggle::after {
  content: '';
  background: #fff;
  width: 2px;
  height: 15px;
  position: absolute;
  top: calc(50% - 15px / 2);
  right: 0;
  left: 0;
  margin: 0 auto;
  transition: 0.2s;
}
.c_faq .c_faq_toggle.is_active::after {
  opacity: 0;
}


/*----------------------------------------------
.wp-block-table.no_border
---------------------------------------------*/
.wp-block-table.no_border table tr td{
  border: none!important;
  padding: 0!important;
  text-align: left;
  vertical-align: top;
}
.wp-block-table.no_border table tr td:first-child{
  width: 20px!important;
}


/*----------------------------------------------
.c_sitemap_column
---------------------------------------------*/
.c_sitemap_column{
  list-style: none;
  display: flex;
  gap: 30px;
  flex-direction: column;
  width: 100%;
}
.c_sitemap_column > li .is_child{
  display: flex;
  gap: 10px;
  flex-direction: column;
  list-style: none;
  margin-top: 14px;
}
.c_sitemap_column > li .is_child li a{
  position: relative;
  font-size: 1.6rem;
  padding-left: 2.5em;
  color: var(--color);
}
.c_sitemap_column > li .is_child li a::before{
  content: '';
  background: url(../images/icon_arrow_color.svg) no-repeat;
  width: 10px;
  height: 9px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 9px / 2);
  left: 20px;
  transition: 0.2s;
  transform: rotate(180deg);
  transform-origin: center;
}


/*----------------------------------------------
.c_menu_ttl_btn
---------------------------------------------*/
.c_menu_ttl_btn{
  border: 1px solid var(--color);
  padding: 10px 20px;
  color: var(--color);
  font-size: 1.6rem;
  font-weight: bold;
  background: #fff;
  position: relative;
  display: block;
  transition: 0.2s;
  border-radius: 5px;
}
.c_menu_ttl_btn::after{
  content: '';
  background: url(../images/icon_arrow_color.svg) no-repeat;
  width: 10px;
  height: 9px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 9px / 2);
  right: 20px;
  transition: 0.2s;
  transform: rotate(180deg);
  transform-origin: center;
}

.c_menu_ttl_btn:hover{
  background: var(--color);
  color: #fff;
  opacity: 1!important;
}
.c_menu_ttl_btn:hover::after{
  filter: brightness(0) invert(1);
}


/*----------------------------------------------
.c_interview_modal
---------------------------------------------*/
.c_interview_modal{
  background: #fff;
  padding-bottom: 60px;
  position: relative;
}
.c_interview_modal .is_wrap{
  height: calc(100svh - (60px + 120px));
  overflow-y: scroll;
}

.c_interview_modal .is_wrap .is_close{
  background: url(../images/icon_close_square.svg) no-repeat;
  width: 35px;
  height: 35px;
  transition: 0.2s;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
  border: none;
}
.c_interview_modal .is_wrap .is_close:hover{
  opacity: 0.7;
}

.c_interview_modal .is_wrap .is_img{
  position: relative;
}
.c_interview_modal .is_wrap .is_img img{
  width: 100%;
  height: auto;
}
.c_interview_modal .is_wrap .is_img p{
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 1.2rem;
  color: #fff;
  text-align: right;
}

.c_interview_modal .is_wrap .is_content {
  padding: 40px 55px;
}
.c_interview_modal .is_wrap .is_content .is_copy {
  font-size: 4.6rem;
  font-weight: 900;
  margin-bottom: 25px;
}

.c_interview_modal .is_wrap .is_content .is_dtl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 55px;
  flex-direction: column;
}
.c_interview_modal .is_wrap .is_content .is_dtl .is_aff{
  background: var(--color5);
  font-size: 1.6rem;
  font-weight: bold;
  padding: 2px 15px;
  margin-bottom: 5px;
  color: #fff;
}
.c_interview_modal .is_wrap .is_content .is_dtl .is_name{
  font-size: 2.4rem;
  font-weight: bold;
}

.c_interview_modal .is_wrap .is_content .is_column{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}


/*----------------------------------------------
.c_interview_qa
---------------------------------------------*/
.c_interview_qa .is_q{
  color: var(--color5);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.c_interview_qa .is_a{
  font-size: 1.6rem;
}


/*----------------------------------------------
.c_interview_msg
---------------------------------------------*/
.c_interview_msg{
  background: #FFF6E3;
  padding: 35px;
}
.c_interview_msg .is_ttl{
  color: #A07E29;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
}
.c_interview_msg p:not(.is_ttl){
  width: fit-content;
  margin: 0 auto;
}


/*----------------------------------------------
	.c_mailing_flow
---------------------------------------------*/
.c_mailing_flow{
  background: #fff;
  box-shadow: 0px 2px 5px 0 #0000002e;
  padding: 30px 0;
  border-radius: 10px;
  text-align: center;
  margin: 15px 0;
  margin-right: 30px;
  min-height: 290px!important;
}
.c_mailing_flow img{
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}
.c_mailing_flow .is_step{
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
  color: var(--color3);
}
.c_mailing_flow .is_ttl{
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
}


/*----------------------------------------------
	.c_template_btn
---------------------------------------------*/

.c_template_btn{
    display: flex;
    justify-content:space-around;
    align-items: center;
}


/*----------------------------------------------
	.c_template
---------------------------------------------*/

.c_template{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #ccc;
}

.c_template .is_title{
font-weight:bold;
}

.c_template_group{
    margin-top: 20px;
    margin-bottom: 40px;
}

.c_template_group .c_template:last-child{
    margin-bottom: 0px;
}