@charset "UTF-8";
/* ★★このcssはscssをコンパイルしたcssです。cssを記述する場合は、こちらに記述せず、merge.cssに記述してください。★★ */
/* ==============================================
CSS information

 file name  : style.css
 style info : style.scssコンパイルしたファイル。

 このスタイルシートの構成
 style.scss参照
=============================================== */
/*=================================================
 * reset
 * ================================================ */
html {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* 英数の改行 */
  word-break: break-all;
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
header,
hgroup,
section,
article,
aside,
hgroup,
footer,
figure,
figcaption,
nav {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

pre,
form,
fieldset,
input,
textarea,
div,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
b {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  /* 印刷時の要素内での改ページをしない */
  page-break-inside: avoid;
  empty-cells: show;
}

td {
  vertical-align: top;
}

a {
  text-decoration: none;
}

caption {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

object,
embed {
  vertical-align: top;
}

hr,
legend {
  display: none;
}

img,
abbr,
acronym,
fieldset {
  border: none;
  vertical-align: bottom;
  /* listにて隙間ができるのを防ぐ kunihro*/
}

/* clearfix */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* PC */
/* MD */
/* SP */
/* SE */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 変数の定義
 * ================================================ */
/* ------------------------------------
 /* フォント
 ------------------------------------ */
/* ------------------------------------
/* カラー
------------------------------------ */
/* ------------------------------------
/* シャドウ
------------------------------------ */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
/* default設定
------------------------------------ */
a {
  color: #211E21;
  outline: none;
}
a:hover {
  opacity: 0.85;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

td,
th {
  vertical-align: top;
  text-align: left;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #211E21;
  line-height: 1.6;
  margin: 0 auto !important;
  overflow-x: hidden;
  width: auto !important;
  height: auto !important;
}

#overlayShadow {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100vw;
  z-index: 9999;
}

/* <共通> コンテンツ幅
--------------- */
.cont_inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 clamp(0.9375rem, 3.8888888889vw + 0.0625rem, 3.125rem);
  /* SP */
}
@media screen and (max-width: 896px) {
  .cont_inner {
    width: auto;
    margin: 0 auto;
    padding: 0 20px;
  }
}
.cont_inner {
  /* <topのみ共通> コンテンツ幅
  --------------- */
}
.cont_inner .cont_inner_top {
  /* SP */
}
/* 囲みbox01（薄紺背景/紺色上下に飾り線）
------------------------------------ */
.bg_cmn_box_01 {
  background-color: #E8E9F3;
  padding: 2.5rem;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 896px) {
  .bg_cmn_box_01 {
    padding: 1.875rem 1.25rem;
  }
}
.bg_cmn_box_01::before, .bg_cmn_box_01::after {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background-color: #1D2089;
  position: absolute;
}
.bg_cmn_box_01::before {
  top: -10px;
  left: 0;
}
.bg_cmn_box_01::after {
  bottom: -10px;
  right: 0;
}
.bg_cmn_box_01 .page_subtl,
.bg_cmn_box_01 .page_subtl02,
.bg_cmn_box_01 .page_subtl03 {
  margin-top: 0;
}

/* 囲みbox02（薄紺色背景）
------------------------------------ */
.bg_cmn_box_02 {
  background-color: #E8E9F3;
  border: #fff 1px solid;
  padding: 1.875rem;
  box-sizing: border-box;
}
@media screen and (max-width: 896px) {
  .bg_cmn_box_02 {
    padding: 1.875rem 1.25rem;
  }
}

/* 囲みbox03（薄い紺色背景/内側に紺色枠線）
------------------------------------ */
.bg_cmn_box_03 {
  background-color: #E8E9F3;
  box-sizing: border-box;
  position: relative;
  padding: 1.25rem;
}
@media screen and (max-width: 896px) {
  .bg_cmn_box_03 {
    padding: 0.625rem;
  }
}
.bg_cmn_box_03 .bg_cmn_inner_box {
  border: #1D2089 1px solid;
  display: flex;
  justify-content: space-between;
  padding: 3.125rem;
}
@media screen and (max-width: 896px) {
  .bg_cmn_box_03 .bg_cmn_inner_box {
    flex-direction: column;
    padding: 1.875rem 1.25rem;
  }
}
.bg_cmn_box_03 .box01,
.bg_cmn_box_03 .box02 {
  width: 47%;
}
@media screen and (max-width: 896px) {
  .bg_cmn_box_03 .box01,
  .bg_cmn_box_03 .box02 {
    width: auto;
  }
}

/* 囲みbox04（薄い紺色背景/右側のみ紺色線）
------------------------------------ */
.bg_cmn_box_04 {
  background-color: #E8E9F3;
  border-left: #1D2089 6px solid;
  padding: 1.875rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .bg_cmn_box_04 {
    padding: 1.875rem 1.25rem;
    flex-direction: column;
  }
}
.bg_cmn_box_04 .tl01 {
  margin-top: 0;
}

/* 囲みbox05（薄い紺色背景/padding pc 50px/sp 30px 20px）
------------------------------------ */
.bg_cmn_box_05 {
  background-color: #f5f5f5;
  padding: 3.125rem;
}
@media screen and (max-width: 896px) {
  .bg_cmn_box_05 {
    padding: 1.875rem 1.25rem;
  }
}

/* レスポンシブ対応
--------------- */
@media screen and (max-width: 896px) {
  .sp_none {
    display: none !important;
  }
}

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

/* 電話リンクをスマホのみにする
--------------- */
/* PC */
@media screen and (min-width: 897px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* 注意テキスト
--------------- */
/* インラインブロック
--------------- */
.i_block {
  display: inline-block !important;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
.header_cmn {
  background-color: #fff;
  min-height: 4rem;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.5s ease; /* 0.5秒かけて滑らかに動く */
  z-index: 100;
}
@media screen and (max-width: 896px) {
  .header_cmn {
    height: 3.75rem;
    min-height: 3.75rem;
  }
}

/* ヘッダー表示のアニメーション */
.header_cmn.UpMove {
  transform: translateY(-100%); /* 上に隠す */
  transition: transform 0.3s;
}

.header_cmn.DownMove {
  transform: translateY(0); /* 表示する */
  transition: transform 0.3s;
}

.header_inner {
  margin: 0 1.875rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .header_inner {
    margin: 0 0 0 10px;
    padding-top: 0;
  }
}

/* ------------------------------------
/* ロゴまわり
------------------------------------ */
.header_logo_box {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  padding: 5px 0;
}
@media screen and (max-width: 896px) {
  .header_logo_box {
    padding-top: 6px;
  }
}
@media screen and (max-width: 896px) {
  .header_logo_box .header_logo {
    margin-top: 0;
  }
}
@media screen and (max-width: 896px) {
  .header_logo_box .header_logo img {
    height: 48px;
    width: auto;
  }
}

/* ------------------------------------
/* ナビゲーションリンク
------------------------------------ */
/* gnav上部ナビゲーション
------------------------------------ */
.gnav_upper_box {
  line-height: 1;
}

.list_gnav_01 {
  display: flex;
  justify-content: flex-end;
}
.list_gnav_01 .item_gnav_01 {
  margin-right: clamp(1.25rem, 1.1111111111vw + 1rem, 1.875rem);
}
.list_gnav_01 .item_gnav_01:last-child {
  margin-right: 0;
}
.list_gnav_01 a {
  color: #fff;
  font-size: 0.75rem;
}

/* Gnav
------------------------------------ */
.list_gnav_02 {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.list_gnav_02 .item_gnav_02 {
  margin-right: clamp(1.25rem, 1.1111111111vw + 1rem, 1.875rem);
}
.list_gnav_02 .item_gnav_02:last-child {
  margin-right: 0;
}
/* ------------------------------------
/* メニューボタン（spのみ）
------------------------------------ */
.sp_header_link .list_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 60px;
}
.sp_header_link .list_item.item01 {
  background-color: #E8B800;
  padding: 0 10px;
}
.sp_header_link .list_item.item01 .txt {
  line-height: 1.4;
  font-size: 0.75rem;
  margin-left: 10px;
}
.sp_header_link .txt {
  font-size: 0.625rem;
  line-height: 1;
  display: block;
}
.sp_header_link .hamburger_menu {
  text-align: center;
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  padding-top: 13px;
}
.sp_header_link .line_hamburger_box {
  margin-bottom: 8px;
}
.sp_header_link .line_hamburger_box .line_hamburger {
  display: block;
  background-color: #fff;
  width: 28px;
  height: 4px;
  margin: 0 auto 4px;
}

/* ------------------------------------
/* スマホ用メニュー(sp_menu)
------------------------------------ */
.sp_menu .sidemenu_box_wrap {
  background-color: #1D2089;
  color: #fff;
}
.sp_menu .sidemenu_box_wrap a {
  color: #fff;
}
.sp_menu {
  /* ヘッダー
  ------------------------------------ */
}
.sp_menu .sidemenu_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px 0 15px;
}
.sp_menu .sidemenu_logo_box .tagline {
  font-size: 0.625rem;
  margin-bottom: 2px;
}
.sp_menu .btn_close {
  display: block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.sp_menu .btn_close .txt {
  font-size: 0.75rem;
  line-height: 15px;
  transform: scale(0.9);
}
.sp_menu .line_close_box {
  width: 20px;
  margin: 0 auto 5px;
}
.sp_menu .line_close_box .line_close {
  display: block;
  height: 2px;
  border-radius: 10px;
  position: relative;
  background-color: #fff;
}
.sp_menu .line_close_box .line_close:first-child {
  transform: rotate(45deg);
  top: -3px;
}
.sp_menu .line_close_box .line_close:last-child {
  transform: rotate(-45deg);
  top: -5px;
}
.sp_menu {
  /* ボディ
  ------------------------------------ */
}
.sp_menu .sidemenu_body {
  padding: 10px 12px;
}
.sp_menu .sitemap_list .item_list {
  box-sizing: border-box;
  padding: 0 3px;
}
.sp_menu .sitemap_list .item_list a {
  border-bottom: #fff 1px solid;
}
.sp_menu .sitemap_list.list03 {
  display: block;
}
.sp_menu .sitemap_list.list03 .item_list {
  padding: 0;
  display: block;
  margin-bottom: 10px;
}
.sp_menu .sitemap_list.list03 .item_list::after {
  display: none;
}
.sp_menu .sitemap_list.list03 .item_list:first-child a {
  padding-left: 0;
}
.sp_menu .sitemap_list.list03 .item_list a {
  border-bottom: none;
  padding: 0.3125rem 0;
  display: inline-block;
}
.sp_menu .btn_close_footer {
  display: block;
  width: 70%;
  padding: 5px 0;
  margin: 30px auto;
  border: #fff 1px solid;
}
.sp_menu .btn_close_footer .btn_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp_menu .btn_close_footer .line_close_box {
  margin: 5px 10px 0 0;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
/* ロゴ、住所、サイトマップ等
------------------------------------ */
.footer_info {
  padding: 2.5rem 0;
}
.footer_info .cont_inner {
  display: flex;
}
@media screen and (max-width: 896px) {
  .footer_info .cont_inner {
    flex-direction: column;
    width: auto;
  }
}

/* ロゴ、住所、SNS、届出関係
------------------------------------ */
.footer_info_box_01 {
  min-width: 20em;
  margin-right: 3.75rem;
}
@media screen and (max-width: 896px) {
  .footer_info_box_01 {
    width: auto;
    margin-right: 0;
    margin-bottom: 2.5rem;
  }
}

.footer_logo_box .tagline_box {
  margin-bottom: 0.625rem;
}
.footer_logo_box .tagline_box .tagline {
  font-size: 0.75rem;
}
.footer_logo_box .footer_logo {
  margin-bottom: 1.25rem;
}
.footer_logo_box .address {
  margin-bottom: 1.25rem;
}
.footer_logo_box .address .zip {
  margin-right: 1em;
}

/* 住所
------------------------------------ */
.footer_info_box_02 a {
  color: #fff;
}
.footer_info_box_02 .footer_info_company_box {
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 896px) {
  .footer_info_box_02 .footer_info_company_box {
    flex-direction: column;
    gap: 1.875rem;
  }
}
.footer_info_box_02 .footer_info_company_list .tl {
  font-weight: bold;
  margin-bottom: 0.3em;
  color: #1D2089;
}
.footer_info_box_02 .footer_info_company_list .address_box {
  margin-bottom: 1.2em;
}
.footer_info_box_02 .footer_info_company_list .address_box.en {
  word-break: normal;
  overflow-wrap: break-word;
}
.footer_info_box_02 .footer_info_company_list .address_box .zip {
  display: block;
}
.footer_info_box_02 .operating_company_list .tl,
.footer_info_box_02 .operating_company_list .address_box {
  font-size: 0.875rem;
  margin-bottom: 0.3em;
}
.footer_info_box_02 .operating_company_list .company_name {
  font-size: 1.125rem;
  margin-bottom: 0.3em;
}
.footer_info_box_02 .operating_company_list .company_name a {
  display: flex;
  align-items: center;
}
.footer_info_box_02 .operating_company_list .company_name .ico {
  margin-left: 0.5em;
}
.footer_info_box_02 .operating_company_list .address_box .zip,
.footer_info_box_02 .operating_company_list .address_box .address {
  margin-right: 1em;
}
/* サイトマップ（フッター・spメニュー　共通）
  --------------- */
.footer_sitemap {
  display: flex;
  margin-bottom: 5rem;
}
@media screen and (max-width: 896px) {
  .footer_sitemap {
    flex-direction: column;
    margin-bottom: 3.125rem;
  }
}

.sitemap_list {
  margin-right: 2.5rem;
}
@media screen and (max-width: 896px) {
  .sitemap_list {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0;
  }
  .sitemap_list.list03 {
    font-size: 0.875rem;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 20px;
  }
  .sitemap_list.list03 .item_list {
    width: auto;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .sitemap_list.list03 .item_list::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1em;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .sitemap_list.list03 .item_list.item01::after {
    display: none;
  }
  .sitemap_list.list03 .item_list a {
    padding: 0.9375rem 0.625rem;
  }
  .sitemap_list.list03 .item_list:first-child a {
    padding-left: 0;
  }
  .sitemap_list.list03 .item_list:last-child a {
    padding-right: 0;
  }
}
.sitemap_list .item_list {
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 896px) {
  .sitemap_list .item_list {
    width: 50%;
    margin-bottom: 0;
  }
  .sitemap_list .item_list a {
    display: block;
    padding: 0.9375rem 0;
  }
}

/* ------------------------------------
/* コピーライト
------------------------------------ */
.footer_copyright {
  text-align: center;
  font-size: 0.75rem;
  padding-bottom: 1.25rem;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
/* ページタイトル
------------------------------------ */
.page_tl_box {
  /* ページ名
  ------------------------------------ */
}
.page_tl_box {
  /* ページ説明文
  ------------------------------------ */
}
/* ------------------------------------
/* パンくず
------------------------------------ */
/* ------------------------------------
/* 見出し01（48px/24px/blod/1.4）
------------------------------------ */
.page_subtl {
  font-size: clamp(1.5rem, 2.6666666667vw + 0.9rem, 3rem);
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 clamp(3.75rem, 4.4444444444vw + 2.75rem, 6.25rem);
}
.page_subtl .en {
  font-size: clamp(0.875rem, 0.6666666667vw + 0.725rem, 1.25rem);
  color: #1D2089;
  display: block;
}

/* ------------------------------------
/* 見出し02（36px/20px/Bold/1.4）
------------------------------------ */
.page_subtl02 {
  font-size: clamp(1.25rem, 1.7777777778vw + 0.85rem, 2.25rem);
  color: #1D2089;
  font-weight: bold;
  line-height: 1.4;
  margin: clamp(3.75rem, 4.4444444444vw + 2.75rem, 6.25rem) 0 1.875rem;
}

/* ------------------------------------
/* 見出し03（24px/18px/Bold/1.4）
------------------------------------ */
.page_subtl03 {
  font-size: clamp(1.125rem, 0.6666666667vw + 0.975rem, 1.5rem);
  color: #1D2089;
  font-weight: bold;
  line-height: 1.4;
  margin: 3.125rem 0 1.875rem;
}

/* ------------------------------------
/* 見出し04（20px/17px//Bold/1.4）
------------------------------------ */
.page_subtl04 {
  font-size: clamp(1.0625rem, 0.3333333333vw + 0.9875rem, 1.25rem);
  color: #1D2089;
  font-weight: bold;
  line-height: 1.4;
  margin: 2.5rem 0 1.25rem;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ベースのボタン（紺色/w300/h50/白文字）
------------------------------------ */
.btn_base {
  background-color: #1D2089;
  color: #fff;
  font-size: clamp(1rem, 0.2222222222vw + 0.95rem, 1.125rem);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25rem;
  max-width: 25rem;
  height: 3.125rem;
  padding: 0 10px 0 35px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 896px) {
  .btn_base {
    width: auto;
    max-width: 18.75rem;
  }
}
.btn_base::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}

/* ベース02のボタン（白色/紺色枠線/w300/h50/紺色文字）
------------------------------------ */
/* コンバージョンのボタン（黄色/w300/h90/紺色文字）
------------------------------------ */
.btn_cta {
  background-color: #E8B800;
  color: #211E21;
  font-size: clamp(1rem, 0.4444444444vw + 0.9rem, 1.25rem);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18.75rem;
  height: 3.125rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 896px) {
  .btn_cta {
    width: 90%;
    max-width: 18.75rem;
  }
}
.btn_cta::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #211E21;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * <共通> お知らせ
 * ================================================ */
.cont_news {
  margin-bottom: 120px;
}

/*=================================================
 * お知らせ一覧
 * ================================================ */
.cont_news-list .news-list_area .news_list {
  border-top: #1D2089 1px solid;
}
.cont_news-list .news-list_area .news_list .list_item {
  border-bottom: #1D2089 1px solid;
}

/*=================================================
 * 詳細ページ（ブログと共通）
 * ================================================ */
.article_box .article_head {
  border-top: #1D2089 1px solid;
  border-bottom: #1D2089 1px solid;
  padding: 60px 8% 50px;
}
@media screen and (max-width: 896px) {
  .article_box .article_head {
    padding: 40px 0;
  }
}
.article_box .article_head .date_box {
  margin-bottom: 1.25rem;
}
.article_box .article_head .date {
  font-size: 0.875rem;
  margin-right: 1.25rem;
}
.article_box .article_head .category {
  background-color: #1D2089;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.125rem 0.625rem;
  display: inline-block;
  width: 8em;
  text-align: center;
}
.article_box .article_head .tl_article {
  font-size: clamp(1.25rem, 1.7777777778vw + 0.85rem, 2.25rem);
  font-weight: bold;
}
.article_box .article_body {
  padding: 0 8%;
  border-bottom: #1D2089 1px solid;
}
@media screen and (max-width: 896px) {
  .article_box .article_body {
    padding: 40px 0;
  }
}
.article_box .article_body .article_body_inner {
  margin: 60px 0;
}
.article_box .article_body {
  /* ------------------------------------
  /* テキスト、画像
  ------------------------------------ */
}
.article_box .article_body p,
.article_box .article_body img {
  margin-bottom: 1.875rem;
}
.article_box .article_body p a,
.article_box .article_body img a {
  color: #007AFF;
  text-decoration: underline;
}
.article_box .article_body p a:hover,
.article_box .article_body img a:hover {
  opacity: 0.6;
}
.article_box .article_body img {
  max-width: 100%;
  height: auto;
}
.article_box .article_body {
  /* ------------------------------------
  /* 見出し
  ------------------------------------ */
}
.article_box .article_body h2 {
  font-size: clamp(1.25rem, 1.7777777778vw + 0.85rem, 2.25rem);
  color: #1D2089;
  font-weight: bold;
  line-height: 1.4;
  margin: clamp(3.75rem, 4.4444444444vw + 2.75rem, 6.25rem) 0 1.875rem;
}
.article_box .article_body h3 {
  font-size: clamp(1.125rem, 0.6666666667vw + 0.975rem, 1.5rem);
  color: #1D2089;
  font-weight: bold;
  line-height: 1.4;
  margin: 3.125rem 0 1.875rem;
}
.article_box .article_body h4 {
  font-size: clamp(1.125rem, 0.4444444444vw + 1.025rem, 1.375rem);
  color: #1D2089;
  font-weight: bold;
  line-height: 1.4;
  margin: 3.125rem 0 1.875rem;
  padding-left: 30px;
  position: relative;
}
.article_box .article_body h4::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #1D2089;
  position: absolute;
  top: calc(0.7em - 1px);
  left: 0;
}
.article_box .article_body h5 {
  font-size: clamp(1.0625rem, 0.3333333333vw + 0.9875rem, 1.25rem);
  color: #1D2089;
  font-weight: bold;
  line-height: 1.4;
  margin: 2.5rem 0 1.25rem;
}
.article_box .article_body h6 {
  font-size: clamp(1rem, 0.2222222222vw + 0.95rem, 1.125rem);
  color: #1D2089;
  font-weight: bold;
  line-height: 1.4;
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.4em;
  border-bottom: #1D2089 1px solid;
}
.article_box .article_body {
  /* ------------------------------------
  /* リスト
  ------------------------------------ */
}
.article_box .article_body ul {
  margin-bottom: 1.875rem;
}
.article_box .article_body ul li {
  padding-left: 20px;
  margin-bottom: 0.4em;
  position: relative;
}
.article_box .article_body ul li::before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background-color: #E8B800;
  position: absolute;
  top: calc(0.8em - 1px);
  left: 0;
}
.article_box .article_body ol {
  margin-bottom: 1.875rem;
  counter-reset: listnum; /* カウンターをリセット */
}
.article_box .article_body ol li {
  padding-left: 20px;
  margin-bottom: 0.4em;
  position: relative;
}
.article_box .article_body ol li::before {
  content: "";
  counter-increment: listnum; /* counter-resetと同じ文字列 */
  content: counter(listnum); /* カウントした数に応じて番号を表示 */
  color: #1D2089;
  font-weight: bold;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.article_box .article_body {
  /* ------------------------------------
  /* テーブル
  ------------------------------------ */
}
.article_box .article_body table {
  margin-bottom: 1.875rem;
}
.article_box .article_body table thead {
  border-bottom: none;
}
.article_box .article_body table thead th, .article_box .article_body table thead td {
  border-bottom: #D5D5D5 2px solid;
}
.article_box .article_body table th, .article_box .article_body table td {
  border: none;
  border-bottom: #D5D5D5 1px solid;
  padding: 0.375rem 0.625rem;
}

.btn_listback_box {
  margin-top: 80px;
  text-align: center;
}
/*=================================================
 * お知らせ詳細
 * ================================================ */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * トップページ
 * ================================================ */
/* ------------------------------------
/* メインビジュアル
------------------------------------ */
.top_mainvisual {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 896px) {
  .top_mainvisual {
    flex-direction: column;
  }
}
.top_mainvisual {
  /* キャッチコピー
  ------------------------------------ */
}
.top_mainvisual .top_mainvisual_txt {
  background-color: #F1F2F4;
  flex-shrink: 0;
  padding: 8.125rem clamp(0.9375rem, 3.8888888889vw + 0.0625rem, 3.125rem) 3.75rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 896px) {
  .top_mainvisual .top_mainvisual_txt {
    width: 100%;
    padding: 1.875rem 0.9375rem;
  }
}
.top_mainvisual .top_mainvisual_txt .tl {
  font-size: clamp(1.625rem, 1.7741935484vw + 1.2258064516rem, 3rem);
  font-weight: bold;
  margin-bottom: 1.875rem;
  color: #1D2089;
}
@media screen and (max-width: 896px) {
  .top_mainvisual .top_mainvisual_txt .tl {
    margin-bottom: 1.25rem;
  }
}
.top_mainvisual .top_mainvisual_txt .txt {
  font-size: clamp(1rem, 0.4444444444vw + 0.9rem, 1.25rem);
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 896px) {
  .top_mainvisual .top_mainvisual_txt .txt {
    margin-bottom: 1.875rem;
  }
}
.top_mainvisual .top_mainvisual_txt .btn_box .btn_cta {
  width: 480px;
  height: 80px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.top_mainvisual .top_mainvisual_txt .btn_box .btn_cta .btn_txt {
  vertical-align: baseline;
}
.top_mainvisual .top_mainvisual_txt .btn_box .btn_cta strong {
  font-size: clamp(1.125rem, 0.4838709677vw + 1.0161290323rem, 1.5rem);
  padding-right: 2px;
}
@media screen and (max-width: 896px) {
  .top_mainvisual .top_mainvisual_txt .btn_box .btn_cta strong {
    display: block;
  }
}
.top_mainvisual .top_mainvisual_txt .note_txt {
  text-align: center;
  width: 480px;
}
@media screen and (max-width: 896px) {
  .top_mainvisual .top_mainvisual_txt .note_txt {
    text-align: left;
    width: auto;
  }
}
.top_mainvisual .top_mainvisual_img {
  flex: 1;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 896px) {
  .top_mainvisual .top_mainvisual_img {
    width: 100%;
    flex: none;
    order: -1;
    aspect-ratio: 4/3;
  }
}
.top_mainvisual .top_mainvisual_img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.top_mainvisual .top_mainvisual_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.top_mainvisual .top_mainvisual_img .top_mainvisual_img_txt {
  position: absolute;
  top: calc(50% + 30px);
  left: clamp(1.25rem, 3.3333333333vw + 0.5rem, 3.125rem);
  transform: translateY(-50%);
  color: #fff;
  font-size: clamp(1.75rem, 3.1111111111vw + 1.05rem, 3.5rem);
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  word-break: normal;
  overflow-wrap: break-word;
}
@media screen and (max-width: 896px) {
  .top_mainvisual .top_mainvisual_img .top_mainvisual_img_txt {
    font-size: clamp(1.5rem, 1.3333333333vw + 1.2rem, 2.25rem);
  }
}

/* ------------------------------------
/* メインビジュアル下の実績の数字
------------------------------------ */
.top_results_num_list {
  background-color: #171A6E;
  padding: 2.5rem 1.25rem;
  margin-bottom: 6.25rem;
}
.top_results_num_list .results_num_list {
  display: flex;
  align-items: stretch;
  max-width: 75rem;
  margin: 0 auto;
}
.top_results_num_list .results_num_list .list_item {
  flex: 1;
  padding: 1.5rem 1.875rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.top_results_num_list .results_num_list .list_item:last-child {
  border-right: none;
}
.top_results_num_list .results_num_list .list_item .num_box {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}
.top_results_num_list .results_num_list .list_item .num {
  font-size: clamp(2rem, 2.6666666667vw + 1.4rem, 3.5rem);
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
.top_results_num_list .results_num_list .list_item .unit {
  font-size: clamp(1.25rem, 0.4444444444vw + 1.15rem, 1.5rem);
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
}
.top_results_num_list .results_num_list .list_item .results_txt {
  font-size: clamp(0.875rem, 0.2222222222vw + 0.825rem, 1rem);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.875rem;
  line-height: 1.7;
}
@media screen and (max-width: 896px) {
  .top_results_num_list {
    padding: 1.25rem 0 0;
    margin-bottom: 0;
  }
  .top_results_num_list .results_num_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .top_results_num_list .results_num_list .list_item {
    padding: 1.25rem 1rem;
    border-left: none;
    border-top: none;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 1.5rem;
  }
  .top_results_num_list .results_num_list .list_item:nth-child(even) {
    border-right: none;
  }
  .top_results_num_list .results_num_list .list_item:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }
  .top_results_num_list .results_num_list .list_item .results_txt {
    margin-top: 0.625rem;
  }
}

/* ------------------------------------
/* ミッション・創業の想い
------------------------------------ */
.top_mission_area {
  margin-bottom: 100px;
}
@media screen and (max-width: 896px) {
  .top_mission_area {
    margin-bottom: 60px;
  }
}
.top_mission_area .cont_inner {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 896px) {
  .top_mission_area .cont_inner {
    flex-direction: column;
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
  }
}
.top_mission_area .txt_box {
  flex: 1;
  padding: 0 0 5rem 3.75rem;
  align-self: center;
}
@media screen and (max-width: 896px) {
  .top_mission_area .txt_box {
    padding: 0;
  }
}
.top_mission_area .txt_box > .txt {
  margin-bottom: 3.75rem;
}
.top_mission_area .img_box {
  order: -1;
  flex-shrink: 0;
  width: 50vw;
  margin-left: calc(50% - 50vw);
}
.top_mission_area .img_box picture {
  display: block;
  height: 100%;
}
.top_mission_area .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 896px) {
  .top_mission_area .img_box {
    order: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 2.5rem;
    aspect-ratio: 16/9;
  }
}

/* ------------------------------------
/* 技術・プロダクト紹介
------------------------------------ */
.top_technology-product_area {
  background-color: #F1F2F4;
  padding: 100px 0;
}
@media screen and (max-width: 896px) {
  .top_technology-product_area {
    padding: 60px 0;
  }
}

/* なぜ有機ELなのか
------------------------------------ */
.top_technology_01 {
  display: flex;
}
.top_technology_01 .inner_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .top_technology_01 .inner_box {
    display: block;
  }
}
.top_technology_01 .txt_box {
  width: 52%;
}
@media screen and (max-width: 896px) {
  .top_technology_01 .txt_box {
    width: auto;
  }
}
.top_technology_01 .txt_box .page_subtl02 {
  margin-top: 0;
}
.top_technology_01 .txt_box .txt {
  margin-bottom: 1em;
}
.top_technology_01 .img_box {
  width: 45%;
}
@media screen and (max-width: 896px) {
  .top_technology_01 .img_box {
    width: auto;
  }
}
.top_technology_01 .img_box img {
  width: 100%;
  height: auto;
}

/* アイコン付き　リスト
--------------- */
.top_technology_02 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 896px) {
  .top_technology_02 {
    margin-top: 1.875rem;
  }
}

.tech_feature_list {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 896px) {
  .tech_feature_list {
    flex-direction: column;
    gap: 0.9375rem;
  }
}
.tech_feature_list .tech_feature_item {
  flex: 1;
  display: flex;
  background-color: #fff;
}
.tech_feature_list .tech_feature_item .ico_box {
  width: 5.625rem;
  flex-shrink: 0;
  background-color: #E8B800;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .tech_feature_list .tech_feature_item .ico_box {
    width: 4.375rem;
  }
}
.tech_feature_list .tech_feature_item .txt_box {
  flex: 1;
  padding: 1.5rem 1.25rem;
}
@media screen and (max-width: 896px) {
  .tech_feature_list .tech_feature_item .txt_box {
    padding: 1rem;
  }
}
.tech_feature_list .tech_feature_item .tl {
  margin: 0 0 1.25rem;
}

/* 販売中プロダクト（購入・発注可能なデバイス）
------------------------------------ */
.top_product_area {
  padding: 6.25rem 0 0;
}
@media screen and (max-width: 896px) {
  .top_product_area {
    padding: 3.75rem 0 0;
  }
}

/* 見出しエリア（タイトル＋タグ）
--------------- */
.product_head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 896px) {
  .product_head {
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1.875rem;
  }
}
.product_head .page_subtl02 {
  margin: 0;
}
.product_head .product_tag {
  background-color: #1D2089;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.3125rem 1rem;
  display: inline-block;
  white-space: nowrap;
}

/* プロダクト　グリッドリスト
--------------- */
.product_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 896px) {
  .product_list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* プロダクト　カード
--------------- */
.product_item {
  display: flex;
  flex-direction: column;
  background-color: #DCDDE9;
}
.product_item .product_img_box img {
  width: 100%;
  height: auto;
}
.product_item .product_txt_box {
  padding: clamp(1.25rem, 1.1111111111vw + 1rem, 1.875rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product_item .product_tl {
  margin-top: 0;
}
.product_item .product_tl .sub_tl {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.3125rem;
}
.product_item .product_spec_list {
  flex: 1;
  margin-bottom: 1.25rem;
}
.product_item .product_spec_list li {
  margin-bottom: 0.3125rem;
}
.product_item .product_price_note {
  background-color: #fff;
  color: #1D2089;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  align-self: flex-start;
}
.product_item .btn_box {
  margin-top: auto;
}
.product_item .btn_box .btn_base {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* 開発中プロジェクト（AMED採択プロジェクト）
------------------------------------ */
.top_project_area {
  background-color: #F1F2F4;
}

.project_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
  background-color: #fff;
  padding: 1.875rem 2.5rem;
  border-left: 4px solid #1D2089;
}
@media screen and (max-width: 896px) {
  .project_item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
  }
}
.project_item .project_txt_box {
  flex: 1;
}
.project_item .project_label {
  font-size: 0.875rem;
  color: #1D2089;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.project_item .project_tl {
  margin-top: 0;
}
.project_item .btn_box {
  flex-shrink: 0;
}
@media screen and (max-width: 896px) {
  .project_item .btn_box {
    width: 100%;
  }
  .project_item .btn_box .btn_base {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

/* ------------------------------------
/* 実績・研究活動
------------------------------------ */
.top_results_area {
  padding: 6.25rem 0;
}
@media screen and (max-width: 896px) {
  .top_results_area {
    padding: 3.75rem 0;
  }
}

/* 数字での実績
------------------------------------ */
/* 2カラムグリッド
--------------- */
.results_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 896px) {
  .results_grid {
    grid-template-columns: 1fr;
  }
}

/* 各カラム
--------------- */
.results_col:first-child {
  padding-right: 3.125rem;
  border-right: 1px solid #D5D5D5;
}
@media screen and (max-width: 896px) {
  .results_col:first-child {
    padding-right: 0;
    border-right: none;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #D5D5D5;
  }
}
.results_col:last-child {
  padding-left: 3.125rem;
}
@media screen and (max-width: 896px) {
  .results_col:last-child {
    padding-left: 0;
    padding-top: 2.5rem;
  }
}

/* 各実績行
--------------- */
.results_item {
  display: grid;
  grid-template-columns: clamp(6.25rem, 4.4444444444vw + 5.25rem, 8.75rem) 1fr;
  gap: 1rem 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid #D5D5D5;
}
.results_item:first-child {
  border-top: none;
  padding-top: 0;
}
@media screen and (max-width: 896px) {
  .results_item {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}

/* ラベル＋数字エリア
--------------- */
.results_item_stat {
  border-right: #1D2089 1px solid;
}
.results_item_stat .results_label {
  font-size: clamp(0.875rem, 0.4444444444vw + 0.775rem, 1.125rem);
  color: #1D2089;
  font-weight: bold;
  margin-bottom: 0.625rem;
}
.results_item_stat .results_num_box {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.results_item_stat .results_num {
  font-size: clamp(2.5rem, 1.7777777778vw + 2.1rem, 3.5rem);
  font-weight: bold;
  line-height: 1;
}
.results_item_stat .results_unit {
  font-size: clamp(1.0625rem, 0.3333333333vw + 0.9875rem, 1.25rem);
  font-weight: bold;
}

/* 詳細テキスト
--------------- */
.results_item_detail .results_desc {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* 箇条書き詳細リスト
--------------- */
.results_note_list {
  margin-top: 0.75rem;
  background-color: #F1F2F4;
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.7;
}
.results_note_list li {
  padding-left: 1em;
  text-indent: -1em;
}
.results_note_list li::before {
  content: "・";
}
.results_note_list li + li {
  margin-top: 0.375rem;
}

/* 論文リストボックス
--------------- */
.results_paper_box {
  margin-top: 0.75rem;
  background-color: #E8E9F3;
  padding: 1.25rem 1.5rem;
}
.results_paper_box .paper_year {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.results_paper_box .paper_year:not(:first-child) {
  margin-top: 1.25rem;
}
.results_paper_box .paper_list {
  word-break: normal;
  overflow-wrap: break-word;
}
.results_paper_box .paper_list li + li {
  margin-top: 0.625rem;
}
.results_paper_box .paper_list a {
  font-size: 0.8125rem;
  color: #007AFF;
  text-decoration: underline;
  text-underline-offset: 2px;
  line-height: 1.5;
}
.results_paper_box .paper_list a:hover {
  opacity: 0.7;
}

/* 研究の歩み（タイムライン）
------------------------------------ */
.results_timeline {
  margin-top: 3.75rem;
}
.results_timeline .history_list {
  position: relative;
  margin-top: 1.5rem;
}
.results_timeline .history_list::before {
  content: "";
  position: absolute;
  left: 9.8125rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #D5D5D5;
}
.results_timeline .history_item {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #D5D5D5;
}
.results_timeline .history_item:first-child {
  border-top: 1px solid #D5D5D5;
}
.results_timeline .history_year {
  width: 7.5rem;
  min-width: 7.5rem;
  font-weight: bold;
  color: #1D2089;
}
.results_timeline .history_dot {
  width: 0.625rem;
  height: 0.625rem;
  min-width: 0.625rem;
  border-radius: 50%;
  background-color: #1D2089;
  margin: 0 2rem;
  position: relative;
  z-index: 1;
}
.results_timeline .history_txt {
  flex: 1;
}
@media screen and (max-width: 896px) {
  .results_timeline {
    margin-top: 2.5rem;
  }
  .results_timeline .history_list::before {
    left: 5.4375rem;
  }
  .results_timeline .history_item {
    padding: 1rem 0;
    align-items: flex-start;
  }
  .results_timeline .history_year {
    width: 3.875rem;
    min-width: 3.875rem;
    font-size: 0.8125rem;
    padding-top: 0.125rem;
  }
  .results_timeline .history_dot {
    margin: 0.375rem 1.25rem 0;
  }
  .results_timeline .history_txt {
    font-size: 0.8125rem;
  }
}

/* ------------------------------------
/* CVCとの連携で実現できること
------------------------------------ */
.top_cvc_area {
  background-color: #F6E399;
  padding: 6.25rem 0;
}
@media screen and (max-width: 896px) {
  .top_cvc_area {
    padding: 3.75rem 0;
  }
}
.top_cvc_area .page_subtl {
  text-align: center;
}

/* 特徴3カラムリスト
--------------- */
.cvc_features_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3.75rem;
}
@media screen and (max-width: 896px) {
  .cvc_features_list {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
}

/* 各特徴項目
--------------- */
.cvc_features_item {
  padding: 0 1.875rem;
}
.cvc_features_item:first-child {
  padding-left: 0;
}
.cvc_features_item:last-child {
  border-right: none;
}
@media screen and (max-width: 896px) {
  .cvc_features_item {
    padding: 1.875rem 0;
    border-right: none;
    border-bottom: 1px solid #1D2089;
  }
  .cvc_features_item:first-child {
    padding-top: 0;
  }
  .cvc_features_item:last-child {
    border-bottom: none;
  }
}

.cvc_features_tl {
  margin: 0 auto 1.875rem;
  text-align: center;
}

.cvc_features_txt {
  font-size: 0.875rem;
  line-height: 1.8;
}

/* プロダクト紹介ボックス
--------------- */
.cvc_product_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 1.875rem 2.5rem;
  margin-top: 3.75rem;
  gap: 2.5rem;
}
@media screen and (max-width: 896px) {
  .cvc_product_box {
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
}

.cvc_product_tl {
  margin-top: 0;
}

/* ------------------------------------
/* お問い合わせ
------------------------------------ */
.cmn_contact_area {
  position: relative;
  padding: 3.75rem 0;
  text-align: center;
  color: #fff;
  background: url(../img_top/img_top_mainvisual@2x.jpg) center/cover no-repeat;
}
@media screen and (max-width: 896px) {
  .cmn_contact_area {
    padding: 3.75rem 0;
  }
}
.cmn_contact_area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.cmn_contact_area .cont_inner {
  position: relative;
  z-index: 1;
}
.cmn_contact_area .page_subtl {
  margin-bottom: 1.875rem;
}
.cmn_contact_area .page_subtl .en {
  color: #E8B800;
}
.cmn_contact_area .contact_txt {
  margin: 0 auto 2.5rem;
  line-height: 1.9;
  font-size: 0.9375rem;
}
@media screen and (max-width: 896px) {
  .cmn_contact_area .contact_txt {
    margin-bottom: 1.875rem;
    font-size: 0.875rem;
  }
}
.cmn_contact_area .btn_box .btn_cta {
  margin: 0 auto 1.25rem;
  width: 30rem;
  height: 5rem;
  font-size: 1rem;
}
.cmn_contact_area .btn_box .btn_cta .btn_txt {
  vertical-align: baseline;
}
.cmn_contact_area .btn_box .btn_cta strong {
  font-size: clamp(1.125rem, 0.4838709677vw + 1.0161290323rem, 1.5rem);
  padding-right: 2px;
}
@media screen and (max-width: 896px) {
  .cmn_contact_area .btn_box .btn_cta strong {
    display: block;
  }
}
@media screen and (max-width: 896px) {
  .cmn_contact_area .btn_box .btn_cta {
    width: 90%;
    max-width: 21.25rem;
    height: 4.375rem;
  }
}
.cmn_contact_area .note_txt {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  text-align: center;
}

/* ------------------------------------
/* 会社情報
------------------------------------ */
.top_company_area {
  margin: 100px 0;
}
@media screen and (max-width: 896px) {
  .top_company_area {
    margin: 3.75rem 0;
  }
}
.top_company_area {
  /* 基本情報グリッド
  ------------------------------------ */
}
.top_company_area .company_info_grid {
  display: flex;
  gap: 1.875rem;
  margin-bottom: clamp(2.5rem, 3.3333333333vw + 1.75rem, 4.375rem);
}
@media screen and (max-width: 896px) {
  .top_company_area .company_info_grid {
    flex-direction: column;
  }
}
.top_company_area .company_info_item {
  flex: 1;
  border-bottom: 1px solid #1D2089;
}
.top_company_area .company_info_item .company_info_tl,
.top_company_area .company_info_item .company_info_sub {
  font-weight: bold;
  color: #1D2089;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
.top_company_area .company_info_item .company_info_data,
.top_company_area .company_info_item .company_info_sub_data {
  margin-bottom: 1.25rem;
}
.top_company_area .company_info_item .company_info_sub,
.top_company_area .company_info_item .company_info_sub_data {
  word-break: normal;
  overflow-wrap: break-word;
}
.top_company_area {
  /* 所在地・地図
  ------------------------------------ */
}
.top_company_area .company_detail_box {
  display: flex;
  gap: 1.875rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 896px) {
  .top_company_area .company_detail_box {
    flex-direction: column;
  }
}
.top_company_area .company_address_box {
  flex: 1;
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 896px) {
  .top_company_area .company_address_box {
    flex-direction: column;
  }
}
.top_company_area .company_address_item {
  flex: 1;
  border-bottom: 1px solid #1D2089;
}
.top_company_area .company_address_item .company_address_tl,
.top_company_area .company_address_item .company_address_sub {
  font-weight: bold;
  color: #1D2089;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
.top_company_area .company_address_item .company_address_data,
.top_company_area .company_address_item .company_address_sub_data {
  margin-bottom: 1.25rem;
}
.top_company_area .company_address_item .company_address_sub,
.top_company_area .company_address_item .company_address_sub_data {
  word-break: normal;
  overflow-wrap: break-word;
}
.top_company_area .company_map_wrap {
  flex: 1;
}
.top_company_area .company_map_wrap .company_map_tl {
  margin-top: 0;
  margin-bottom: 20px;
}
.top_company_area .company_map_wrap .company_map_box {
  position: relative;
  width: 100%;
  padding-top: 45%;
}
@media screen and (max-width: 896px) {
  .top_company_area .company_map_wrap .company_map_box {
    padding-top: 75%;
  }
}
.top_company_area .company_map_wrap .company_map_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.top_company_area {
  /* 交通案内テーブル
  ------------------------------------ */
}
@media screen and (max-width: 896px) {
  .top_company_area .company_access_box {
    overflow-x: auto;
  }
}
.top_company_area .company_access_tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
@media screen and (max-width: 896px) {
  .top_company_area .company_access_tbl {
    display: block;
  }
}
@media screen and (max-width: 896px) {
  .top_company_area .company_access_tbl tr {
    display: block;
  }
}
.top_company_area .company_access_tbl tr:nth-child(2n) td {
  border-bottom: 1px solid #1D2089;
  padding: 0.625rem 1.25rem 1.25rem;
}
@media screen and (max-width: 896px) {
  .top_company_area .company_access_tbl tr:nth-child(2n) td {
    padding: 0.3125rem 0 1.25rem;
  }
  .top_company_area .company_access_tbl tr:nth-child(2n) td.company_access_method {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.top_company_area .company_access_tbl th {
  padding: 1.25rem 0 0.625rem;
  border-bottom: 1px solid #1D2089;
}
@media screen and (max-width: 896px) {
  .top_company_area .company_access_tbl th {
    display: block;
    border-bottom: none;
    padding-top: 0;
  }
}
.top_company_area .company_access_tbl td {
  padding: 1.25rem 1.25rem 0.625rem;
}
@media screen and (max-width: 896px) {
  .top_company_area .company_access_tbl td {
    display: block;
    padding: 0.3125rem 0 0;
  }
}
.top_company_area .company_access_from {
  color: #1D2089;
  font-weight: bold;
}
.top_company_area .company_access_method {
  font-weight: bold;
  font-size: 0.875rem;
}
@media screen and (max-width: 896px) {
  .top_company_area .company_access_route {
    margin-bottom: 1.25rem;
  }
}
.top_company_area .bg_cmn_box_02 dl {
  display: flex;
}
@media screen and (max-width: 896px) {
  .top_company_area .bg_cmn_box_02 dl {
    display: block;
  }
  .top_company_area .bg_cmn_box_02 dl .company_access_route {
    margin-bottom: 0;
  }
}
.top_company_area .bg_cmn_box_02 dl dt {
  margin-right: 2em;
}

/* ------------------------------------
/* チーム・共同研究者
------------------------------------ */
.top_team_area {
  padding: 6.25rem 0;
  background-color: #F1F2F4;
}
@media screen and (max-width: 896px) {
  .top_team_area {
    padding: 3.75rem 0;
  }
}
.top_team_area {
  /* 代表者エリア
  ------------------------------------ */
}
.top_team_area .team_rep_box {
  display: flex;
  gap: 2.5rem;
  padding-bottom: 3.75rem;
  border-bottom: 1px solid #D5D5D5;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 896px) {
  .top_team_area .team_rep_box {
    flex-direction: column;
    gap: 1.875rem;
  }
}
.top_team_area .team_rep_head {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media screen and (max-width: 896px) {
  .top_team_area .team_rep_head {
    min-width: unset;
    width: 100%;
  }
}
.top_team_area {
  /* 写真プレースホルダー
  ------------------------------------ */
}
.top_team_area .team_photo_wrap {
  flex-shrink: 0;
}
.top_team_area .team_photo {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background-color: #ccc;
  overflow: hidden;
}
.top_team_area .team_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_team_area .team_photo_wrap--sm .team_photo {
  width: 6.25rem;
  height: 6.25rem;
}
.top_team_area {
  /* プロフィール
  ------------------------------------ */
}
.top_team_area .team_profile {
  flex: 1;
}
.top_team_area .team_role_label {
  font-size: clamp(1.0625rem, 0.3333333333vw + 0.9875rem, 1.25rem);
  font-weight: bold;
  margin-bottom: 0.3125rem;
}
.top_team_area .team_name {
  font-size: clamp(1.25rem, 1.7777777778vw + 0.85rem, 2.25rem);
  font-weight: bold;
  color: #1D2089;
}
.top_team_area .team_name_en {
  font-size: 0.875rem;
  color: #1D2089;
  margin-bottom: 1.25rem;
}
.top_team_area .team_position_txt {
  line-height: 1.6;
  color: #211E21;
}
.top_team_area {
  /* 経歴
  ------------------------------------ */
}
.top_team_area .team_career {
  flex: 1;
  padding-left: 2.5rem;
  border-left: 1px solid #1D2089;
}
@media screen and (max-width: 896px) {
  .top_team_area .team_career {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #1D2089;
    padding-top: 1.25rem;
  }
}
.top_team_area .team_career_tl {
  font-size: clamp(1.0625rem, 0.3333333333vw + 0.9875rem, 1.25rem);
  font-weight: bold;
  color: #1D2089;
  margin-bottom: 0.625rem;
}
.top_team_area .team_career_list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.375rem 1rem;
  align-items: baseline;
}
.top_team_area .team_career_list dt {
  white-space: nowrap;
}
.top_team_area .team_career_list dd {
  line-height: 1.6;
  color: #211E21;
}
.top_team_area {
  /* 研究員・共同研究者エリア
  ------------------------------------ */
}
.top_team_area .team_sub_box {
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 896px) {
  .top_team_area .team_sub_box {
    flex-direction: column;
    gap: 0;
  }
}
.top_team_area .team_member_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 896px) {
  .top_team_area .team_member_col {
    padding-bottom: 3.75rem;
    border-bottom: 1px solid #D5D5D5;
    margin-bottom: 3.75rem;
  }
}
.top_team_area .team_member_head {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.top_team_area {
  /* 共同研究者
  ------------------------------------ */
}
.top_team_area .team_collab_col {
  flex: 1;
  display: flex;
}
.top_team_area .team_collab_box {
  flex: 1;
  background-color: #E8E9F3;
  padding: 1.875rem;
  box-sizing: border-box;
}
.top_team_area .team_collab_tl {
  margin-top: 0;
}
.top_team_area .team_collab_item {
  margin-bottom: 1.25rem;
}
.top_team_area .team_collab_item:last-child {
  margin-bottom: 0;
}
.top_team_area .team_collab_univ {
  font-size: 0.8125rem;
  color: #211E21;
  margin-bottom: 0.25rem;
}
.top_team_area .team_collab_name {
  font-size: 0.9375rem;
  font-weight: bold;
}
.top_team_area .team_collab_name .year {
  font-weight: normal;
}

/* ------------------------------------
/* お知らせ
------------------------------------ */
.top_news_area {
  padding: clamp(60px, 5.5555555556vw + 40px, 120px) 0;
}
.top_news_area .page_subtl {
  width: 30%;
  min-width: 12rem;
  margin-bottom: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 896px) {
  .top_news_area .page_subtl {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.top_news_area .news_box {
  flex: 1;
}
.top_news_area .news_list {
  border-top-color: #1D2089;
}
.top_news_area .news_list .link_item {
  border-bottom-color: #1D2089;
}
.top_news_area .btn_box {
  margin-top: 2.5rem;
}

/* 共通
------------------------------------ */
.news_area .cont_inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .news_area .cont_inner {
    display: block;
  }
}
@media screen and (max-width: 896px) {
  .news_area .news_box .btn_box {
    margin: 3.125rem 0;
  }
  .news_area .news_box .btn {
    margin: 0 auto;
  }
}
.news_area .news_list .link_item {
  display: flex;
  padding: 1.25rem 0.625rem;
  border-bottom: #1D2089 1px solid;
}
@media screen and (max-width: 896px) {
  .news_area .news_list .link_item {
    flex-direction: column;
  }
}
.news_area .news_list .date_box {
  width: 10em;
}
@media screen and (max-width: 896px) {
  .news_area .news_list .date_box {
    margin-bottom: 0.625rem;
  }
}
.news_area .news_list .date_box .date {
  margin-right: 1.25rem;
}
.news_area .news_list .tl {
  flex: 1;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り *//*# sourceMappingURL=style.css.map */