@charset "utf-8";
/*=================================
cmn.css　共通CSS
1: reset-CSS(HTML5 Reset Stylesheet)
2: setting
3: header
4: gnav
5: footer
=================================*/


/* 1: reset-CSS(HTML5 Reset Stylesheet)
================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  font-weight: normal;
}
body {
  line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main {
  display:block;
}
nav ul,
ul {
  list-style:none;
}
blockquote, q {
  quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}
a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}
/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000;
  font-style:italic;
  font-weight:bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}
input, select {
  vertical-align:middle;
}

/* 2: setting
================================== */
*, *:before, *:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;/* 1rem = 10px */
}
@media print, screen and (min-width: 768px) {
  html {
    overflow: auto;
    min-width: 900px;
  }
}
body {
  width: 100%;
  font-family: Meiryo, メイリオ, 'Yu Gothic', '游ゴシック', '游ゴシック体', YuGothic, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-feature-settings : "palt";
  color: #333;
  font-size: 1.5rem;
  line-height: 1.7;
  -webkit-print-color-adjust: exact;/* baskground_print */
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;/* safari_textBold*/
  -webkit-text-size-adjust: 100%;/* safari_textBold*/
}
@media print, screen and (min-width: 768px) {
  body {
    /*font-size: 1.6rem;*/
    min-width: 900px;
  }
}

/* リンク設定*/
a {
/*  color: #808080; */
  color: #4d7599;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  a {
    -webkit-transition: all .2s;
    transition: all .2s;
  }
}
a:hover {
  color: #0091DC;
  text-decoration: underline;
}
a img:hover {
  opacity:.7;
}

/* フォームスタイルの完全初期化*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  line-height: 1;
}
@media screen and (max-width: 699px) {
input, button, textarea, select {
  max-width: 100%;
}
}/*@media*/

input[type="text"],
select {
  padding: 4px;
  line-height: 1.6;/*iOS*/
  height: 32px;
  vertical-align: top;
}

button,
input[type="submit"] {
  background: #003680;
  color: #FFF;
  padding: 8px;
}

/*IE10以降のフォーム内の要素を非表示*/
input::-ms-clear {visibility:hidden}
input::-ms-reveal {visibility:hidden}

/* clearfix*/
.cf:after { content: ""; clear: both; display: block; }
.clear { clear: both;}

/* display none*/
.sp_none {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
  .sp_none {
    display: block;
  }
}


/* 3: header
================================== */
.header {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 90px;
  padding: 16px;
  background: #FFF;
  z-index: 9999;
  transition: .3s;
}
@media print, screen and (min-width: 768px) {
  .header {
    position: relative;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    /* height: auto; */
    max-width: 1200px;
    min-width: 900px;
    margin: 0 auto;
    padding: 5px 24px 0;
    height: 170px;

  }
  .header a img {
    -webkit-transition: all .2s;
    transition: all .2s;
  }
}
.header h2 {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .header h2 {
    display: block;
    /*margin-bottom: 16px; */
    font-size: 1.4rem;
    text-align: right;
    line-height: 1.4;
  }
  .header h2 span {
    display: block;
    font-size: 2.1rem;
    font-weight: bold;
  }
}
.hdLogo a {
  display: block;
  line-height: 0;
}
.hdLogo img {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 2;
  max-width:  280px;
  max-height: 80px;
  transition: .3s;
}
@media print, screen and (min-width: 768px) {
  .hdLogo img {
    max-width: 280px;
    aspect-ratio: 7 / 2;
  }
  .hdLogo a {
	margin-top:25px;
  }
}
.header.nav_fixed {
  height: 50px;
  padding: 8px 16px;
}
@media print, screen and (min-width: 768px) {
  .header.nav_fixed {
    height: auto;
    padding: 5px 24px 0;
  }
}
.nav_fixed .hdLogo img {
  max-width: 160px;
}
@media print, screen and (min-width: 768px) {
  .nav_fixed .hdLogo img {
    max-width: 400px;
  }
}

/* 4: gnav
================================== */
@media print, screen and (min-width: 768px) {
  .menuWrapper {
    width: 100%;
  }
}
.menu_container {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  width: 90%;
  height: calc(100vh - 120px);
  margin: 0 auto;
  padding: 24px;
  background: rgba(39, 39, 39, 0.95);
  box-shadow: 0px 4px 9px 3px rgba(0, 0, 0, 0.2);
  z-index: 300;
  overflow-y: scroll;
}
@media print, screen and (min-width: 768px) {
  .menu_container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    position: static;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding: 0;
    background: none;
    transition: none;
    box-shadow: none;
    overflow-y: visible;
/* height:50px; */
  }
}
.menu_container.menu_active {
  right: 0;
}
.menu {
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) {
  .menu {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
    line-height: 1;
  }
}
.menu > li {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .menu > li {
    width: calc(100% / 6);
    text-align: center;
  }
}
.menu a,
.menu .out {
  display: block;
  margin: 0 auto;
  padding: 16px;
  color: #FFF;
  text-decoration: none;
}
.menu .out {
  color: #7d7d7d;
}

@media print, screen and (min-width: 768px) {
  .menu a,
  .menu .out {
    position: relative;
    display: inline-block;
    padding: 16px 0;
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .menu .out {
    color: #bdbdbd;
  }
  .menu a:hover,
  .jigyou li.nav_jigyou > a,
  .program li.nav_program > a,
  .koubo li.nav_koubo > a,
  .news li.nav_news > a,
  .pgreport li.nav_pgreport > a,
  .pr li.nav_pr > a,
  .youshiki li.nav_pa > a,
  .nav_en li.nav_en > a {
    color: #0091DC;
  }
  .nav_program > a::before,
  .nav_koubo > a::before,
  .nav_pr > a::before {
    position: absolute;
    right: -16px;
    top: 43%;
    display: block;
    content:"";
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .nav_program > a:hover::before,
  .nav_koubo > a:hover::before,
  .nav_pr > a:hover::before,
  .program .nav_program > a::before,
  .koubo .nav_koubo > a::before,
  .pr .nav_pr > a::before {
    border-top: 2px solid #0091DC;
    border-right: 2px solid #0091DC;
  }
}
@media print, screen and (max-width: 1000px)and (min-width: 768px) {
  .menu a,
  .menu .out {
    font-size: 1.7rem;
  }
}
.dropMenu {
  display: none;
  padding: 8px 16px;
  background: rgba(39, 39, 39, 1);
}
@media print, screen and (min-width: 768px) {
  .dropMenu {
    display: block;
    position: absolute;
    top: 40px;
    width: 100%;
    padding: 24px 32px 24px 24px;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    background: rgba(35, 24, 21, 0.9)
  }
  .nav_program .dropMenu {
    width: 28em;
    left: -60%;
  }
  .nav_koubo .dropMenu {
    width: 12em;
    left: 4%;
  }
  .nav_pr .dropMenu {
    width: 12em;
    left: -10%;
  }
  .nav_program:hover .dropMenu,
  .nav_koubo:hover .dropMenu,
  .nav_pr:hover .dropMenu {
      top: 50px;
      visibility: visible;
      opacity: 1;
  }
  .dropMenu > ul > li {
    position: relative;
  }
}
.dropMenu > ul > li > ul > li {
  background: #464646;
  padding-left: 14px;
}
@media print, screen and (min-width: 768px) {
  .dropMenu > ul > li > ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    right: calc(-10em - 32px);
    width: 10em;
    margin-left: 24px;
    background: rgba(72, 55, 51, 0.9);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }
  .dropMenu > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
  }
  .dropMenu > ul > li > ul a::before {
    right: 16px;
  }
  .dropMenu > ul > li > ul a:hover::before {
    right: 6px;
  }
  .dropMenu > ul > li > ul > li {
    background: none;
    padding-left: 0;
  }
}
.dropMenu h3 {
  padding-top: 16px;
  font-weight: bold;
  color: #FFF;
}
@media print, screen and (min-width: 768px) {
  .dropMenu h3 {
    margin-bottom: 8px;
    padding-top: 0;
    text-align: left;
    font-size: 1.5rem;
  }
}
.dropMenu a,
.dropMenu .gout {
  padding: 8px;
  font-size: 1.3rem;
}
.dropMenu .gout {
  display: block;
  color: #7d7d7d;
}
.dropMenu h3.gray {
  color: #7d7d7d;
}

@media print, screen and (min-width: 768px) {
  .dropMenu a,
  .dropMenu .gout {
    position: relative;
    font-size: 1.4rem;
    text-align: left;
    color: #FFF;
    font-weight: normal;
  }
  .dropMenu .gout {
    color: rgba(255, 255, 255, 0.7);
  }
  .dropMenu a::before {
    position: absolute;
    right: -8px;
    top: 11px;
    display: block;
    content:"";
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .dropMenu a:hover::before {
    right: -16px;
    border-top: 2px solid #0091DC;
    border-right: 2px solid #0091DC;
  }
}
.dropMenu > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media print, screen and (min-width: 768px) {
  .dropMenu li:not(:last-child) {
    border-bottom: none;
  }
  .dropMenu li {
    text-align: left;
  }
  .dropMenu ul:not(:last-child){
    margin-bottom: 24px;
  }
}
.dropMenu ul a {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}
/*@media print, screen and (min-width: 768px) {
  .dropMenu ul a {
    display:inline-block;
  }
}*/
.dropMenu ul a span:nth-child(1) {
  width: 4.5em;
}
.dropMenu ul a span:nth-child(2) {
  width: calc(100% - 4.5em);
}
.nav_en a {
  color: #70BFAE;
}
@media print, screen and (min-width: 768px) {
  .nav_en a {
    color: #286A5C;
  }
}
.hdLink {
  display:block;
}
.header_right_menu {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    line-height:0;
    justify-content: space-around;
	margin-bottom:10px;
}

@media print, screen and (max-width: 768px) {
  .header_right_menu {
    display:block;
  }

  .hdLink li:first-child a {
    display: block;
    margin: 0 auto;
    padding: 16px;
    color: #FFF;
    text-decoration: none;
    text-align:left;
  }
  #g-k-w-search {
    background:white;
    padding:10px;
  }
  .logo_jst {
    background:white;
  }

  .search {
    margin:0 auto;
  }

  .logo_jst a{
    max-width:200px;
    text-align:center;
    margin:0 auto;
  }

  
}

.sns_btn .note_pc, .sns_btn .twitter_pc {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .hdLink,.sns_btn {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 280px;
  }
  .hdLink,.sns_btn {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
  }
  .header_right_menu {
      justify-content: flex-end;
  }
  .sns_btn .note_sp, .sns_btn .twitter_sp {
    display: none;
  }
  .sns_btn .note_pc, .sns_btn .twitter_pc {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .hdLink a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .hdLink a:hover {
    text-decoration: underline;
    color: #0091DC;
  }
}

.sns_btn {
	z-index:999;
	top:45px;
	right:0;
	max-width: 300px;
  margin-bottom: 15px;
	width:100%;
	border: 1px #ccc solid;
	border-radius: 20px;
}
.sns_btn li {
	display: inline-block;
	margin-right: 10px;
	margin-left: 10px;
}

.sns_btn .sns_t {
  width: 60px;
  font-size: 10px;
  line-height: 1.3;
  font-weight: bold;
  text-align: left;
  padding-right: 5px;
  border-right: 1px solid #ccc;
  color: #fff;
}

.sns_btn .sns_note {
  width: 45px;
  margin-left: 0;
}

.sns_btn .sns_youtube {
  width: 30px;
}

@media print, screen and (min-width: 768px) {
  .sns_btn li {
  	display: inline-block;
  	margin-left:10px;
  	width:28px;
  }
  .sns_btn {
      margin-bottom: 0px;
  }
  .sns_btn .sns_t {color: #333;}
}
@media print, screen and (max-width: 768px) {
  .sns_btn {
    margin:0 auto 15px auto;
    text-align:center;
  }
}

.bnrDL,.jst_sm {
margin-top:15px;
  width: 100%;
}
.bnrDL span,
.bnrDL a {
  display: block;
  max-width: 260px;
  margin: 0 auto 24px;
  padding: 8px;
  background: url(../img/cmn/icn_people.svg) no-repeat 10px center #FFF;
  background-size: 20px;
  color: #5B5B5B;
  border: 1px solid #707070;
  border-radius: 3px;
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
.bnrDL a {
  background: url(../img/cmn/icn_people.svg) no-repeat 10px center #FFF;

}
}
.bnrDL span {
  background: url(../img/cmn/icn_people.svg) no-repeat 10px center #a29a9a;
  opacity: 0.7;
}

.hdLink li:not(:last-child) {
  display: block;
  line-height: 1.2;
}
.hdLink, .sns_btn {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-evenly;
}
@media print, screen and (min-width: 768px) {
  .hdLink li:not(:last-child) {
    width: auto;
    line-height: 1;
    margin-left: 16px;
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .hdLink li:nth-child(1) {
    padding-right: 16px;
    width:8em;
	position:absolute;
	top:90px;
	right:120px;
  }
.hdRight{display:flex;}
}


/* -----google検索----- */
.search {
  width: 230px;
  position:absolute;
  margin-right:10px;
  top:80px;
  right:255px;
}

#g-k-w-search td,
#g-k-w-search th {
border-bottom: none;
}
#g-k-w-search .gsc-control-cse { padding: 0; }
/* テキストボックスに文字入力したときに出る「×」マークの位置調整用の指定 */
#g-k-w-search .gsc-search-box { position: relative; }
#g-k-w-search .gsc-search-box tr,
#g-k-w-search .gsc-search-box td { display: block; }
#g-k-w-search .gsc-search-box .gsc-input-box { padding-top:0; }
/* テキストボックスの親要素。width指定しつつfloatで左寄せ */
#g-k-w-search .gsc-search-box td.gsc-input,
#g-k-w-search .gsc-search-box td.gsc-input .gstl_50 {
box-sizing: border-box;
width: 200px !important;
padding: 0 !important;
margin-right: 5px;
height: 30px;
vertical-align: top;
float: left;
}
#g-k-w-search .gsc-search-box .gsib_a {
width: 200px !important;
padding: 0 !important;
border:0;
}
/* テキストボックスのデザイン設定 */
#g-k-w-search .gsc-search-box input#gsc-i-id1 {
box-sizing: border-box;
height: 30px !important;
padding: 5px 15px !important;
border-radius: 20px;
-webkit-box-shadow: 30px 30px 30px 0 rgba(200,200,200,0.4) inset;
-moz-box-shadow: 30px 30px 30px 0 rgba(200,200,200,0.4) inset;
box-shadow: 30px 30px 30px 0 rgba(200,200,200,0.4) inset;
background-position: 15px center !important;
}
#g-k-w-search .gsc-search-box td#gs_tti51 { margin-bottom: 5px; }
/* ボタンの親要素。width指定しつつfloatで左寄せ */
#g-k-w-search .gsc-search-box td.gsc-search-button {
width: 20px !important;
height: 30px;
float: left;
}
/* テキストボックスに文字入力したときに出る「×」マークの位置調整 */
#g-k-w-search .gsc-search-box .gsib_b {
position: absolute;
width: 20px;
top: 0px;
left: 170px;
}
/* デフォルトで設定されている(疑似的な)テキストボックスの
デザイン設定を解除 */
#g-k-w-search .gsc-search-box .gsc-input-box,
#g-k-w-search .gsc-search-box .gsc-input-box-hover,
#g-k-w-search .gsc-search-box .gsc-input-box-focus {
border: none !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
/* 検索ボタンの背景をボタンのように見せかける */
#g-k-w-search .gsc-search-box .gsc-search-button {
width: 20px;
height: 30px;
position: relative;
padding: 0;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-o-border-radius: 5px;
-ms-border-radius: 5px;
border-radius: 5px;
cursor: pointer;
border: none;
background:none;
}
#g-k-w-search .gsc-search-box td.gsc-search-button {
background: #fff url(../img/cmn/icn_search.svg) 96% center no-repeat;
}
#g-k-w-search .gsc-search-box .gsc-search-button svg {
display: none;
}
/* 検索ボタンの背景部分にテキストを表示させる */
#g-k-w-search .gsc-search-box .gsc-search-button:before {
position: absolute;
top: 35%;
left: 30%;
content: '';
color: #FFF;
}
/* 検索ボタンを透明化し背景のみを表示させる */
#g-k-w-search .gsc-search-box input.gsc-search-button-v2,
#g-k-w-search .gsc-search-box input.gsc-search-button {
width: 10px;
height: 50px;
padding: 0 !important;
opacity: 0;
background:white;
}
#header .gsc-control-cse {
background:none;
border:0;
}

.btn_switchArea {
  width:70px;
  height:30px;
  margin-top:5px;
  margin-left:5px;
  position:absolute;
  top:70px;
  right:55px;
}

  .btn_switchArea a {
    display:block;
    line-height:30px;
    padding-left:10px;
    position:relative;
    color:#000;
    border:solid 1px #00489e;
    border-radius:20px;
    background:white;
	text-align:left;
	font-size:1.4rem;
  }

  .btn_switchArea a::after {
    content:"JP";
    background:#00489e;
    width:30px;
    height:26px;
    border-radius:26px;
    position:absolute;
    top:2px;
    right:3px;
	color:white;
	text-align:center;
	line-height:26px;
  }

  @media print, screen and (max-width: 768px) {
    .search{
      position:relative;
      top:0;
      left:0;
    }
    .btn_switchArea {
      text-align:center;
      width:95%;
      margin:10px auto;
      top:0;
      left:0;
      right:0;
    }

    .menu {
      margin-top:40px;
    }
  .btn_switchArea a {
    padding-left:25%;
	text-align:left;
  }

  .btn_switchArea a::after {
    width:50%;
  }
  }

/*スマホ用メニューボタン*/
.menu_trigger {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  /* border: none; */
  text-indent: -900em;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  z-index: 999;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  border: 1px solid #C5C5C5;
  border-radius: 3px;
}
@media print, screen and (min-width: 768px) {
  .menu_trigger {
    display: none;
  }
}
.menu_trigger img {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  width: 30px;
  height: auto;
  margin: 10px auto 0;
}
.menu_trigger span {
  position: absolute;
  left: 0;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  -webkit-transition: all .4s;
  transition: all .4s;
  background-color: #5B5B5B;
}
.menu_trigger span:nth-of-type(1) {
  top: 9px;
}
.menu_trigger span:nth-of-type(2) {
  top: 14px;
}
.menu_trigger span:nth-of-type(3) {
  bottom: 9px;
}
.menu_trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
  top: 7px;
}
.menu_trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
  top: 14px;
}
.menu_trigger.active span:nth-of-type(3) {
  opacity: 0;
}
.open_icn {
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  width: 48px;
  height: 48px;
  z-index: 999;
}
.open_icn:before,
.open_icn:after {
  display: block;
  content: '';
  width: 2px;
  height: 12px;
  background: #FFF;
  position: absolute;
  top: 18px;
  left: 24px;
}
.open_icn:before {
  width: 12px;
  height: 2px;
  top: 23px;
  left: 19px;
}
.open_icn:after,
.open_icn:before {
  transition: all .4s;
}
.open_icn.open_icnactive:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.open_icn.open_icnactive:before {
  opacity: 0;
}
.layer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  opacity: 0.6;
  z-index: 200;
}
@media print, screen and (min-width: 768px) {
  .open_icn,
  .footerTop_inr .open_icn {
    display: none;
  }
}


/* 5: footer
================================== */
.footerTop {
  padding: 24px 16px;
  background: url(../img/cmn/footerBg_sp.jpg) no-repeat center;
  background-size: cover;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 768px) {
  .footerTop {
    padding: 0;
    background: url(../img/cmn/footerBg_pc.jpg) no-repeat center;
    background-size: cover;
    font-size: 1.5rem;
  }
}
.footerTop_item {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
  .footerTop_item {
    -ms-flex-direction: column;
    flex-direction: column;
    height: 14em;
  }
}
.footerTop_item > li {
  width: calc(100% / 3);
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .footerTop_item > li {
    width: auto;
    text-align: left;
  }
  .footerTop_inr,
  .footerBtm_inr {
    width: 100%;
    max-width: 1200px;
    min-width: 900px;
    padding: 14px 24px 54px 24px;
    margin: 0 auto;
  }
}
.footerTop_inr span,
.footerTop_inr a,
.footerTop_inr .out {
  display: block;
  padding: 8px 0;
  color: #1F1F1F;
  text-decoration: none;
}
.footerTop_inr span {
  display: inline-block;
  padding: 4px 0;
}
.footerTop_inr .out {
  color: #bdbdbd;
}
@media print, screen and (min-width: 768px) {
  .footerTop_inr a,
  .footerTop_inr .out {
    display: inline-block;
    padding: 12px 0;
    font-weight: bold;
  }
  .footerTop_inr .footerLink_more a {
    padding: 12px 0 4px;
  }
  .footerTop_inr span {
    padding: 0;
  }
}
.footerTop_inr .nav_en a {
  color: #286A5C;
}
@media print, screen and (min-width: 768px) {
  .footerTop_inr li::after {
    padding: 0 16px;
  }
  .footerTop_inr li a,
  .footerTop_inr li a span {
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .footerTop_inr li a:hover,
  .footerTop_inr li a:hover span {
    text-decoration: underline;
    color: #257DDB;
  }
}
.footerTop_inr li:last-child::after {
  content: none;
  padding: 0;
}
.footerLink_more + .programList_pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .footerLink_more + .programList_pc {
    display: block;
  }
  .programList_pc a {
    position: relative;
    margin-left: 24px;
    padding: 0px 0;
    font-size: 1.4rem;
    font-weight: normal;
  }
  .programList_pc a:before {
    display: block;
    content: '';
    width: 8px;
    height: 2px;
    background: #000;
    position: absolute;
    top: 50%;
    left: -14px;
  }
}
.footerTop_item > li.programList_sp {
  display: none;
  width: 100%;
  text-align: left;
}
.programList_sp {
  padding:8px 0;
  background: rgba(0, 0, 0, 0.1);
}
.programList_sp a {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  padding: 0 16px;
  font-size: 1.3rem;
}
.programList_sp a span:nth-child(1) {
  width: 4em;
}
.programList_sp a span:nth-child(2) {
  width: calc(100% - 4em);
}
.footerTop_item .bnrDL {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .footerTop_item .bnrDL {
    display: block;
    width: auto;
  }
}
.footerTop_item .bnrDL span,
.footerTop_item .bnrDL a {
  display: block;
  margin: 16px auto 0;
  /* padding: 8px 0; */
  padding: 18px 0;
  color: #5B5B5B;
}
@media print, screen and (min-width: 768px) {
  .footerTop_item .bnrDL span,
  .footerTop_item .bnrDL a {
    margin: 8px 0 0;
    /* padding: 4px 10px 4px 32px; */
    padding: 18px 10px 18px 32px;
    font-size: 1.3rem;
    background: url(../img/cmn/icn_people.svg) no-repeat 8px center #FFF;
  }
  .footerTop_item .bnrDL span {
    display: inline-block;
    background: url(../img/cmn/icn_people.svg) no-repeat 8px center #a29a9a;
  }
  .footerTop_item .bnrDL a:hover {
    text-decoration: none;
    background: url(../img/cmn/icn_people.svg) no-repeat 8px center #A1ABB6;
    color: #FFF;
  }
}
.footerLink_more {
  position: relative;
}
@media print, screen and (max-width: 320px) {/*幅320pxまで用調整*/
  .footerLink_more {
    padding-top: 2px;
    font-size: 1.2rem;
  }
}
.footerLink_more .open_icn {
  width: 40px;
  height: 40px;
  top: -3px;
  right: -20px;
}
.footerLink_more .open_icn:before,
.footerLink_more .open_icn:after {
  background: #1F1F1F;
}
.footerBtm {
  padding: 8px 16px;
  background: #5E5E5E;
  color: #FFF;
}
@media print, screen and (min-width: 768px) {
  .footerBtm {
    padding: 0;
  }
  .footerBtm_inr {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    min-width: 900px;
    padding: 16px 24px;
    margin: 0 auto;
  }
}
.footerBtm_item {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.footerBtm_item a {
  color: #FFF;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  .footerBtm_item a {
    font-size: 1.3rem;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .footerBtm_item a:hover {
    color: #0091DC;
    text-decoration: underline;
  }
}
.footerBtm_item li:not(:last-child)::after {
  display: inline-block;
  content: "｜";
  padding: 0 4px;
  font-size: 1rem;
}
.logo_jst {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .logo_jst {
    margin-bottom: 4px;
    text-align: right;
    width:200px!important;
    height:50px;
    position:absolute;
    top:25px;
    right:50px;
  }
}
.logo_jst a {
  display: block;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .logo_jst a img {
    -webkit-transition: all .2s;
    transition: all .2s;
  }
}
.copy {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .copy {
    font-size: 1.2rem;
  }
}

/* go topボタン */
#pageTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 22;
}
#pageTop a {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  background : #A1ABB6;
  color: #fff;
  opacity: 0.7;
}
@media print, screen and (min-width: 768px) {
  #pageTop a {
    width: 50px;
    height: 50px;
  }
}
#pageTop a:hover {
  opacity: 0.7;
}
#pageTop a:active {
  opacity: 1;
}
#pageTop a:after {
  position: absolute;
  right: 14px;
  top: 40%;
  display: block;
  content:"";
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  #pageTop a:after {
    right: 17px;
    width: 15px;
    height: 16px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
  }
}

/* footerlogo */
.ftlogo {
	display: inline;
	width: 100%;
	margin: 10px 0;
}

.ftlogo a {
	text-align: center;
  display: block;
  max-width: 260px;
  margin: 0;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 3px;
  color: #5B5B5B;
  font-size: 1.3rem;
}

.ftlogo a:hover {
    text-decoration: none!important;
    background-color: #A1ABB6;
    color: #FFF!important;
}

@media print, screen and (max-width: 768px) {
  .ftlogo {
    display: block;
    margin-top: 10px;
    width: 100%!important;
  }
  .ftlogo a {
    display: block;
    margin: 0 auto;
    font-weight: bold;
  }
  .ftlogo a:hover {
    color: #5B5B5B!important;
    background-color: #FFF;
  }
}

/* SNSの吹き出し（PCのみ） */
.fukidashi {
  visibility: hidden;
}

@media print, screen and (max-width: 767px) {
  .fukidashi {display: none;}
}

@media print, screen and (min-width: 768px) {
  .sns_btn a {
    position: relative;
    display: block;
    padding: 4px 0;
  }
  .sns_btn {
	  position:absolute;
	  top:30px;
	  right:268px;
  }

  .fukidashi {
    position: absolute;
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
    border: 1px gray solid;
    border-radius: 4px;
    background-color: #fff;
    width: 110px;
    bottom: calc(100% - 2px);
    left: -40px;
    padding: 5px;
    box-sizing: border-box;
    color: #333;
    font-size: 0.8em;
    text-align: center;
    line-height: 1.2em;
    word-wrap: break-word;
    pointer-events: none;
  }

  .sns_btn a:hover:before, .anchor-link_menu a:hover:before {
    opacity: 1;
    visibility: visible;
  }

  .sns_btn a:hover span.fukidashi, 
  .anchor-link_menu a:hover span.fukidashi,
  a.clickimg:hover span.fukidashi
   {
    opacity: 1;
    visibility: visible;
  }
  
  .anchor-link_menu li, .clickimg {position: relative;}
  .anchor-link_menu li .fukidashi {
    position: absolute;
    left: 10px;
    bottom: 40px;
    min-width: 200px;
  }
  .clickimg .fukidashi {position: absolute; width: calc(100% - 20px); margin: 0 10px; left: 0; bottom: 5px;}
}

@media print, screen and (max-width: 768px) {
  .anchor-link_menu li .fukidashi {display: none;}
}

/* ここまで */