@charset "UTF-8";

/* ============= 
foundation
============= */

/*リセットCSS*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  box-sizing:border-box;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
ol, ul {
  list-style: none;
}
address{
  font-style:normal;
}
a{
  text-decoration:none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img,canvas,svg,iframe{
  max-width:100%;
  height:auto;
  vertical-align:top;
}
input{
  background-color:transparent;
}

/*初期設定CSS*/
:root{
  color:#333;
  font:400 14px "Helvetica Neue", "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  line-height:1.6;
  letter-spacing:.1em;
/* CSS変数 カラー*/
  --color__blue1:#0071BC;
  --color__blue2:#16488B;
  --color__green1:#139b82;
  --color__red1:#E6002D;
  --color__red2:#be0533;
  --color__red3:#800019;
  --color__pink1:#FA8589;
  --color__gray1:#f3f3f3;
  --gradation__yellow:linear-gradient(#ffb43f, #e97800, #ffb43f);
  --gradation__blue:linear-gradient(#1661C1, #052A5A);
  --gradation__pink:linear-gradient(90deg, crimson 10%, mediumvioletred 60%, deeppink 100%);
}


/* ============= 
layout
============= */
/* 全体ラッパー */
.l_wrapper{
  width:980px;
  margin:0 auto;
}
/* ヘッダー */
.l_header{
  top: 0;
  position: sticky;
  z-index: 999;
  background-color: #fff;
}

/* コンテンツ */
.l_contents{
  display: flex;
  justify-content:space-between;
  margin: 0;
}
@media screen and (max-width: 768px){
  .l_contents{
    display: block;
  }
}

/* メインコンテンツ */
.l_mainContents{
  order: 1;
}
.l_mainContents--1col{
  width: 980px;
}
.l_mainContents--2col{
  width: 730px;
}
.l_mainContents--3col{
  width: 500px;
}
@media screen and (max-width: 768px){
  .l_mainContents{
    width: 100%;
  }  
}

/* サイドナビコンテンツ */
.l_sideNav{
  width: 200px;
}
.l_sideNav--right{
  order: 2;
}

@media screen and (max-width:768px){
  .l_wrapper{
    width:95%;
  }
  .l_contents{
    margin: 0;
  }
  .l_sideNav{
    display: none;
  }
}

/* =============
component
============= */

/*ナビゲーション*/
.c_nav{
  display: flex;
  align-items: stretch;
}
.c_nav2{
  display: flex;
  align-items: stretch;
}
.c_nav.c_nav--footer{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
}
.c_nav__item{
  display: flex;
  width: 100%;
}
.c_nav__target{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: inherit;
}
.c_nav--global{}
.c_nav--global .c_nav__item{
  border: 1px solid #fff;
}
.c_nav--global .c_nav__target{
  height: 30px;
  font-size: 14px;
  background: #f0f0f0;
  color: #525252;
  font-weight: bold;
}
.c_nav--global .c_nav__target:hover{
  background: #e6002d;
  color: #fff;
}
.c_nav--footer{
  margin: -4px;
}
.c_nav--footer > .c_nav__item{
  width: auto;
  padding: 4px 12px;
}
.c_nav--footer .c_nav__target{
  letter-spacing: 0;
  font-size: 16px;
}

.c-nav {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.c-nav li {
  border-right: 1px solid #333333;
}
.c-nav li:last-child {
  border-right: none;
}
.c-nav li a {
  color: #333333;
  padding: 0 2em;
}

.showGnav-enter,
.showGnav-leave-to{
  transform: translateY(calc(-100% - 100px));
}
.showGnav-enter-active,
.showGnav-leave-active{
  transition: .5s transform;
}
@media screen and (max-width: 768px){
  .c_nav--global{
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
  }
  .c_nav--global > .c_nav__item{
    width: 50%;
  }
  .c_nav--footer{
    flex-wrap: wrap;
    width: 100%;
    margin: -1px;
  }
  .c_nav--footer > .c_nav__item{
    width: 50%;
    padding: 1px;
  }
  .c_nav--footer .c_nav__target{
    height: 30px;
    background: #666;
    color: #fff;
    font-size: 12px;
  }
  .c-nav li a {
    padding: 0 1em;
  }
}

/*グリッド*/
.c_grid{
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.c_grid__item{
  display: block;
}
.c_grid__inner{
  display: block;
  width: 100%;
}
.c_grid__item--hasInner{
  display: flex;
}
.c_grid--address{
  margin: -8px;
}
.c_grid--address > .c_grid__item{
  padding: 8px;
}

/*アイコン*/
.c_hasIco{
  position: relative;
}
.c_hasIco__item{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c_hasIco::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c_hasIco--tel{
  padding-left: 26px;
}
.c_hasIco--tel > .c_hasIco__item{
  top: calc(50% + 1px);
}
.c_hasIco--telSmall{
  padding-left: 22px;
}
.c_hasIco--mail{
  padding-left: 24px;
}

/*ボタン*/
.c_btn{
  display: flex;
}
.c_btn__target{
  display: flex;
  justify-content: center;
  align-items: center;
}
.c_btn__target::before{
  content: "";
  display: block;
  width: 0;
}
.c_btn--ask > .c_btn__target{
  width: 113px;
  border: 2px solid #5e5e5e;
  border-radius: 2px;
  background: #fff;
  color: #5e5e5e;
  font-size: 16px;
  font-weight: bold;
}
.c_btn--ask > .c_btn__target::before{
  height: 34px;
}
.c_btn--toPageTop > .c_btn__target{
  width: 100%;
  border-radius: 2px;
  background: rgba(136, 136, 136, .8);
  color: #fff;
  line-height: 1;
}
.c_btn--toPageTop > .c_btn__target::before{
  height: 1em;
  padding: 8px 0;
}
.c_btn--address > .c_btn__target{
  width: 220px;
  height: 34px;
  border-radius: 3px;
  background: linear-gradient(90deg, crimson 10%, mediumvioletred 60%, deeppink 100%) left center / 200% 100%;
  box-shadow: 0 5px #8a0d0d;
  color: #fff;
  font-size: 16px;
  transition: background-position .6s;
}
.c_btn--address > .c_btn__target:hover{
  background-position: right center;
  box-shadow: none;
  transform: translateY(5px);
}

.c-btn__contact {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  border-radius: 100vh;
  line-height: 40px;
  padding: 10px 10px 10px 20px;
  box-shadow: 2px 3px 0px rgba(0, 0, 0, 0.1607843137);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border: 2px solid #ffdcc8;
  background: linear-gradient(#ffb43f, #e97800, #ffb43f);
}
.c-btn__contact a{
    transition: 0.3s;
    opacity: 0.6;
}
@media screen and (max-width: 768px){
  .c-btn__contact{
  font-size: 18px;
  line-height: 1.2;
  }
}
.c-btn__contact::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 26px;
  background: url(https://www.insource-da.co.jp/common/img/icon_mail.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 0.75em;
}
.c-btn__none::before {
  display: none;
}

.c-btn__contact::after {
  content: "〉";
  margin-left: 0.75em;
}

/*リスト*/
.c_list{}
.c_list__item{}
.c_list--sideBanner > .c_list__item + .c_list__item{
  margin-top: 8px;
}

/*リンク*/
.c_link{}
.c_link--normal{
  color: #1A0DAB;
  text-decoration: none;
}
.c_link--normal:hover{
  color: #1A0DAB;
  text-decoration: underline;
}
.c_link--sideBanner{
  display: block;
  line-height 0;
}
.c_link--sideBanner:hover{
  opacity: .7;
}

/*出典*/
.c-source{
 font-size:10px;
 color:#837f7f;
}

/*画像付き出典*/
.c-imageCaption{
 margin-right:auto;
 margin-left:auto;
}
.c-imageCaption_textSource{
 width:fit-content;
 width: -moz-fit-content; /* Firefox旧バージョン対応 */
}

/**********
utility
**********/

/*横幅*/
.u_col1{width:8.333%;}
.u_col2{width:20%;}
.u_col3{width:25%;}
.u_col4{width:33.333%;}
.u_col5{width:41.666%;}
.u_col6{width:50%;}
.u_col7{width:58.333%;}
.u_col8{width:66.666%;}
.u_col9{width:75%;}
.u_col10{width:80%;}
.u_col11{width:91.666%;}
.u_col12{width:100%;}
@media screen and (max-width:768px){
  .u_resMdCol1{width:8.333%;}
  .u_resMdCol2{width:16.667%;}
  .u_resMdCol3{width:25%;}
  .u_resMdCol4{width:33.333%;}
  .u_resMdCol5{width:41.666%;}
  .u_resMdCol6{width:50%;}
  .u_resMdCol7{width:58.333%;}
  .u_resMdCol8{width:66.666%;}
  .u_resMdCol9{width:75%;}
  .u_resMdCol10{width:83.33%;}
  .u_resMdCol11{width:91.666%;}
  .u_resMdCol12{width:100%;}
}
@media screen and (max-width:599px){
  .u_resSmCol1{width:8.333%;}
  .u_resSmCol2{width:16.667%;}
  .u_resSmCol3{width:25%;}
  .u_resSmCol4{width:33.333%;}
  .u_resSmCol5{width:41.666%;}
  .u_resSmCol6{width:50%;}
  .u_resSmCol7{width:58.333%;}
  .u_resSmCol8{width:66.666%;}
  .u_resSmCol9{width:75%;}
  .u_resSmCol10{width:83.33%;}
  .u_resSmCol11{width:91.666%;}
  .u_resSmCol12{width:100%;}
}

/*間隙*/
.u_mb0{
  margin-bottom: 0px;
}
.u_mb0Ip{
  margin-bottom: 0px !important;  
}
.u_mb8{
  margin-bottom: 8px;
}
.u_mb10{
  margin-bottom: 10px;
}
.u_mb12{
  margin-bottom: 12px;
}
.u_mb16{
  margin-bottom: 16px;
}
.u_mb20{
  margin-bottom: 20px;
}
.u_mb24{
  margin-bottom: 24px;
}
.u_mb40{
  margin-bottom: 40px;
}
.u_mb64{
  margin-bottom: 64px;
}
.u_mt8{
  margin-top: 8px;
}
.u_mt16{
  margin-top: 16px;
}
.u_mt24{
  margin-top: 24px;
}
.u_mt32{
  margin-top: 32px;
}
.u_mt40{
  margin-top: 40px;
}
.u_mt64{
  margin-top: 64px;
}
.u_mt80{
  margin-top: 80px;
}
.u_mt120{
  margin-top: 120px;
}
.u_mr8{
  margin-right: 8px;
}
.u_mr20{
  margin-right: 20px;
}
.u_mlrA{
  margin-left: auto;
  margin-right: auto;
}

/*フォントサイズ*/
.u_fs11{
  font-size: 11px;
}
.u_fs10{
  font-size: 10px;
}
.u_fz12{
  font-size:12px;
}
.u_fs16{
  font-size: 16px;
}
.u_fz20{
  font-size:20px;
}
.u_fz24{
  font-size:24px;
}
.u_fz32{
  font-size:32px;
}
.u_fz56{
  font-size:56px;
}

/*フォントウェイト*/
.u_fwb{
  font-weight:bold;
}


/* 文字寄せ */
.u_ac{
  text-align: center;
}
.u_ar{
  text-align: right;
}
.u_al{
  text-align: left;
}
@media screen and (max-width:599px){
  .u_resSmAc{
    text-align: center;
  }
}

/*上付き*/
.u_super{
  vertical-align: super;
  font-size: 11px;
}

/*文字色*/
.u_colorIns{
  color: #e6002d;
}

/*ポジション*/
.u_rel{
  position: relative;
}

/*文字間*/
.u_ls0{
  letter-spacing: 0px;
}

@media screen and (max-width:599px){
  .u_resSmLs0{
    letter-spacing: 0px;
  }
  .u_resSmLsN1{
    letter-spacing: -1px;
  }
}

/*字下げ*/
.u-textIndent{
 text-indent:1em;
}

/*表示*/
.u_hide{
  display: none;
}
u_display--block{
 display:block;
}
@media screen and (max-width:768px){
  .u_resMdHide{
    display: none;
  }
  .u_resMdInline{
    display: inline;
  }
}

@media screen and (max-width:599px){
  .u_resSmHide{
    display: none;
  }
  .u_resSmInline{
    display: inline;
  }
}

/* =============
project
============= */
/*見出し*/
.p_heading{}
.p_heading__img{
  line-height: 0;
}
.p_heading__ttl{
  font-weight: bold;
}
.p_heading--ask{
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ccc;
  text-align: center;
}
.p_heading--ask .p_heading__img{
  margin-bottom: 8px;
}
.p_heading--ask .p_heading__ttl{
  font-size: 20px;
}

/*グローバルエリア*/
.p_global{}
.p_global__header{}
.p_global__nav{
  border-top: 2px solid;
}
.p_global__header + .p_global__nav,
.p_global__nav + .p_global__footer{
  margin-top: 8px;
}
.p_global--header{
  padding-top: 8px;
}
.p_global--footer{
  padding: 8px;
  background: #f0f0f0;
}
.p_global__nav--header{
  position: relative;
  border-color: #ccc;
}
.p_global__nav--footer{
  padding-top: 8px;
  border-color: #fff;
}
@media screen and (max-width: 768px){
  .p_global--footer{
    padding: 0;
    background: none;
  }
}

/*サイトロゴエリア*/
.p_siteLogoArea{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p_siteLogoArea__side{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.p_siteLogoArea__item + .p_siteLogoArea__item{
  padding-left: 24px;
}
@media screen and (max-width: 768px){
  .p_siteLogoArea, .p_siteLogoArea__side{
    display: block;
  }
  .p_siteLogoArea__item + .p_siteLogoArea__item{
    padding-left: 0;
    margin-top: 8px;
  }
}

/*サイトロゴ*/
.p_siteLogo{
  line-height: 0;
}
.p_siteLogo__link{
  display: inline-block;
  line-height: 0;
}
.p_siteLogo__img{
  vertical-align: top;
}
@media screen and (max-width: 768px){
  .p_siteLogo__img{
    width: 130px;
    height: 55px;
  }
}


/*検索ボックス*/
.p_search{
  display: flex;
  height: 28px;
}
.p_search__field{
  display: block;
  width: 240px;
  padding: 3px 0px 3px 5px;
  border: 2px solid #cccccc;
  border-right: none;
  border-radius: 3px 0 0 3px;
  box-shadow: none;
}
.p_search__field:focus{
  box-shadow:transparent;
}
.p_search__btn{
  display: block;
  width: 16px;
  padding: 6px;
  border-radius: 0 3px 3px 0;
  box-shadow: none;
  background-color: #2793d2; 
}
@media screen and (max-width: 768px){
  .p_search{
    height: 24px;
  }
  .p_search__field{
    width: 100%;
  }
  .p_search__btn{
    width: 16px;
    padding: 4px;
  }
}

/*電話番号*/
.p_tel{
  font-weight: bold;
  letter-spacing: -0.01em;
  line-height: 1;
}
.p_tel--header{
  color:#5e5e5e;
  font-size: 26px;
}
.p_tel--footer{
  color:#5e5e5e;
  font-size: 20px;
}
.p_tel--address{
  color:#bc3939;
  font-size: 26px;
}

/*コピーライト*/
.p_copyright{
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 768px){
  .p_copyright{
    letter-spacing: 0;
    font-size: 10px;
  }
}

/*サイドナビ*/
.p_sideNav{
  padding-top: 10px;
}
.p_sideNav__item + .p_sideNav__item{
  margin-top: 16px;
}


/*ハンバーガーメニュー*/
.p_hamburgerBtn{
  position: absolute;
  right: 13px;
  top: 13px;
}
.p_hamburgerBtn__target{
  position: relative;
  display: block;
  width: 30px;
  height: 25px;
}
.p_hamburgerBtn__bar{
  position: absolute;
  display: block;
  width: 100%;
  border-bottom: solid 3px #999;
  transition: .35s ease-in-out;
}
.p_hamburgerBtn__bar--first{
  top:0;
}
.p_hamburgerBtn__bar--second{
  top:11px;
}
.p_hamburgerBtn__bar--third{
  top:22px;
}
.p_hamburgerBtn.is_show .p_hamburgerBtn__bar{
  top: 11px;
}
.p_hamburgerBtn.is_show .p_hamburgerBtn__bar--first{
  transform:rotate(-45deg)
}
.p_hamburgerBtn.is_show .p_hamburgerBtn__bar--second,
.p_hamburgerBtn.is_show .p_hamburgerBtn__bar--third{
  transform:rotate(45deg)
}

/* パンくず */
.p_breadcrumbs{
  border-bottom:1px solid;
}
.p_breadcrumbs--normal{
  border-color: #ccc;
}
.p_breadcrumbs__item{
  display: inline-block;
  font-size: 11px;
  line-height:27px;
}
.p_breadcrumbs__item{
  padding-left:7px;
}
.p_breadcrumbs__item + .p_breadcrumbs__item{
  padding-left: 22px;
  background: url(../img/bg_tpath.gif) no-repeat 7px top;
}
.p_breadcrumbs__target{
  color: #1A0DAB;
  text-decoration: none;
}
.p_breadcrumbs__target:hover{
  color: #1A0DAB;
  text-decoration: underline;
}
.p_breadcrumbs__current{
  font-weight: bold;
}

/*べージトップへ*/
.p_toPageTop{
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  width: 100px;
  margin: 0 auto;
  font-size: 12px;
  z-index: 998;
}
.toPagTop-enter-active,.toPagTop-leave-active{
  transition: .5s all;
}
.toPagTop-leave-to{
  opacity:0;
}
.toPagTop-enter{
  opacity: 0;
}







/* ★★新common CSSここから―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――★★ */
/* ① コーディング基本ルール　共通CSS――――――――――――――――――――――――――――――― */
.wrap_2311 {
  font-size: 10px;
  letter-spacing: 0;
  color: #333;
}

.wrap_2311 section {
  margin-bottom: 100px;
}

.wrap_2311 h1 {
  margin-bottom: 30px;
}

.wrap_2311 h2 {
  font-size: 2.6em;
  margin-bottom: 30px;
  /* color: #666; ←★見出し等でグレー寄りの黒にしたい場合はこちらを使用*/
}

@media screen and (max-width:768px) {
  .wrap_2311 h2 {
    margin-bottom: 20px;
  }

  .js-scrollable {
    overflow-x: scroll;
  }
}

.wrap_2311 h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  /* color: #666; ←★見出し等でグレー寄りの黒にしたい場合はこちらを使用*/
}

.wrap_2311 a:hover {
  opacity: .6;
  transition: .3s;
}




/* ② ボタン/リンクについて　パターンＢ：文字リンク（右にアイコン）――――――――――――――――――――――――――――――― */
.wrap_2311 .c-arrow-after {
  position: relative;
  text-align: right;
  padding-right: 30px;
  color: #333;
  font-size: 1.4em;
}

.wrap_2311 .c-arrow-after::before {
  content: '';
  width: 18px;
  height: 18px;
  background: #CC4E00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3px;
  margin-top: -9px;
}

.wrap_2311 .c-arrow-after::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 10px;
  right: 9px;
  margin-top: -4px;
  transform: rotate(45deg);
}


/* ② ボタン/リンクについて　パターンＣ：文字リンク（左にアイコン）――――――――――――――――――――――――――――――― */
.wrap_2311 .c-arrow-before {
  position: relative;
  text-align: right;
  padding-left: 30px;
  color: #333;
  font-size: 1.4em;
}

.wrap_2311 .c-arrow-before::before {
  content: '';
  width: 18px;
  height: 18px;
  background: #CC4E00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 3px;
  margin-top: -9px;
}

.wrap_2311 .c-arrow-before::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 10px;
  left: 7px;
  margin-top: -4px;
  transform: rotate(45deg);
}


/* ③ 表組み　パターンA：３カラム表 ――――――――――――――――――――――――――――――― */
.wrap_2311 .open_seminar {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  font-size: 1.4em;
  margin-bottom: 30px;
}

.wrap_2311 .open_seminar a {
  color: #333;
  text-decoration: none;
  padding: 5px 10px;
  display: block;
}

.wrap_2311 .open_seminar a:hover {
  opacity: 1;
  background-color: #eee;
}

.wrap_2311 .open_seminar th {
  border-bottom: 2px solid #800019;
}

.wrap_2311 .open_seminar td {
  border-bottom: 1px solid #cacaca;
}

.wrap_2311 .open_seminar .left {
  width: 15%;
  border-right: 1px solid #cacaca;
  padding-left: 7px;
}

.wrap_2311 .open_seminar .right {
  width: 10%;
  border-left: 1px solid #cacaca;
  text-align: center;
}

.wrap_2311 .con_seminar {
  border: 1px dashed #777;
  padding: 15px;
  position: relative;
  margin: 26px 0;
  display: flex;
}

.wrap_2311 .con_seminar::before {
  content: "セミナールーム情報";
  background: #fff;
  position: absolute;
  top: -11px;
  width: fit-content;
  padding: 0 10px;
  left: 5px;
  font-size: smaller;
  color: #777;
}

.wrap_2311 .con_seminar dl {
  width: 50%;
}

.wrap_2311 .con_seminar dt {
  font-weight: bold;
}

.wrap_2311 .con_seminar dt a {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
}

.wrap_2311 .con_seminar dt a:hover {
  opacity: .6;
  transition: .3s;
}


@media screen and (max-width:430px) {
  .wrap_2311 .open_seminar {
    width: 600px;
  }
}


/* ③ 表組み　パターンＢ：２カラム表（見出し装飾） ――――――――――――――――――――――――――――――― */
.wrap_2311 .tb_parts01 {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4em;
}

.wrap_2311 .tb_parts01 tr {
  border-bottom: solid 2px white;
}

.wrap_2311 .tb_parts01 tr:last-child {
  border-bottom: none;
}

.wrap_2311 .tb_parts01 th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #898989;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.wrap_2311 .tb_parts01 th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -9px;
  border-left: 10px solid #898989;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.wrap_2311 .tb_parts01 td {
  text-align: left;
  width: 70%;
  background-color: #eee;
  padding: 10px;
}

.wrap_2311 .tb_parts01 td a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width:430px) {
  .wrap_2311 .tb_parts01 {
    width: 600px;
  }
}


/* ③ 表組み　パターンＢ：２カラム表（見出し装飾） ――――――――――――――――――――――――――――――― */
.wrap_2311 .tb_parts02 {
  width: 100%;
  border-collapse: separate;
  border: none;
  border-spacing: 0px 10px;
  font-size: 1.4em;
}

.wrap_2311 .tb_parts02 tbody td,
.wrap_2311 .tb_parts02 tfoot td {
  text-align: center;
}

.wrap_2311 .tb_parts02 thead th {
  color: #FFF;
  font-weight: bold;
  background: #898989;
}


.wrap_2311 .tb_parts02 thead th:nth-child(2) {
  border-radius: 10px 0 0 0;
}

.wrap_2311 .tb_parts02 thead th:last-child {
  border-radius: 0 10px 0 0;
}

.wrap_2311 .tb_parts02 th,
.wrap_2311 .tb_parts02 td {
  border: 0 none !important;
}


.wrap_2311 .tb_parts02 tr:nth-child(even) td {
  background: #f5f5f5;
}

.wrap_2311 .tb_parts02 tr:nth-child(odd) td {
  background: #FDFDFD;
}


.wrap_2311 .tb_parts02 tbody th,
.wrap_2311 .tb_parts02 tfoot th,
.wrap_2311 .tb_parts02 thead th:first-child {
  background: none;
  color: #666;
  font-weight: bold;
  line-height: 4.5em;
}

@media screen and (max-width:430px) {
  .wrap_2311 .tb_parts02 {
    width: 600px;
  }
}







/* ④その他パーツ　ページ内ナビゲーション　パターンＡ（問合せボタンなし） ―――――――――――――――――――――――――――――――*/
.wrap_2311 .c-inner-nav {
  margin-top: -30px;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0px 5px 15px #EAEAEA;
  margin-bottom: 50px;
}

.wrap_2311 .c-inner-nav li {
  border-right: 1px solid #969696;
  font-size: 1.4em;
  padding: 5px 15px;
  text-align: center;
}

.wrap_2311 .c-inner-nav li:last-child {
  border-right: none;
}

.wrap_2311 .c-inner-nav li a {
  color: #333;
}

@media screen and (max-width:430px) {
  .wrap_2311 .c-inner-nav li {
    border-right: none;
    width: 100%;
    text-decoration: underline;
  }
}

/* ④その他パーツ　ページ内ナビゲーション　パターンＢ（問合せボタンあり）――――――――――――――――――――――――――――――― */
.wrap_2311 .c-inner-nav-contact {
  box-shadow: 0px 6px 12px -11px #777777;
  margin-bottom: 60px;
  font-size: 1.4em;
  margin-top: -30px;
}

.wrap_2311 .c-inner-nav-contact .flex ul {
  width: 80%;
}

.wrap_2311 .c-inner-nav-contact .flex ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10px;
}

.wrap_2311 .c-inner-nav-contact .flex ul li {
  width: calc(100% /4);
  text-align: center;
}

.wrap_2311 .c-inner-nav-contact .flex ul li a {
  display: block;
  width: 100%;
  padding: 5px;
  color: #333;
}

.wrap_2311 .c-inner-nav-contact .flex ul li a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.wrap_2311 .c-inner-nav-contact .flex ul li:nth-child(-n+4) {
  border-bottom: 1px solid #d8d8d8;
}

.wrap_2311 .c-inner-nav-contact .flex .contact {
  background-color: #898989;
  display: block;
  width: 20%;
  font-size: large;
  text-align: center;
  padding-top: 20px;
  color: #fff;
  letter-spacing: 1.5px;
}

@media screen and (max-width:430px) {
  .wrap_2311 .c-inner-nav-contact .flex ul li:nth-child(-n+4) {
    border-bottom: none;
  }

  .wrap_2311 .c-inner-nav-contact .flex ul {
    width: 100%;
    padding: 15px 0;
  }

  .wrap_2311 .c-inner-nav-contact .flex ul li {
    border-right: none;
    width: 100%;
    text-decoration: underline;
  }

  .wrap_2311 .c-inner-nav-contact .flex .contact {
    display: none;
  }
}


/* ④その他パーツ　リンクボックス ――――――――――――――――――――――――――――――― */
.wrap_2311 .type_thumbs {
  font-size: 1.4em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0px 5px 20px #D3D3D3;
  box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 30px;
}

.wrap_2311 .type_thumbs img {
  width: 100%;
}

.wrap_2311 .type_thumbs li {
  width: calc(100%/3);
  border-right: 1px solid #E2E2E2;
  transition: all .2s ease;
  background-color: #fff;
}

.wrap_2311 .type_thumbs li:last-child {
  border-right: none;
}

.wrap_2311 .type_thumbs li p {
  margin-bottom: 0px;
  margin-top: 10px;
}

.wrap_2311 .type_thumbs li a {
  color: #404040;
  display: block;
  padding: 15px;
  height: 100%;
  width: 100%;
}

.wrap_2311 .type_name {
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  padding-bottom: 15px;
}

.wrap_2311 .type_thumbs li div {
  padding: 5px 0 15px 0;
  margin: 0 auto;
}

.wrap_2311 .type_thumbs li a:hover {
  opacity: 1;
  box-shadow: 0px 5px 30px #D3D3D3;
  transform: translateY(-2px);
}


@media screen and (max-width:430px) {
  .wrap_2311 .type_thumbs li {
    width: 100%;
    border-bottom: 1px solid #E2E2E2;
  }

}



/* ④その他パーツ　フロー図　パターンＡ：申込から受講までの流れ（4カラム）――――――――――――――――――――――――――――――― */
.wrap_2311 .flow_4 {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.wrap_2311 .flow_4 li {
  width: calc(100%/4);
  position: relative;
  border-right: 2px dotted #E2E2E2;
  padding-bottom: 15px;
}

.wrap_2311 .flow_4 li:last-child {
  border-right: none;
}

.wrap_2311 .flow_4 li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #898989;
  border-radius: 50%;
  position: absolute;
  top: 60%;
  right: -10px;
  margin-top: -9px;
}

.wrap_2311 .flow_4 li::after {
  content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 60%;
  right: -4px;
  margin-top: -4px;
  transform: rotate(45deg);
}

.wrap_2311 .flow_4 li:last-child::before {
  display: none;
}

.wrap_2311 .flow_4 li:last-child::after {
  display: none;
}

.wrap_2311 .flow_4 li dl {
  padding: 5px;
}

.wrap_2311 .flow_4 li dl dt:first-child {
  background-color: #898989;
  color: #fff;
  font-size: 1.4em;
}

.wrap_2311 .flow_4 li dl dt:nth-child(2) {
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0;
}

.wrap_2311 .flow_4 li dl dd {
  font-size: 1.2em;
}

@media screen and (max-width:430px) {
  .wrap_2311 .flow_4 li {
    width: 100%;
    border-right: none;
  }

  .wrap_2311 .flow_4 li::before {
    display: none;
  }

  .wrap_2311 .flow_4 li::after {
    display: none;
  }
}


/* ④その他パーツ　フロー図　パターンＢ：申込から受講までの流れ（7カラム）――――――――――――――――――――――――――――――― */
.wrap_2311 .flow_7 {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  font-size: 1.4em;
  margin-bottom: 30px;
}

.wrap_2311 .flow_7 li {
  width: calc(100%/7);
  position: relative;
  border-right: 2px dotted #E2E2E2;
}

.wrap_2311 .flow_7 li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #898989;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -9px;
}

.wrap_2311 .flow_7 li::after {
  content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: -4px;
  margin-top: -4px;
  transform: rotate(45deg);
}

.wrap_2311 .flow_7 li p:nth-child(2) {
  font-weight: bold;
}

@media screen and (max-width:430px) {
  .wrap_2311 .flow_7 li {
    width: 100%;
    border-right: none;
  }

  .wrap_2311 .flow_7 li::before {
    display: none;
  }

  .wrap_2311 .flow_7 li::after {
    display: none;
  }

  .wrap_2311 .flow_7 li br {
    display: none;
  }
}
/*20240219藤川追記*/
.flex{
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .flex{
    display: block;
  }
}