@charset "UTF-8";

/* ======= 共通パーツ ============================================ */

.material-icons {
    font-family: 'Material Symbols Outlined';
    display: inline-flex;
    vertical-align: middle;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

.c_btn {
    display: block;
    width: 100%;
    font-weight: 700;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-decoration: none;
    color: #ffffff;
    padding: 12px 20px 12px 20px;
    text-align: center;
    transition: all 400ms ease;
    border: none;
    border-radius: 16px;
    background: linear-gradient(90deg, #4267B2 0%, #42d5c8 100%);
    box-shadow: 
        0 2px 8px 0 rgba(134, 154, 203, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.en .c_btn {
    font-size: 83%;
    line-height: 1.2;
}
/* 
.c_btn::after {

    font-family: 'Material Symbols Outlined';
    content: "arrow_right_alt";
    display: inline-flex;
    vertical-align: middle;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-size: 16px;
    transition: all 400ms ease;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
} */

@media screen and (max-width: 539px) {
    .c_btn {
        max-width: 280px;
    }
}

.c_btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px 0 rgba(134, 154, 203, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.c_btn:hover::after {
    right: 5px;
}

.c_btn.app {
    background: var(--pickup);
}

.c_btn.ded {
    color: #eee;
    background: rgb(150, 150, 150);
}

.c_btn.app.ded {
    color: #000;
    background: rgb(98, 0, 62);
}

.c_btn.contact {
    background: #00B79B;
    border-color: #00B79B;
}

.c_btn.exhibition_app {
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90deg, #3f7df4 0%, #6b57ff 100%);
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(12, 26, 60, 0.16);
    position: relative;
    border: none;
}

.c_btn.document_app {
    color: #eee;
    background: #00B1EB;
    border-color: #00B1EB;
}

.c_btn.download {
    background: linear-gradient(90deg, #25c3ad 0%, #65d8a3 100%);
}

.c_btn.download:before,
.c_btn.contact:before,
.c_btn.exhibition_app:before,
.c_btn.document_app:before {
    font-family: 'Material Symbols Outlined';
    display: inline-flex;
    vertical-align: middle;
    font-size: 17px;
    line-height: 0.75;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    margin-right: .25em;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

.c_btn.download:before,
.c_btn[download]:before {
    content: 'download';
}

.c_btn.contact:before {
    content: 'mail';
}

.c_btn.exhibition_app:before {
    content: 'contract_edit';
}

.c_btn.document_app:before {
    content: "description";
}

.c_btn.document_app:hover,
.c_btn.contact:hover,
.c_btn.exhibition_app:hover {
    opacity: .5;
}
.coming,
.c_btn.coming {
    pointer-events: none !important;
    background: #dedede !important;
    text-decoration: none !important;
        white-space: nowrap;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0) !important;
}

.c_btn.coming:hover {
    opacity: 1;
}
.coming::after,
.c_btn.coming::after {
        position: absolute;
    font-family: "LINE Seed JP", sans-serif;
    content: "2/12〜";
    display: block;
    color: #D92681;
    width: 100%;
    text-align: center;
    font-weight: 700;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
}

.c_btn.close,
.c_btn.closebtn {
    padding-right: 20px;
    background-color: #dedede;
    border-color: var(--basegray);
    color: #bcbcbc;
    pointer-events: none;
    text-decoration: none;
    position: relative;
}
#headerarea .c_btn.closebtn.exhibition_app {
    line-height: 1.2;
}
.c_btn.closebtn.exhibition_app::after {
    position: absolute;
  font-family: "LINE Seed JP", sans-serif;
    content: "受付締切";
    display: block;
    color: #2d2d2d;
    width: 100%;
    text-align: center;
    font-weight: 700;
    right: auto;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
}
.en .c_btn.closebtn.exhibition_app::after {
    font-family: "LINE Seed JP", sans-serif;
    content: "Application closed.";
}


.c_btn.close::before,
.c_btn.close::after {
    content: none;
}

.text_link {
    display: inline-block;
    position: relative;
    padding-right: 20px;
}

.text_link[download]::after,
.text_link::after {
    font-family: 'Material Symbols Outlined';
    font-weight: 700;
    font-size: 16px;
    color: inherit;
    display: inline-flex;
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
     text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}
.text_link[download]::after {
    content: 'download';
}
.text_link::after {
    content: 'ad_group';
}

/**/

.sp_only {
    display: none;
}

@media screen and (max-width: 767px) {
    .sp_only {
        display: block;
    }

    .pc_only {
        display: none;
    }
}

/**/

.mnt_att {
    display: inline-block;
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.c_sidebar .mnt_att {
    padding-left: 10px;
    padding-right: 10px;
}

.u_wh100p {
    width: 100% !important;
    height: auto !important;
}

.u_marginauto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.u_list li {
    text-indent: -0.7em;
    padding-left: 1em;
    margin-left: 1em;
}

/* scrollbox */

.scrollbox {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.scrollbox::-webkit-scrollbar {
    height: 10px;
}

.scrollbox::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
}

.scrollbox::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #17294B;
}

.scrollbox::-webkit-scrollbar-track-piece {
    background: #efefef;
}

/* リストドット共通スタイル */
.list_dod li {
    position: relative;
    padding-left: 1.5em;
}

.list_dod li::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50px;
    background-color: var(--ceatecblue);
}

.list_dod li li::after {
    top: 0.5em;
    left: 0.5em;
    width: 10px;
    height: 10px;
    border-radius: 0;
}

/* width size */

.wid10 {
    width: 10% !important;
}

.wid15 {
    width: 15% !important;
}

.wid20 {
    width: 20% !important;
}

.wid25 {
    width: 25% !important;
}

.wid30 {
    width: 30% !important;
}

.wid35 {
    width: 35% !important;
}

.wid40 {
    width: 40% !important;
}

.wid45 {
    width: 45% !important;
}

.wid50 {
    width: 50% !important;
}

.wid60 {
    width: 60% !important;
}

.wid70 {
    width: 70% !important;
}

.wid80 {
    width: 80% !important;
}

.wid90 {
    width: 90% !important;
}

.wid00 {
    width: 100% !important;
}

/* For margin */

.mgauto {
    margin-right: auto;
    margin-left: auto;
}

.mgt0 {
    margin-top: 0px !important;
}

.mgt5 {
    margin-top: 5px !important;
}

.mgt10 {
    margin-top: 10px !important;
}

.mgt15 {
    margin-top: 15px !important;
}

.mgt20 {
    margin-top: 20px !important;
}

.mgt25 {
    margin-top: 25px !important;
}

.mgt30 {
    margin-top: 30px !important;
}

.mgt35 {
    margin-top: 35px !important;
}

.mgt40 {
    margin-top: 40px !important;
}

.mgt45 {
    margin-top: 45px !important;
}

.mgt50 {
    margin-top: 50px !important;
}

.mgt55 {
    margin-top: 55px !important;
}

.mgt100 {
    margin-top: 100px !important;
}

.mgb0 {
    margin-bottom: 0px !important;
}

.mgb5 {
    margin-bottom: 5px !important;
}

.mgb10 {
    margin-bottom: 10px !important;
}

.mgb15 {
    margin-bottom: 15px !important;
}

.mgb20 {
    margin-bottom: 20px !important;
}

.mgb25 {
    margin-bottom: 25px !important;
}

.mgb30 {
    margin-bottom: 30px !important;
}

.mgb35 {
    margin-bottom: 35px !important;
}

.mgb40 {
    margin-bottom: 40px !important;
}

.mgb45 {
    margin-bottom: 45px !important;
}

.mgb50 {
    margin-bottom: 50px !important;
}

.mgb55 {
    margin-bottom: 55px !important;
}

.mgl0 {
    margin-left: 0px !important;
}

.mgl5 {
    margin-left: 5px !important;
}

.mgl10 {
    margin-left: 10px !important;
}

.mgl15 {
    margin-left: 15px !important;
}

.mgl20 {
    margin-left: 20px !important;
}

.mgl25 {
    margin-left: 25px !important;
}

.mgr0 {
    margin-right: 0px !important;
}

.mgr5 {
    margin-right: 5px !important;
}

.mgr10 {
    margin-right: 10px !important;
}

.mgr15 {
    margin-right: 15px !important;
}

.mgr20 {
    margin-right: 20px !important;
}

.mgr25 {
    margin-right: 25px !important;
}

/* For padding */

.pdt0 {
    padding-top: 0px !important;
}

.pdt5 {
    padding-top: 5px !important;
}

.pdt10 {
    padding-top: 10px !important;
}

.pdt15 {
    padding-top: 15px !important;
}

.pdt20 {
    padding-top: 20px !important;
}

.pdt25 {
    padding-top: 25px !important;
}

.pdt30 {
    padding-top: 30px !important;
}

.pdt35 {
    padding-top: 35px !important;
}

.pdt50 {
    padding-top: 50px !important;
}

.pdb5 {
    padding-bottom: 5px !important;
}

.pdb10 {
    padding-bottom: 10px !important;
}

.pdb15 {
    padding-bottom: 15px !important;
}

.pdb20 {
    padding-bottom: 20px !important;
}

.pdb25 {
    padding-bottom: 25px !important;
}

.pdb30 {
    padding-bottom: 30px !important;
}

.pdl5 {
    padding-left: 5px !important;
}

.pdl10 {
    padding-left: 10px !important;
}

/* 事務局のお知らせ */

.text-a-right {
    text-align: right !important;
}

.text-a-left {
    text-align: left !important;
}

.text-a-center {
    text-align: center !important;
}

/* 事務局からのお知らせレイアウト用 */

.txt-right {
    text-align: right !important;
    display: block !important;
}

.txt-left {
    text-align: left !important;
    display: block !important;
}

.txt-center {
    text-align: center !important;
    display: block !important;
}

.color-red {
    color: #b30828 !important;
}

.color-gray {
    color: var(--basegray) !important;
}

.color-white {
    color: #fff !important;
}

.color-black {
    color: #000 !important;
}

.font-bold {
    font-weight: 700;
    font-weight: bold !important;
}

.font-extrabold {
    font-weight: 800;
}

.font-italic {
    font-style: italic !important;
}

.font-strike {
    text-decoration: line-through !important;
}

.font-under {
    text-decoration: underline !important;
}

/* For width */

/* font size */

.text5 {
    font-size: 5px !important;
}

.text6 {
    font-size: 6px !important;
}

.text7 {
    font-size: 7px !important;
}

.text8 {
    font-size: 8px !important;
}

.text9 {
    font-size: 9px !important;
}

.text10 {
    font-size: 10px !important;
}

.text11 {
    font-size: 11px !important;
}

.text12 {
    font-size: 12px !important;
}

.text13 {
    font-size: 13px !important;
}

.text14 {
    font-size: 14px !important;
}

.text15 {
    font-size: 15px !important;
}

.text16 {
    font-size: 16px !important;
}

.text17 {
    font-size: 17px !important;
}

.text18 {
    font-size: 18px !important;
}

.text19 {
    font-size: 19px !important;
}

.text20 {
    font-size: 20px !important;
}

.text25 {
    font-size: 25px !important;
}

.text30 {
    font-size: 30px !important;
}

.text35 {
    font-size: 35px !important;
}

.text40 {
    font-size: 40px !important;
}

.text50 {
    font-size: 50px !important;
}

/* font text-align */

.txtrgterad {
    text-align: right !important;
}

.txtcenter {
    text-align: center !important;
}

/* 打ち消し */
.double_line {
    position: relative;
    display: inline-block;
}

.double_line::before,
.double_line::after {
    position: absolute;
    content: "";
    display: block;
    transform: rotate(0);
    background-color: red;
    width: 100%;
    height: 1px;
    left: 0;
}

.double_line::before {
    top: 55%;
}

.double_line::after {
    top: 42%;
}

/* float */

.innerLf {
    float: left;
}

.innerRf {
    float: right;
}

.listdod {
    list-style: disc;
}

.listdod li {
    margin-left: 1.5em;
    margin-top: 0.25em;
    line-height: 1.4;
}

.decimal {
    list-style: decimal;
    margin-bottom: 0.25em;
}

.decimal li {
    margin-left: 1.5em;
    margin-top: 0.25em;
}

/*規程用*/
.numlist {
    margin-left: 0.5em;
    margin-bottom: 0.25em;
}

.numlist li {
    text-indent: -1.8em;
    margin-top: 0.25em;
}

/*規程用 end*/
/* 数字 olリスト*/
.number_list {
    counter-reset: list-num;
}

.number_list li {
/*     display: flex;
 */
 text-indent: -1.7em;
 margin: 5px 0;
 margin-left: 1.7em;
    line-height: 1.5em;
}

.number_list li:before {
    text-indent: 0;
    counter-increment: list-num;
    content: counter(list-num);
    background: #00B1EB;
    display: inline-block;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 0.5em;
    font-weight: 700;
}
.number_list li li:before {
    counter-reset: list-num;
}
.number_list li .listdod li:before {
    counter-reset: list-num;
    content: "・";
    background: transparent !important;
    color: unset;
}
.number_list li .decimal li::marker {
    display: none;
}

.number_list li:not(:before) {
    width: 50px
}

.dspbl {
    display: block;
}

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

.indentbefore {
    padding-left: 1em;
    position: relative;
}

.indentbefore:before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}

.en_indentbefore {
    padding-left: 0.5em;
    position: relative;
}

.en_indentbefore:before {
    content: "*";
    position: absolute;
    left: 0;
    top: 0;
}

.note_indent {
    display: inline-block;
    padding-left: 2.9em;
    text-indent: -2.9em;
}

.notes_indent {
    /* sありの場合 */
    display: inline-block;
    padding-left: 3.5em;
    text-indent: -3.5em;
}

/* ページ内アンカーリンク用 */
.nav_ac,
.nav_link {
    display: flex;
    flex-wrap: wrap; /* アイテムが複数行にわたるようにする */
    justify-content: flex-start; /* 左寄せ */
    gap: 20px; /* アイテム間のスペース */
    padding: 0;
    margin: 0;
    list-style: none;
}
.nav_ac li,
.nav_link li {
    flex: 1 1 calc(33.333% - 20px); /* 基本幅を3分の1に設定し、余白を差し引く */
    box-sizing: border-box;
    margin-bottom: 5px;
  }
  
  /* 4つ目以降のアイテムに対して、伸びないように設定 */
  /* 250611~ 4つ目以降のアイテムサイズがずれてしまうので、nav_linkの方のみコメントアウト
  .nav_link li:nth-child(n+4) */
  .nav_ac li:nth-child(n+4){
    flex: 0 0 calc(33.333% - 20px); /* 固定幅 */
  }
  

  @media (max-width: 840px) {
    .nav_ac li,
    .nav_link li {
        flex: 1 1 calc(50% - 20px); /* 画面幅が800px以下の場合、2列に */
    }
    
    .nav_ac li:nth-child(n+4),
    /* .nav_link li:nth-child(n+4)  */{
        flex: 0 0 calc(50% - 20px); /* 4つ目以降も2列に */
      }
    }
  
  @media (max-width: 540px) {
    .nav_ac li,
    .nav_link li {
      flex: 1 1 100%; /* 画面幅が500px以下の場合、1列に */
    }
    
    .nav_ac li:nth-child(n+4),
    .nav_link li:nth-child(n+4) {
        flex: 0 0 100%; /* 4つ目以降も1列に */
      }
  }
  
.nav_ac li a,
.nav_link li a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    padding: 5px 25px 5px 0px;
    position: relative;
    transition: all 400ms ease;
    font-weight: 700;
    border-bottom: 1px solid var(--ceatecblue);
}

.nav_ac li a:hover,
.nav_link li a:hover {
    background-color: var(--ceatecblue);
    color: #fff;
}

.nav_ac li a::after,
.nav_link li a::after {
    font-family: 'Material Symbols Outlined';
    content: "arrow_right_alt";
    display: inline-flex;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-size: 16px;
    transition: all 400ms ease;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
}
.nav_link li a:hover {
    padding: 5px 25px 5px 10px;
}

.nav_link li a:hover:after {
    right: 2px;
}

/* 250826追加 */
/* 共通 */
.nav_link {
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    padding:0;
    margin:0;
    list-style:none;
}

.nav_link li {
    flex: 0 0 calc((100% - 40px) / 3);
    box-sizing:border-box;
    margin-bottom:5px;
}

@media (max-width: 840px) {
    .nav_link li {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 540px) {
    .nav_link li {
        flex: 0 0 100%;
    }
}



/* ======= unc_list ========= */

.unc_list {
	display: flex;
	flex-wrap: wrap;
	width: max-content;
	max-width: 100%;
	justify-content: center;
	gap: 0 10px;
	margin: auto;
	transition: all .3s;
    margin-top: 50px;
}

.unc_list li {
	width: max-content;
}

.unc_list li a {
	margin-bottom: 8px;
	display: block;
	color: var(--ceatecblue);
	font-weight: bold;
    font-weight: 700;
	text-decoration: none;
	line-height: 1;
	border-bottom: 1px solid;
	padding: 5px 15px 5px 0px;
	position: relative;
	transition: all .3s;
    font-size: 83%;
}

.unc_list li a::after {
	font-family: 'Material Symbols Outlined';
	content: "arrow_right_alt";
	display: inline-flex;
	vertical-align: middle;
	position: absolute;
	right: -5px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg); /* 90度回転を追加 */
	-webkit-transform: translateY(-50%) rotate(90deg); /* 古いブラウザ対応 */
	-ms-transform: translateY(-50%) rotate(90deg); /* 古いIE対応 */
	font-size: 16px;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	transition: all .3s;
}
.unc_list li a:hover::after {
	top: 60%;
}

.unc_list.fixed {
	position: fixed;
	margin-top: 0px !important;
	top: 55px;
	left: 0;
	width: 100%;
	background: rgb(255 255 255 / 90%);
	z-index: 50;
}

.unc_list.no-fixed {
	position: static!important;
}

.unc_list.fixed li + li {
	margin-left: 0;
}

.unc_list.fixed li a {
	margin-bottom: 0;
	border-bottom: none;
	padding: 10px 40px 10px 25px;
}

.unc_list.fixed li a::after {
	right: 20px;
}

.unc_list.fixed li a:hover {
	opacity: 1;
	background-color: #3170a9;
	color: #fff;
}

@media screen and (max-width: 1300px) {
	.unc_list.fixed {
		top: 53px;
	}
}

@media screen and (max-width: 1020px) {
	.unc_list.fixed {
		top: 55px;
	}
}

@media screen and (max-width: 880px) {
	#why .nav_right.appnav {
		top: 120px;
	}
}

@media screen and (max-width: 640px) {
	#why .nav_right.appnav {
		top: 120px;
	}
	.unc_list.fixed li a {
		padding: 10px 30px 10px 10px;
	}
	.unc_list.fixed li a::after {
		right: 10px;
	}
}

@media screen and (max-width: 480px) {
	#why .nav_right.appnav {
		top: 140px;
	}
	.unc_list {
		max-width: 100%;
		justify-content: space-between;
		margin-top: 30px !important;
	}
	.unc_list.fixed {
		max-width: 100%;
		justify-content: space-between;
	}
	.unc_list li {
        width: calc(50% - 10px);
	}
	.unc_list.fixed li {
		width: 50%;
	}
	.unc_list.fixed li a {
		padding: 8px 10px 8px 25px;
	}
	.unc_list.fixed li a::after {
		right: unset;
		left: 5px;
	}
}

/* about01ページのみ640px以下でunc_list fixedを無効化 */
@media screen and (max-width: 640px) {
	.why-about01 .unc_list.fixed {
		position: static !important;
		top: auto !important;
		background: transparent !important;
		box-shadow: none !important;
	}
}

/*.index_unit*/

.index_unit li{
    margin-top: 3em;
}
.index_unit li a{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
    background-color: #fff;
    z-index: 1;
    transition:transform 0.5s ease, box-shadow 0.5s ease
}
.index_unit li a:hover,
.index_unit li a:focus  {
  transform: scale(1.01);
}
.index_unit li a:hover::after{
    content: "";
    display: block;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    position: absolute;
    top: -20px;
    left: -20px;
    border: 5px solid #efefef;
    background-color: rgb(14, 27, 71, 0.02);
}
.index_unit li a> *{
    width: 60%;
}
.index_unit li a> figure{
    width: 35%;
    position: relative;
    overflow: hidden;
}
.index_unit li a figure img{
    position: absolute;
    object-fit: cover;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.l_container .index_unit li a h3 {
    margin-top: 0;
    background-color: #fff;
}
.l_container .index_unit li a .c_btn {
    margin-top: 1em;
}

.l_container .index_unit li a:hover .c_btn {
    background-color: var(--ceatecblue);
    color: #fff;
  }
@media screen and (max-width: 640px) {
    .index_unit li a{
        display: block;
    }
    .index_unit li a:hover::after{
        content: "";
        display: block;
        width: calc(100% + 20px);
        height: calc(100% + 40px);
        position: absolute;
        top: -20px;
        left: -10px;
        border: 5px solid #efefef;
        background-color: rgb(14, 27, 71, 0.02);
    }
    .index_unit li a> *{
        width: 100%;
    }
    .index_unit li a> figure{
        width: 100%;
        margin-top: 30px;
        height: 120px;
    }
}

/* Section block (site-wide) */
.c_section_block {
    margin-top: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    /* border: 1px solid rgba(255, 255, 255, 0.85); */
    border-radius: 24px;
    box-shadow: 
inset 2px 2px 1px 0 rgba(255, 255, 255, 0.1),
        inset -2px -2px 2px 1px rgba(255, 255, 255, 0.3),
        0 4px 8px 0 rgba(0, 0, 0, 0.05),
        0 6px 20px 0 rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
    padding: 0 32px 30px;
    color: #1f2b45;
    user-select: text;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.5);
}

.c_section_block > * {
    position: relative;
    z-index: 1;
}

.c_section_block::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -12%;
    left: -8%;
    width: 116%;
    height: 60%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    pointer-events: none;
    /* mix-blend-mode: screen; */
}

.c_section_block::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 6%;
    right: -20%;
    width: 60%;
    height: 40%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
    pointer-events: none;
    /* mix-blend-mode: screen; */
}

.c_section_block table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.c_section_block th,
.c_section_block td {
    padding: 16px;
    vertical-align: top;
    border: 1px solid #c7c7c7;
}

.c_section_block th {
    width: 22%;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid #c7c7c7;
    color: #1a2740;
    letter-spacing: 0.02em;
    /* white-space: nowrap; */
}

.c_section_block td {
    width: 78%;
    color: #212f4a;
    line-height: 1.8;
}

/* .c_section_block tr:last-child th,
.c_section_block tr:last-child td {
    border-bottom: none;
} */

/* Table */

.tb_style {
    width: 100%;
    border-collapse: collapse;
}

.tb_style td {
    width: 80%;
    padding: 1em;
}

.tb_style th {
    width: 20%;
    padding: 1em;
    text-align: left;
    font-weight: 700;
}

/* .tb_style tr:last-child th, .tb_style tr:last-child td {
    border-bottom: none;
} */

.c_section_block .flex_unit {
    width: 100%;
    /* align-items: center; */
    gap: 20px;
}

/* /ad/ 配下専用 */
.ad_support .c_section_block .flex_unit {
    align-items: flex-start;
}

.c_section_block .flex_unit .width80 {
    flex: 1 1 55%;
}

.c_section_block .flex_unit figure {
    width: 45%;
    flex: 0 0 40%;
    border-radius: 16px;
    overflow: hidden;
}

.c_section_block .flex_unit figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1020px) {
    .c_section_block .flex_unit {
        display: block;
    }
    .c_section_block .flex_unit figure {
        width: 90%;
        margin-top: 4%;
    }
    .c_section_block th {
        display: block;
        width: 100%;
        padding-bottom: 0;
    }
    .c_section_block td {
        display: block;
        width: 100%;
    }
    .c_section_block table .c_btn {
        max-width: 90%;
    }
}

@media screen and (max-width: 880px) {
    .c_section_block th,
    .c_section_block td {
        padding: 20px 22px;
    }
}

@media screen and (max-width: 640px) {
    .c_section_block {
        border-radius: 18px;
    }
    .c_section_block th {
        width: 100%;
        white-space: normal;
    }
    .c_section_block td {
        width: 100%;
    }
    .c_section_block .flex_unit {
        gap: 16px;
    }
    .c_section_block .flex_unit figure {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 375px) {
    .c_section_block span.pdl10{
        display: block;
        padding-left: 0 !important;
    }
}


.flex_unit {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.flex_unit img {
    width: 100%;
}

@media screen and (max-width: 640px) {
    .flex_unit {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/*背景カラー*/
span.new {
    display: inline-block;
    background-color: var(--pickup);
    border-radius: 20px;
    color: #fff;
    padding: 2px 7px;
    font-size: 12px;
    margin-left: 5px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    bottom: initial !important;
    margin-bottom: 20px;
}

.slick-dots li {
    width: 50px !important;
    height: 50px !important;
    margin: 0 !important;
}

.slick-dots li button {
    width: auto !important;
    height: auto !important;
    position: relative;
    text-indent: -9999px;
    border: none;
    background-color: transparent;
}

.slick-dots li button:before {
    content: '●';
    font-size: 50px;
    text-indent: 0px;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--ceatecblue);
}

.slick-dots .slick-active button:before {
    color: #3170a9;
}

.slick-slider .slide-arrow {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    background-color: transparent;
}

.slick-slider .prev-arrow {
    left: -40px;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 25px solid #113463;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.slick-slider .next-arrow {
    right: -40px;
    width: 0;
    height: 0;
    border-right: 0 solid transparent;
    border-left: 25px solid #113463;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}


/* font weight */

.txtnl {
    font-weight: normal;
}

.imgbox img {
    width: 100%;
}

#news .l_main_article img {
    width: 100%;
}

/* h3 h4 h5 h6 */

.l_container h3 {
    position: relative;
    font-size: 24px;
    margin-bottom: 0.75em;
    margin-top: 1em;
    font-weight: 800;
    color: #313131;
}

.l_container h3 span {
    font-size: 1.6rem;
}

.l_container p+h3, .l_container ul+h3, .l_container ol+h3 {
    margin-top: 50px;
}

.l_container h4 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-size: 22px;
    font-weight: 800;
    color: var(--ceatecblue);
}

.l_container h4 span {
    -webkit-text-fill-color: currentColor !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.l_container h4 .big {
    color: var(--pickup) !important;
}

.l_container h4 .lightyel_bg {
    color: var(--ceatecblue) !important;
    background: linear-gradient(transparent 70%, rgba(255, 228, 0, 0.41) 70%) !important;
}

.l_container h4 .lightyel_bg.big {
    font-weight: 800;
    color: var(--pickup) !important;
}

.l_container .btn {
    display: inline-block;
}

.l_container h5 {
    margin-top: 0.75em;
    margin-bottom: 0.5em;
    font-size: 18px;
    font-weight: 800;
    color: var(--ceatecblue);
}

.l_container h6 {
    margin-top: 0.75em;
    margin-bottom: 0.5em;
    font-size: 16px;
    font-weight: 700;
    color: var(--ceatecblue);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ceatecblue);
}


/*  */

/* news press releases */

#news .text-a-left {
    text-align: left !important;
}

#news .text-a-center {
    text-align: center !important;
}

#news .text-a-right {
    text-align: right !important;
}

#news .l_main_article .dpb {
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
}

#news .l_main_article .txt {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 0;
}


#news .l_main_article .c_spec_detail {
    margin-top: 5px;
    font-size: 12px;
}

#news .pager {
    text-align: center;
    margin: 0 0 20px;
}

#news .pager li {
    display: inline-block;
    text-align: right;
    padding-left: 2px;
}

#news .pager li a {
    display: block;
    padding: 15px 20px;
    color: var(--ceatecblue);
    text-align: center;
    text-decoration: none;
    background-color: #eeeeee;
    border: 1px solid #ddd;
    border-radius: 50%;
}

#news .pager li a:hover {
    color: #fff;
    background-color: var(--ceatecblue);
}

#news .pager li a.current {
    background-color: #ddd;
    border: 1px solid #bbb;
    color: #333;
}


/*movie wp*/

.movie-rs {
    position: relative;
    padding-bottom: 56.25%;
    /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
}

.movie-rs iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.experience_grid .c_btn {
    font-size: 83%;
    width: 90%;
    margin-bottom: 10px;
  }
  