@charset "utf-8";

/**********************************************
** Site Name: DXお役立ち資料 一覧
** Description: DXお役立ち資料 一覧 CSS
**********************************************/

/*-------------------------------------------*/
/*  CONTENTS:
/*--------------------------------------------
1.0 - リセット
2.0 - 汎用スタイル
    2.1 - カラム
    2.2 - 見出し
    2.3 - テキスト
    2.4 - テキスト装飾
3.0 - ヘッダー
    3.1 - グローバルナビ
4.0 - パンくずリスト
5.0 - フッター
    5.1 - ナビゲーション
6.0 - メインビジュアル
7.0 - ログイン/会員登録
8.0 - セミナー概要
9.0 - セミナーリスト
    9.1 - 詳細ページ
    9.2 - 一覧ページ
10.0 - ボタン
11.0 - 監修
12.0 - 検索窓
13.0 - ページャー
14.0 - セミナー一覧ページ
15.0 - 掲載のお知らせ
---------------------------------------------*/

/*-------------------------------------------*/
/*  1.0 - リセット
/*-------------------------------------------*/
abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}table{border-collapse:collapse;border-spacing:0}hr{border:0}

.container{
  max-width: 100%;
  padding: 0;
}
/*-------------------------------------------*/
/*  2.0 - 汎用スタイル
/*-------------------------------------------*/

html { font-size: 62.5%;}
body {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}
a {
  text-decoration: none;
  color: #01699F;
  transition: .2s linear;
}
li { list-style: none;}
div, ul, li, a { box-sizing: border-box;}

/*  2.1 - カラム
/*-------------------------------------------*/

.box {
    width: 100%;
    max-width: 1120px;
    box-sizing: border-box;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/*  2.2 - 画像
/*-------------------------------------------*/

.image {
  width: 100%;
  vertical-align: bottom;
}

/*-------------------------------------------*/
/*  3.0 - ヘッダー
/*-------------------------------------------*/

header {
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: #E5E5E5 1px solid;
  background: #fff;
}
header .logo {
  display: flex;
  align-items: center;
  float: left;
}
header .logo a { display: block;}
header .logo img {
  width: 100%;
  vertical-align: bottom;
}
header nav { float: right;}

@media screen and (max-width:767px) {
  header {
    height: 60px;
    padding-left: 10px;
    padding-right: 0;
  }
  header .logo {
    width: 97px;
    height: 60px;
  }
}

@media screen and (min-width:768px) {
  header {
    height: 70px;
    padding-left: 40px;
    padding-right: 40px;
  }
  header .logo { 
    width: 100px;
    height: 70px;
  }
}

.breadcrumbs{
  margin-left: calc(50% - 50vw);
}

/*  3.1 - グローバルナビ
/*-------------------------------------------*/

.gnav { position: relative;}
.gnav_hidden { display:none!important;}
.gnav .gnav_main .gnav_bottom_close { padding: 0 10px;}
.gnav .gnav_main .gnav_bottom_close label {
  width: 90%;
  height: 44px;
  display: block;
  box-sizing: border-box;
  margin: 0 auto 50px;
  padding: 9px 0 3px;
  border: #b3b3b3 1px solid;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  font-size: 1.5rem;
}
#gnav_switch:checked ~ .gnav_bg_close {
  display: block;
  opacity: .5;
}
#gnav_switch:checked ~ .gnav_main {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.gnav .gnav_list li a { font-weight: bold;}
.gnav .gnav_list .listButton {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border-radius: 4px;
  background: #4CB6CF;
  box-shadow: 0 0 4px #C9C9C9;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}
.gnav .gnav_list .register {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px!important;
  border-radius: 4px;
  background: #FD6F6A;
  box-shadow: 0 0 4px #C9C9C9;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}
.gnav .gnav_list .listButton.off {
  border: #9D9D9D 1px solid;
  background: #FFF;
  box-shadow: none;
  color: #414141;
}

@media screen and (max-width:767px) {
  .gnav .gnav_main {
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
  }
  .gnav_open { float: right;}
  .gnav_open, .gnav_close { display: block;}
  
  /* ハンバーガーアイコン */
  .gnav label.gnav_open {
    width: 60px;
    height: 60px;
    display: block;
    box-sizing: border-box;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
  }
  .gnav .gnav_open span,
  .gnav .gnav_open span:before,
  .gnav .gnav_open span:after {
    height: 2px;
    width: 25px;
    position: absolute;
    top: 20px;
    border-radius: 3px;
    background: #333;
    display: block;
    content: '';
  }
  .gnav .gnav_open span:before { top: 8px;}
  .gnav .gnav_open span:after { top: 16px;}
  .gnav .gnav_list ul:nth-child(1) {
    height: 60px;
    box-sizing: border-box;
    overflow: hidden;
    border-bottom: #9D9D9D 1px solid;
    background: #fff;
    padding: 0 10px;
  }
  .gnav .gnav_list ul:nth-child(1) li {
    height: 60px;
    display: flex;
    align-items: center;
  }
  .gnav .gnav_list ul:nth-child(1) li:nth-child(1) { float: left;}
  .gnav .gnav_list ul:nth-child(1) li:nth-child(1) a {
    width: 97px;
    height: 45px;
    display: block;
    box-sizing: border-box;
  }
  .gnav .gnav_list ul:nth-child(1) li:nth-child(1) a img { width: 100%;}
  .gnav .gnav_list ul:nth-child(1) li:nth-child(2) { float: right;}
  .gnav .gnav_list ul:nth-child(2) {
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 20px 0 30px;
  }
  .gnav .gnav_list ul:nth-child(2) li { 
      width: 90%;
      margin: 0 auto 20px;
    }
  .gnav .gnav_list ul:nth-child(2) li a {
    width: 100%;
    display: block;
    padding: 15px 0;
  }
  .gnav .gnav_list .gnav_btn_close {
    width: 30px;
    height: 60px;
    box-sizing: border-box;
    background: url("../images/common/ico_gnav_close.webp") no-repeat center;
    background-size: 30px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
  }
  .gnav .gnav_main label.gnav_bottom_close {
    width: 50%;
    height: 44px;
    display: block;
    box-sizing: border-box;
    margin: 0 auto 50px;
    padding: 9px 0 3px;
    border: #b3b3b3 1px solid;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    font-size: 1.5rem;
  }  
}

@media screen and (min-width:768px) {
  .gnav_open, .gnav_close { display: none;}
  .gnav .gnav_list ul {
    float: left;
  }
  .gnav .gnav_list ul:nth-child(1) { display: none;}
  .gnav .gnav_list li {
    height: 70px;
    box-sizing: border-box;
    float: left;
    padding: 15px 20px 15px 0;
    font-size: 1.3rem
  }
  .gnav .gnav_list ul:nth-child(2) li:last-child { padding-right: 0;}
  .gnav .gnav_list li a {
    height: 40px;
    display: block;
    box-sizing: border-box;
    padding: 15px 0;
    color: #333;
  }
  .gnav .gnav_list ul:nth-child(2) li a.listButton:hover {
    opacity: 0.5;
  }
  .gnav .gnav_list ul:nth-child(2) li a.listButton.off:hover {
    background: none; 
    color: #414141;
    opacity: 0.7;
  }
  .gnav .gnav_list .listButton {
    width: 100px;
  }  
}
@media screen and (min-width:960px) {
  .gnav .gnav_list li {
    font-size: 1.5rem
  }
}

/*-------------------------------------------*/
/*  4.0 - パンくずリスト
/*-------------------------------------------*/

.breadcrumbs {
  height: 45px;
  box-sizing: border-box;
  background: #F1F1F1;
  font-size: 1.1rem;
}
.breadcrumbs ol {
  width: 1080px;
  max-width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  flex: 1 0 0%;
  box-sizing: border-box;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
.breadcrumbs ol li {
  position: relative;
  margin-right: 20px;
  white-space: nowrap;
}
.breadcrumbs ol li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}
.breadcrumbs ol li:nth-child(1) {
  background: url("../../images/common/ico_breadlist.webp") no-repeat top 50% left 0;
  padding-left: 20px;
}
.breadcrumbs ol li a { text-decoration: underline;}
.breadcrumbs ol li a:hover {
  text-decoration: none;
  color: #2fa4e7;
}
.breadcrumbs ol li::before,
.breadcrumbs ol li::after {
  position: absolute;
  top: 10px;
  right: -15px;
  display: block;
  content: '';
  width: 7px;
  height: 2px;
  background: #8D8686;
  border-radius: 4px;
}
.breadcrumbs ol li::before {
  margin-top: -3px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadcrumbs ol li::after {
  margin-top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.breadcrumbs ol li:last-child { margin-right: 0;}
.breadcrumbs ol li:last-child::before,
.breadcrumbs ol li:last-child::after {
  width: 0;
  content: "";
}

@media screen and (max-width:959px) {
  .breadcrumbs {
    width: 100%;
    box-sizing: border-box;
  }
  .breadcrumbs ol {
    display: flex;
    flex: 1 0 0%;
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    padding-left: 10px;
    padding-right: 10px;
  }
  .breadcrumbs li {
    white-space: nowrap;
  }
  
}

@media screen and (min-width:960px) {
  .breadcrumbs ol li { font-size: 1.4rem;}
}

/*-------------------------------------------*/
/*  5.0 - フッター
/*-------------------------------------------*/

.footer {
    padding-top: 60px;
}
.footer .copyright {
    box-sizing: border-box;
    background: #272727;
    padding: 25px 0;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
}

/*-------------------------------------------*/
/*  6.0 - 見出し帯
/*-------------------------------------------*/
.page_title {
    height: 170px;
    box-sizing: border-box;
    background: url("../../images/common/bg_main.png") no-repeat center center;
    background-size: cover;
}
.title_block {
    height: 170px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}
.main_title {
    display: inline-block;
    border-radius: 3px;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 3px 10px;
    color: #00659C;
}
.subtitle {
    font-weight: 700;
    color: #fff;
}
.subtitle .str {
    color: #FFFF1C;
}

@media screen and (max-width:767px) {
    .page_title {
        background-position: top 0 right 0;
    }
    .title_block {
       text-align: center;
    }
    .main_title {
        font-size: 2.4rem;
        font-weight: bold;
    }
}

@media screen and (min-width:768px) {
    .main_title {
        font-size: 3.2rem;
        font-weight: bold;
    }
    .subtitle {
        font-size: 1.7rem;
    }
}

/*-------------------------------------------*/
/*  7.0 - 検索
/*-------------------------------------------*/

.search {
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #EFF3F8;
    margin-bottom: 40px;
    padding: 40px 20px;
}
.search_keyword {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 20px 25px;
    margin-bottom: 30px;
}
.search_title {
    font-weight: 700;
}
.search_form {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}
.search_form input {
    border: 1px solid #707070;
    border-radius: 3px 0 0 3px;
    box-sizing: border-box;
    background-color: #fff;
    outline: none;
    font-size: 1.6rem;
}
.search_form input::placeholder {
    color: #aaa;
}
.search_form button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0 3px 3px 0;
    background-color: #00659C;
    color: #fff;
    font-weight: 700;
    transition: .2s linear;
}
.search_form button:hover {
    opacity: 0.7;
}
.search_tag {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 20px 40px;
}
.search_tag_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
}
.search_tag_list>li>a {
    display: inline-block;
    border: #01699F 1px solid;
    border-radius: 30px;
    background-color: #fff;
    padding: 5px 20px;
}
.search_tag_list>li>a:hover {
    background-color: #01699F;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .search {
        padding: 20px;
    }
    .search_keyword {
        flex-direction: column;
    }
    .search_tag {
        align-items: center;
        flex-direction: column;
    }
    .search_title { font-size: 1.7rem;}
    .search_form {
        width: 100%;
    }
    .search_form label {
        width: 100%;
    }
    .search_form input {
        width: 100%;
        height: 50px;
        padding-left: 15px;
    }
    .search_form button {
        width: 20%;
        height: 50px;
        font-size: 1.5rem;
    }
}
@media screen and (min-width: 768px) {
    .search_title { font-size: 1.8rem;}
    .search_form input {
        width: 100%;
        width: 460px;
        height: 50px;
        padding: 5px 15px;
        border: 1px solid #707070;
        border-radius:4px 0 0 4px;
        box-sizing: border-box;
        background-color: #fff;
        outline: none;
        font-size: 1.8rem;
    }
    .search_form button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 120px;
        height: 50px;
        border: none;
        border-radius: 0 4px 4px 0;
        background-color: #00659C;
        color: #fff;
        font-weight: bold;
        font-size: 2.0rem;
        cursor: pointer;
    }
    .search_tag .search_title {
        padding-top: 5px;
    }
    .search_tag_list {
        width: 100%;
        width: 580px;
    }
    .search_tag_list>li>a { font-size: 1.8rem;}
}

/*-------------------------------------------*/
/*  8.0 - ページャー
/*-------------------------------------------*/

.pager_title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.7rem;
}
.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    list-style-type: none;
    margin-bottom: 40px;
    padding: 0;
    font-size: 2.2rem;
    font-weight: bold;
}
.pager .prev a,
.pager .next a {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    border-radius: 4px;
}
.pager li>a:hover {
    border-radius: 4px;
    background-color: #00659C;
    color: #fff;
}
.pager .arrow_r {
    position: relative;
    display: inline-block;
    width: 8.2px;
    height: 12.5px;
}
.pager .arrow_r::before,
.pager .arrow_r::after {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    left: 0;
    right: 0;
    width: 10px;
    height: 3px;
    border-radius: 9999px;
    background-color: #272727;
    transform-origin: calc(100% - 1.5px) 50%;
    margin: 0 auto;
}
.pager .arrow_r::before {
  transform: rotate(45deg);
}
.pager .arrow_r::after {
  transform: rotate(-45deg);
}
.pager .arrow_l {
  position: relative;
  display: inline-block;
  width: 8.2px;
  height: 12.5px;
}
.pager .arrow_l::before,
.pager .arrow_l::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  left: 0;
  right: 0;
  width: 10px;
  height: 3px;
  border-radius: 9999px;
  background-color: #272727;
  transform-origin: 1.5px 50%;
  margin: 0 auto;
}
.pager .arrow_l::before {
  transform: rotate(45deg);
}
.pager .arrow_l::after {
  transform: rotate(-45deg);
}
.pager .arrow_r:hover::before,
.pager .arrow_r:hover::after,
.pager .arrow_l:hover::before,
.pager .arrow_l:hover::after {
    border-radius: 4px;
    background-color: #fff;
}
.pager a,
.pager span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    color: #272727;
}
.pager a:not(:hover) {
    text-decoration: none;
}
.pager .current span {
    border-radius: 4px;
    background-color: #00659C;
    color: #fff;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .pager {
        font-size: 1.8rem;
    }
}

/*-------------------------------------------*/
/*  9.0 - 一覧
/*-------------------------------------------*/

.dx_box {
    background-color: #EFF3F8;
    margin-bottom: 40px;
    padding: 40px 20px 80px;
}
.dx_list {
    width: 100%;
    max-width: 1080px;
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));*/
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px 15px;
    margin: 0 auto;
}
.dx_list li {
    border-radius: 6px;
    box-shadow: 0 0 8px #BBC0CE;
    background-color: #fff;
}
.dx_list li a {
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-bottom: 15px;
    color: #272727;
}
.dx_list .thumbnail {
    overflow: hidden;
    position: relative;
    z-index: 10;
    border-bottom: #E6E6E6 1px solid;
    margin-bottom: 15px;
}
.dx_list .thumbnail img {
    border-radius: 6px 6px 0 0;
    vertical-align: bottom;
    transition: .2s linear;
}
.dx_list .thumbnail img:hover {
    transform: scale(1.1);
}
.dx_list .tag_list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 3px;
    position: relative;
    z-index: 20;
    margin-bottom: 15px;
    padding: 0 15px;
}
.dx_list .tag_list span {
    display: inline-block;
    border: #9D9D9D 1px solid;
    border-radius: 40px;
    padding: 2px 20px;
    font-size: 1.3rem;
}
.dx_list .title {
    height: 85px;
    margin-bottom: 20px;
    padding: 0 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.5;
    font-weight: 700;
    transition: .2s linear;
}
.dx_list .company {
    margin-top: auto;
    margin-bottom: 10px;
    padding: 0 15px;
    font-weight: 500;
    font-size: 1.3rem;
}

.dx_list .endTitle {
    margin-top: auto;
    margin-bottom: 10px;
    padding: 0 15px;
    font-weight: 500;
    font-size: 1.3rem;
    color: red;
}

.dx_list .listButton {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: #EE1246;
    margin-left: 15px;
    margin-right: 15px;
    padding: 10px 15px;
    font-weight: 700;
    color: #fff;
    transition: .2s linear;
}
.dx_list li a:hover .title {
    color: #00659C;
}
.dx_list li a:hover .listButton {
    opacity: 0.5;
}

@media screen and (min-width:768px) {
    .dx_list .title { font-size: 1.8rem;}
    .dx_list .listButton { font-size: 1.8rem;}
}
@media screen and (max-width:767px) {
    .dx_box {
        padding-left: 30px;
        padding-right: 30px;
    }
    .dx_list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .dx_list .listButton { font-size: 1.7rem;}
}

/* Pick up 表示 */
.pickup {
    background-color: #FFFBE5;
    margin-bottom: 40px;
    padding: 20px 20px;
}
.pickup .dx_list li {
    position: relative;
    border: #E9DA8B 1px solid;
    box-shadow: 0 0 8px #D4CB9C;
}
.pickup .ico_pickup {
    position: absolute;
    top: -12px;
    right: 8px;
    z-index: 30;
    animation: float-bubble 0.8s ease-in-out infinite alternate-reverse;
}
@keyframes float-bubble {
  0% {transform: translateY(-6%);}
  100% {transform: translateY(6%);}
}

@media screen and (max-width:767px) {
    .pickup {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/*-------------------------------------------*/
/*  10.0 - 掲載のお知らせ
/*-------------------------------------------*/

.contact {
    height: 250px;
    text-align: center;
    background: url("../../images/common/bg_contact.png") no-repeat center center;
    background-size: cover;
}
.contact a {
    width: 100%;
    max-width: 420px;
    display: inline-block;
    border-radius: 30px;
    background-color: #00659C;
    margin-top: 30px;
    padding: 15px 0;
    color: #fff;
}
.contact a:hover {
    transform: scale(0.95);
}
.contact a span {
    position: relative;
    display: inline-block;
    background: url("../../images/common/ico_mail.webp") no-repeat top 50% left 0;
    background-size: 32px 25px;
    padding-left: 45px;
    padding-right: 45px;
}
.contact span.arrow_r::before,
.contact span.arrow_r::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 10px;
  width: 14px;
  height: 3px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1.5px) 50%;
}
.contact span.arrow_r::before {
  transform: rotate(45deg);
}
.contact span.arrow_r::after {
  transform: rotate(-45deg);
}
@media screen and (min-width:768px) {
    .contact {
        box-sizing: border-box;
        padding: 60px 20px;
    }
    .contact .txt { font-size: 1.6rem;}
    .contact a { font-size: 1.8rem;}
}
@media screen and (max-width:767px) {
    .contact {
        border-top: 1px solid #DCDCDC;
        background-position: center right -300px;
        padding: 30px 20px;
    }
    .contact .txt { font-size: 1.4rem;}
    .contact a { font-size: 1.5rem;}
}



footer{
  margin-top: 0!important;
  background-color: black;
  color: white;
}

footer a{
  color: white;
}

#headerLoginButton:hover{
  cursor: pointer;
}