@charset "UTF-8";
/* ====================================================
reset style
==================================================== */

html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

img {
  vertical-align: middle;
}

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

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/

input,
textarea,

/*because legend doesn't inherit in IE */

legend {
  color: #000;
}

del,
ins {
  text-decoration: none;
}

/* ====================================================
Font
==================================================== */

/* ====================================================
Color
==================================================== */

/* ====================================================
Position & transform
==================================================== */

/* ====================================================
Media Quary
==================================================== */

/* ====================================================
Sizing
==================================================== */

/* ====================================================
Misc
==================================================== */

/* ====================================================
Transiton
==================================================== */

/* ====================================================
opacity
==================================================== */

/* ====================================================
flexbox
==================================================== */

/* ====================================================
Base style & container
==================================================== */

html.fontS {
  font-size: 9px;
  /* font-size: 85%; */
}

html.fontM {
  font-size: 11px;
  /* font-size: 100%; */
}

html.fontM.border_scroll {
  left: 32.5px;
}

html.fontL {
  font-size: 13px;
  /* font-size: 110%; */
}

html.fontL.border_scroll {
  left: 64px;
}

body,
body.en {
  color: #333;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 100%;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  position: relative;
}

.hidden {
  overflow-y: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}

.overlay.active {
  opacity: 0.3;
  visibility: visible;
}

.container {
  display: block;
  margin: 0 auto;
}

.inner {
  margin: 0 auto;
  padding: 30px 20px;
  position: relative;
  max-width: 1440px;
}

.inner ol li {
  list-style: decimal;
  line-height: 1.5em;
  height: auto;
}

.inner ol ul li {
  list-style: none;
}

.inner ol.imgtext li {
  list-style: none;
}

div.inner em {
  font-style: italic;
}

.inner del {
  text-decoration: line-through;
}

@media screen and (max-width: 737px) {
  .inner {
    padding: 0 4%;
  }
}

@media screen and (max-width: 737px) {
  .pc {
    display: none !important;
  }

  .shortTermSpan p {
    display: block;
  }
}

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

  .shortTermSpan p {
    display: inline-block;
  }
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

a {
  /*color: #313131;*/
  text-decoration: none;
}

section.wyswyg1 a,
section.content-article.news a {
  color: #2e82cc;
}

.txtLink {
  text-decoration: underline;
}

.txtLink:hover {
  opacity: 0.7;
}

/*a:link{	color: #666; }
a:visited{color: #666; }
a:hover{color: $color-purple; }
a:active{color: $color-purple; }
*/

img {
  max-width: 100%;
  height: auto;
}

.img100 {
  width: 100%;
}

.al-c {
  text-align: center;
}

.al-r {
  text-align: right;
}

.align-t {
  vertical-align: top;
}

.rollover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 20px;
  display: block !important;
}

.rollover:hover {
  opacity: 0.6;
  filter: alpha(opacity=70);
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-box.content-fs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-box.content-fe {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-box.content-bw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-box.content-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-box.align-fs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-box.align-fe {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-box.align-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-box .col-2 {
  width: 50%;
}

.bold {
  font-weight: bold;
}

.en {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.min {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-transform: rotate(0.03deg);
  -ms-transform: rotate(0.03deg);
  transform: rotate(0.03deg);
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

/* ====================================================
Float & clear
==================================================== */

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* ====================================================
Header
==================================================== */

.information-box {
  padding: 35px 0;
  background: #eeeeee;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 737px) {
  .information-box {
    padding: 10px 0;
  }
}

.information-box p {
  padding-right: 2.85%;
  width: calc(100% - 64px);
  border-right: 2px solid #bebebe;
}

@media screen and (max-width: 737px) {
  .information-box p {
    width: calc(100% - 30px);
    border-right: 0;
  }
}

.information-box .btn-close {
  padding: 0;
  padding-left: 30px;
  width: 64px;
}

@media screen and (max-width: 737px) {
  .information-box .btn-close {
    padding: 0;
    padding-left: 10px;
    width: 30px;
  }

  .information-box .btn-close img {
    height: auto;
  }
}

.btn-close {
  cursor: pointer;
}

@media screen and (min-width: 737px) {
  .pc-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
}

.is-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.fixed-content {
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.fixed-content.fixed-top {
  position: fixed;
  width: 100%;
  top: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 999;
}

#header{
	width: inherit;
	position: fixed;
	 background: url("../img/background.jpeg") no-repeat;
	z-index: 999;
}

#header:before {
  position: relative;
  background: url("../img/background.jpeg") no-repeat;
  z-index: 10;
}

@media screen and (max-width: 737px) {
  .fixed-content {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .content-body {
    margin-top: 60px;
  }

  .fixed-content.fixed-top {
    position: fixed;
    width: 100%;
    top: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    z-index: 999;
  }

  #header {
    padding: 0;
    height: 60px;
  }

  #header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

#header .logo {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

#header .logo.sp {
  display: none !important;
}

@media screen and (max-width: 737px) {
  #header .logo img {
    width: auto;
    height: auto;
  }
}

#header .logo:hover {
  opacity: 0.7;
}

#header .font-size {
  position: relative;
  margin-left: 34px;
  width: 80px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

#header .font-size .btn-size {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  width: 15px;
  line-height: 22px;
  text-align: center;
  vertical-align: bottom;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#header .font-size .btn-size.active {
  opacity: 1;
}

#header .font-size .btn-size:hover {
  opacity: 1;
}

#header .font-size .btn-size:hover:before {
  left: 50%;
  opacity: 1;
}

#header .font-size .btn-size.btn-s {
  font-size: 1.6em;
}

#header .font-size .btn-size.btn-m {
  font-size: 2.3em;
}

#header .font-size .btn-size.btn-l {
  font-size: 2.7em;
}

@media screen and (max-width: 737px) {
  .overlay #header {
    background: #fff;
  }

  .overlay #header .logo.navClose {
    display: none;
  }

  .overlay #header .logo.sp {
    display: block !important;
  }
}

.border_scroll {
  width: 15px;
  height: 7px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background-color: #fff;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media screen and (max-width: 737px) {
  .function {
    padding: 20px 4%;
    background: #313131;
  }

  .function.flex-box.content-bw.align-c.sp form {
    width: 100%;
  }
}

.function .search-box {
  margin-left: 50px;
  width: 300px;
}

@media screen and (max-width: 737px) {
  .function .search-box {
    margin-left: 0;
    width: 100%;
  }
}

/* for autocomplete search */
.ui-widget-content a {
  font-size: 15px;
  font-size: 1.5rem;
}

.ui-menu-item-wrapper {
  font-size: 15px;
  font-size: 1.5rem;
}

.ui-menu .ui-menu-item {
  padding: 5px 0px 5px 1.4em !important;
}

.ui-state-active {
  border: none !important;
  background: none !important;
  font-weight: bold !important;
  color: #072549 !important;
  padding: 0 0;
}

.function .search-box input {
  height: 34px;
  font-size: 14px;
  font-size: 1.2rem;
}

.function .search-box input[type="text"] {
  padding: 0 20px;
  color: #8f8f8f;
  width: 200px;
  background: #fff;
}

.ui-autocomplete {
  max-height: 250px;
  overflow-y: auto;
  /* prevent horizontal scrollbar */
  overflow-x: hidden;
  /* add padding to account for vertical scrollbar */
  padding-right: 20px;
}

@media screen and (max-width: 737px) {
  .function .search-box input[type="text"] {
    padding: 0 5px;
    width: calc(100% - 65px);
    height: 50px;
  }
}

.function .search-box .btn-submit {
  margin-left: 10px;
  width: 54px;
  height: 34px;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  background: #072549;
  border: 3px solid #072549;
}

body.en .function .search-box .btn-submit {
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 737px) {
  .function .search-box .btn-submit {
    margin-left: 5px;
    padding: 0 5px;
    width: 60px;
    height: 50px;
  }
}

.function .search-box .btn-submit:after {
  background: #fff;
}

@media screen and (min-width: 737px) {
  .function .search-box .btn-submit:hover {
    color: #072549;
  }
}

.function .language {
  width: 72px;
  line-height: 30px;
	border: 2px solid #333;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
}


@media screen and (max-width: 737px) {
  .function .language {
    width: 84px;
    line-height: 42px;
  }
}

.function .language a {
  cursor: pointer;
}

.function .language .btn-switch {
  position: relative;
  width: 50%;
  color: #333;
  font-size: 1.2rem;
  text-align: center;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  z-index: 2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

.function .language .btn-switch span {
  opacity: 0.5;
}

.function .language .btn-switch:before {
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  border: 1px solid #fff;
}

.function .language .btn-switch:hover,
.function .language .btn-switch.active {
  color: #313131;
}

.function .language .btn-switch:hover span,
.function .language .btn-switch.active span {
  opacity: 1;
}

.function .language .btn-switch:hover:before,
.function .language .btn-switch.active:before {
  background-color: #fff;
}

.function .language .btn-switch.active {
  background-color: #fff;
}

.function .language .btn-switch:first-child:before {
  right: -110%;
}

.function .language .btn-switch:first-child:hover:before {
  right: 0;
}

.function .language .btn-switch:last-child:before {
  left: -110%;
}

.function .language .btn-switch:last-child:hover:before {
  left: 0;
}

@media screen and (max-width: 737px) {
  .language-wrap {
    padding: 0;
  }
}

@media print {
  .language-wrap {
    display: none;
  }

  .flex-box.content-bw.align-c.sp {
    display: none;
  }


  .navGlobal.sp {
    display: none;
  }

  .archive-years {
    display: none;
  }

  .page-ttl {
    display: none;
  }

  .navGlobal {
    display: none;
  }

  .sp {
    display: none;
  }

  .article-k5.article-k4 .inner-k5 .news-list {
    width: 100% !important;
    margin-left: 0% !important;
  }

  #main-footer {
    display: none;
  }
}

@media screen and (max-width: 737px) {
  .language-wrap .language {
    width: 82px;
  }

  .language-wrap .language .btn-switch {
    font-size: 15px;
    font-size: 1.5rem;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: -10px;
    z-index: 10;
    background: #313131;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 36px;
    height: 3px;
    background-color: #fff;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 16px;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 28px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 16px;
  }

  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(-315deg);
    -ms-transform: translateY(14px) rotate(-315deg);
    transform: translateY(14px) rotate(-315deg);
  }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(315deg);
    -ms-transform: translateY(-12px) rotate(315deg);
    transform: translateY(-12px) rotate(315deg);
  }
}

.navGlobal {
  opacity: 1;
}

@media screen and (max-width: 737px) {
  .navGlobal {
    display: none;
    position: absolute;
    z-index: 9999;
    top: 60px;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    opacity: 0;
  }
}

.navGlobal.active {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

.navGlobal .navGlobalIn {
  padding: 10px 0;
  text-align: center;
}

@media screen and (min-width: 737px) {
  .navGlobal .navGlobalIn {
    display: block;
    padding: 35px 0 22px;
    text-align: right;
  }
}

@media screen and (max-width: 1120px) {
  .navGlobal .navGlobalIn {
    text-align: center;
  }
}

.navGlobal .navGlobalIn li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
}

@media screen and (max-width: 737px) {
  .navGlobal .navGlobalIn li {
    padding: 10px 0;
    width: 50%;
  }
}

@media screen and (min-width: 737px) {
  .navGlobal .navGlobalIn li {
    display: inline-block;
    padding: 0 1.85% 10px;
    text-align: center;
    /* font-size: 16px; */
  }

  .navGlobal .navGlobalIn li img,
  .navGlobal .navGlobalIn li br {
    display: none;
  }

  body.en .navGlobal .navGlobalIn li br {
    display: block;
  }

  .news-list .navGlobal .navGlobalIn li a {
    display: block;
  }

  .navGlobal .navGlobalIn li a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding-bottom: 4px;
    padding-top: 1px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    vertical-align: middle;
  }

  .navGlobal .navGlobalIn li a:hover,
  .navGlobal .navGlobalIn li a.active {
    color: #072549;
  }

  .navGlobal .navGlobalIn li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .navGlobal .navGlobalIn li a:hover::after,
  .navGlobal .navGlobalIn li a.active::after {
    left: 0;
    background-color: #072549;
  }

  .news-list .navGlobal .navGlobalIn li a:hover::after,
  .news-list .navGlobal .navGlobalIn li a.active::after {
    left: 0;
    background-color: #fff;
  }

  html.fontL .navGlobalIn li {
    font-size: 1.15vw !important;
  }

  html.fontL .navGlobal .navGlobalIn li {
    padding: 0 0.85% 10px !important;
  }
}

@media screen and (min-width: 737px) and (max-width: 1350px) {
  .navGlobal .navGlobalIn li {
    display: inline-block;
    padding: 0 1.47% 10px;
    font-size: 1.9vw;
    vertical-align: middle;
  }

  span {
    /* display: inline-block;
        text-align: center; */
  }

  .navGlobal .navGlobalIn li {
    vertical-align: middle;
  }

  .navGlobal .navGlobalIn li br {
    display: block;
    line-height: 1.4;
  }

  .navGlobal .navGlobalIn li img {
    display: none;
  }

  html.fontS .navGlobalIn li span {
    font-size: 1.3vw;
  }

  html.fontM .navGlobalIn li span {
    font-size: 1.5vw;
    text-align: center;
  }

  html.fontL .navGlobalIn li span {
    font-size: 1.9vw;
    text-align: center;
  }

  html.fontS .navGlobalIn li span br {
    display: none;
  }

  html.fontM .navGlobalIn li span br,
  html.fontL .navGlobalIn li span br {
    display: block;
  }
}

@media screen and (max-width: 737px) {
  .navGlobal .navGlobalIn li span {
    display: inline-block;
    width: 100%;
    margin-top: 8px;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .navGlobal .navGlobalIn li:nth-child(4) span,
  .navGlobal .navGlobalIn li:nth-child(5) span {
    padding-top: 0.5em;
  }
}

@media (min-width: 1500px) {
  .navGlobal .navGlobalIn.lg li {
    padding: 0 0.85% 10px !important;
  }
}

/* ====================================================
Footer
==================================================== */


#main-footer {
  background: #fff;
  clear: both;
}

#main-footer .logo {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
}

#main-footer .logo a {
  display: inline-block;
  margin-top: 10px;
}

@media screen and (max-width: 737px) {
  #main-footer {
    padding: 0 0 20px;
  }

  #main-footer .flex-box {
    padding-top: 30px;
    display: block;
    text-align: center;
  }

  #main-footer .logo {
    display: inline-block;
    margin-bottom: 40px;
    text-align: left;
    font-size: 18px;
    font-size: 1.8rem;
  }

  #main-footer .logo a {
    margin-top: 5px;
  }
}

#main-footer .ft-nav {
  margin-left: 20px;
  margin-top: 30px;
  line-height: 2.6;
}

#main-footer .ft-nav li {
  display: inline-block;
  margin: 0 20px;
}

#main-footer .ft-nav li a {
  padding: 10px 0;
  color: #000;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  #main-footer .ft-nav {
    margin-left: 0px;
    margin-top: 0px;
  }
}

#main-footer a {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}

#main-footer a:hover {
  opacity: 0.7;
}

#main-footer .copyright {
  margin-top: 35px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

@media screen and (max-width: 737px) {
  #main-footer .copyright {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

#main-footer:after,
#main-footer:before {
  content: "";
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1000px;
}

#main-footer:after {
  background-color: #242424;
  z-index: -2;
}

#main-footer:before {
  background-color: #000;
  opacity: 0.3;
  z-index: -1;
}

.content-body {
  background-color: #fff;
}

body.overlay {
  position: fixed;
  height: 100%;
}

body.overlay:before {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 9;
}

/* ====================================================
MODULE
==================================================== */

/*パンくずMODULE*/

.breadcrumb {
  margin-bottom: 20px;
  color: #fff;
  font-size: 12px;
  font-size: 1.4rem;
}

.breadcrumb.wt {
  color: #333;
}

@media screen and (max-width: 737px) {
  .breadcrumb {
    margin-bottom: 5px;
    font-size: 10px;
    font-size: 1rem;
  }
}

.breadcrumb a {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb.wt a {
  color: #333;
}

.breadcrumb > div {
  display: inline-block;
}

.breadcrumb > span {
  display: inline-block;
  vertical-align: top;
}

/*見出しMODULE*/

.page-ttl {
  position: relative;
  padding: 40px 0;
  height: auto;
  background: #428bca;
}

@media screen and (max-width: 737px) {
  .page-ttl {
    /*		padding:20px 0;*/
    padding: 10px 0;
    /*		height: 100px;*/
    height: auto;
    background-size: auto 100px;
    background: #428bca;
  }
}

.page-ttl.bg-colomn {
  position: relative;
  padding: 40px 0;
  height: 400px;
  background: url(https://www.nicjp.niad.ac.jp/en/images/banner.jpg) no-repeat
    center center;
  background-size: cover;
}

@media screen and (max-width: 737px) {
  .page-ttl.bg-colomn {
    height: 200px;
  }
}

.page-ttl.bg-colomn2 {
  position: relative;
  padding: 40px 0;
  height: 400px;
  background: url(https://www.nicjp.niad.ac.jp/en/images/banner.png) no-repeat
    center center;
  background-size: cover;
}

@media screen and (max-width: 737px) {
  .page-ttl.bg-colomn2 {
    height: 200px;
  }
}

.page-ttl02 {
  position: relative;
  padding: 40px 0 70px;
  height: 276px;
  background: #072549;
  background: url(https://www.nicjp.niad.ac.jp/en/images/bg_pageTtl02.png)
    no-repeat center center;
}

@media screen and (min-width: 737px) {
  .page-ttl02 .bnr-area {
    width: 32%;
  }

  .page-ttl02 .ttl-area {
    width: 64%;
  }
}

@media screen and (max-width: 737px) {
  .page-ttl02 {
    padding: 20px 0;
    height: auto;
    background-size: cover;
  }

  .page-ttl02 .inner {
    display: block;
  }

  .page-ttl02 .tags-wrap-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 5px;
  }

  .page-ttl02 .tags-wrap-sp .tags {
    width: calc(100% - 120px);
  }

  .page-ttl02 .tags-wrap-sp .bnr-area {
    width: 100px;
  }
}

@media screen and (min-width: 737px) {
  .page-ttl02 .tags {
    margin-top: 15px;
  }
}

.page-ttl02 .tags span {
  display: inline-block;
  margin-right: 8px;
  padding: 0 10px;
  min-width: 100px;
  line-height: 28px;
  height: 28px;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 15px;
  background: #fff;
}

@media screen and (max-width: 737px) {
  .page-ttl02 .tags span {
    font-size: 12px;
    font-size: 1.2rem;
    min-width: 70px;
    line-height: 24px;
    height: 24px;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .page-ttl02 .tags span {
    line-height: 33px;
  }
}

.plpc-160 {
  padding-left: 160px;
}

.sec-bdr.wyswyg1 .inner > div {
  padding-left: 7vw;
  font-size: 1.6rem;
}

.sec-bdr.wyswyg1 .inner > div.mid {
  padding-left: 8vw;
  padding-bottom: 60px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 790px) {
  .plpc-160 {
    padding-left: 0;
  }

  .sec-bdr.wyswyg1 .inner > div {
    padding-left: 0;
    padding-bottom: 0;
  }
}

.ttlCom01 {
  color: #fff;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
}

@media screen and (max-width: 737px) {
  .ttlCom01 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.ttlCom02 {
  position: relative;
  margin-bottom: 20px;
  padding-top: 8px;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1.6rem;
}

.ttlCom02:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #eee;
}

.ttlCom02:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 2px;
  background: #072549;
}

@media screen and (max-width: 737px) {
  .ttlCom02 {
    padding-top: 18px;
    font-size: 14px;
    font-size: 1.4rem;
  }

  .ttlCom02:before {
    width: 44%;
    height: 10px;
  }

  .ttlCom02:after {
    width: 40px;
    height: 10px;
  }

  .universityHighlight label,
  .senmonLabel label {
    width: 85%;
    float: left;
  }

  span.plus {
    width: 15%;
    display: inline-block;
    padding: 20px 5px;
    border-top: 1px solid #072549;
    border-bottom: 1px solid #072549;
    border-right: 1px solid #072549;
    background: #eee;
    color: #072549;
  }

  span.minus {
    width: 15%;
    display: inline-block;
    padding: 20px 5px;
    border-top: 1px solid #072549;
    border-bottom: 1px solid #072549;
    border-right: 1px solid #072549;
    background: #eee;
    color: #072549;
  }

  /* .universityHighlight label.plus::before {
        content: '+';
        position: absolute;
        top: 50%;
        right: 5%;
        width: 20px;
        height: 20px;
        transform: translateY(-50%);
    }
    .universityHighlight label.minus::before {
        content: '-';
        position: absolute;
        top: 50%;
        right: 0;
        width: 20px;
        height: 20px;
        transform: translateY(-50%);
    } */
}

.faq-col h2 {
  color: #000;
  font-weight: 700;
  line-height: 1.25;
  margin: 30px auto 30px;
}

.paragarph {
  word-wrap: break-word;
  font-size: 18px;
}

@media screen and (max-width: 737px) {
  .sec-bdr .inner > h2 {
    margin-bottom: 15px;
    padding-top: 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

/*リンクMODULE*/

.linkCmn01 {
  display: inline-block;
  position: relative;
  color: #333;
  font-weight: bold;
  text-decoration: underline;
}

.linkCmn01.icn-outLink {
  padding-left: 18px;
  padding-right: 20px;
  background: url(https://www.nicjp.niad.ac.jp/en/images/icn-outLink.png)
    no-repeat right center;
  background-size: 12px auto;
}

.linkCmn01:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 1px;
  background: #072549;
}

.sec-bdr .inner > div.top_line {
  position: relative;
  padding-bottom: 20px;
  padding-top: 26px;
  color: #072549;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}

.sec-bdr .inner > div.top_line:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 240px;
  height: 4px;
  background: #072549;
}

/*ボタンMODULE*/

@media screen and (min-width: 737px) {
  .btn-Skew--Fill {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
    /*		text-transform: uppercase;*/
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 2;
  }

  .btn-Skew--Fill:after {
    position: absolute;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    content: "";
    bottom: 0;
    width: 0;
    height: 120%;
    left: -16%;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
    z-index: -1;
  }

  .btn-Skew--Fill:hover {
    cursor: pointer;
  }

  .btn-Skew--Fill:hover:after {
    left: -18%;
    width: 140%;
  }
}

.btn {
  display: inline-block;
  padding: 10px 10px;
  color: #fff;
  font-size: 28px;
  font-size: 1rem;
  line-height: 1;
  background: #072549;
  cursor: pointer;
}

@media screen and (max-width: 737px) {
  .btn {
    padding: 16px 10px;
    font-size: 20px;
    font-size: 2rem;
  }
}

@-webkit-keyframes fade {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes fade {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.add-btn {
  background: #072549;
  border: 3px solid #072549;
  padding: 10px 10px;
  margin: 15px 0;
  width: 80%;
  font-size: 20px;
  font-size: 2rem;
}

.btn-search > span,
.btn-search.big-search > span {
  border: 0;
  padding: 0px 0px 0px 44px;
  background-repeat: no-repeat;
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon05.png) no-repeat
    left center;
  background-size: 26px auto;
  width: auto;
  vertical-align: initial;
  display: inline-block;
}

.btn-search > span {
  border: 0;
  width: 80%;
  margin: auto;
  /* padding-left: 40px; */
  padding: 17px 0 18px 40px;
  background-repeat: no-repeat;
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon05.png) no-repeat
    left center;
  background-size: 26px auto;
  display: block;
  font-size: 24px !important;
  font-size: 2.4rem !important;
  vertical-align: middle;
}

@media screen and (max-width: 1240px) {
  .sec-searchList .btn-search > span {
    width: 15%;
  }
}

@media screen and (max-width: 737px) {
  .btn-search > span {
    padding-left: 30px;
    background-size: 22px auto;
  }

  .btn-search > span.min {
    width: 108px;
  }

  .sec-searchList .btn-search > span {
    width: 40%;
  }
}

.btn-search:hover {
  /* -webkit-animation: fade 0.6s linear;
    animation: fade 0.6s linear; */
  opacity: 0.9;
}

.btn-submit > span {
  border: 0;
  padding-left: 44px;
  background-repeat: no-repeat;
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon05.png) no-repeat
    left center;
  background-size: 26px auto;
}

@media screen and (max-width: 737px) {
  .btn-submit > span {
    padding-left: 30px;
    background-size: 22px auto;
  }

  .sp-plus {
    display: inline-block;
  }
}

@media screen and (min-width: 737px) {
  .sp-plus {
    display: none;
  }

  .btn-submit:after {
    background: #fff;
  }

  .btn-submit:hover {
    color: #072549;
  }

  .btn-submit:hover span {
    background: url(https://www.nicjp.niad.ac.jp/en/images/icon05_on.png)
      no-repeat left center;
    background-size: 26px auto;
  }
}

.btn-base {
  display: inline-block;
  padding: 18px 30px;
  color: #666666;
  font-size: 16px;
  font-size: 1.2rem;
  line-height: 1;
  background: #fff;
  border: 1px solid #666666;
  cursor: pointer;
}

.btn-base:hover > span > a {
  color: #fff;
}

@media screen and (max-width: 737px) {
  .btn-base {
    padding: 12px 30px;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 737px) {
  .btn-base:after {
    background: #666666;
  }

  .btn-base:hover {
    color: #072549;
  }
}

.btn-clear span {
  padding-left: 42px;
  background: url(https://www.nicjp.niad.ac.jp/en/images/btn_clear_on.png)
    no-repeat left center;
  background-size: 23px auto;
}

@media screen and (max-width: 737px) {
  .btn-clear span {
    padding-left: 30px;
    background-size: 16px auto;
  }
}

@media screen and (min-width: 737px) {
  .btn-clear:hover {
    color: #fff;
  }

  .btn-clear:hover span {
    background: url(https://www.nicjp.niad.ac.jp/en/images/btn_close_off.png)
      no-repeat left center;
    background-size: 23px auto;
  }
}

.btn--Arrow--move {
  padding: 12px 20px;
  color: #313131;
  overflow: hidden;
}

@media screen and (max-width: 737px) {
  .btn--Arrow--move span {
    padding-left: 30px;
    background: url(https://www.nicjp.niad.ac.jp/en/images/arrow_pur_left.png)
      no-repeat left center;
    background-size: 16px auto;
  }
}

@media screen and (min-width: 737px) {
  .btn--Arrow--move {
    padding: 18px 20px;
    border-color: #062549;
  }

  .btn--Arrow--move span {
    display: block;
    position: relative;
    padding-left: 42px;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }

  .btn--Arrow--move span:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -5px;
    width: 23px;
    height: 11px;
    background: url(https://www.nicjp.niad.ac.jp/en/images/arrow_pur_left.png)
      no-repeat left center;
    background-size: contain;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }

  .btn--Arrow--move span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    margin-top: -5px;
    width: 23px;
    height: 11px;
    background: url(https://www.nicjp.niad.ac.jp/en/images/arrow_wh_left.png)
      no-repeat left center;
    background-size: 23px auto;
    opacity: 0;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }

  .btn--Arrow--move:hover {
    color: #fff;
    background: #072549;
    padding-right: 20px;
  }

  .btn--Arrow--move:hover span {
    margin-left: -42px;
  }

  .btn--Arrow--move:hover span:before {
    opacity: 0;
  }

  .btn--Arrow--move:hover span:after {
    right: 0;
    opacity: 1;
  }
}

.btn-back-box {
  margin: 10px 4%;
}

@media screen and (min-width: 737px) {
  .btn-back-box {
    margin: 20px 0 0px;
    padding-bottom: 20px;
  }

  .news.btn-back-box {
    margin: 0;
  }

  .btn-back-box .w240 {
    min-width: 240px;
  }
}

.btn-border {
  border: 1px solid #454545;
}

.btn-back {
  min-width: 206px;
  float: left;
}

.btn-back span,
.btn-go span {
  padding-left: 0;
  background: none;
}

.btn-back:hover,
.btn-go:hover {
  background-color: #666;
  transition: 0.2s ease-in;
}

.btn-back:hover span,
.btn-go:hover span {
  background: none;
}

@media screen and (max-width: 737px) {
  .btn-back {
    margin-bottom: 10px;
  }
}

.pb-10 {
  padding-bottom: 10px;
  background: white;
}

.bg_white {
  background: white;
  padding-top: 1px;
}

/*リストMODULE*/

/*ボックスMODULE*/

/*グリッドMODULE*/

/*フォームMODULE*/

/*フォーム パーツ*/

/*radio*/

.radiobox label {
  position: relative;
  display: block;
  word-break: break-all;
  margin: 0 5px;
  padding: 0 10px;
  line-height: 40px;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 24px;
}

@media screen and (max-width: 737px) {
  .radiobox label {
    margin: 0 15px;
  }
}

.radiobox label input[type="checkbox"] + span,
.radiobox label input[type="radio"] + span {
  position: relative;
  padding: 0 0 0 30px;
}

.radiobox label span {
  display: inline-block;
}

.radiobox label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.radiobox label input[type="radio"] + span:before {
  position: absolute;
  top: calc(50% + 5px);
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  z-index: 0;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-radius: 50%;
}

.radiobox label input[type="radio"] + span:after {
  position: absolute;
  top: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  z-index: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 2px #adadad solid;
  border-radius: 50%;
}

.radiobox label input[type="radio"]:checked + span:before {
  background: #072549;
}

/*checkbox*/
.checkbox label {
  position: relative;
  display: block;
  word-break: break-all;
  margin: 0 5px;
  line-height: 20px;
  cursor: pointer;
  font-size: 16px;
  font-size: 1.6rem;
}

body.en .checkbox label {
  word-break: keep-all;
}

@media screen and (max-width: 737px) {
  .checkbox label {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.checkbox label input[type="checkbox"] + span::before {
  border-color: #adadad;
}

.checkbox label input[type="checkbox"]:checked + span::before {
  background-color: #072549;
  border-color: #072549;
}

.checkbox span {
  display: inline-block;
  margin-left: 30px;
}

body.en .checkbox span {
  word-break: break-word !important;
  -ms-word-break: break-word !important;
  word-wrap: break-word !important;
}

.checkbox input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  display: none;
}

.checkbox input[type="checkbox"] + span::before,
.checkbox input[type="checkbox"] + span::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.checkbox input[type="checkbox"] + span::before {
  z-index: 0;
  background-color: #fff;
  width: 20px;
  height: 20px;
  border: 2px #adadad solid;
}

.checkbox input[type="checkbox"] + span::after {
  z-index: 1;
  margin: 5px 7px;
  width: 6px;
  height: 9px;
}

.checkbox input[type="checkbox"]:checked + span::before {
  background-color: #616161;
}

.checkbox input[type="checkbox"]:checked + span::after {
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox input[type="checkbox"]:disabled.itemChild + span::before {
  background-color: #cdcdcd;
}

/*custom-select*/

.custom-select {
  position: relative;
}

.custom-select .selectInput {
  position: relative;
  padding: 18px 18px;
  width: 100%;
  background: #fff;
  font-size: 16px !important;
  font-size: 1.6rem !important;

  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .custom-select .selectInput {
    padding: 20px 20px 16px;
  }
}

@media screen and (max-width: 737px) {
  .custom-select .selectInput {
    padding: 12px 20px;
    padding: 15px;
    position: relative;
    cursor: pointer;
  }

  .custom-select .selectInput.accordion:after {
    content: "\f067";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    font: normal normal normal 1.4em/1 FontAwesome;
    font-size: inherit;
  }

  .custom-select .selectInput.accordion.open:after {
    content: "\f068";
  }
}

.custom-select .selectInput:before {
  content: "";
  position: absolute;
  right: 18px;
  margin-top: 5px;
  width: 1px;
  height: 5px;
  border: 4px solid transparent;
  border-top: 4px solid #434a54;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 737px) {
  .custom-select .selectInput:before {
    margin-top: 0;
    width: 0px;
    height: 0px;
    border: 6px solid transparent;
    border-left: 6px solid #434a54;
  }
}

.custom-select .selectInput:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 4px);
  height: 2px;
  background: #92940b;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom-select .selectInput span {
  padding: 2px 0 5px 40px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .custom-select .selectInput span {
    padding: 14px 0 10px 40px;
  }
}

.custom-select.active {
  z-index: 99;
}

.custom-select.active .selectInput:after {
  opacity: 1;
}

.custom-select.school .selectInput span {
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon02.png) no-repeat
    left center;
  background-size: 28px auto;
  display: block;
  padding: 0;
  padding-left: 34px;
  font-size: 15px !important;
  font-size: 1.5rem !important;
}

.custom-select.school .oputionBox {
  padding: 12px 25px;
  width: 814px;
  left: 50%;
}

@media screen and (max-width: 820px) {
  .custom-select.school .oputionBox {
    left: 10px;
  }
}

@media screen and (max-width: 737px) {
  .custom-select.school .oputionBox {
    left: 0;
    width: 100%;
  }
}

.custom-select.school .oputionBox.cat-field {
  display: none;
}

@media only screen and (max-width: 340px) {
  .custom-select.school .oputionBox {
    padding: 12px 20px;
  }
}

.custom-select.area .selectInput span {
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon04.png) no-repeat
    left center;
  background-size: 28px auto;
  font-size: 15px !important;
  font-size: 1.5rem !important;
  /* display: block; */
}

.custom-select.area .oputionBox {
  width: 270px;
  left: 10px;
}

@media screen and (max-width: 737px) {
  .custom-select.area .oputionBox {
    left: 0;
    width: 100%;
  }
}

.custom-select.licence .selectInput span {
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon03.png) no-repeat
    left center;
  background-size: 28px auto;
  font-size: 15px !important;
  font-size: 1.5rem !important;
  /* display: block; */
}

body.en .custom-select.licence .selectInput span {
  font-size: 14px !important;
  font-size: 1.4rem !important;
}

.custom-select.licence .oputionBox {
  padding: 12px 25px;
  width: 600px;
  left: 10px;
}

@media screen and (max-width: 1200px) {
  .custom-select.licence .oputionBox {
    left: 50%;
    margin-left: -300px;
  }

  .custom-select.licence .oputionBox:before,
  .custom-select.licence .oputionBox:after {
    left: 66%;
    margin-left: -5px;
  }
}

@media screen and (max-width: 737px) {
  .custom-select.licence .oputionBox {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
}

.custom-select .oputionBox {
  display: none;
  position: absolute;
  top: 65px;
  padding: 12px 6px;
  background: #fff;
  border: 2px solid #92940b;
  z-index: 3;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom-select .oputionBox input[type="radio"] {
  display: none;
}

@media screen and (max-width: 737px) {
  .custom-select .oputionBox {
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
  }
}

.custom-select .oputionBox .cutom-scrollBar {
  position: relative;
  margin: 15px 0;
  height: 236px;
}

@media screen and (max-width: 737px) {
  .custom-select .oputionBox .cutom-scrollBar {
    height: 40vh;
  }
}

.custom-select .oputionBox .cutom-scrollBar li {
  border-bottom: 1px solid #eee;
  margin-right: 10px;
  margin-bottom: 0 !important;
  width: 100% !important;
}

.custom-select .oputionBox .cutom-scrollBar label {
  display: block;
  padding: 15px;
  line-height: 1;
  cursor: pointer;
}

.custom-select .oputionBox .cutom-scrollBar label:hover {
  background: #eee;
}

.custom-select .oputionBox .close {
  padding-bottom: 14px;
  padding-right: 10px;
  border-bottom: 2px solid #eee;
  cursor: pointer;
}

.custom-select .oputionBox .close .ttl-box {
  font-size: 20px;
  font-size: 2rem;
}

.custom-select .oputionBox .close .btnBack {
  margin-left: -26px;
  width: 112px;
  color: #fff;
  line-height: 38px;
  background: #072549;
  font-size: 16px;
  font-size: 1.6rem;
}

.custom-select .oputionBox .close .btnBack span {
  padding-left: 32px;
  background: url(/images/arrow_leftWh.png) no-repeat left center;
  background-size: 20px auto;
}

@media screen and (min-width: 737px) {
  .custom-select .oputionBox:before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 50px;
    top: -12px;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #92940b;
    border-left: 10px solid transparent;
  }

  .custom-select .oputionBox:after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 50px;
    top: -9px;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
  }
}

.custom-select .oputionBox .CatelistBox {
  padding: 11px 0;
  overflow: hidden;
}

.custom-select .oputionBox .CatelistBox > li > label > input[type="checkbox"] {
  display: none;
}

.custom-select .oputionBox .CatelistBox li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 19.4%;
  margin-right: 5px;
  margin-bottom: 5px;
  text-align: center;
  line-height: 1;
}

.custom-select .oputionBox .CatelistBox li.column2 {
  float: left;
  width: 49%;
  /* margin-right: 2%; */
  margin-bottom: 5px;
  text-align: center;
  line-height: 1;
}

li.allCatButton {
  width: 100% !important;
}

.custom-select .oputionBox .CatelistBox li:last-child {
  margin-right: 0px;
}

.custom-select .oputionBox .CatelistBox li.column2:nth-child(2n) {
  /* margin-right: 0px; */
}

.mobileBreak {
  display: none;
}

@media (max-width: 767px) {
  .custom-select .oputionBox .CatelistBox li {
    width: 100%;
    margin-right: 0px;
  }

  li.allCatButton {
    width: 100% !important;
  }

  .custom-select .oputionBox .CatelistBox li.column2 {
    float: none;
    width: 49%;
    margin-right: 1%;
    margin-bottom: 5px;
    text-align: center;
    line-height: 1;
  }

  .mobileBreak {
    display: block;
  }

  .shortTermSchool {
    padding: 10.5px 5px !important;
  }

  .shortTermSpan {
    padding: 10.5px 5px !important;
  }

  .custom-select .oputionBox .CatelistBox li:last-child {
    /* margin-right: 5px; */
  }

  .ttlCom02 {
    margin-top: 5px;
    width: 100%;
  }

  .custom-select .oputionBox .CatelistBox .checkbox-list {
    margin-bottom: 10px;
  }

  .custom-select .oputionBox .CatelistBox .checkbox-list li {
    text-align: left;
    display: inline-block;
  }

  .custom-select .oputionBox .CatelistBox .checkbox-list li label {
    display: inline-block;
    padding: 0px;
    border: 0px;
    cursor: pointer;
  }
}

.custom-select .oputionBox .CatelistBox li label {
  display: block;
  /* padding: 8% 11px 0px 11px; */
  border: 1px solid #072549;
  cursor: pointer;
  padding: 20px 0;
}

.custom-select.licence .oputionBox .CatelistBox li label {
  height: 60px;
}

@media screen and (min-width: 737px) {
  /* for english design */
  label.selectEnglish {
    padding: 12px 1px !important;
  }

  label.selectGovernment {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 10px 0 !important;
  }

  .oputionBox > .CatelistBox > li > label.selectEnglish span,
  div.kasou3 .oputionBox > .CatelistBox > li > label.selectEnglish span {
    padding-top: 12px;
  }

  .oputionBox > .CatelistBox > li > label.selectGovernment span,
  div.kasou3 .oputionBox > .CatelistBox > li > label.selectGovernment span {
    padding-top: 10px;
  }

  .custom-select .oputionBox .CatelistBox li label:hover {
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    /* background: #072549; */
    background: #fff;
    color: #333;
    text-decoration: underline;
    transition: 0.3s all ease;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
}

.formArea {
  font-size: 16px;
  font-size: 1.6rem;
}

.formArea .ttl {
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.formArea .ttl span {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
}

@media screen and (max-width: 737px) {
  .formArea .ttl {
    margin-bottom: 10px;
  }

  .formArea .ttl.accordion {
    padding: 15px;
    background-color: #ddd;
    position: relative;
    cursor: pointer;
  }

  .formArea .ttl.accordion:after {
    content: "\f067";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    font: normal normal normal 1.4em/1 FontAwesome;
    font-size: inherit;
  }

  .formArea .ttl.accordion.open:after {
    content: "\f068";
  }
}

.formArea input[type="text"] {
  padding: 16px 15px;
  width: 100%;
  background: #fff;
  font-size: 18px !important;
  font-size: 1.8rem !important;
}

@media screen and (max-width: 737px) {
  .formArea input[type="text"] {
    padding: 12px 15px;
  }
}

.formArea input[type="text"]::-webkit-input-placeholder {
  line-height: 35px;
}

.formArea input[type="text"]:-ms-input-placeholder {
  line-height: 35px;
}

.formArea input[type="text"]::-ms-input-placeholder {
  line-height: 35px;
}

.formArea input[type="text"]::placeholder {
  line-height: 35px;
}

.formArea .input-schoolName {
  margin-bottom: 10px;
}

@media screen and (max-width: 737px) {
  .formArea .input-schoolName {
    margin-bottom: 15px;
  }
}

.formArea .input-schoolName input[type="text"] {
  position: relative;
  padding-left: 55px;
  background: #fff url(https://www.nicjp.niad.ac.jp/en/images/icon01.png)
    no-repeat left 20px center;
  background-size: 28px auto;
}

.formArea .input-schoolName input[type="text"]::-webkit-input-placeholder {
  line-height: 35px !important;
}

.formArea .input-schoolName input[type="text"]:-ms-input-placeholder {
  line-height: 35px !important;
}

.formArea .input-schoolName input[type="text"]::-ms-input-placeholder {
  line-height: 35px !important;
}

.formArea .input-schoolName input[type="text"]::placeholder {
  line-height: 35px !important;
}

.bgGrayBdr {
  background: #f1f9fe;
}

.sec-search {
  margin: 0 auto;
  max-width: 800px;
}

.sec-search .flex-box {
  margin-top: 40px;
}

.sec-search .flex-box .col-2 {
  width: 46%;
}

@media screen and (max-width: 737px) {
  .sec-search .flex-box .col-2 {
    width: 100%;
  }

  .sec-search .flex-box {
    margin-top: 20px;
  }
}

@media screen and (max-width: 737px) {
  .sec-search .flex-box .col-2 dl dd.toggle {
    display: none;
  }
}

@media screen and (max-width: 737px) {
  .sec-search .flex-box .col-2 dl dd ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
}

.sec-search .flex-box .col-2 dl dd ul li {
  margin-bottom: 10px;
}

.sec-search .flex-box .col-2 dl dd ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 737px) {
  .sec-search .flex-box .col-2 dl dd ul li {
    margin-bottom: 20px;
    width: 50%;
  }

  .sec-search .flex-box .col-2 dl dd ul li:last-child {
    margin-bottom: 20px;
  }
}

.sec-search .flex-box .col-2 dl dd ul li.w100 {
  width: 100%;
}

.sec-search .flex-box .col-2 dl dd .box-wrap {
  padding: 20px;
  background: #fff;
  position: relative;
}

@media screen and (max-width: 737px) {
  .sec-search .flex-box .col-2 dl dd .box-wrap {
    padding: 20px 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.sec-search .flex-box .sub-checkList {
  margin: 20px 0 35px;
  padding-left: 30px;
}

@media screen and (max-width: 737px) {
  .sec-search .flex-box .sub-checkList {
    margin: 10px 0 0;
    padding-left: 0;
  }

  .sec-search .flex-box .sub-checkList ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 737px) {
  .sec-search .flex-box .right-box {
    margin-top: 30px;
  }
}

.sec-search .flex-box .right-box dl {
  margin-bottom: 40px;
}

@media screen and (max-width: 737px) {
  .sec-search .flex-box .right-box dl {
    margin-bottom: 30px;
  }
}

.sec-search .radiobox {
  margin-top: 20px;
}

.sec-search .btn-box {
  margin-top: 60px;
}

@media screen and (max-width: 737px) {
  .sec-search .btn-box {
    margin-top: 20px;
    text-align: center;
  }
}

.sec-search .btn-box .btn-submit,
.sec-search .btn-box .btn-search {
  margin-bottom: 20px;
}

@media screen and (max-width: 737px) {
  .sec-search .btn-box .btn-submit,
  .sec-search .btn-box .btn-search {
    margin-bottom: 15px;
  }
}

/*Kasou02*/

.sec-searchList .btn-submit {
  padding: 0;
  width: 60px;
  height: 60px;
  background-size: 26px auto;
  border: 3px solid #072549;
  z-index: 2;
}

@media screen and (max-width: 737px) {
  .sec-searchList .btn-submit {
    padding: 11px 10px;
  }
}

.sec-searchList .btn-submit span.txt,
.sec-searchList .btn-submit img {
  display: none;
}

.sec-searchList .btn-submit > span {
  background-position: center center;
}

@media screen and (max-width: 737px) {
  .sec-searchList .btn-submit {
    width: 100%;
    height: 48px;
  }

  .sec-searchList .btn-submit > span {
    padding-left: 30px;
    background-position: left center;
  }

  .sec-searchList .btn-submit span.txt {
    display: inline-block;
  }
}

.searchList-top {
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 60px;
  max-width: 960px;
}

@media screen and (max-width: 737px) {
  .searchList-top {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.searchList-top .select-wrap .custom-select {
  width: 29.35%;
}

@media screen and (max-width: 737px) {
  .searchList-top .select-wrap .custom-select {
    margin-bottom: 15px;
    width: 100%;
  }
}

@media screen and (max-width: 737px) {
  .btn-wrap {
    width: 100%;
  }
}

.searchList-btm {
  margin: 0 auto;
  max-width: 1220px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.searchList-btm .select-wrap .input-schoolName {
  width: 24.6%;
}

@media screen and (max-width: 980px) {
  .searchList-btm .select-wrap .input-schoolName {
    margin-bottom: 15px;
    width: 100%;
  }
}

@media screen and (max-width: 737px) {
  .searchList-btm .select-wrap .input-schoolName {
    margin-bottom: 20px;
    width: 100%;
  }
}

.searchList-btm .select-wrap .custom-select {
  width: 22.5%;
}

@media screen and (max-width: 980px) {
  .searchList-btm .select-wrap .custom-select {
    width: 29.35%;
  }
}

@media screen and (max-width: 737px) {
  .searchList-btm .select-wrap .custom-select {
    margin-bottom: 20px;
    width: 100%;
  }
}

.searchList-btm .select-wrap .custom-select::-webkit-input-placeholder {
  line-height: 35px;
}

.searchList-btm .select-wrap .custom-select:-ms-input-placeholder {
  line-height: 35px;
}

.searchList-btm .select-wrap .custom-select::-ms-input-placeholder {
  line-height: 35px;
}

.searchList-btm .select-wrap .custom-select::placeholder {
  line-height: 35px;
}

.searchList-btm.inputCol5 .input-schoolName {
  width: 22%;
}

@media screen and (max-width: 1100px) {
  .searchList-btm.inputCol5 .input-schoolName {
    margin-bottom: 15px;
    width: 100%;
  }
}

@media screen and (max-width: 737px) {
  .searchList-btm.inputCol5 .input-schoolName {
    margin-bottom: 20px;
    width: 100%;
  }
}

.searchList-btm.inputCol5 .custom-select {
  width: 18.5%;
}

@media screen and (max-width: 1240px) {
  .searchList-btm.inputCol5 .custom-select {
    margin-bottom: 15px;
    width: 23.5%;
  }
}

@media screen and (max-width: 1080px) {
  .searchList-btm.inputCol5 .custom-select {
    width: 49.5%;
  }
}

@media screen and (max-width: 737px) {
  .searchList-btm.inputCol5 .custom-select {
    margin-bottom: 20px;
    width: 100%;
  }
}

.searchList-btm.inputCol4 .input-schoolName {
  width: 100%;
  margin-bottom: 20px;
}

.searchList-btm.inputCol4 .custom-select {
  width: 20%;
}

@media screen and (max-width: 1240px) {
  .searchList-btm.inputCol4 .custom-select {
    margin-bottom: 15px;
    width: 25.5%;
  }
}

@media screen and (max-width: 1080px) {
  .searchList-btm.inputCol4 .custom-select {
    width: 49.5%;
  }
}

@media screen and (max-width: 737px) {
  .searchList-btm.inputCol4 .custom-select {
    margin-bottom: 20px;
    width: 100%;
  }
}

.searchList-btm.inputCol4 .custom-select.search {
  width: 22%;
}

@media screen and (max-width: 1080px) {
  .searchList-btm.inputCol4 .custom-select.search {
    width: 49.5%;
  }
}

@media screen and (max-width: 737px) {
  .searchList-btm.inputCol4 .custom-select.search {
    margin-bottom: 20px;
    width: 100%;
  }
}

.searchList-btm.inputCol4 .button-search {
  width: 20%;
  height: 100%;
  /* height: 72px; */
  padding: 0;
  display: block;
}

@media screen and (max-width: 1240px) {
  .searchList-btm.inputCol4 .button-search {
    width: 100%;
  }
}

@media screen and (max-width: 737px) {
  .searchList-btm.inputCol4 .button-search {
    margin-bottom: 20px;
    width: 100%;
  }
}

.searchList-btm .btm-btn-box {
  margin-top: 5px;
}

.searchList-btm .btm-btn-box .btn-submit {
  padding: 0;
  width: 100%;
  max-width: 760px;
  height: 60px;
}

.searchList-btm .btm-btn-box .btn-submit > span {
  background-position: left center;
}

.sec-searchedList {
  margin: 0 auto;
}

@media screen and (max-width: 737px) {
  .sec-searchedList {
    padding: 25px 0;
  }
}

.sec-searchedList .ttlList {
  font-size: 16px;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .ttlList {
    /* font-size: 14px; */
    font-size: 12px;
  }
}

.sec-searchedList .total {
  font-weight: bold;
  /* font-size: 16px; */
  font-size: 20px;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .total {
    /* font-size: 12px; */
    font-size: 16px;
    font-weight: bold;
  }
}

.sec-searchedList .tableLayout {
  margin: 10px 0 60px;
  border-top: 1px solid #bebebe;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .tableLayout {
    margin-bottom: 30px;
    border-top: 0;
  }
}

.sec-searchedList .tableLayout .tableRow {
  display: table-cell;
  font-size: 14px;
  vertical-align: middle;
  border-left: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .tableLayout .tableRow {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.sec-searchedList .tableLayout .tableHead {
  display: table;
  table-layout: fixed;
  width: 100%;
  background: #428bca;
  color: #fff;
  border-bottom: 1px solid #bebebe;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .tableLayout .tableHead {
    display: none;
  }
}

.sec-searchedList .tableLayout .tableHead .tableRow {
  padding: 30px 20px;
}

.sec-searchedList .tableLayout .tableData {
  display: table;
  table-layout: fixed;
  width: 100%;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .tableLayout .tableData {
    display: block;
    margin-bottom: 20px;
    border-top: 1px solid #bebebe;
    -webkit-box-shadow: 0px 1px 3px 1px #a1a1a1;
    box-shadow: 0px 1px 3px 1px #a1a1a1;
  }
}

@media screen and (max-width: 737px) {
  .sec-searchedList .tableLayout .tableData .rollover {
    color: #fff;
  }
}

.sec-searchedList .tableLayout .tableData a {
  display: inline-block;
}

@media screen and (min-width: 737px) {
  .sec-searchedList .tableLayout .tableData:nth-of-type(odd) {
    background: #eee;
  }
}

.sec-searchedList .tableLayout .tableData .tableRow {
  padding: 15px;
  line-height: 1.8;
}

@media (min-width: 1000px) {
  .sec-searchedList .tableLayout .tableData .tableRow {
    padding: 20px;
  }
}

.sec-searchedList .tableLayout .tableData .tableRow.HeadSp {
  padding: 0;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .tableLayout .tableData .tableRow {
    padding: 15px;
  }

  /*
    .sec-searchedList .tableLayout .tableData .tableRow:nth-of-type(odd) {
        background: #eee;
}
*/
  .sec-searchedList .tableLayout .tableData .tableRow.HeadSp {
    position: relative;
    padding-right: 40px;
    font-weight: bold;
    color: #fff;
    background: #428bca;
  }

  .sec-searchedList .tableLayout .tableData .tableRow.HeadSp:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -4px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.sec-searchedList .tableLayout .tableHead .tableRow:last-of-type,
.sec-searchedList .tableLayout .tableData .tableRow:last-of-type {
  border-right: 1px solid #bebebe;
}

html.fontL .sec-searchedList .tableLayout .tableHead .tableRow:last-of-type,
html.fontL .sec-searchedList .tableLayout .tableData .tableRow:last-of-type {
  overflow-wrap: break-word;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .tableLayout .tableHead .tableRow,
  .sec-searchedList .tableLayout .tableData .tableRow {
    border-right: 1px solid #bebebe;
  }
}

.pc.viewMore.icnArrow.icnArrow-vm {
  background-color: #072549;
  padding-left: 14px;
  padding-bottom: 6px;
  width: 10.5rem;
  margin-top: 8px;
}

.sec-searchedList .rollover:hover .viewMore {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sec-searchedList .rollover:hover .viewMore span {
  padding-left: 30px;
  width: 200px;
}

.sec-searchedList .rollover:hover .viewMore span::before {
  right: -60px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sec-searchedList .rollover:hover .viewMore span::after {
  opacity: 1;
  left: 0px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sec-searchedList .rollover .viewMore {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sec-searchedList .rollover .viewMore span {
  color: #fff;
  font-size: 14px;
  padding-right: 3.5rem;
  display: inline-block;
  overflow: hidden;
  position: relative;
  top: 0.7rem;
  left: 0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .rollover .viewMore span {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
  }
}

.sec-searchedList .rollover .viewMore span::before {
  padding-right: 30px;
  background: url(/resources/front/assets/img/arrow-viewMore.png) no-repeat right
    center;
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -5px;
  width: 23px;
  height: 11px;
  background-size: 23px auto;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .rollover .viewMore span::before {
    display: none;
  }
}

.sec-searchedList .rollover .viewMore span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -5px;
  width: 23px;
  height: 11px;
  background: url(https://www.nicjp.niad.ac.jp/en/images/arrow-viewMore-wt.png)
    no-repeat right center;
  background-size: contain;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
}

@media screen and (max-width: 737px) {
  .sec-searchedList .rollover .viewMore span::after {
    display: none;
  }
}

@media screen and (max-width: 737px) {
  .sec-searchedList .rollover .viewMore span {
    background: #072549;
    color: #fff;
    background-image: none;
    float: unset;
    font-size: 16px;
    font-size: 1.6rem;
    height: 50px;
    width: 125px;
    text-align: center;
    padding: 10px 15px;
    display: block;
    margin-top: 10px;
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
    position: unset;
  }
}

@media screen and (min-width: 737px) {
  .tableSchoolList .tableHead .tableRow:first-of-type,
  .tableSchoolList .tableData .tableRow:first-of-type {
    width: 13%;
  }

  .tableSchoolList .tableHead .tableRow:nth-of-type(2),
  .tableSchoolList .tableData .tableRow:nth-of-type(2) {
    width: 10%;
  }

  .tableSchoolList .tableHead .tableRow:nth-of-type(3),
  .tableSchoolList .tableData .tableRow:nth-of-type(3) {
    width: 10%;
  }

  .tableSchoolList .tableHead .tableRow:nth-of-type(4),
  .tableSchoolList .tableData .tableRow:nth-of-type(4) {
    width: 8%;
  }
}

.tableSchoolList .list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tableSchoolList .list-link li {
  padding-right: 4px;
}

.tableSchoolList .list-link li:last-child {
  padding-right: 0px;
}

.tableSchoolList .list-link li a:hover {
  text-decoration: underline;
  text-underline-position: under;
}

@media screen and (max-width: 737px) {
  .tableSchoolList .list-link li {
    background: #eee;
    margin-right: 5px;
    padding: 6px 16px;
    border-radius: 5px;
    margin-top: 5px;
  }

  .tableSchoolList .list-link li:last-child {
    margin-right: 0px;
    padding-right: 14px;
  }
}

.i-toolbar.row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination.no-margin {
  display: block;
  overflow: auto;
}

.pagination li.icnArrow a {
  margin: 0 2px;
  width: 100px;
}

.paginate li a {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  display: block;
  margin: 0 1px;
  width: 46px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 46px;
  text-align: center;
  color: #fff;
  border: 3px solid #072549;
  background: #072549;
  cursor: pointer;
}

/* .pagination li.active a {
    font-weight: bold;
    color: #072549;
} */

.pager {
  margin-bottom: 15px;
}

.pager a {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  display: block;
  margin: 0 1px;
  width: 46px;
  font-size: 16px;
  line-height: 46px;
  text-align: center;
  color: #fff;
  border: 3px solid #072549;
  background: #072549;
  cursor: pointer;
}

.pager a:after {
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  content: "";
  bottom: 0;
  width: 0;
  height: 120%;
  left: -16%;
  -webkit-transform: skewX(15deg);
  -ms-transform: skewX(15deg);
  transform: skewX(15deg);
  z-index: -1;
  background-color: #fff;
}

@media screen and (max-width: 737px) {
  .pager a {
    width: 50px;
    line-height: 48px;
  }

  .pager a:nth-child(6),
  .pager a:nth-child(7),
  .pager a:nth-child(8) {
    display: none;
  }
}

@media screen and (max-width: 340px) {
  .pager a {
    width: 45px;
  }
}

.pager a.icnArrow {
  margin: 0 2px;
  width: 100px;
}

.pager a.icnArrow.back span,
.pager li.icnArrow.prev span {
  padding-left: 30px;
  background: url(/front/common/images/arrow_wh_left.png) no-repeat left center;
  background-size: 18px auto;
}

.pager a.icnArrow.next span,
.pager li.icnArrow.next span {
  padding-right: 30px;
  background: url(/front/common/images/arrow_wh_right.png) no-repeat right
    center;
  background-size: 18px auto;
}

.pager a:hover,
.pager a.active,
.pager li.active a,
.pager li a:hover {
  font-weight: bold;
  color: #072549;
}

.pager a:hover:after,
.pager a.active:after,
.pager li.active a:after {
  left: -18%;
  width: 140%;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

@media screen and (min-width: 737px) {
  .pager a:hover,
  .pager a.active,
  .pager li.active a,
  .pager li a:hover {
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .pager a:hover.icnArrow.back span,
  .pager a.active.icnArrow.back span,
  .pager li.active.icnArrow.prev a span,
  .pager li:hover.icnArrow.prev a span {
    background: url(/front/common/images/arrow_bl_left.png) no-repeat left
      center;
    background-size: 18px auto;
  }

  .pager a:hover.icnArrow.next span,
  .pager a.active.icnArrow.next span,
  .pager li.active.icnArrow.next a span,
  .pager li:hover.icnArrow.next a span {
    background: url(/front/common/images/arrow_bl_right.png) no-repeat right
      center;
    background-size: 18px auto;
  }
}

@media screen and (max-width: 737px) {
  .pager a.icnArrow.back,
  .pager a.icnArrow.next {
    width: 45px;
    height: 50px;
  }

  .pager a.icnArrow.back,
  .pager li.icnArrow.prev {
    background: #072549
      url(https://www.nicjp.niad.ac.jp/images/arrow_wh_left.png) no-repeat
      center center;
    background-size: 18px auto;
  }

  .pager a.icnArrow.next {
    background: #072549
      url(https://www.nicjp.niad.ac.jp/images/arrow_wh_right.png) no-repeat
      center center;
    background-size: 18px auto;
  }

  .pager a.icnArrow.back span,
  .pager a.icnArrow.next span {
    display: none;
  }
}

.pagination-text {
  font-size: 14px; 
  text-align: center;
}

.no-results {
  font-size: 3.4rem;
  text-align: center;
}

.article-list .no-results {
  padding-top: 100px;
}

/*--kasou3--*/

.headImg {
  position: relative;
  max-width: 1400px;
}

@media screen and (min-width: 737px) {
  .headImg {
    margin: 0 auto 0;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .headImg {
    padding-bottom: 60px;
  }
}

.headImg img {
  width: 100%;
}

.sec-bdr {
  margin-top: 80px;
  border-top: 4px solid #eee;
  background: #fff;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sec-bdr {
    margin-top: 0px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 737px) {
  .sec-bdr {
    margin-top: 30px;
    border-top-width: 3px;
  }
}

.tableCom01 {
  margin: 0 auto;
  max-width: 920px;
  width: 100%;
}

/*
.tableCom01.faq .tHead,
.tableCom01 .tData {
	display: -webkit-box;
}
*/

@media screen and (max-width: 737px) {
  .tableCom01 {
    border: 1px solid #bebebe;
    -webkit-box-shadow: 0px 1px 3px 1px #a1a1a1;
    box-shadow: 0px 1px 3px 1px #a1a1a1;
  }

  .tableCom01 .tRow {
    padding: 12px 20px;
    border-bottom: 1px solid #bebebe;
  }

  .tableCom01 .tRow:last-of-type {
    border-bottom: 0;
  }

  .tableCom01 .tRow:nth-of-type(odd) {
    background: #eee;
  }

  .tableCom01 .tHead,
  .tableCom01 .tData {
    font-size: 13px;
    font-size: 1.3rem;
  }

  .tableCom01 .tHead {
    margin-bottom: 2px;
    font-weight: bold;
  }

  .d-info .tableCom01 .tHead {
    margin-bottom: 10px;
  }
}

@media all and (min-width: 737px) {
  .tableCom01 {
    /* display: table; */
    table-layout: unset;
    width: 100%;
    /* border-top: 1px solid #bebebe;
		border-right: 1px solid #bebebe; */
  }

  .tableCom01 .tHead,
  .tableCom01 .tData {
    display: table-cell;
    padding: 12px 15px;
    font-size: 13px;
    font-size: 1.3rem;
    vertical-align: top;
    /* border-bottom: 1px solid #bebebe; */
    border-left: 1px solid #bebebe;
    line-height: 2.5rem;
  }

  .tableCom01 .tHead.nestWrap,
  .tableCom01 .tData.nestWrap {
    padding: 0;
  }

  .tableCom01 .tHead {
    width: 180px;
    color: #eee;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
    background: #428bca;
  }

  .tableCom01 .tRow {
    /* display: table-row; */
    display: flex;
    border-right: 1px solid #bebebe;
    border-bottom: 1px solid #bebebe;
    border-left: 1px solid #bebebe;
  }

  .tableCom01 .tRow:first-child {
    border-top: 1px solid #bebebe;
  }

  .tableCom01 .tRow > .tData {
    width: calc(100% - 180px);
    border-left: 2px solid #bebebe;
  }

  .tableCom01 .tableNested {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
  }

  .tableCom01 .tableNested .tData {
    border: 0;
    border-right: 1px solid #bebebe;
  }

  .tableCom01 .tableNested .tData:last-of-type {
    border-right: 0;
  }
}

.tableCom01.faq .tHead {
  width: 100%;
}

.tableCom01.faq .tRow > .tData {
  width: 100%;
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .tableCom01 {
    table-layout: auto;
  }
}

.tableCom02 {
  margin: 0 auto;
  max-width: 920px;
}

@media screen and (max-width: 737px) {
  .tableCom02 .tHeadRow {
    display: none !important;
  }

  .tableCom02 .tRow-wrap {
    margin-bottom: 20px;
    border: 1px solid #bebebe;
    -webkit-box-shadow: 0px 1px 3px 1px #a1a1a1;
    box-shadow: 0px 1px 3px 1px #a1a1a1;
  }

  .tableCom02 .tRow {
    display: none;
  }

  .tableCom02 .tHead,
  .tableCom02 .tData {
    font-size: 13px;
    font-size: 1.3rem;
  }

  .tableCom02 .tData {
    padding: 12px 20px;
    border-bottom: 1px solid #bebebe;
  }

  .tableCom02 .tData:last-of-type {
    border-bottom: 0;
  }

  .tableCom02 .tData:nth-of-type(odd) {
    background: #eee;
  }

  .tableCom02 .tData.pcData {
    display: none;
  }

  .tableCom02 .tData .spHead {
    margin-bottom: 2px;
    font-weight: bold;
  }

  .tableCom02 .js-sp-titleBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 30px 15px 20px;
    color: #fff;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: bold;
    background: #666666;
  }

  .tableCom02 .js-sp-titleBar .arrowUpDown {
    position: relative;
    display: inline-block;
    padding-right: 28px;
  }

  .tableCom02 .js-sp-titleBar .arrowUpDown:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }

  .tableCom02 .js-sp-titleBar.close .arrowUpDown:before {
    margin-top: -2px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@media all and (min-width: 737px) {
  .tableCom02 {
    border-top: 1px solid #bebebe;
  }

  .tableCom02 .tRow-wrap {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .tableCom02 .tRow-wrap:nth-of-type(odd) {
    background: #eee;
  }

  .tableCom02 .spHead {
    display: none;
  }

  .tableCom02 .tRow {
    display: table-row;
  }

  .tableCom02 .tRow > div.tHead {
    text-align: center;
    vertical-align: middle;
  }

  .tableCom02 .tRow:nth-of-type(odd) {
    background: #eee;
  }

  .tableCom02 .tRow .tHead:first-of-type,
  .tableCom02 .tRow .tData:first-of-type {
    width: 15.4%;
  }

  .tableCom02 .tRow .tHead:nth-of-type(2),
  .tableCom02 .tRow .tData:nth-of-type(2) {
    width: 11.3%;
  }

  .tableCom02 .tRow .tHead:nth-of-type(3),
  .tableCom02 .tRow .tData:nth-of-type(3) {
    width: 16.74%;
  }

  .tableCom02 .tRow .tHead:nth-of-type(4),
  .tableCom02 .tRow .tData:nth-of-type(4) {
    width: 12.8%;
  }

  .tableCom02 .tRow .tHead:nth-of-type(5),
  .tableCom02 .tRow .tData:nth-of-type(5) {
    width: 14.8%;
  }

  .tableCom02 .tRow .tHead:nth-of-type(6),
  .tableCom02 .tRow .tData:nth-of-type(6) {
    width: 14.3%;
    /* text-align: center; */
  }

  .tableCom02 .tHead,
  .tableCom02 .tData {
    display: table-cell;
    padding: 12px 15px;
    font-size: 14px;
    font-size: 1.6rem;
    vertical-align: top;
    border-bottom: 1px solid #bebebe;
    border-left: 1px solid #bebebe;
    line-height: 2.5rem;
  }

  .tableCom02 .tHead {
    padding: 12px 0;
  }

  .tableCom02 .tHead:last-child,
  .tableCom02 .tData:last-child {
    border-right: 1px solid #bebebe;
    /* text-align: center; */
  }

  .tableCom02 .tHead.nestWrap,
  .tableCom02 .tData.nestWrap {
    padding: 0;
  }

  .tableCom02 .tHead {
    color: #eee;
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
    background: url(https://www.nicjp.niad.ac.jp/en/images/bg_tablehead_bdr.png)
      repeat center center;
    border-bottom: 2px solid #bebebe;
  }

  .tableCom02 .tData.spHead {
    display: none;
  }

  .tableCom02 .js-sp-titleBar {
    display: none;
  }

  .sec-bdr.history h2 span {
    font-size: 1.7rem;
  }

  .sec-bdr.history div.tableLayout {
    max-width: 920px;
    margin: 0 auto;
  }

  .sec-bdr.history div.tableLayout div.tableData {
    width: 100%;
    overflow: hidden;
    line-height: 3;
  }

  /*
    .sec-bdr.history div.tableLayout div.tableData:nth-child(2n) {
        background: #eee;
    }
*/
  .sec-bdr.history div.tableLayout div.tableData .tableRow {
    float: left;
    padding-left: 12px;
    font-size: 1.6rem;
  }

  .sec-bdr.history div.tableLayout div.tableData .tableRow.Right {
    width: 60%;
    border-bottom: dotted 2px #bebebe;
    box-sizing: border-box;
  }

  .sec-bdr.history div.tableLayout div.tableData .tableRow.Left {
    width: 40%;
    border-bottom: dotted 2px #7e1d2f;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 737px) {
  .sec-bdr.history h2 span {
    font-size: 1.4rem;
  }

  .sec-bdr.history div.tableLayout {
    width: 100%;
    margin: 0 auto;
  }

  .sec-bdr.history div.tableLayout div.tableData {
    width: 100%;
    overflow: hidden;
    line-height: 3;
    border-bottom: dotted 2px #072549;
  }

  .sec-bdr.history div.tableLayout div.tableData:last-child {
    border-bottom: none;
  }

  .sec-bdr.history div.tableLayout div.tableData .tableRow {
    width: 100%;
    float: none;
    font-size: 1.6rem;
  }

  .sec-bdr.history div.tableLayout div.tableData .tableRow.Right {
    font-weight: bold;
  }

  .sec-bdr.history div.tableLayout div.tableData .tableRow.Left {
    font-size: 1.3rem;
  }
}

.pageFeeder {
  padding: 20px 0;
  background: #eee;
}

@media screen and (max-width: 737px) {
  .pageFeeder {
    margin-bottom: 20px;
    padding: 15px 0;
  }
}

.pageFeeder .wrap-feed {
  margin: 0 auto;
  max-width: 920px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pageFeeder .feed {
  position: relative;
  color: #666666;
  font-size: 12px;
  font-size: 1.2rem;
  text-decoration: underline;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.pageFeeder .feed:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.pageFeeder .feed:before {
  content: "";
  width: 18px;
  height: 9px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.pageFeeder .feed.prev {
  padding-left: 28px;
  margin-left: 15px;
}

.pageFeeder .feed.prev:before {
  left: 0;
  background: url(/front/common/images/arrow_pur_left.png) no-repeat left center;
  background-size: 18px auto;
}

.pageFeeder .feed.prev:hover:before {
  left: -10px;
}

.pageFeeder .feed.next {
  padding-right: 28px;
  margin-right: 15px;
}

.pageFeeder .feed.next:before {
  right: 0;
  background: url(/front/common/images/arrow_pur.png) no-repeat right center;
  background-size: 18px auto;
}

.pageFeeder .feed.next:hover:before {
  right: -10px;
}

/*Kasou04*/

.article-k5.article-k4 {
  padding-top: 30px;
}

@media screen and (max-width: 737px) {
  .article-k5.article-k4 {
    margin-top: 0px;
  }
}

.article-k5.article-k4 .inner-k5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  min-height: 350px;
}

@media screen and (max-width: 737px) {
  .article-k5.article-k4 .inner-k5 {
    display: block;
  }
}

.article-k5.article-k4 .inner-k5 .archive-years {
  width: 20%;
  z-index: 999;
  /* overflow: hidden; */
  max-width: 275px;
  /* height: 700px; */
  /* min-height: 600px; */
  /* height: auto; */
  position: absolute;
  overflow-y: auto;
}

.fixed {
  position: fixed;
  /* top: 0; */
}

.absolute {
  position: absolute;
}

@media screen and (max-width: 737px) {
  .article-k5.article-k4 .inner-k5 .archive-years {
    width: 100%;
    max-width: unset;
    position: initial;
    height: auto;
  }
}

.article-k5.article-k4 .inner-k5 .archive-years .bg-box {
  background: url(../img/border01_k4.png) no-repeat left bottom;
  background-size: contain;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* flex column */

.left {
  flex-shrink: 0;
  height: 100%;
  /*allows both columns to span the full height of the browser window*/
  display: flex;
  flex-direction: column;
  /*places the left and right headers above the bottom content*/
}

.right {
  flex-shrink: 0;
  height: 100%;
  /*allows both columns to span the full height of the browser window*/
  display: flex;
  flex-direction: column;
  /*places the left and right headers above the bottom content*/
  flex: 0 auto;
}

.article-k5.article-k4 .inner-k5 .archive-years .bg-box .ttl {
  font-size: 24px;
  color: #072549;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .article-k5.article-k4 .inner-k5 .archive-years .bg-box .ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.article-k5.article-k4 .inner-k5 .archive-years .years-list.pc .sub-menu-years {
  padding: 0px 0 0;
}

.article-k5.article-k4
  .inner-k5
  .archive-years
  .years-list.pc
  .sub-menu-years
  a {
  line-height: 30px;
  padding-bottom: 15px;
}

.article-k5.article-k4
  .inner-k5
  .archive-years
  .years-list.pc
  .sub-menu-years
  a:first-child {
  border-bottom: 0px;
  padding-bottom: 10px;
}

.article-k5.article-k4
  .inner-k5
  .archive-years
  .years-list.pc
  .sub-menu-years
  a:hover {
  text-decoration: underline;
  color: #000;
  text-underline-position: under;
}

.article-k5.article-k4 .inner-k5 .archive-years .years-list.pc li a {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  display: block;
  margin: 0 1px;
  font-size: 16px;
  /* padding: 20px 20px; */
  padding: 1.8vh 20px;
  color: #000;
  border-bottom: 1px solid #eeeeee;
  cursor: pointer;
  text-align: left;
  font-weight: bold;
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .article-k5.article-k4 .inner-k5 .archive-years .years-list.pc li a {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 20px 10px;
  }
}

.article-k5.article-k4 .inner-k5 .archive-years .years-list.pc li a:hover {
  color: #fff;
}

.article-k5.article-k4 .inner-k5 .archive-years .years-list.pc li a::after {
  background-color: #072549;
}

.article-k5.article-k4 .inner-k5 .archive-years .years-list.pc li a.active {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  display: block;
  margin: 0 1px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  border-bottom: 1px solid #eeeeee;
  background: #072549;
  cursor: pointer;
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .article-k5.article-k4 .inner-k5 .archive-years .years-list.pc li a.active {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 20px 10px;
  }
}

.article-k5.article-k4 .inner-k5 .archive-years .years-list.sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article-k5.article-k4 .inner-k5 .archive-years .years-list.sp li {
  width: 33.333%;
}

.article-k5.article-k4 .inner-k5 .archive-years .years-list.sp li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #313131;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  height: 55px;
  border: 1px solid #072549;
  margin-bottom: 10px;
}

@media screen and (max-width: 737px) {
  .article-k5.article-k4 .inner-k5 .archive-years .years-list.sp li a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.article-k5.article-k4 .inner-k5 .archive-years .years-list.sp li a.active {
  background: #072549;
  color: #fff;
}

.article-k5.article-k4 .inner-k5 .border-archive {
  background: url(/front/common/images/border01_k4_sp.png) no-repeat left bottom;
  content: "";
  max-width: 100%;
  height: 21px;
  margin-bottom: 20px;
  background-size: contain;
}

.article-k5.article-k4 .inner-k5 .news-list {
  width: 77%;
  margin-left: 23%;
}

@media screen and (max-width: 737px) {
  .article-k5.article-k4 .inner-k5 .news-list {
    width: 100%;
    margin-left: 0;
  }
}

.article-k5.article-k4 .inner-k5 .news-list .navGlobal .navGlobalIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-pack: distribute;
  justify-content: flex-start;
  padding: 0px 0;
}

.article-k5.article-k4 .inner-k5 .news-list .navGlobal .navGlobalIn li {
  padding: 0;
  width: 20%;
  line-height: 1;
  overflow: hidden;
  padding-bottom: 2px;
}

.article-k5.article-k4 .inner-k5 .news-list .navGlobal .navGlobalIn li div {
  width: 100%;
  border-bottom: 1px solid #7d7d7d;
  padding-bottom: 15px;
  padding-top: 2px;
  position: relative;
  cursor: pointer;
  font-size: 1.75rem;
  font-weight: 700;
}

.article-k5.article-k4
  .inner-k5
  .news-list
  .navGlobal
  .navGlobalIn
  li
  div:hover:after {
  left: 0;
  background-color: #072549;
}

.article-k5.article-k4
  .inner-k5
  .news-list
  .navGlobal
  .navGlobalIn
  li
  div::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -100%;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.article-k5.article-k4
  .inner-k5
  .news-list
  .navGlobal
  .navGlobalIn
  li
  div.is-active {
  color: #072549;
}

.article-k5.article-k4
  .inner-k5
  .news-list
  .navGlobal
  .navGlobalIn
  li
  div.is-active::after {
  left: 0;
  background-color: #072549;
}

.article-k5.article-k4 .inner-k5 .news-list .ChangeElem_Panel {
  display: none;
}

@media screen and (max-width: 737px) {
  .article-k5.article-k4 .inner-k5 .news-list .ChangeElem_Panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 737px) {
  .article-k5.article-k4 .inner-k5 .news-list .ChangeElem_Panel .article-list {
    margin-top: 35px;
    width: 100%;
  }
}

.article-k5.article-k4
  .inner-k5
  .news-list
  .ChangeElem_Panel
  .article-list
  .sub-ttl {
  color: #072549;
  font-size: 1rem;
  font-weight: bold;
}

@media screen and (max-width: 737px) {
  .article-k5.article-k4
    .inner-k5
    .news-list
    .ChangeElem_Panel
    .article-list
    .sub-ttl {
    margin-top: 15px;
  }
}

.article-k5.article-k4
  .inner-k5
  .news-list
  .ChangeElem_Panel
  .article-list
  .sub-ttl
  span {
  font-size: 14px;
  color: #000;
  font-weight: normal;
}

.article-k5.article-k4
  .inner-k5
  .news-list
  .ChangeElem_Panel
  .article-list
  .ttl-k5 {
  margin-top: 15px;
}

.article-k5.article-k4 .inner-k5 .news-list .navGlobal_sp {
  position: relative;
}

.article-k5.article-k4
  .inner-k5
  .news-list
  .navGlobal_sp
  .news-btn
  .btn-active {
  display: block;
  color: #072549;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 50px;
  border-top: 1px solid #072549;
  border-bottom: 1px solid #072549;
  font-weight: bold;
  position: relative;
}

.article-k5.article-k4
  .inner-k5
  .news-list
  .navGlobal_sp
  .news-btn
  .btn-active:after {
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  font: normal normal normal 1.4em/1 FontAwesome;
  font-size: inherit;
  color: #072549;
}

.article-k5.article-k4 .inner-k5 .news-list .navGlobal_sp .news-menu-sp {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  z-index: 1;
}

.article-k5.article-k4 .inner-k5 .news-list .navGlobal_sp .news-menu-sp li a {
  display: block;
  color: #333333;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 50px;
  font-weight: bold;
  border: 1px solid #f2f2f2;
}

.mt0 {
  margin-top: 0 !important;
}

.mb-15 {
  margin-bottom: 15px;
}

/*Kasou05*/

.search-k5 {
  padding: 40px 4%;
  background: url(/front/common/images/bg_k5.jpg) no-repeat top center;
  background-size: cover;
}

.search-k5 span {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 14px;
}

@media screen and (max-width: 737px) {
  .search-k5 {
    padding: 30px 4%;
  }
}

.search-k5 .search-box-k5 {
  max-width: 920px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-k5 .search-box-k5 .search-window {
  background: #fff;
  height: 60px;
  width: 795px;
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 30px;
}

@media screen and (max-width: 737px) {
  .search-k5 .search-box-k5 .search-window {
    width: 100%;
    margin-right: 7px;
  }
}

.search-k5 .search-box-k5 .search-btn {
  background: #072549;
  width: 120px;
  height: 60px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  margin-left: 5px;
  border: 4px solid #072549;
}

.search-btn.btn-Skew--Fill.btn-submit:hover {
  color: #072549;
}

@media screen and (max-width: 737px) {
  .search-k5 .search-box-k5 .search-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.article-k5 .inner-k5 {
  max-width: 974px;
  margin: 0 auto;
  margin-top: 60px;
}

@media screen and (max-width: 737px) {
  .article-k5 .inner-k5 {
    padding: 0 4%;
    margin-top: 30px;
  }
}

.article-k5 .inner-k5 .search-result {
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

@media screen and (max-width: 737px) {
  .article-k5 .inner-k5 .search-result {
    float: left;
    margin-bottom: 30px;
    margin-left: 0;
  }
}

.article-k5 .inner-k5 .article-list {
  clear: both;
}

@media screen and (max-width: 737px) {
  .article-k5 .inner-k5 .article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.article-k5 .inner-k5 .article-list .article-detail {
  position: relative;
  border-bottom: 1px solid #eeeeee;
  clear: both;
}

@media screen and (max-width: 737px) {
  .article-k5 .inner-k5 .article-list .article-detail {
    display: block;
    overflow-wrap: break-word;
    margin-bottom: 20px;
  }
}

.article-k5 .inner-k5 .article-list .article-detail .link-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px;
}

@media screen and (max-width: 737px) {
  .article-k5 .inner-k5 .article-list .article-detail .link-cover {
    display: block;
    padding: 0;
  }
}

.article-k5 .inner-k5 .article-list .article-detail .link-cover .img-box {
  width: 35%;
}

@media screen and (max-width: 737px) {
  .article-k5 .inner-k5 .article-list .article-detail .link-cover .img-box {
    width: 100%;
  }
}

.article-k5 .inner-k5 .article-list .article-detail .link-cover .content {
  width: 60%;
}

@media screen and (max-width: 737px) {
  .article-k5 .inner-k5 .article-list .article-detail .link-cover .content {
    width: 100%;
  }
}

.article-k5
  .inner-k5
  .article-list
  .article-detail
  .link-cover
  .content
  .ttl-k5 {
  font-size: 18.84px;
  font-size: 1.884rem;
  color: #333333;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 737px) {
  .article-k5
    .inner-k5
    .article-list
    .article-detail
    .link-cover
    .content
    .ttl-k5 {
    margin-top: 10px;
  }
}

.article-k5
  .inner-k5
  .article-list
  .article-detail
  .link-cover
  .content
  .para-k5 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #313131;
}

.article-k5
  .inner-k5
  .article-list
  .article-detail
  .link-cover
  .content
  .link-k5 {
  color: #666666;
  font-size: 14px;
  font-size: 1.4rem;
}

.article-k5
  .inner-k5
  .article-list
  .article-detail
  .link-cover
  .content
  .viewMore
  span {
  color: #072549;
  font-size: 14px;
  font-size: 1.4rem;
  padding-right: 35px;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  width: 104px;
  right: 35px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.article-k5
  .inner-k5
  .article-list
  .article-detail
  .link-cover
  .content
  .viewMore
  span::before {
  padding-right: 30px;
  background: url(/images/arrow-viewMore.png) no-repeat right center;
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -5px;
  width: 23px;
  height: 11px;
  background-size: 23px auto;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.article-k5
  .inner-k5
  .article-list
  .article-detail
  .link-cover
  .content
  .viewMore
  span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -5px;
  width: 23px;
  height: 11px;
  background: url(/images/arrow-viewMore.png) no-repeat right center;
  background-size: contain;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
}

@media screen and (max-width: 737px) {
  .article-k5 .inner-k5 .article-list .article-detail .content {
    background: #f2f2f2;
    padding: 16px 28px;
  }
}

.article-k5 .inner-k5 .article-detail .link-cover:hover {
  background: #f2f2f2;
}

@media screen and (max-width: 737px) {
  .article-k5 .inner-k5 .article-detail .link-cover:hover {
    background: none;
  }
}

.article-k5
  .inner-k5
  .article-detail
  .link-cover:hover
  .content
  .viewMore
  span {
  padding-left: 35px;
  padding-right: 0;
}

@media screen and (max-width: 737px) {
  .article-k5
    .inner-k5
    .article-detail
    .link-cover:hover
    .content
    .viewMore
    span {
    padding: 10px 15px;
  }
}

.article-k5
  .inner-k5
  .article-detail
  .link-cover:hover
  .content
  .viewMore
  span::before {
  opacity: 0;
  right: -30px;
}

.article-k5
  .inner-k5
  .article-detail
  .link-cover:hover
  .content
  .viewMore
  span::after {
  opacity: 1;
  left: 0;
}

@media screen and (max-width: 737px) {
  .sec-searchedList.k5 .pager a:nth-child(5) {
    display: none;
  }
}

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

.ps > .ps__scrollbar-y-rail {
  width: 12px !important;
}

.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  width: 12px !important;
}

.box-detail {
  position: relative;
  border-bottom: 1px solid #eeeeee;
  clear: both;
  color: transparent;
}

@media screen and (max-width: 737px) {
  .box-detail {
    display: block;
    overflow-wrap: break-word;
    margin-bottom: 20px;
    width: 100%;
  }
}

.box-detail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px;
}

@media screen and (max-width: 737px) {
  .box-detail a {
    display: block;
    padding: 0;
  }
}

.box-detail a:hover {
  background: #f2f2f2;
}

@media screen and (max-width: 737px) {
  .box-detail a:hover {
    background: none;
  }
}

.box-detail a:hover .viewMore span {
  padding-left: 35px;
  padding-right: 0;
}

.box-detail a:hover .viewMore span:before {
  opacity: 0;
  right: -30px;
}

.box-detail a:hover .viewMore span:after {
  opacity: 1;
  left: 0;
}

.box-detail .content {
  width: 60%;
}

@media screen and (max-width: 737px) {
  .box-detail .content {
    width: 100%;
    background: #f2f2f2;
    margin-top: -5px;
    padding: 16px 28px;
  }
}

.box-detail .content h3 {
  font-size: 18.84px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 737px) {
  .box-detail .content h3 {
    margin-top: 10px;
    font-size: 16px;
  }
}

.box-detail .content p {
  font-size: 16px;
  font-size: 1.6rem;
  color: #313131;
}

@media screen and (max-width: 737px) {
  .box-detail .content p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.box-detail .link {
  color: #666666;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: block;
}

@media screen and (max-width: 737px) {
  .box-detail .link {
    font-size: 10px;
    font-size: 1rem;
  }
}

.box-detail .img-box {
  width: 35%;
}

.img-box img {
  width: 100%;
}

@media screen and (max-width: 737px) {
  .box-detail .img-box {
    width: 100%;
    text-align: center;
  }
}

.box-detail .viewMore span {
  color: #072549;
  font-size: 14px;
  padding-right: 35px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  transition-delay: 0s;
}

@media screen and (max-width: 737px) {
  .box-detail .viewMore span {
    padding: 10px 15px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0;
    padding-right: 30px;
  }
}

.box-detail .viewMore span::before {
  padding-right: 30px;
  background: url(/images/arrow-viewMore.png) no-repeat right center;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  width: 23px;
  height: 11px;
  background-size: 23px auto;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.box-detail .viewMore span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -5px;
  width: 23px;
  height: 11px;
  background: url(/images/arrow-viewMore.png) no-repeat right center;
  background-size: contain;
  -webkit-transition-property: all;
  -o-transition-property: all;

  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
}

.box-detail .viewMore span:after,
.box-detail .viewMore span:before {
  top: 50%;
}

.detail-checkbox-list {
  display: flex;
}

.detail-checkbox-daigaku {
  width: 38%;
  background-color: #eee;
  padding: 15px 20px;
  border: 1px solid #072549;
  margin-right: 3%;
  position: relative;
}

.detail-checkbox-daigaku::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: -10px;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #072549;
  border-left: 10px solid transparent;
  right: 50px;
}

.detail-checkbox-daigaku::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: -9px;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #eee;
  border-left: 10px solid transparent;
  right: 50px;
}

.detail-checkbox-senmon {
  width: 59%;
  background-color: #eee;
  padding: 15px 20px;
  border: 1px solid #072549;
  position: relative;
}

.detail-checkbox-senmon::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: -10px;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #072549;
  border-left: 10px solid transparent;
  right: 210px;
}

.detail-checkbox-senmon::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: -9px;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #eee;
  border-left: 10px solid transparent;
  right: 210px;
}

.detail-checkbox-daigaku legend,
.detail-checkbox-senmon legend {
  position: absolute;
  top: 15px;
  left: 20px;
}

.detail-checkbox-daigaku legend + ul,
.detail-checkbox-senmon legend + ul {
  margin-top: 50px;
}

.detail-checkbox-senmon-en legend + ul {
  margin-top: 70px;
}

.checkbox-list {
  font-size: 0em;
  display: flex;
}

.checkbox-list li {
  display: inline-block;
  width: 33.333%;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .detail-checkbox-daigaku::before,
  .detail-checkbox-senmon::before,
  .detail-checkbox-daigaku::after,
  .detail-checkbox-senmon::after {
    display: none;
  }
}

@media screen and (max-width: 737px) {
  .checkbox-list {
    display: block;
  }

  .detail-checkbox-list {
    display: none;
  }

  .checkbox-list li {
    width: 50%;
  }

  .detail-checkbox-daigaku::before,
  .detail-checkbox-senmon::before,
  .detail-checkbox-daigaku::after,
  .detail-checkbox-senmon::after {
    display: none;
  }
}

@media only screen and (max-width: 340px) {
  .checkbox-list li:nth-child(odd) {
    width: 60%;
  }

  .checkbox-list li:nth-child(even) {
    width: 40%;
  }
}

.subTitle {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

/* ====================================================
Index
==================================================== */

.main-visual {
  position: relative;
  /* overflow: hidden; */
}

@media screen and (max-width: 737px) {
  .main-visual {
    margin-bottom: 35px;
  }

  .main-visual::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 11;
  }

  .main-visual .search-wrap {
    z-index: 15;
  }
}

.main-visual .slick-slide {
  margin: 0 auto;
}

.main-visual .slick-slide img {
  width: 100%;
  max-width: inherit;
}

.main-visual .bx-viewport {
  z-index: 0;
}

.main-visual #slider li {
  height: 100vh;
  max-height: 680px;
  min-height: 680px; /*追加することによって不具合解消*/
  background: center/cover no-repeat;
  /* width: 100% !i   mportant; */
}

#slider li {
  /* -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden ;
    -webkit-perspective: 1000px;
    -webkit-transform:translate3d(0,0,0); */
}

.slick-slider .slick-list,
.slick-track,
.slick-slide,
.slick-slide img {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: none;
  -o-transform: translate3d(0, 0, 0);
  transform: none;
}

.bx-wrapper {
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 737px) {
  .main-visual #slider li {
    /*max-height: auto;*/
    max-height: 680px; /*変更することによって不具合解消*/
    min-height: 680px; /*追加することによって不具合解消*/
  }
}

.main-visual .main-ttl {
  margin: 0 auto 10px;
  display: block;
}

.main-visual .search-wrap {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px 15px 0;
}

@media screen and (max-width: 737px) {
  .main-visual .search-wrap {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 4%;
    background: none;
  }
}

.main-visual .searchList-top {
  padding: 0;
  margin-bottom: -45px;
}

@media screen and (max-width: 737px) {
  .main-visual .searchList-top {
    margin-bottom: 0;
  }
}

.main-visual .searchList-top .checkbox-list {
  font-size: 0em;
}

.main-visual .searchList-top .checkbox-list li {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.main-visual .searchList-top .checkbox-list.half li {
  display: inline-block;
  width: 50%;
}

@media screen and (max-width: 737px) {
  .main-visual .searchList-top .checkbox-list li {
    width: 50%;
  }

  .main-visual .searchList-top .checkbox-list li :last-child {
    width: 85%;
  }
}

@media only screen and (max-width: 340px) {
  .main-visual .searchList-top .checkbox-list li:nth-child(odd) {
    width: 60%;
  }

  .main-visual .searchList-top .checkbox-list li:nth-child(even) {
    width: 40%;
  }
}

.main-visual .custom-select {
  width: 32%;
}

@media screen and (max-width: 737px) {
  .main-visual .custom-select {
    width: 100%;
  }
}

@media screen and (max-width: 737px) {
  .main-visual .input-schoolName {
    margin-bottom: 10px;
  }
}

.main-visual .btn-wrap {
  padding-top: 15px;
}

@media screen and (max-width: 737px) {
  .main-visual .btn-wrap {
    padding-top: 0;
  }
}

.main-visual .btn-submit {
  width: 100%;
  height: 90px;
}

@media screen and (max-width: 737px) {
  .main-visual .btn-submit {
    height: 60px;
  }
}

.main-visual .btn-submit > span {
  display: block;
  padding-left: 100px;
}

@media screen and (max-width: 737px) {
  .main-visual .btn-submit > span {
    display: inherit;
    padding-left: 30px;
  }
}

.sec-menu {
  padding: 40px 0 70px;
  background: #fff;
}

@media screen and (max-width: 737px) {
  .sec-menu {
    display: none;
  }
}

.sec-menu .ico-menu {
  max-width: 1020px;
  margin: 0 auto;
}

.sec-menu .ico-menu li {
  float: left;
  width: 16.6666%;
  line-height: 1.3;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  font-size: 1.6rem;
  border-right: 1px solid #7d7d7d;
}

body.en .sec-menu .ico-menu li {
  padding-bottom: 2px;
}

html.fontM body.en .sec-menu .ico-menu li {
  padding-bottom: 15px;
}

html.fontL body.en .sec-menu .ico-menu li {
  padding-bottom: 20px;
}

body.en .sec-menu .ico-menu li span {
  font-size: 16px;
  font-size: 1.6rem;
}

.sec-menu .ico-menu li:first-of-type {
  border-left: 1px solid #7d7d7d;
}

.sec-menu .ico-menu li::after {
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  content: "";
  bottom: 0;
  width: 0;
  height: 120%;
  left: -16%;
  -ms-transform: skewX(15deg);
  -webkit-transform: skewX(15deg);
  transform: skewX(15deg);
  background-color: #072549;
}

.sec-menu .ico-menu li:hover {
  color: #ffffff;
}

.sec-menu .ico-menu li:hover:after {
  left: -18%;
  width: 140%;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.sec-menu .ico-menu li:hover a {
  color: #fff;
}

.sec-menu .ico-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
  width: 100%;
  height: 147px;
  padding-top: 90px;
  background-position: center top 15px;
  background-repeat: no-repeat;
  background-size: 75px auto;
  position: relative;
  z-index: 2;
}

.sec-menu .ico-menu li a span {
  position: relative;
  z-index: 2;
}

.sec-menu .ico-menu li.menu01 a {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link01_off.png);
}

.sec-menu .ico-menu li.menu01 a:hover {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link01_on.png);
}

.sec-menu .ico-menu li.menu02 a {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link02_off.png);
}

.sec-menu .ico-menu li.menu02 a:hover {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link02_on.png);
}

.sec-menu .ico-menu li.menu03 a {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link03_off.png);
}

.sec-menu .ico-menu li.menu03 a:hover {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link03_on.png);
}

.sec-menu .ico-menu li.menu04 a {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link04_off.png);
  background-position: center top 20px;
  padding-top: 100px;
}

.sec-menu .ico-menu li.menu04 a:hover {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link04_on.png);
}

.sec-menu .ico-menu li.menu05 a {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link05_off.png);
  background-position: center top 25px;
  padding-top: 100px;
}

.sec-menu .ico-menu li.menu05 a:hover {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link05_on.png);
}

.sec-menu .ico-menu li.menu06 a {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link06_off.png);
  background-position: 40px 22px;
}

body.en .sec-menu .ico-menu li.menu06 a {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link06_off.png);
  background-position: center top 25px;
  padding-top: 100px;
}

.sec-menu .ico-menu li.menu06 a:hover,
body.en .sec-menu .ico-menu li.menu06 a:hover {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/icon_link06_on.png);
}

.top-ttl {
  background: url(https://www.nicjp.niad.ac.jp/en/images/bg_pattern.jpg)
    repeat-x 0 bottom;
  padding-bottom: 7px;
  padding-left: 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 737px) {
  .top-ttl {
    background-size: 10px auto;
    padding-bottom: 5px;
    padding-left: 5px;
    margin-bottom: 20px;
  }
}

.top-ttl .jp {
  color: #072549;
  font-size: 14px;
  font-size: 1.4rem;
  margin-left: 20px;
}

@media screen and (max-width: 737px) {
  .top-ttl .jp {
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 10px;
  }
}

.sec-bdr {
  background: #fff;
}

@media screen and (max-width: 737px) {
  .sec-bdr {
    padding-bottom: 30px;
  }
}

.news-col {
  width: 72.9%;
}

.faq-col {
  width: 50%;
}

.faq-col .faq-content {
  margin: 40px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #03b5d2;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1.15em 0;
  color: #7288a2;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  font-size: 17px;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: #03b5d2;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 100em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 2em 0;
}
.form-faq {
  margin-top: 1.5rem;
}
.form-field {
  margin: 5px 0px 5px 0px;
  clear: both;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}
.form-label {
  display: inline-block;
  padding: 0;
  text-transform: none;
  line-height: 1;
  margin-bottom: 10px;
}
.form-required {
  display: inline;
  color: #ff2825 !important;
}

.form-input-first-name {
  width: 40%;
}

.form-input-last-name {
  width: 55%;
}

.form-input-email {
  width: 100%;
}

.form-left {
  float: left;
}

.form-right {
  float: right;
}

.form-input {
  box-sizing: border-box;
  width: 100%;
  color: #000000;
  height: auto;
  max-width: 820px !important;
  padding: 10px 20px !important;
  margin-bottom: 10px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.form-submit {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-button {
  display: inline-block;
  height: auto;
  padding: 0;
  background-image: none !important;
  background-color: transparent;
  color: #1685e5 !important;
  border: 1px solid #1685e5 !important;
  border-radius: 50px;
  -webkit-transition: all 100ms ease-in-out;
  -moz-transition: all 100ms ease-in-out;
  -ms-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

.form-button:hover {
  background-color: rgba(22, 133, 229, 0.2);
  color: #1685e5;
}

.form-button .button-inner {
  display: inline-block;
  height: auto;
  padding: 14px 30px;
  background: #1685e5, 0.8;
  background-image: none !important;
  color: inherit !important;
  letter-spacing: 0.03em;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

.button-container {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 960px) {
  .news-col {
    width: 100%;
  }
  .faq-col {
    width: 100%;
  }
}

@media screen and (max-width: 737px) {
  .news-col .top-ttl img {
    width: 150px;
  }
}

ul.news-list {
  display: flex;
}

.news-col .news-list {
  margin-bottom: 50px;
}

@media screen and (max-width: 737px) {
  .news-col .news-list {
    margin-bottom: 0;
  }

  ul.news-list {
    display: block;
  }
}

.news-col .news-list li {
  width: 32%;
  min-height: 370px;
  position: relative;
  /*	float: left;*/
  margin-left: 2%;
  border: 1px solid #d3d3d3;
  -webkit-box-shadow: 0 3px 2px -1px #a0a0a0;
  box-shadow: 0 3px 2px -1px #a0a0a0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  background-color: #f4f4f4;
}

@media screen and (max-width: 737px) {
  .news-col .news-list li {
    width: 100%;
    margin: 0 0 25px;
  }
}

.news-col .news-list li:hover {
  -webkit-box-shadow: 0 0 8px -1px #a0a0a0;
  box-shadow: 0 0 8px -1px #a0a0a0;
}

.news-col .news-list li:first-of-type {
  margin-left: 0;
}

.news-col .news-list li .img {
  position: relative;
  overflow: hidden;
}

.news-col .news-list li .img::after {
  padding-top: 58%;
  content: "";
  display: block;
}

.news-col .news-list li .img img {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
}

.news-col .news-list li .cont {
  padding: 20px 30px;
  text-align: right;
}

@media screen and (max-width: 737px) {
  .news-col .news-list li .cont {
    text-align: left;
    padding: 15px 25px;
  }
}

.news-col .news-list li .category,
.news-col .news-list li .more {
  color: #034453;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 1.2rem;
  font-weight: bold;
}

.news-col .news-list li .more {
  position: absolute;
  bottom: 14px;
  right: 28px;
}

.news-col .news-list li .category {
  font-size: 11px;
  font-size: 1.1rem;
  color: #fff;
  padding: 6px;
  background-color: #034453;
  position: absolute;
  top: 0;
  left: 0;
}

.news-col .news-list li .category:empty {
  display: none;
}

@media screen and (max-width: 737px) {
  .news-col .news-list li .category {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.news-col .news-list li .day {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

@media screen and (max-width: 737px) {
  .news-col .news-list li .day {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.news-col .news-list li .ttl {
  text-align: left;
  font-size: 14px;
  font-size: 1.2rem;
  margin-bottom: 36px;
  font-weight: bold;
}

.btn-more-box {
  clear: both;
  text-align: right;
}

@media screen and (max-width: 737px) {
  .btn-more-box {
    display: none;
  }
}

.btn-more-box .btn--Arrow--move {
  text-align: center;
}

@media screen and (max-width: 737px) {
  .btn-more-box .btn--Arrow--move span {
    padding-right: 30px;
    padding-left: 0;
    background: #062549;
    background-size: 16px auto;
  }
}

@media screen and (min-width: 737px) {
  .btn-more-box .btn--Arrow--move span {
    display: block;
    position: relative;
    padding-right: 42px;
    padding-left: 0;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }

  .btn-more-box .btn--Arrow--move span:before {
    top: 50%;
    right: 0;
    left: inherit;
    background: url(https://www.nicjp.niad.ac.jp/en/images/arrow_pur.png)
      no-repeat left center;
    background-size: contain;
  }

  .btn-more-box .btn--Arrow--move span:after {
    left: -30px;
    right: inherit;
    background: url(https://www.nicjp.niad.ac.jp/en/images/arrow_wh_right.png)
      no-repeat left center;
    background-size: 23px auto;
  }

  .btn-more-box .btn--Arrow--move:hover {
    padding-left: 20px;
  }

  .btn-more-box .btn--Arrow--move:hover span {
    margin-right: -42px;
    margin-left: 0;
  }

  .btn-more-box .btn--Arrow--move:hover span:before {
    opacity: 0;
  }

  .btn-more-box .btn--Arrow--move:hover span:after {
    left: 0;
    opacity: 1;
  }
}

.update-col {
  width: 22.8%;
}

@media screen and (max-width: 960px) {
  .update-col {
    width: 100%;
    height: 100%;
  }
}

.update-col .top-ttl {
  background: none;
  padding: 0 22px;
  margin: 0 0 -8px;
  /*	text-align: center;*/
}

@media only screen and (max-width: 768px) {
  .update-col .top-ttl img {
    width: 161px;
  }
}

.update-col .col-bg {
  background: url(https://www.nicjp.niad.ac.jp/en/images/bg_pattern.jpg);
  padding: 15px 15px 15px;
  height: auto;
}

.update-col .col-inner {
  background: #ffffff;
  padding: 20px 25px 30px;
  height: 100%;
  max-height: 200vh;
  -webkit-box-sizing: border-box; /*webkit系*/
  -moz-box-sizing: border-box; /*Firefox*/
  box-sizing: border-box;
}

@media screen and (max-width: 960px) {
  .update-col .col-inner {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box; /*webkit系*/
    -moz-box-sizing: border-box; /*Firefox*/
    box-sizing: border-box;
  }
}

.update-col .update-ttl {
  color: #072549;
  font-size: 16px;
  font-size: 1.6rem;
}

.update-col .update-list li {
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 5px;
  border-bottom: 1px solid #242424;
}

.update-col .update-list li:last-child{
	border-bottom: none;
}

.update-col .update-list li a {
  overflow: hidden;
  position: relative;
  display: block;
  padding: 15px 30px 10px 0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.update-col .update-list li a::after,
.update-col .update-list li a::before {
  position: absolute;
  bottom: 10px;
  content: "";
  display: block;
  width: 17px;
  height: 19px;
  background: url(https://www.nicjp.niad.ac.jp/en/images/arrow_pur.png)
    no-repeat left center;
  background-size: 100% auto;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.update-col .update-list li a::before {
  left: -35px;
}

.update-col .update-list li a::after {
  right: 0;
}

.update-col .update-list li a:hover {
  padding-left: 30px;
  padding-right: 0;
}

.update-col .update-list li a:hover::before {
  left: 0;
}

.update-col .update-list li a:hover::after {
  right: -35px;
}

/* for no links */
.update-col .update-list li.noLink a {
  cursor: context-menu;
}

.update-col .update-list li.noLink a::after {
  right: 0;
  display: none;
}

.update-col .update-list li.noLink a:hover {
  padding: 15px 30px 10px 0;
}

.update-col .update-list li.noLink a:hover::before {
  left: -35px;
}

.update-col .update-list li.noLink a:hover::after {
  display: none;
  right: 0;
}

.update-col .update-list li.noLink a:hover .day {
  margin-left: 0;
}

.update-col .update-list li.noLink a:hover p {
  opacity: 1;
}

/*NO LINKS END */

.update-col .update-list li a:hover .day {
  margin-left: -30px;
}

.update-col .update-list li a:hover p {
  opacity: 0.7;
}

.update-col .update-list li .day {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-bottom: 5px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.bg-color {
  background-color: #072549;
  color: #fff;
}

.oputionBox > .CatelistBox > li > label {
  position: relative;
  z-index: 9;
}

.oputionBox > .CatelistBox > li > label span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #072549;
  border: 1px solid #072549;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  /* padding-top: 19px; */
  padding: 20px 0;
  /* padding: 8% 11px 0px 11px; */
}

.oputionBox > .CatelistBox > li > label input[type="checkbox"] {
  z-index: 9;
}

.oputionBox > .CatelistBox > li > label input[type="checkbox"]:checked + span {
  opacity: 1;
  overflow: visible;
}

.sec-pickup {
  padding: 40px 0;
  background: #fff;
}

@media screen and (max-width: 737px) {
  .sec-pickup {
    padding-bottom: 30px;
  }
}

.sec-pickup .top-ttl {
  max-width: 72.9%;
}

@media screen and (max-width: 960px) {
  .sec-pickup .top-ttl {
    max-width: 100%;
  }
}

.sec-pickup .top-ttl img {
  width: 188px;
}

@media screen and (max-width: 737px) {
  .sec-pickup .top-ttl img {
    width: 132px;
  }
}

.sec-pickup .pickup-box {
  margin: 0;
  width: 25%;
  position: relative;
  overflow: hidden;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 24px;
  font-size: 2.4rem;
}

.sec-pickup .pickup-box.pick1 {
  width: 100%;
  /*	height: 476px !important;*/
}

.sec-pickup .pickup-box.pick2 {
  width: 50%;
  /*	height: 476px !important;*/
}

.sec-pickup .pickup-box.pick3 {
  width: 33.33333333%;
  /*	height: 476px !important;*/
}

.sec-pickup .pickup-box.pick4 {
  /*	width: 25%;*/
  /*	height: 476px !important;*/
}

@media screen and (max-width: 960px) {
  .sec-pickup .pickup-box {
    width: 100% !important;
    height: 150px !important;
  }
}

@media screen and (max-width: 737px) {
  .sec-pickup .pickup-box {
    font-size: 15px;
    font-size: 1.5rem;
    width: 100%;
  }
}

.sec-pickup .pickup-box::before {
  padding-top: 60%;
  content: "";
  display: block;
}

@media screen and (max-width: 737px) {
  .sec-pickup .pickup-box::before {
    padding-top: 30%;
    content: "";
    display: block;
  }
}

.sec-pickup .pickup-box.pickup01 {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/bg_menu01.jpg);
}

.sec-pickup .pickup-box.pickup02 {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/bg_menu02.jpg);
}

.sec-pickup .pickup-box.pickup03 {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/bg_menu03.jpg);
}

.sec-pickup .pickup-box.pickup04 {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/bg_menu04.jpg);
}

.sec-pickup .pickup-box.pickup05 {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/column/img02.jpg);
}

.sec-pickup .pickup-box.pickup06 {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/column/img03.jpg);
}

.sec-pickup .pickup-box.pickup07 {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/column/img04.jpg);
}

.sec-pickup .pickup-box.pickup08 {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/column/img05.jpg);
}

.sec-pickup .pickup-box.pickup09 {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/column/img06.jpg);
}

.sec-pickup .pickup-box.pickup10 {
  background-image: url(https://www.nicjp.niad.ac.jp/en/images/column/img07.jpg);
}

.sec-pickup .pickup-box .ttl {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  line-height: 1.4;
  text-shadow: 2px 2px 15px #242424;
}

.sec-pickup .pickup-box .pickup-box-inner,
.sec-pickup .pickup-box div.title_area {
  padding: 2em;
  color: #ffffff;
  /*	text-transform: uppercase;*/
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec-pickup .pickup-box .pickup-box-inner::before,
.sec-pickup .pickup-box .pickup-box-inner::after,
.sec-pickup .pickup-box div.title_area::before,
.sec-pickup .pickup-box div.title_area::after {
  pointer-events: none;
  position: absolute;
  /* top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px; */
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.sec-pickup .pickup-box .pickup-box-inner::before,
.sec-pickup .pickup-box div.title_area::before {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
}

.sec-pickup .pickup-box .pickup-box-inner::after,
.sec-pickup .pickup-box div.title_area::after {
  border-right: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  transform: scale(1, 0);
}

.sec-pickup .pickup-box .pickup-box-inner > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0em;
  opacity: 0;
}

.sec-pickup .pickup-box div.title_area > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0em;
  opacity: 0;
}

.sec-pickup .pickup-box:hover .pickup-box-inner::before,
.sec-pickup .pickup-box:hover .pickup-box-inner::after,
.sec-pickup .pickup-box:hover div.title_area::before,
.sec-pickup .pickup-box:hover div.title_area::after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/*--kasou6--*/

.blinkLink:hover {
  cursor: pointer;
  -webkit-animation: blink 0.3s ease-in-out 1 alternate;
  animation: blink 0.3s ease-in-out 1 alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.cont-steps {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 90px auto 80px;
  max-width: 510px;
}

@media screen and (max-width: 737px) {
  .cont-steps {
    margin: 50px auto;
  }
}

.cont-steps:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #072549;
}

.cont-steps li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 90px;
  height: 90px;
  border: 1px solid #072549;
  background: #fff;
}

@media screen and (max-width: 640px) {
  .cont-steps li {
    width: 70px;
    height: 70px;
  }
}

.cont-steps li span {
  display: block;
  line-height: 1;
  text-align: center;
}

.cont-steps li .no {
  color: #072549;
  font-size: 34px;
  font-size: 3.4rem;
}

@media screen and (max-width: 640px) {
  .cont-steps li .no {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.cont-steps li .step {
  margin-top: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}

.cont-steps li.active {
  background: #072549;
}

.cont-steps li.active .no,
.cont-steps li.active .step {
  color: #fff;
}

.error-area {
  margin: 0 auto;
  max-width: 920px;
  font-size: 16px;
  font-size: 1.6rem;
}

.error-area p {
  padding: 10px 0;
  color: #ff0000;
}

.contact-form {
  margin: 0 auto;
  max-width: 920px;
  font-size: 16px;
  font-size: 1.6rem;
  border-top: 1px solid #eee;
}

.secForm p {
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}

.secForm > .btn-box {
  padding-bottom: 60px;
}

@media screen and (min-width: 737px) {
  .contact-form .item-fs {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .contact-form .item-fs.mt10 {
    margin-top: 10px;
  }

  .contact-form .item-fs.mt15 {
    margin-top: 15px;
  }
}

@media screen and (max-width: 737px) {
  .contact-form {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.contact-form .itemForm {
  padding: 15px 0 20px;
  border-bottom: 1px solid #eee;
}

@media screen and (min-width: 737px) {
  .contact-form .itemForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
  }
}

.contact-form .itemName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 2.17%;
  width: 30.43%;
}

@media screen and (max-width: 737px) {
  .contact-form .itemName {
    display: inline-block;
    margin-bottom: 10px;
    padding-right: 0;
    width: auto;
    font-weight: bold;
  }
}

.contact-form .itemName .required {
  color: #072549;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 737px) {
  .contact-form .itemName .required {
    margin-left: 2em;
  }
}

@media screen and (min-width: 737px) {
  .contact-form .iteminput {
    width: calc(100% - 30.43%);
  }
}

.contact-form .iteminput input[type="text"],
.contact-form .iteminput textarea {
  padding: 5px 15px;
  width: 100%;
  min-height: 60px;
  border: 2px solid #eee;
  resize: none;
}

@media screen and (max-width: 737px) {
  .contact-form .iteminput input[type="text"],
  .contact-form .iteminput textarea {
    min-height: 53px;
  }
}

@media screen and (min-width: 737px) {
  .contact-form .iteminput input[type="text"] {
    width: 71.875%;
  }
}

.contact-form .iteminput textarea {
  height: 180px;
}

.contact-form .iteminput .selectInput {
  margin: 20px 0 10px;
  width: 54.68%;
  border: 2px solid #eee;
}

@media screen and (max-width: 737px) {
  .contact-form .iteminput .selectInput {
    width: 100%;
  }
}

.contact-form .iteminput .inputarea {
  margin-bottom: 10px;
}

@media screen and (min-width: 737px) {
  .contact-form .iteminput .checkbox label {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.contact-form .top-box {
  margin-bottom: 0;
}

@media screen and (min-width: 737px) {
  .contact-form .top-box {
    margin-bottom: 10px;
  }
}

.contact-form .checkbox {
  margin-bottom: 15px;
}

@media screen and (min-width: 737px) {
  .contact-form .checkbox {
    display: inline-block;
    margin-bottom: 0;
    min-width: 235px;
  }
}

@media screen and (max-width: 737px) {
  .contact-form .radiobox label {
    font-size: 13px;
    font-size: 1.3rem;
  }

  .contact-form .radiobox label:first-of-type {
    margin-left: 0;
  }
}

.contact-form .btn-box {
  margin: 60px auto 0px;
  max-width: 760px;
  padding-bottom: 120px;
}

@media screen and (max-width: 737px) {
  .contact-form .btn-box {
    margin: 40px auto 0px;
    padding-bottom: 60px;
  }
}

.contact-form .btn-box .btn-border {
  margin: 0 0 30px;
  max-width: 760px;
}

div.kasou3 .oputionBox .checkbox-list {
  /*
    display: -webkit-box;
    display: -ms-flexbox;
*/
  /* display: flex; */
  display: block;
  /*
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
*/
}

div.kasou3 .oputionBox .checkbox-list.half li {
  display: inline-block;
  width: 50%;
}

div.kasou3 .oputionBox .checkbox-list li {
  width: 100%;
  margin-bottom: 15px;
}

div.kasou3 .oputionBox > .CatelistBox > li > label {
  position: relative;
  z-index: 9;
}

div.kasou3 .oputionBox > .CatelistBox > li > label span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #072549;
  border: 1px solid #072549;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  padding: 20px 0;
}

div.kasou3 .oputionBox > .CatelistBox > li > label input[type="checkbox"] {
  z-index: 9;
}

div.kasou3
  .oputionBox
  > .CatelistBox
  > li
  > label
  input[type="checkbox"]:checked
  + span {
  opacity: 1;
  overflow: visible;
}

@media screen and (max-width: 737px) {
  div.kasou3 .oputionBox .checkbox-list {
    display: block;
  }

  div.kasou3 .oputionBox .checkbox-list li {
    width: 50%;
    margin-bottom: 15px;
  }
}

.toggle-year {
  background-color: #072549;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  /*	height: 50px;*/
  line-height: 30px;
  text-align: center;
  padding: 10px 50px;
}

.toggle-year:after {
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  font: normal normal normal 1.4em/1 FontAwesome;
  font-size: inherit;
  color: #fff;
}

.optionBox {
  display: none;
}

.optionBox li a {
  display: block;
  color: #333333;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 50px;
  font-weight: bold;
  border: 1px solid #f2f2f2;
  padding: 0 2%;
}

.toggle-news {
  color: #072549;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-top: 1px solid #072549;
  border-bottom: 1px solid #072549;
}

.toggle-news:after {
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  font: normal normal normal 1.4em/1 FontAwesome;
  font-size: inherit;
  color: #072549;
}

.content-article {
  padding: 60px 0 0;
  background: #fff;
}

@media screen and (max-width: 737px) {
  .content-article {
    /*        padding: 30px 0 0;*/
    padding: 0;
  }
}

.content-article .content-about {
  padding: 0 0 20px;
  border-top: 4px solid #eeeeee;
}

@media screen and (max-width: 737px) {
  .content-article .content-about {
    padding: 0 0 40px;
  }
}

.content-article .content-about .inner > div {
  padding-left: 240px;
  padding-top: 50px;
  overflow: hidden;
}

.content-article.news .content-about .inner > div {
  padding-left: 50px;
  padding-top: 0;
}

@media screen and (max-width: 737px) {
  .content-article .content-about .inner > div {
    padding-left: 0;
    padding-top: 25px;
  }
}

.content-article .content-about .inner > div p {
  margin-bottom: 20px;
}

@media screen and (max-width: 737px) {
  .content-article .content-about .inner > div p {
    margin-bottom: 25px;
  }
}

.content-article .content-about h2 {
  color: #072549;
  position: relative;
  font-weight: 500;
  padding: 20px 0 0;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 737px) {
  .content-article .content-about h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.content-article .content-about h2:before {
  content: "";
  background: #072549;
  height: 4px;
  width: 240px;
  top: -4px;
  position: absolute;
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .sec-bdr .inner > h2 {
    margin-bottom: 15px;
    padding-top: 10px;
    font-size: 2rem;
  }
}
.ttlCom03 {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
}
.sec-bdr .inner > h2:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 240px;
  height: 4px;
  background: #062549;
}

@media screen and (max-width: 737px) {
  .sec-bdr .inner > h2:before {
    top: -3px;
    height: 3px;
    width: 150px;
  }
}

@media screen and (max-width: 737px) {
  .content-article .content-about h2:before {
    width: 120px;
  }
}

.content-article .content-about h3 {
  border-top: 2px solid #eeeeee;
  color: #072549;
  position: relative;
  font-weight: 600;
  padding: 10px 0 35px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 737px) {
  .content-article .content-about h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.content-article .content-about h3:before {
  content: "";
  background: #072549;
  height: 2px;
  width: 120px;
  top: -2px;
  position: absolute;
}

@media screen and (max-width: 737px) {
  .content-article .content-about h3:before {
    width: 60px;
  }
}

.content-article .content-about h4 {
  font-weight: bold;
  color: #072549;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 737px) {
  .content-article .content-about h4 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.content-article .content-about p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 737px) {
  .content-article .content-about p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.content-article .content-about a {
  text-decoration: underline;
}

.content-article .content-about a:hover {
  text-decoration: none;
}

.content-article .content-about ul {
  padding-bottom: 65px;
}

@media screen and (max-width: 737px) {
  .content-article .content-about ul {
    padding-bottom: 40px;
  }
}

.content-article .content-about ul li {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 737px) {
  .content-article .content-about ul li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.content-article .content-about ul li:last-child {
  margin-bottom: 0;
}

.content-article .content-about ul li span {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.content-article .content-about ul li span img {
  margin-left: 5px;
  vertical-align: baseline;
}

.content-article .content-about ol {
  /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex; */
  margin-bottom: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 20px;
}

@media screen and (max-width: 737px) {
  .content-article .content-about ol {
    margin-bottom: 30px;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.content-article .content-about ol li:first-child {
  margin-right: 25px;
}

@media screen and (max-width: 737px) {
  /* .content-article .content-about ol li:first-child {
        margin-bottom: 20px;
        margin-right: 0;
        text-align: center;
    } */
}

.content-article .content-about ol li:first-child img {
  min-width: 200px;
}

.content-article .content-about ol li p {
  margin-bottom: 15px !important;
}

.content-article .content-about .btn-about {
  font-weight: 500;
  color: #ffffff;
  min-width: 108px;
  padding: 7px 18px;
  background: #072549;
  display: inline-block;
  padding: 5px 18px 3px;
  border-radius: 20px;
  margin: 10px 1px 10px;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

.newsDesc {
  word-break: break-all;
}

@media screen and (max-width: 737px) {
  .content-article .content-about .btn-about {
    margin-bottom: 0;
  }
}

.sec-pickupW1 {
  margin-bottom: 0;
}

.sec-pickupW1 .pickup-box {
  width: 100%;
  height: 462px !important;
}

.sec-pickupW2 {
  margin-bottom: 0;
}

.sec-pickupW2 .pickup-box {
  width: 50%;
  height: 423px !important;
}

.sec-pickupW3 {
  margin-bottom: 0;
}

.sec-pickupW3 .pickup-box {
  width: 33.333%;
}

.sec-pickupW4 {
  margin-bottom: 0;
}

.sec-pickupW4 .pickup-box {
  width: 50%;
  height: 423px !important;
}

/* special case */
.sec-pickupW5 {
  margin-bottom: 0;
}

.sec-pickupW5 .pickup-box {
  width: 33.3333%;
}

.sec-pickupW5 .pickup-box:nth-child(4),
.sec-pickupW5 .pickup-box:nth-child(5) {
  width: 50%;
  height: 423px;
}

.sec-pickupW6 {
  margin-bottom: 0;
}

.sec-pickupW6 .pickup-box {
  width: 33.3333%;
}

.sec-pickupW7 .pickup-box {
  width: 50%;
  height: 423px !important;
}

.sec-pickupW7 .pickup-box:nth-child(1),
.sec-pickupW7 .pickup-box:nth-child(2),
.sec-pickupW7 .pickup-box:nth-child(3) {
  width: 33.3333%;
  height: 423px;
}

.sec-pickupW8 .pickup-box {
  width: 33.3333%;
  height: 423px !important;
}

.sec-pickupW8 .pickup-box:nth-child(7),
.sec-pickupW8 .pickup-box:nth-child(8) {
  width: 50%;
  height: 423px !important;
}

.sec-pickupW9 .pickup-box {
  width: 33.3333%;
  height: 423px !important;
}

.sec-pickupW10 .pickup-box {
  width: 33.3333%;
  height: 423px !important;
}

.sec-pickupW10 .pickup-box:nth-child(7),
.sec-pickupW10 .pickup-box:nth-child(8),
.sec-pickupW10 .pickup-box:nth-child(9),
.sec-pickupW10 .pickup-box:nth-child(10) {
  width: 50%;
  height: 423px !important;
}

/*
.sec-pickupW3 .pickup-box {
    width: 33.333%;
}
*/

@media screen and (max-width: 737px) {
  .sec-pickupW2,
  .sec-pickupW4 {
    padding: 35px 25px 35px;
  }

  .sec-pickupW2 .pickup-box,
  .sec-pickupW4 .pickup-box {
    width: 100%;
    border-bottom: solid 1px #fff;
    box-sizing: border-box;
    height: auto !important;
  }

  .sec-pickupW1,
  .sec-pickupW3,
  .sec-pickupW5,
  .sec-pickupW6 {
    padding: 35px 25px 35px;
  }

  .sec-pickupW3 .pickup-box,
  .sec-pickupW6 .pickup-box,
  .sec-pickupW5 .pickup-box {
    width: 100%;
    border-bottom: solid 1px #fff;
    box-sizing: border-box;
  }

  .sec-pickupW5 .pickup-box:nth-child(4),
  .sec-pickupW5 .pickup-box:nth-child(5),
  .sec-pickupW1 .pickup-box {
    width: 100%;
    height: auto;
  }

  .sec-pickupW4 {
    padding: 35px 25px 35px;
  }

  .sec-pickupW4 .pickup-box {
    width: 100%;
  }
}

.mg0 {
  margin: 0 !important;
}

.download_list {
  margin: 5px 20px 10px 20px;
  background: #eeeeee;
  padding: 10px 22px;
}

.download_list li {
  display: inline-block;
  /* min-height: 50px;
    line-height: 50px; */
  /* padding-left: 12px; */
  padding: 5px 22px;
  position: relative;
}

.download_list li:first-child {
  /* margin-right: 25px; */
}

.download_list li:before {
  content: "↓";
  position: absolute;
  left: 0;
  -webkit-transform: translateY(-50%) scale(1.5);
  -ms-transform: translateY(-50%) scale(1.5);
  transform: translateY(-50%) scale(1.5);
  color: #072549;
  top: 50%;
}

.download_list li a {
  text-decoration: underline;
  font-size: 12px;
  font-size: 1.2rem;
}

.article-2column {
  padding: 0px 0 120px;
}

@media screen and (max-width: 737px) {
  .article-2column .inner-k5 {
    padding: 0 !important;
  }
}

.article-2column .archive-years {
  padding: 0 0px;
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .article-2column .archive-years {
    padding: 0;
  }
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column {
    padding: 0 !important;
  }
}

.article-2column .content-2column .sec-bdr {
  margin-top: 0;
}

.article-2column .content-2column .sec-bdr .tableCom01 {
  margin: 0 0 18px;
}

.article-2column .content-2column .sec-bdr .tableCom01 .tRow .tData table {
  margin-bottom: 14px;
  /*	max-width: 338px;*/
  display: block;
  overflow-x: auto;
}

.article-2column .content-2column .sec-bdr .tableCom01 .tRow .tData table th {
  background: #666666;
  color: #ffffff;
}

.article-2column .content-2column .sec-bdr .tableCom01 .tRow .tData table th,
.article-2column .content-2column .sec-bdr .tableCom01 .tRow .tData table td {
  border: 1px solid #bebebe;
  height: 60px;
  padding: 0 20px;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr .tableCom01 .tRow .tData table th,
  .article-2column .content-2column .sec-bdr .tableCom01 .tRow .tData table td {
    height: 50px;
  }
}

.article-2column
  .content-2column
  .sec-bdr
  .tableCom01
  .tRow
  .tData
  table
  td:first-child {
  background: #eeeeee;
  font-weight: bold;
}

.article-2column .content-2column .sec-bdr .inner {
  padding: 0;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr .inner {
    padding: 0 4%;
  }
}

.article-2column .content-2column .sec-bdr .list-txt {
  color: #072549;
  padding-bottom: 60px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr .list-txt {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr .list-txt li {
    margin-bottom: 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr .list-txt li:last-child {
    margin-bottom: 0;
  }
}

.article-2column .content-2column .sec-content .inner .plpc-160 > div p {
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-content .inner .plpc-160 > div p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.article-2column .content-2column .sec-content .inner .plpc-160 > div p span {
  color: #333;
}

.article-2column .content-2column .sec-content .inner .plpc-160 > div a {
  text-decoration: underline;
}

.article-2column .content-2column .sec-content .inner .plpc-160 > div a:hover {
  text-decoration: none;
}

.article-2column .content-2column .sec-content .inner .plpc-160 > div h3 {
  border-top: 2px solid #eeeeee;
  color: #072549;
  position: relative;
  font-weight: 600;
  padding: 10px 0 35px;
  margin-top: 50px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-content .inner .plpc-160 > div h3 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 30px;
    padding-bottom: 20px;
  }
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  > div
  h3:before {
  content: "";
  background: #072549;
  height: 2px;
  width: 120px;
  top: -2px;
  position: absolute;
}

@media screen and (max-width: 737px) {
  .article-2column
    .content-2column
    .sec-content
    .inner
    .plpc-160
    > div
    h3:before {
    width: 60px;
  }
}

.article-2column .content-2column .sec-content .inner .plpc-160 ol {
  margin: 30px 0 50px;
  font-size: 16px;
  font-size: 1.6rem;
}

.article-2column .content-2column .sec-content .inner .plpc-160 ol li {
  margin-bottom: 10px;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-content .inner .plpc-160 ol {
    font-size: 13px;
    font-size: 1.3rem;
    margin: 10px 0 25px;
  }
}

.article-2column .content-2column .sec-content .inner .plpc-160 h4 {
  color: #072549;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}

.article-2column .content-2column .sec-content .inner .plpc-160 ul {
  padding: 40px 0 50px;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-content .inner .plpc-160 ul {
    padding: 20px 0;
  }
}

.article-2column .content-2column .sec-content .inner .plpc-160 ul li {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-content .inner .plpc-160 ul li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul
  li:last-child {
  margin-bottom: 0;
}

.article-2column .content-2column .sec-content .inner .plpc-160 ul li span {
  display: block;
  font-weight: bold;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-content .inner .plpc-160 ul li span {
    text-align: center;
  }
}

.article-2column .content-2column .sec-content .inner .plpc-160 ul li span b {
  color: #072549;
}

.article-2column .content-2column .sec-content .inner .plpc-160 ul li h5 {
  font-weight: bold;
  margin-bottom: 8px;
}

.article-2column .content-2column .sec-content .inner .plpc-160 ul li a {
  color: #ffffff;
  background: #072549;
  height: 47px;
  padding: 0 20px;
  min-width: 220px;
  display: inline-block;
  text-align: center;
  border: 4px solid #072549;
  line-height: 42px;
}

.article-2column .content-2column .sec-content .inner .plpc-160 ul li a:hover {
  color: #072549;
}

@media screen and (max-width: 737px) {
  .article-2column
    .content-2column
    .sec-content
    .inner
    .plpc-160
    ul
    li
    a:hover {
    color: #ffffff;
  }
}

.article-2column .content-2column .sec-content .inner .plpc-160 ul li p {
  margin-bottom: 15px;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-content .inner .plpc-160 ul li p {
    margin-bottom: 20px;
  }
}

.article-2column .content-2column .sec-content .inner .plpc-160 ul:last-child {
  padding: 0;
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li:last-child {
  margin-bottom: 35px;
}

@media screen and (max-width: 737px) {
  .article-2column
    .content-2column
    .sec-content
    .inner
    .plpc-160
    ul:last-child
    li {
    margin-bottom: 30px;
  }
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li
  ul
  li {
  margin-bottom: 0;
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  a {
  min-width: auto;
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn02,
.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn03 {
  padding: 0;
  background: none;
  text-decoration: underline;
  color: #666666;
  height: auto;
  line-height: 1.8;
  border: 0;
  padding-right: 24px;
  background: url(https://www.nicjp.niad.ac.jp/en/images/icn-outLink.png)
    no-repeat right center;
  background-size: 12px auto;
  text-decoration: underline;
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn02:hover,
.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn03:hover {
  text-decoration: none;
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn03 {
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon02.png) no-repeat
    right center;
  margin-bottom: 15px !important;
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn04,
.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn05 {
  margin-bottom: 10px;
  position: relative;
  padding-right: 50px;
  line-height: 43px;
  border: 4px solid #072549;
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn04:before,
.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn05:before {
  content: "";
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon03.png) no-repeat
    right center;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 18px;
  height: 11px;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn04:hover,
.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn05:hover {
  color: #072549;
}

@media screen and (max-width: 737px) {
  .article-2column
    .content-2column
    .sec-content
    .inner
    .plpc-160
    ul:last-child
    li.list-link
    .linkCmn04:hover,
  .article-2column
    .content-2column
    .sec-content
    .inner
    .plpc-160
    ul:last-child
    li.list-link
    .linkCmn05:hover {
    color: #ffffff;
  }
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn05 {
  margin-bottom: 0;
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:last-child
  li.list-link
  .linkCmn05:before {
  content: "";
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon04.png) no-repeat
    right center;
  height: 30px;
}

.article-2column .content-2column .pro-desc > div {
  margin-bottom: 55px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .pro-desc > div {
    margin-bottom: 30px;
  }
}

.article-2column .content-2column .pro-desc > div ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 65px 0 15px !important;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .pro-desc > div ol {
    margin: 30px 0 15px !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.article-2column .content-2column .pro-desc > div ol li:last-child {
  width: 600px;
  margin-left: 35px;
}

.article-2column .content-2column .pro-desc > div ol li:last-child img {
  width: 100%;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .pro-desc > div ol li:last-child {
    margin-left: 0;
    margin-bottom: 20px;
    width: auto;
  }
}

.article-2column .content-2column .question {
  text-align: center;
  margin: 60px 0;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .question {
    margin: 10px 0 30px !important;
  }
}

.article-2column .content-2column .question p {
  margin-bottom: 15px !important;
}

.article-2column .content-2column .question a {
  background: #072549;
  color: #ffffff;
  text-decoration: none !important;
  height: 46px;
  display: inline-block;
  line-height: 42px;
  padding: 0 12px;
  min-width: 150px;
  margin-right: 15px;
  border: 4px solid #072549;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .question a {
    margin-right: 40px;
  }
}

.article-2column .content-2column .question a:last-child {
  margin-right: 0;
}

.article-2column .content-2column .question a:hover {
  color: #072549;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .question a {
    min-width: 100px;
  }
}

.inquiry-btn {
  padding: 35px 80px 40px;
  background: #eeeeee;
  text-align: center;
  margin-bottom: 0 !important;
  background: url(https://www.nicjp.niad.ac.jp/en/images/bg_bdr.png) repeat top
    center;
}

@media screen and (max-width: 737px) {
  .inquiry-btn {
    padding: 30px 25px 35px;
    margin: 0 0;
  }
}

.inquiry-btn p {
  font-size: 16px;
  font-size: 1.6rem;
}

.inquiry-btn .btn-module {
  margin: 30px 0 0;
}

.inquiry-btn .btn-module .btn-base02 {
  width: 100%;
  background: #072549;
  color: #ffffff;
  height: 90px;
  line-height: 90px;
  overflow: hidden;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  max-width: 753px;
}

@media screen and (max-width: 737px) {
  .inquiry-btn .btn-module .btn-base02 {
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.inquiry-btn .btn-module .btn-base02:after {
  content: "";
  position: absolute;
  padding-right: 30px;
  background: url(https://www.nicjp.niad.ac.jp/en/images/arrow_wh_right.png)
    no-repeat right center;
  background-size: 18px auto;
  height: 15px;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.inquiry-btn .btn-module .btn-base02:before {
  content: "";
  position: absolute;
  padding-right: 30px;
  background: url(https://www.nicjp.niad.ac.jp/en/images/arrow_wh_right.png)
    no-repeat left center;
  background-size: 18px auto;
  height: 15px;
  left: -15%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.inquiry-btn .btn-module .btn-base02:hover {
  padding-left: 40px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.inquiry-btn .btn-module .btn-base02:hover:after {
  right: -15%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.inquiry-btn .btn-module .btn-base02:hover:before {
  left: 5%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

@media screen and (max-width: 737px) {
  .accordion-list {
    margin-bottom: 30px !important;
  }
}

.accordion-list .item-acc {
  margin-bottom: 10px;
}

@media screen and (max-width: 737px) {
  .accordion-list .item-acc {
    margin-bottom: 20px;
  }
}

.accordion-list .item-acc p.ttl {
  background: #072549;
  color: #ffffff;
  min-height: 60px;
  line-height: 60px;
  padding: 0 15px 0 30px;
  margin-bottom: 0 !important;
  cursor: pointer;
  position: relative;
}

@media screen and (max-width: 737px) {
  .accordion-list .item-acc p.ttl {
    padding: 0 15px 0 20px;
    min-height: 45px;
    line-height: 45px;
  }
}

.accordion-list .item-acc p.ttl:before {
  content: "";
  width: 25px;
  height: 4px;
  background: #ffffff;
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 737px) {
  .accordion-list .item-acc p.ttl:before {
    width: 15px;
  }
}

.accordion-list .item-acc p.ttl:after {
  content: "";
  width: 25px;
  height: 4px;
  background: #ffffff;
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width: 737px) {
  .accordion-list .item-acc p.ttl:after {
    width: 15px;
  }
}

.accordion-list .item-acc p.ttl.icon:after {
  display: none;
}

.accordion-list .item-acc .acc-content {
  background: #eeeeee;
  padding: 25px 30px 20px;
  display: none;
}

.accordion-list .item-acc .acc-content p span {
  background: #313131;
  font-weight: 500;
  width: 45px;
  height: 45px;
  color: #ffffff !important;
  float: left;
  text-align: center;
  line-height: 45px;
  margin-right: 15px;
}

.list-education {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 737px) {
  .list-education {
    margin: 0 -5%;
  }
}

.list-education li {
  width: 33.333%;
  border: 1px solid #e5e5e5;
  margin-left: -1px;
  margin-bottom: -1px;
}

@media screen and (max-width: 737px) {
  .list-education li {
    width: 50%;
  }
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .list-education li {
    width: 50%;
  }
}

.list-education li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #eeeeee;
  position: relative;
  height: 240px;
  overflow: hidden;
  color: #072549;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 15px;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .list-education li a {
    height: 150px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 737px) {
  .list-education li a {
    height: 120px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

/*
.list-education li a:after {
	position: absolute;
	background: #072549;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	content: "";
	bottom: 0;
	width: 200%;
	height: 200%;
	left: 160%;
	-webkit-transform: skewX(-45deg);
	-ms-transform: skewX(-45deg);
	transform: skewX(-45deg);
}
*/

/*
.list-education li a:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	border: 50px solid transparent;
	border-right: 50px solid #072549;
	border-bottom: 50px solid #072549;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	z-index: 3;
}
*/

@media screen and (max-width: 737px) {
  .list-education li a:before {
    border: 25px solid transparent;
    border-right: 25px solid #072549;
    border-bottom: 25px solid #072549;
  }
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .list-education li a:before {
    border: 25px solid transparent;
    border-right: 25px solid #072549;
    border-bottom: 25px solid #072549;
  }
}

.list-education li a span {
  z-index: 5;
}

.list-education li a span:after {
  content: "";
  background: url(https://www.nicjp.niad.ac.jp/en/images/next.png) no-repeat
    right center;
  position: absolute;
  right: 23px;
  bottom: 30px;
  width: 20px;
  height: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 3;
}

@media screen and (max-width: 737px) {
  .list-education li a span:after {
    right: 7px;
    /*		bottom: 13px;*/
    background-size: 60% auto;
  }
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .list-education li a span:after {
    right: 7px;
    bottom: 13px;
    background-size: 60% auto;
  }
}

.list-education li a:hover {
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*
.list-education li a:hover:before {
	border-right: 50px solid #FFFFFF;
	border-bottom: 50px solid #FFFFFF;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	z-index: 3;
}
*/

@media screen and (max-width: 737px) {
  .list-education li a:hover:before {
    border-right: 25px solid #ffffff;
    border-bottom: 25px solid #ffffff;
  }
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .list-education li a:hover:before {
    border-right: 25px solid #ffffff;
    border-bottom: 25px solid #ffffff;
  }
}

/*
.list-education li a:hover:after {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	left: 0;
}
*/

.list-education li a:hover span:after {
  background: url(https://www.nicjp.niad.ac.jp/en/images/next-hover.png)
    no-repeat right center;
  z-index: 3;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 737px) {
  .list-education li a:hover span:after {
    background-size: 60% auto;
  }
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .list-education li a:hover span:after {
    background-size: 60% auto;
  }
}

.tableColumn {
  width: 100%;
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .tableColumn {
    table-layout: auto;
  }
}

@media screen and (max-width: 737px) {
  .tableColumn {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

@media screen and (max-width: 737px) {
  .tableColumn dt,
  .tableColumn dd {
    min-height: 40px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 737px) {
  .tableColumn dt.tHead {
    color: #ffffff;
    background: url(https://www.nicjp.niad.ac.jp/en/images/bg-row.png);
  }
}

@media screen and (max-width: 737px) {
  .tableColumn .tRow {
    border-bottom: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
  }
}

/*    ウィジウィグ対応用    */

.article-2column .content-2column .sec-bdr.wyswyg1 .inner div > div {
  width: 100%;
  margin: 0 0 18px;
  font-size: 1.3rem;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner .img-right {
  overflow: hidden;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner .img-right .txt {
  width: 50%;
  float: left;
  padding-top: 1%;
  padding-right: 3%;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner .img-right .img {
  width: 50%;
  float: right;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner .img-right .txt,
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner .img-right .img {
    width: 100%;
    float: none;
    padding: 0;
  }
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner table {
  width: 100%;
  overflow-x: auto;
  font-size: 14px;
  font-size: 1.4rem;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner table tr {
  width: 100%;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner table th {
  padding: 1vh 1.2vw;
  color: white;
  background: #666666;
  border: 1px solid #bebebe;
  box-sizing: border-box;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner table th:first-child {
  text-align: left;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner table td {
  width: 20%;
  padding: 1vh 1.2vw;
  text-align: center;
  border: 1px solid #bebebe;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner table td:first-child {
  /*width: 30%;*/
  /*width: 45%;*/
  padding-right: 20px;
  background: #eeeeee;
  text-align: left;
  font-weight: bold;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner table td:last-child {
  width: auto;
  /*width: 15%;*/
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner table.w-content td {
  width: 70%;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  table.w-content
  td:first-child {
  width: 30%;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner table.w-content .row {
  padding: 1vh 1.2vw;
  text-align: center;
  background: #fff;
  font-weight: normal;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner table th,
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner table tr {
    font-size: 13px;
    font-size: 1.3rem;
  }

  .article-2column
    .content-2column
    .sec-bdr.wyswyg1
    .inner
    table
    td:first-child,
  .article-2column
    .content-2column
    .sec-bdr.wyswyg1
    .inner
    table
    th:first-child {
    padding: 2vh 2vw;
    text-align: center;
  }
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner p {
  width: 100%;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner h2 + p {
  margin-bottom: 35px;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner p span {
  color: #333;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner p a span {
  color: #2e82cc;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner a {
  text-decoration: underline;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner a:hover {
  text-decoration: none;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner a.btn-submit {
  text-decoration: none;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner h3 {
  border-top: 2px solid #eeeeee;
  color: #072549;
  position: relative;
  font-weight: 600;
  padding: 10px 0 35px;
  margin-top: 50px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner h3 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 30px;
    padding-bottom: 20px;
  }
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner h3:before {
  content: "";
  background: #072549;
  height: 2px;
  width: 120px;
  top: -2px;
  position: absolute;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner h3:before {
    width: 60px;
  }
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ol,
.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul {
  margin: 40px 0 50px;
  font-size: 16px;
  font-size: 1.6rem;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ol li,
.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li {
  margin-bottom: 20px;
  /* list-style-type: decimal; */
  list-style-position: inside;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  .plpc-160.pro-desc.right
  ol
  li {
  width: 100%;
  margin-right: 9px;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner dl ol {
  margin: 12px 0;
  font-size: 13px;
  font-size: 1.3rem;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner dl ol li {
  margin-bottom: 0;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner ol {
    font-size: 13px;
    font-size: 1.3rem;
    margin: 10px 0 25px;
  }
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner h4 {
  color: #072549;
  font-weight: bold;
  margin: 20px 0;
  font-size: 16px;
  font-size: 1.6rem;
}

.mid-img {
  margin-bottom: 38px;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul {
  padding: 40px 0 50px;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul.list-education {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul.list-education li {
  margin-bottom: 0;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul.list-education
  li:before {
  content: none;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul > span {
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
  /* font-size: 16px;
	font-size: 1.6rem; */
  text-decoration: underline;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner ul {
    padding: 20px 0;
  }
}

/*.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li,*/
/*.article-2column .content-2column .sec-bdr.wyswyg1 .inner ol li {*/
/*    padding-left: 1em;*/
/*    text-indent: -1em;*/
/*}*/
.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul.disc li,
.article-2column .content-2column .sec-bdr.wyswyg1 .inner ol.disc li {
  list-style-type: disc;
}
.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul.disc li:before,
.article-2column .content-2column .sec-bdr.wyswyg1 .inner ol.disc li:before {
  content: none;
}
ol.disc li,
ul.disc li {
  list-style-type: disc;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li:before {
  content: "-";
  margin-right: 1%;
  color: #072549;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  div.tableCom01
  + ul
  li {
  margin-bottom: 0;
  font-size: 13px;
  font-size: 1.3rem;
  list-style: none;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  div.tableCom01
  + ul
  li:before {
  content: none;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li:last-child {
  margin-bottom: 0;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li span {
  display: block;
  font-weight: normal;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li span {
    text-align: center;
  }
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li span b {
  color: #072549;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li h5 {
  font-weight: bold;
  margin-bottom: 8px;
}

/* .article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li a {
	color: #FFFFFF;
	background: #072549;
	height: 47px;
	padding: 0 20px;
	min-width: 220px;
	display: inline-block;
	text-align: center;
	border: 4px solid #072549;
	line-height: 42px;
} */
.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li a.common-link {
  background: none;
  border: none;
  padding-right: 0.5em;
  color: #2e82cc;
  min-width: auto;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul.list-education
  li
  a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #072549;
  position: relative;
  height: 68px;
  overflow: hidden;
  color: #ffffff;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 15px;
  font-size: 21px;
  font-size: 1.6rem;
  text-align: left;
  text-decoration: none;
  border: none;
  line-height: normal;
  min-width: inherit;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul.list-education
  li
  a:hover {
  color: #072549;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul
  li
  a.btn-submit:hover {
  color: #072549;
}

@media screen and (max-width: 737px) {
  .article-2column
    .content-2column
    .sec-bdr.wyswyg1
    .inner
    ul
    li
    a.btn-submit:hover {
    color: #ffffff;
  }

  .article-2column .content-2column .sec-bdr.wyswyg1 .inner ul.list-education {
    margin: 0 -5%;
  }

  .article-2column
    .content-2column
    .sec-bdr.wyswyg1
    .inner
    ul.list-education
    li {
    width: 50%;
  }

  .article-2column
    .content-2column
    .sec-bdr.wyswyg1
    .inner
    ul.list-education
    li
    a {
    /*		height: 120px;*/
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li p {
  margin-bottom: 15px;
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner ul li p {
    margin-bottom: 20px;
  }
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner ul:last-child {
  padding: 0;
}

.article-2column .content-2column .sec-bdr.wyswyg1 .inner p + ul:last-child {
  /*padding: 40px 0 50px;*/
}

/*
.article-2column .content-2column .sec-bdr.wyswyg1 .inner div > ul:last-child li {
    margin-bottom: 35px;
}
*/

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr.wyswyg1 .inner ul:last-child li {
    margin-bottom: 30px;
  }
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li
  ul
  li {
  margin-bottom: 0;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  a {
  min-width: auto;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn02,
.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn03 {
  padding: 0;
  background: none;
  text-decoration: underline;
  color: #666666;
  height: auto;
  line-height: 1.8;
  border: 0;
  padding-right: 24px;
  background: url(https://www.nicjp.niad.ac.jp/en/images/icn-outLink.png)
    no-repeat right center;
  background-size: 12px auto;
  text-decoration: underline;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn02:hover,
.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn03:hover {
  text-decoration: none;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn03 {
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon02.png) no-repeat
    right center;
  margin-bottom: 15px !important;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn04,
.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn05 {
  margin-bottom: 10px;
  position: relative;
  padding-right: 50px;
  line-height: 43px;
  border: 4px solid #072549;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn04:before,
.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn05:before {
  content: "";
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon03.png) no-repeat
    right center;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 18px;
  height: 11px;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn04:hover,
.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn05:hover {
  color: #072549;
}

@media screen and (max-width: 737px) {
  .article-2column
    .content-2column
    .sec-bdr.wyswyg1
    .inner
    ul:last-child
    li.list-link
    .linkCmn04:hover,
  .article-2column
    .content-2column
    .sec-bdr.wyswyg1
    .inner
    ul:last-child
    li.list-link
    .linkCmn05:hover {
    color: #ffffff;
  }
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn05 {
  margin-bottom: 0;
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul:last-child
  li.list-link
  .linkCmn05:before {
  content: "";
  background: url(https://www.nicjp.niad.ac.jp/en/images/icon04.png) no-repeat
    right center;
  height: 30px;
}

.article-2column .content-2column .sec-bdr .inner > div > div {
  width: 100%;
}

@media screen and (min-device-width: 767px) and (max-device-width: 800px) {
  .article-2column .content-2column .sec-bdr .inner > div > div {
    table-layout: auto;
  }
}

@media screen and (max-width: 737px) {
  .article-2column .content-2column .sec-bdr .inner > div > div {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

/* new modal   */
.search-section .flex-box .col-2 dl dd ul li {
  margin-bottom: 0;
  padding: 0 0 20px 0px;
}

.search-section .flex-box .col-2 dl dd ul li:first-child {
  padding: 20px 0;
}

.search-section .flex-box .col-2 dl dd .box-wrap {
  padding: 10px 20px;
  background: #fff;
  position: relative;
}

.left-box dl {
  margin-bottom: 30px;
}

.school-checkbox {
  display: flex;
}

.checkbox .school-label {
  /* width: 50%; */
  padding-right: 20px;
  display: inline-flex;
}

.checkbox .school-detail {
  width: 50%;
  display: inline-flex;
  border-radius: 15px;
  border: 1px solid #e6e6e6;
  background-color: #e3e3e3;
  transition: all 0.2s ease-out;
}

.checkbox .school-detail:hover {
  background-color: #fff;
  transition: all 0.2s ease-out;
}

.checkbox .school-detail label {
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
}

body.en .checkbox .school-detail {
  display: inline-table;
}

.result-box {
  display: flex;
}

.school-results {
  display: inline-flex;
  width: 65%;
}

.result-box .clear-button {
  display: inline-flex;
  width: 40%;
  z-index: 1;
}

.clear-button button {
  width: 100%;
}

/* fonts */
.school-results p {
  font-weight: bold;
  line-height: 1.4;
}

#search-count {
  font-size: 36px;
  font-size: 3.6rem;
}

/* modal checkbox */

.schoolBox {
  margin: 20px 0;
}

.schoolBox li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 30%;
  margin-right: 15px;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1;
}

.schoolBox li label {
  display: block;
  padding: 12px 10px;
  border: 1px solid #072549;
  cursor: pointer;
}

/* .schoolBox li label span {
    display: none;
} */
.schoolBox > li > label {
  position: relative;
  z-index: 9;
}

.schoolBox > li > label span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #072549;
  padding: 12px 10px;
  border: 1px solid #072549;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  text-align: center;
}

.schoolBox > li > label input[type="checkbox"]:checked + span {
  opacity: 1;
  overflow: visible;
}

/* modal */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  /* left: 0;
    top: 0; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  border: 1px solid #888;
  padding: 12px 25px;
  width: 679px;
  border: 2px solid #92940b;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* The Close Button */
.close-modal {
  padding-bottom: 14px;
  padding-right: 10px;
  border-bottom: 2px solid #eee;
  cursor: pointer;
}

.close-modal p {
  text-align: center;
  font-weight: bold;
}

.close-modal span {
  float: right;
}

.close-modal:hover,
.close-modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.cat-school .close-modal {
  padding-bottom: 14px;
  padding-right: 10px;
  border-bottom: 2px solid #eee;
  cursor: pointer;
}

.search-section .btn-box {
  margin-top: 20px;
}

input[type="checkbox"] {
  display: none;
}

.sp-qualify {
  display: none;
}

.search-section .regionSelect .oputionBox ul.cutom-scrollBar li:first-child {
  padding: 0 0;
}

.search-section .regionSelect .oputionBox ul.cutom-scrollBar li {
  padding: 0 0;
}

@media screen and (max-width: 737px) {
  .search-section .flex-box .col-2 dl dd ul li:first-child {
    padding: 0 0 20px 0;
  }

  .search-section .flex-box .col-2 dl dd ul li {
    padding: 0px 0px 20px 0;
  }

  .search-section .flex-box .col-2 dl dd ul li:last-child {
    margin-bottom: 0;
    padding: 0 0;
  }

  .search-section .flex-box .col-2 li.checkbox {
    width: 100%;
  }

  .clear-button button {
    width: 100%;
    height: 45px;
    margin-top: 22px;
  }

  .result-box .clear-button {
    display: inline-flex;
    width: 60%;
  }

  .search-section .flex-box .col-2 dl dd .box-wrap {
    padding: 20px 20px;
    background: #fff;
    position: relative;
  }

  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    border: 1px solid #888;
    padding: 12px 25px;
    width: 90%;
    border: 2px solid #92940b;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .schoolBox li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 100%;
    padding: 0 5px 10px 5px;
    /* padding: 20px 2px; */
    margin-right: 0px;
    margin-bottom: 0px;
    text-align: center;
    line-height: 1;
  }

  /* #uni-modal .schoolBox li {
        width: 100%;
    }
    #speciality-modal .schoolBox li {
        width: 50%;
    } */
  .base-clear {
    padding: 0 0;
  }

  .school-results {
    width: 55%;
  }

  .search-section .flex-box div.right-box {
    display: none;
  }

  .sp-qualify {
    display: block;
  }
}

@media screen and (min-width: 737px) {
  .schoolBox li label:hover {
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    background: #072549;
    color: #fff;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }

  body.en .schoolBox li label {
    height: 50px;
  }

  body.en .schoolBox > li > label span {
    padding: 11px 10px;
  }
}

/*    UTILITY    */
.dsp-none {
  display: none;
}

/*    End of ウィジウィグ対応用    */
/* 404 error */
.errorPage .fh5co-page-heading {
  font-size: 50px;
  font-size: 5rem;
}

.errorPage #fh5co-main {
  font-size: 16px;
  font-size: 1.6rem;
}

.errorPage .container {
  padding-bottom: 20px;
}

.border-none {
  border-bottom: 0 !important;
}

/* search error */
.search-error {
  color: #fff;
  padding-top: 2px;
}

.container .sec-content {
  background-color: #fff;
}

/* ページネーション */
/* .paginateForm {
        margin-top: -7px;
    }
    .paginateForm input {
        height: 30px;
        border-radius: 3px !important;
    } */
.pagination-text {
  display: block;
}

.newsList .pagination-text {
  display: block;
  margin-top: 5%;
}

ul.pagination li {
  float: left;
}

/* ページ先頭 */
#pagetop {
  width: 57px;
  height: 57px;
  background-color: #072549;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  position: fixed;
  bottom: 80px;
  right: 25px;
  z-index: 100;
  background: #072549 50% 10px no-repeat;
  -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  opacity: 0;
  cursor: pointer;
}

@media screen and (max-width: 736px) {
  #pagetop {
    right: 10px;
    bottom: 10px;
  }
}

#pagetop:before {
  position: absolute;
  content: " ";
  display: block;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -20%) rotate(-45deg);
  -ms-transform: translate(-50%, -20%) rotate(-45deg);
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 736px) {
  #pagetop:before {
    width: 7px;
    height: 7px;
  }
}

#pagetop.active {
  cursor: pointer;
  display: block;
}

#pagetop:hover {
  opacity: 1;
  -webkit-animation: flash 0.7s;
  animation: flash 0.7s;
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}

/* ページ先頭へ（SP） */
#pagetop-sp {
  width: 50px;
  height: 50px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  position: absolute;
  top: -25px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  background: #3182a9 url(/img/common/arrow-pagetop.png) 50% 10px no-repeat;
  background-size: 20px auto;
  -webkit-background-size: 20px auto;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding-top: 25px;
  line-height: 1;
}

div table.iform input[type="radio"] {
  display: block;
}

@media screen and (min-width: 737px) {
  body.en .schoolBox li label {
    height: 80px;
  }
}

/*キャプション*/
.fig-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fig-wrap figure {
  width: auto;
  margin: 2vh 4vw;
  text-align: center;
}

.fig-wrap figcaption {
  font-size: 15px;
  margin-top: 2.5px;
}

@media screen and (max-width: 737px) {
  .fig-wrap figcaption {
    font-size: 12px;
  }
}

.article-2column
  .content-2column
  .sec-bdr.wyswyg1
  .inner
  ul
  li.listnone::before {
  display: none;
}

.article-2column
  .content-2column
  .sec-content
  .inner
  .plpc-160
  ul:not([class])
  li
  a:not([class]) {
  color: #2e82cc;
  background: none;
  height: inherit;
  padding: 0;
  min-width: inherit;
  display: inline;
  border: none;
  line-height: inherit;
}

.banner-wrap {
  position: relative;
  height: 100%;
  background: #000000;
  color: #ffffff;
}

.banner-wrap .container {
  padding: 80px 40px;
}

.banner-wrap .banner {
  text-align: center;
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}

.banner-wrap h2 {
  color: inherit;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 80px;
  font-weight: 100;
  line-height: 1.15;
  margin: 15px auto;
}

.banner-wrap div.paragraph {
  color: inherit;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.15em;
  margin: 15px auto;
}

.banner-wrap p {
  color: inherit;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.15em;
  margin: 15px auto;
}

@media screen and (max-width: 737px) {
 	.img-responsive{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.responsiveMenu{
	display:block !important;
}
.page_content{
	padding-top:100px;
}
}


