@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

:root {
  --color-white01: #fdfdfd;
  --color-black01: #333;
  --color-gray01: #7a7a7a;
  --color-blue01: #1b5193;
  --color_footer_bg: var(--color-blue01);
  --wrapper01: 1100px;
  --wrapper02: 1250px;
}

html {
  letter-spacing: 0.1em;
}

@media screen and (min-width: 960px) {
  html {
    font-size: 16px;
    font-size: clamp(5px, 1.3vw, 16px);
  }
}

@media screen and (max-width: 960px) {
  html {
    letter-spacing: 0.04em;
  }
}

/* 閉じる状態 */
.toc-chk+.p-toc__ttl+ol li,
.toc-chk+.p-toc__ttl+ul li {
  display: none;
}

/* 開く状態 */
.toc-chk:checked+.p-toc__ttl+ol li,
.toc-chk:checked+.p-toc__ttl+ul li {
  display: block;
}

/* dummyチェックボックス */
.toc-chk {
  display: none;
}

/* 開く・閉じる */
.toc-chk:checked+.p-toc__ttl>.toc-ttl::after {
  content: '[閉じる]';
}

.toc-ttl::after {
  content: '[開く]';
  cursor: pointer;
  margin-left: .5em;
  font-size: .8em;
}




/*******************

    parts

********************/
.contents_wrapper {
  width: 88.6%;
  max-width: var(--wrapper01);
  margin-left: auto;
  margin-right: auto;
}

.main_section {
  padding: 3.2rem 0 2.2rem;
}

@media screen and (max-width: 960px) {
  .contents_wrapper {
    width: 88.6%;
  }
}

@media screen and (min-width: 960px) {
  .sp_only {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .pc_only {
    display: none !important;
  }
}


/*****   btn   *****/
.btn01 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 16em;
  height: auto;
  padding: 0.1em 0.82em;
  margin: 1rem 0 0;
  aspect-ratio: 530/144;
  border: 1px solid var(--color-gray01);
  background: #fff;
  color: var(--color-black01);
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.btn01::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(50%) translateY(-50%);
  background: var(--color-gray01);
  width: 2.2em;
  height: 2px;
}

.btn01:hover {
  color: var(--color-white01);
  background: var(--color-black01);
}

.btn01:hover::after {
  background: var(--color-black01);
}

@media screen and (max-width: 960px) {
  .btn01 {
    margin-left: auto;
    margin-right: auto;
    padding: 0.1em 0.5em;
    margin-top: 1.32rem;
    width: 16.2em;
  }

  .btn01::after {
    width: 1.8em;
  }
}

/*****   heading   *****/
.heading_block01 {
  position: relative;
  width: fit-content;
  margin: 0 0 1.7em;
  text-align: left;
  font-size: 1.92rem;
}

.heading_block01__sub {
  display: block;
  margin: 0 0 0.18em;
  color: var(--color-blue01);
  font-size: 0.82em;
  font-weight: 700;
  line-height: 1.4;
}

.heading_block01__heading {
  margin: 0;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 960px) {
  .heading_block01 {
    margin-bottom: 1.32em;
  }
}



/*****   table   *****/
.table_block01 {
  width: fit-content;
  margin: 0 auto;
}

.table_block01 caption {
  caption-side: bottom;
  margin-top: 0.69em;
}

@media screen and (min-width: 960px) {
  .table_block01 {
    min-width: 55rem;
  }
}


/*******************

    header

********************/
.header {}

#fix_header .l-fixHeader__inner {
  width: 93.2%;
  max-width: var(--wrapper02);
}

@media screen and (min-width: 960px) {
  #header.l-header {
    box-shadow: none;
  }

  #header .l-header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 92%;
    max-width: var(--wrapper02);
    padding-top: 1rem;
  }

  #header .l-header__logo {
    grid-row: 1/2;
    width: 16.2rem;
    padding: 0;
  }

  #header .c-headLogo {
    height: auto;
  }

  #header .l-header__gnav_inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    column-gap: 1.1rem;
    margin-bottom: 0.56rem;
    padding-top: 0.4rem;
  }

  #header .l-header__gnav_inner .c-searchForm__s {
    width: 19rem;
    height: 3.0rem;
    padding-left: 2.0em;
    border: 1.5px solid var(--color-black01);
    border-radius: 100px;
  }

  #header .l-header__gnav_inner .c-searchForm__submit {
    background: transparent !important;
    border: 0;
    width: 3.2rem;
  }

  #header .l-header__gnav_inner .c-searchForm__submit::before {
    color: var(--color-black01);
  }

  #header .l-header__gnav_inner a {
    --color: var(--color-white01);
    --bg_color: var(--color-blue01);
    --border_color: var(--color-blue01);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13.2rem;
    height: 3.0rem;
    border-radius: 100rem;
    border: 2px solid var(--border_color);
    background: var(--bg_color);
    color: var(--color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.1em;
  }

  #header .l-header__gnav_inner a.header-btn-small {
    width: 8.8rem;
    font-size: 0.92rem;
  }

  #header .l-header__gnav_inner a:hover {
    background: var(--color);
    color: var(--bg_color);
    filter: brightness(1.25);
  }

  #header .l-header__gnav {
    flex: 1;
  }

  #header .l-header__gnav .c-gnav {
    justify-content: flex-end;
  }

  #header .l-header__gnav .c-gnav>li>a {
    padding: 1.1em 0.76em;
    font-size: 0.93rem;
  }

  #header .l-header__gnav .c-gnav>.menu-item>a .ttl {
    font-size: 1em;
  }
}


/*******************

   footer

********************/
#footer {}

#footer .l-footer__inner {
  margin: 0 auto;
  width: 92.8%;
  max-width: var(--wrapper01);
  padding: 2.2rem 0 1.4rem;
}

#footer .w-footer__box img {
  width: 17.6rem;
  filter: brightness(0) invert(1);
}

#footer .w-footer__box a {
  display: block;
  padding: 0.25em 0;
  text-decoration: none;
}

#footer .w-footer__box a:hover {
  text-decoration: underline;
}

#footer .c-widget__title.-footer {
  padding-left: 0;
}

.l-footer .copyright {
  font-size: 0.86rem;
}

@media screen and (min-width: 960px) {
  #footer .w-footer__box .c-widget {
    min-height: 12.5em;
  }

  #footer .w-footer__box .c-widget#media_image-2 {
    min-height: 1em;
  }

  #footer .w-footer__box .address {
    margin-bottom: 3.2rem;
  }
}

@media screen and (max-width: 960px) {
  #footer .w-footer__box+.w-footer__box {
    margin-top: 0.2rem;
  }

  #footer .c-widget+.c-widget {
    margin-top: 1.1em;
  }
}


/*******************

   adjust

********************/
#body_wrap {
  z-index: inherit;
}

.l-content {
  margin-bottom: 4.4em;
}

@media screen and (max-width: 960px) {
  .l-content {
    margin-bottom: 2.5em;
  }
}


/***   breadcrumb   ***/
.p-breadcrumb__list {
  display: block;
  max-width: var(--wrapper01);
  padding: 0 1rem;
}


/***   w-beforeFooter   ***/
.w-beforeFooter {
  width: 88.6%;
  max-width: var(--wrapper01);
  margin-top: 3.2rem;
  margin-left: auto;
  margin-right: auto;
}

.w-beforeFooter .l-container {
  max-width: 100%;
}

@media screen and (max-width: 960px) {
  .w-beforeFooter {
    margin-top: 1.7rem;
  }
}

.c-widget__title.-footer {
  font-size: 1.1rem;
  padding: 0.1em 0.44em;
  margin-bottom: 0.2em;
}

.c-widget__title.-footer:before,
.c-widget__title.-footer::after {
  display: none;
}

/* grecaptcha */
.grecaptcha-badge {
  z-index: 1000;
}

body .p-fixBtnWrap {
  bottom: 5.5rem;
  z-index: 2000;
}

@media screen and (min-width: 960px) {
  body .p-fixBtnWrap {
    right: 1.1rem;
  }
}



/******************   
	animation   
*******************/
.slider {
  position: relative;
  display: none;
  opacity: 0;
}

.slider.swiper-initialized {
  display: block;
  opacity: 1;
}

.sp_slider {
  position: relative;
}


/* arrow */
body .swiper-button-next,
body .swiper-button-prev {
  --swiper-navigation-size: 6.2rem;
  top: 25rem;
  color: var(--color-blue01);
  background-image: url(./assets/img/icon/icon-arrow01@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 4rem;
  height: auto;
  aspect-ratio: 1/1;
}

body .swiper-button-next::after,
body .swiper-button-prev::after {
  display: none;
}

body .swiper-button-next:hover,
body .swiper-button-prev:hover {
  filter: brightness(1.25);
}

body .swiper-button-next {
  right: auto;
  left: calc(50% + 13.5rem);
}

body .swiper-button-prev {
  transform: rotate(180deg);
  transform-origin: center center;
  left: auto;
  right: calc(50% + 13.5rem);
}

@media screen and (min-width: 960px) {

  .sp_slider .swiper-button-next,
  .sp_slider .swiper-button-prev {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .sp_slider {
    display: none;
    opacity: 0;
  }

  .sp_slider.swiper-initialized {
    display: block;
    opacity: 1;
  }

  body .swiper-button-next,
  body .swiper-button-prev {
    width: 3.2rem;
    top: 12.5rem;
  }

  body .swiper-button-next {
    left: calc(50% + 8.7rem);
  }

  body .swiper-button-prev {
    right: calc(50% + 8.7rem);
  }
}


/*******************

  home

********************/
.home .l-container,
.home .l-article,
.page-id-100288 .l-container,
.page-id-100288 .l-article {
  padding: 0;
  max-width: 100%;
}


/**************
  home-fv
**************/
.home-fv {
  position: relative;
  padding: 1rem 0 1.5rem;
  min-height: 20rem;
}

.home-fv::before {
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: calc(100% + 21rem);
  background-image: url(./assets/img/home/fv__bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}

.home-fv__block {}

.home-fv .home-fv__block_inner {
  display: block;
  width: 25rem;
  color: inherit;
  text-decoration: none;
}

.home-fv .home-fv__block_inner:hover {
  opacity: 0.82;
  filter: brightness(1.06);
}

.home-fv__block .swiper-slide-active {
  transform: scale(1.1);
}

.home-fv .home-fv__block_inner figcaption {
  font-size: 1.0rem;
  font-weight: 700;
  margin-top: 0.22rem;
  margin-bottom: 0.1rem;
  line-height: 1.54;
}

.home-fv__block_time {
  display: block;
  font-size: 0.80rem;
}

@media screen and (min-width: 960px) {

  .home #content,
  .page-id-100288 #content {
    padding-top: 3.2rem;
    margin-bottom: 1.0rem;
  }

  .home-fv__wrapper {
    display: block;
    overflow: hidden;
    padding: 10rem 0 4rem;
    margin-top: -10rem;
    max-width: var(--wrapper02);
  }
}

@media screen and (max-width: 960px) {

  .home #content,
  .page-id-100288 #content {
    padding-top: 0rem !important;
  }

  .home-fv {
    padding: 3.1rem 0 2.8rem;
  }

  .home-fv::before {
    top: -14rem;
    height: calc(100% + 25.9rem);
  }

  .home-fv .home-fv__block_inner {
    width: 18rem;
  }

  .home-fv__block .swiper-slide-active {
    transform: scale(1.0);
  }

  .home-fv .home-fv__block_inner figure {}

  .home-fv .home-fv__block_inner figcaption {
    font-size: 0.92rem;
    line-height: 1.5;
  }
}


/**************
  home-lead_sec
**************/
.home-lead_sec {
  position: relative;
  padding: 0;
  z-index: 1;
}

.home-lead_sec__block {
  position: relative;
  width: 100%;
  padding: 3.2rem 0 2.5rem;
  z-index: 10;
}

.home-lead_sec__heading {
  display: block;
  margin: 0 0 2.8rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.32;
}

.home-lead_sec__text {
  font-size: 1.02em;
  line-height: 2.62;
  letter-spacing: 0.2em;
}

.home-lead_sec__block .home-map {
  position: absolute;
  top: -2.5rem;
  right: 10rem;
  width: 30rem;
  opacity: 0.92;
  transform: rotate(7.0deg);
  z-index: -10;
}

.home-lead_sec__block .home-illust {
  position: absolute;
  top: 5.4rem;
  right: 6.2rem;
  width: 19rem;
  z-index: -1;
}

@media screen and (max-width: 960px) {
  .home-lead_sec__block {
    padding: 1.8rem 0 2rem;
  }

  .home-lead_sec__heading {
    margin: 0 0 1.3rem;
    font-size: 2.1rem;
    padding-left: 1.1em;
    line-height: 1.5;
    text-align: center;
  }

  .home-lead_sec__text {
    font-size: 1.02em;
    line-height: 2.56;
  }

  .home-lead_sec__block .home-map {
    top: 10.6rem;
    right: -1rem;
    width: 37.6rem;
    opacity: 0.39;
  }

  .home-lead_sec__block .home-illust {
    position: relative;
    display: block;
    margin: 0.82rem auto 0.55rem;
    top: auto;
    right: auto;
    width: 11.7rem;
    z-index: -1;
  }
}

/**************
  home-archive
**************/
.home-archive .contents_wrapper {
  position: relative;
  padding: 0;
  z-index: 5;
}

.home-archive .contents_wrapper {
  padding: 1.7rem 0 5rem;
}

.home-archive--company {
  background: #ecf0f5;
}

.home-archive--company .contents_wrapper {
  position: relative;
  padding: 2.0rem 0 2.8rem;
}

.home-archive--company .contents_wrapper::before,
.home-archive--company .contents_wrapper::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.home-archive--company .contents_wrapper::before {
  background-image: url(./assets/img/home/home-archive__illust01.png);
  width: 17.3rem;
  aspect-ratio: 303/108;
  top: 0;
  left: 2.0rem;
  transform: translateY(-55%);
}

.home-archive--company .contents_wrapper::after {
  background-image: url(./assets/img/home/home-archive__illust02.png);
  top: 35.5rem;
  left: 1.54rem;
  width: 11.5rem;
  height: auto;
  aspect-ratio: 169/170;
  transform: translateY(0%);
}



.home-archive__block {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  justify-content: center;
  column-gap: 3.2rem;
}

/* home-archive__sub */
.home-archive__sub {
  display: block;
  max-width: 19rem;
  margin-top: 3.9rem;
}

.home-archive--company .home-archive__sub {
  padding: 2.0rem 1.4rem;
  background: #fff;
  border-radius: 0.80rem;
}

.home-archive__heading {
  font-size: 1.4rem;
  color: var(--color-blue01);
  letter-spacing: 0.15em;
}

.home-archive__cats_list {
  margin: 0.82rem 0 4.4rem;
  max-width: 17rem;
}

.home-archive--company .home-archive__cats_list {
  margin-bottom: 1.5rem;
}

.home-archive__cats_list_item {
  --color: var(--color-gray01);
  color: var(--color);
  width: fit-content;
  line-height: 1.8;
  margin-bottom: 0.47em;
  padding-left: 1.6em;
  text-indent: -1.6em;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  word-break: keep-all;
}

.home-archive__cats_list_item:hover {
  text-decoration: underline;
  filter: brightness(0);
}

.home-archive__cats_list_item::before {
  content: "";
  position: relative;
  top: 0.04em;
  display: inline-block;
  margin-right: 0.28em;
  width: 0.86em;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 10em;
  background: var(--color);
}

.home-archive__cats_list_item.active {
  --color: var(--color-blue01)!important;
  pointer-events: none;
}


/* home-archive__list  */
.home-archive__list {
  display: none;
}

.home-archive__list.active {
  display: block;
}

.home-archive__list_item {
  position: relative;
  padding: 0.76rem 0;
}

.home-archive__list_item:nth-of-type(n+2) {
  border-top: 1px solid #333;
}


.home-archive__list_item_inner {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.8rem;
  padding: 0.86rem 0;
  text-decoration: none;
  color: inherit;
  transition: 0.1s ease;
}

.home-archive__list_item_inner:hover {
  opacity: 0.8;
  filter: brightness(1.15);
}

.home-archive__list_item_thumbnail {
  grid-column: 1/2;
  grid-row: 1/5;
}

.home-archive__list_item_thumbnail img {
  width: 13rem;
}

.home-archive__list_item_tit {
  margin: 0.25em 0 0.54em;
  color: var(--color-black01);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.44;
}

.home-archive__list_item_meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 0.7em;
  margin: 0 0 0.62rem;
  font-size: 0.87rem;
}

.home-archive__list_item_date {
  display: inline-block;
  color: var(--color-gray01);
  line-height: 1.1;
  font-size: 1em;
}

.home-archive__list_item_cat {
  display: inline-block;
  border: 1px solid var(--color-blue01);
  color: var(--color-blue01);
  padding: 0.44em 0.82em;
  line-height: 1.1;
  font-size: 1em;
  font-weight: 600;
}

.home-archive__list_item_text {
  grid-column: 2/3;
}

.home-archive__btn_block .btn01 {}

.home-archive__btn_block:not(.active) {
  display: none;
}

@media screen and (min-width: 960px) {
  .home-archive--company .home-archive__sub {
    margin-bottom: 15rem;
  }

  .home-archive__btn_block .btn01 {
    width: 16rem;
    font-size: 0.91rem;
  }
}

@media screen and (max-width: 960px) {
  .home-archive .contents_wrapper {
    padding: 0.2rem 0 6.2rem;
  }

  .home-archive--company .contents_wrapper::before {
    width: 18.3rem;
    left: 2.5rem;
  }

  .home-archive--company .contents_wrapper::after {
    top: auto;
    bottom: 1.4rem;
    left: -0.4rem;
    width: 7.6rem;
  }

  .home-archive--company {
    background: #ecf0f5;
  }

  .home-archive--company .contents_wrapper {
    position: relative;
    padding: 1.0rem 0 3.2rem;
  }

  .home-archive__block {
    grid-template-columns: 1fr;
  }

  .home-archive__heading {
    text-align: center;
  }

  .home-archive__sub {
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .home-archive--company .home-archive__sub {
    margin-top: 3.4rem;
  }

  .home-archive--company .home-archive__sub {
    padding: 1.5rem 1.1rem 0.2rem;
  }

  .home-archive__cats_list {
    margin-top: 0.76rem;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    column-gap: 1.1rem;
    max-width: 100%;
  }

  .home-archive__cats_list_item {
    font-size: 0.80rem;
    letter-spacing: 0;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
  }

  .home-archive__list_item {
    padding: 0.5rem;
  }

  .home-archive__list_item_inner {
    column-gap: 1.1rem;
    padding: 0.55rem 0;
  }

  .home-archive__list_item_thumbnail img {
    width: 8.2rem;
  }

  .home-archive__list_item_tit {
    margin-top: 0.04em;
    font-size: 0.96rem;
    line-height: 1.32;
  }

  .home-archive__list_item_meta {
    margin-bottom: 0.1em;
    font-size: 0.55rem;
  }

  .home-archive__list_item_text {
    display: none;
  }
}


/**************
  home-news
**************/
.home-news {
  padding: 4.4rem 0 2rem;
}

.home-news__block {
  display: grid;
  grid-template-columns: 16rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 7.0rem;
}

.home-news .heading_block01 {
  margin-bottom: 8.2rem;
}

@media screen and (min-width: 960px) {
  .home-news__list {
    grid-column: 2/3;
    grid-row: 1/3;
  }

  .home-news .btn01 {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .home-news {
    padding: 3.9rem 0 1.7rem;
  }

  .home-news__block {
    display: block;
  }

  .home-news .heading_block01 {
    margin: 0 auto 1.7rem;
    text-align: center;
  }

  .home-news__list {}

  .home-news .btn01 {
    margin-top: 2.55rem;
  }
}


/**************
  home-interview
**************/
.home-interview {
  position: relative;
  padding: 4.4rem 0 4.7rem;
  z-index: 1;
}

.home-interview::before {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: 0;
  width: 100%;
  height: 96%;
  background-image: url(./assets/img/home/interview__bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}

.home-interview .heading_block01 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}



body .home-interview__block_item {
  width: calc((100% - 2 * 1.4rem) / 3);
  height: auto;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0.32rem 0.32rem 0.82rem rgba(0, 0, 0, 0.1);
  background: #fff;
}

.home-interview__block_item_inner {
  text-decoration: none;
  color: var(--color-black01);
  transition: filter 0.1s;
}

.home-interview__block_item_inner:hover {
  filter: brightness(1.15);
}

.home-interview__block_item_contents {
  padding: 1.3rem 1.7rem 1.7rem;
}

.home-interview__block_item_logo {
  max-width: 70%;
  margin: 0 0 0.70rem;
}

.home-interview__block_item_logo img {
  max-height: 2.8rem;
  object-fit: contain;
  object-position: center left;
}

.home-interview__block_item_img_block {
  width: 100%;
  aspect-ratio: 30/19;
  overflow: hidden;
}

.home-interview__block_item_img_block img {
  width: 100%;
  aspect-ratio: 30/19;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.1s;
}

.home-interview__block_item_inner:hover .home-interview__block_item_img_block img {
  transform: scale(1.06);
}

.home-interview__block_item_meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 0.76rem;
  margin: 0 0 0.87rem;
}

.home-interview__block_item_prof {
  padding: 0.22em 1.1em;
  font-size: 0.86rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  border: 1px solid var(--color-blue01);
  border-radius: 100rem;
  color: var(--color-blue01);
  font-weight: 500;
  margin-right: 1.25em;
}

.home-interview__block_item_name {
  font-size: 0.969rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.home-interview__block_item_tit {
  font-size: 1.25rem;
  font-weight: 700;
}


.home-interview .btn01 {
  margin: 2.8rem auto 0;
}

@media screen and (min-width: 960px) {
  .home-interview__block {
    display: flex;
    align-items: stretch;
    justify-content: center;
    column-gap: 1.4rem;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 960px) {
  .home-interview__block {
    row-gap: 2.0rem;
  }

  body .home-interview__block_item {
    width: 18rem;
    margin: 0 auto;
  }

  .home-interview__block_item_meta {}

  .home-interview__block_item_tit {
    font-size: 1.02rem;
  }
}

/**************
  home-company
**************/
.home-company {}

.home-company .heading_block01 {
  text-align: center;
  margin: 0 auto 2rem;
}

/**************
  home-org
**************/
.home-org__text {
  padding: 3.2rem 0 0.5rem;
  margin: 0 auto 1.7rem;
  text-align: center;
  font-weight: 700;
}

.home-org__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.1rem;
  row-gap: 1.1rem;
}

.home-org__list_item {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.home-org__list_item a:hover {
  filter: brightness(1.15);
  opacity: 0.86;
}

.home-org__list_item img {
  width: 100%;
}


@media screen and (max-width: 960px) {
  .home-org__text {
    font-size: 0.932rem;
    letter-spacing: 0;
    margin-bottom: 1.1rem;
    padding-top: 2.8rem;
    line-height: 1.8;
  }

  .home-org__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.7rem;
    row-gap: 0.7rem;
  }
}




/************************
  .page-test
************************/
.page-id-100288 #breadcrumb {
  display: none;
}

.page-id-100288 #content {}
