@charset "UTF-8";
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6em;
  background: #fff;
  color: #000;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: .06em;
}

a {
  color: #000;
  text-decoration: none;
}
a.link01:hover {
  -webkit-animation: flash .7s;
          animation: flash .7s;
}
a.link02 {
  transition: .6s;
}
a.link02:hover {
  opacity: .6;
  transition: .6s;
}

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

@keyframes flash {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.disp-tab {
  display: none;
}

.disp-sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .disp-tab {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  a.link01:hover {
    -webkit-animation: none;
            animation: none;
  }
  a.link02:hover {
    opacity: 1;
  }
  .disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
}

/*------------------------------------------
  parts
------------------------------------------*/
/* ===== flexbox ===== */
.flexbox {
  display: -moz-flex;
  display:      flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}

.col {
  box-sizing: border-box;
}

.col-w50 {
  width: 50%;
}

/* ===== inner ===== */
.inner-type01 {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== title ===== */
.title-type01 {
  font-size: 3.4rem;
  font-weight: 700;
  color: #005ab4;
  line-height: 1.3;
}

.title-type02 {
  font-size: 3rem;
  font-weight: 700;
  color: #005ab4;
  line-height: 1.3;
  border: 1px solid #deeaf1;
  border-bottom: 4px solid #005ab4;
  background: #f4faff;
  padding: 20px 25px;
  letter-spacing: .08em;
}

/* ===== btn ===== */
.btn-type01 a {
  text-align: center;
  display: inline;
  padding: 10px 10px;
  width: 100%;
  max-width: 220px;
  color: #005ab4;
  border: 2px solid #005ab4;
  border-radius: 6px;
  box-shadow: 2px 2px 0px 0px #005ab4;
  transition: .3s;
  font-size: 1.3rem;
}
.btn-type01 a:hover {
  box-shadow: none;
  -webkit-transform: translate3d(2px, 2px, 0);
          transform: translate3d(2px, 2px, 0);
  background: #005ab4;
  color: #fff;
}

.btn-type02 a {
  text-align: center;
  display: inline-block;
  padding: 10px 0;
  width: 100%;
  max-width: 200px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  box-shadow: 2px 2px 0px 0px #fff;
  transition: .3s;
  font-size: 1.3rem;
}
.btn-type02 a:hover {
  box-shadow: none;
  -webkit-transform: translate3d(2px, 2px, 0);
          transform: translate3d(2px, 2px, 0);
  background: #fff;
  color: #005ab4;
}

.btn-type03 {
  margin-top: 30px;
  text-align: center;
}
.btn-type03 a {
  display: inline-block;
  width: 100%;
  max-width: 1100px;
  position: relative;
  font-size: 1.8rem;
  border: 1px solid #deeaf1;
  background: #f4faff;
  padding: 14px 0;
  transition: .3s;
}
.btn-type03 a:after {
  content: "";
  width: 10px;
  height: 14px;
  background: url(/front/jmsf/assets/images/common/ico-arrow01.png) no-repeat;
  background-size: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -7px;
}
.btn-type03 a:hover {
  color: #005ab4;
}
.btn-type03 span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.btn-type03 span:last-child {
  margin-right: 0;
}

.btn-type04 a {
  text-align: center;
  display: inline-block;
  padding: 6px 0;
  width: 100%;
  max-width: 180px;
  color: #fff;
  background: #005ab4;
  border: 2px solid #005ab4;
  transition: .3s;
  font-size: 1.3rem;
  box-sizing: border-box;
}
.btn-type04 a:hover {
  background: #fff;
  color: #005ab4;
}

.btn-type05 a {
  display: block;
  position: relative;
  font-size: 1.8rem;
  border: 1px solid #deeaf1;
  background: #f4faff;
  padding: 14px 20px;
  transition: .3s;
}
.btn-type05 a:after {
  content: "";
  width: 10px;
  height: 14px;
  background: url(/front/jmsf/assets/images/common/ico-arrow01.png) no-repeat;
  background-size: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -7px;
}
.btn-type05 a:hover {
  color: #005ab4;
}
/*return_btn*/
.return_btn{
    cursor: pointer;
}
/* ===== list ===== */
.list-type01 .list-item {
  border-bottom: 1px solid #deeaf0;
}

.list-type01 .item-inner {
  display: table;
  width: 100%;
  padding: 20px 0;
}

.list-type01 .item-inner:hover .title {
  -webkit-animation: flash .7s;
          animation: flash .7s;
}

.list-type01 .item-inner.nolink{
    cursor: default;
}

.list-type01 .item-inner.nolink:hover .title{
  -webkit-animation: none;
          animation: none;
}

.list-type01 p {
  display: table-cell;
  vertical-align: middle;
}

.list-type01 .icon {
  width: 46px;
  padding-right: 18px;
}
.list-type01 .icon span {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: #c81414;
  border: 1px solid #c81414;
  border-radius: 2px;
  padding: 4px 0;
}

.list-type01 .date {
  font-size: 1.2rem;
  font-weight: 400;
  padding-right: 18px;
  width: 5em;
}

.list-type01 .label {
  width: 110px;
  padding-right: 20px;
}
.list-type01 .label span {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 2px;
  padding: 6px 0;
  color: #fff;
}
.list-type01 .label.label01 span {
  background: #827315;
}
.list-type01 .label.label02 span {
  background: #337a98;
}
.list-type01 .label.label03 span {
  background: #af2828;
}
.list-type01 .label.label04 span {
  background: #c54662;
}
.list-type01 .label.label05 span {
  background: #477926;
}
.list-type01 .label.label06 span {
  background: #1478d2;
}
.list-type01 .label.label07 span {
  background: #003c8c;
}

.list-type02 .list-item {
  width: 48%;
  margin-top: 4%;
  position: relative;
}
.list-type02 .list-item:first-child, .list-type02 .list-item:nth-child(2) {
  margin-top: 0;
}
.list-type02 .list-item:nth-child(2n) {
  margin-left: auto;
}

.list-type02 .item-inner:hover .item-image img {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.list-type02 .item-inner:hover .item-title {
  color: #005ab4;
}
.list-type02 .item-inner:hover .item-title:after {
  right: 10px;
}

.list-type02 .item-image {
  overflow: hidden;
}
.list-type02 .item-image img {
  transition: .6s;
}

.list-type02 .item-title {
  width: 235px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  right: -10px;
  border-bottom: 3px solid #005ab4;
  padding: 30px 24px;
  box-sizing: border-box;
  line-height: 1.3;
  font-size: 2rem;
  letter-spacing: .08em;
  transition: .6s;
}
.list-type02 .item-title:after {
  content: "";
  width: 10px;
  height: 14px;
  background: url(/front/jmsf/assets/images/common/ico-arrow01.png) no-repeat;
  background-size: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -7px;
  transition: .6s;
}

.list-type03.col-4 .list-item {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.list-type03.col-4 .list-item:nth-child(4n) {
  margin-right: 0;
}

.list-type03.col-3 .list-item {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.list-type03.col-3 .list-item:nth-child(3n) {
  margin-right: 0;
}

.list-type03.col-2 .list-item {
  width: 49%;
  margin-bottom: 2%;
}
.list-type03.col-2 .list-item:nth-child(2n) {
  margin-left: auto;
}

.list-type03 .item-inner:hover .item-image img {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.list-type03 .item-inner:hover .item-title {
  color: #005ab4;
}
.list-type03 .item-inner:hover .item-title:after {
  right: 10px;
}

.list-type03 .item-image {
  position: relative;
  border: 1px solid #e1ecf2;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(105deg, #ebf5ff 0%, white 93%);
}
.list-type03 .item-image img {
  transition: .6s;
}

.list-type03 .item-title {
  box-sizing: border-box;
/*  background: linear-gradient(105deg, #ebf5ff 0%, white 93%);*/
  opacity: .9;
  line-height: 1.3;
  letter-spacing: .08em;
  padding: 26px 30px 26px 20px;
  position: relative;
  width: 100%;
  transition: .6s;
  font-weight: bold;
}
.list-type03 .item-title:after {
  content: "";
  width: 10px;
  height: 14px;
  background: url(/front/jmsf/assets/images/common/ico-arrow01.png) no-repeat;
  background-size: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -7px;
  transition: .6s;
}

.list-type04 .list-item {
  width: 48%;
  background: #fff;
  margin-top: 4%;
  position: relative;
}
.list-type04 .list-item:first-child, .list-type04 .list-item:nth-child(2) {
  margin-top: 0;
}
.list-type04 .list-item:nth-child(2n) {
  margin-left: auto;
}

.list-type04 .item-inner {
  display: table;
  width: 100%;
  height: 120px;
}
.list-type04 .item-inner:hover .item-title {
  color: #005ab4;
}

.list-type04 .item-image {
  display: table-cell;
  vertical-align: middle;
  background: #005ab4;
  text-align: center;
  width: 24%;
  padding: 0 6%;
  box-sizing: border-box;
  text-align: center;
}

.list-type04 .item-title {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  font-size: 2rem;
  padding-left: 30px;
  transition: .6s;
}
.list-type04 .item-title:after {
  content: "";
  width: 10px;
  height: 14px;
  background: url(/front/jmsf/assets/images/common/ico-arrow01.png) no-repeat;
  background-size: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -7px;
  transition: .6s;
}

.list-type05 .list-item {
  margin-bottom: 2%;
}

.list-type05 .item-inner {
  position: relative;
}
.list-type05 .item-inner:hover .item-image img {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}
.list-type05 .item-inner:hover .item-text {
  color: #005ab4;
}
.list-type05 .item-inner:hover .item-text:after {
  right: 10px;
}

.list-type05 .item-image {
  width: 65%;
  overflow: hidden;
}
.list-type05 .item-image img {
  transition: .6s;
}

.list-type05 .item-text {
  position: relative;
  width: 35%;
  padding: 3%;
  box-sizing: border-box;
  border-top: 1px solid #deeaf1;
  border-right: 1px solid #deeaf1;
  border-bottom: 3px solid #005ab4;
}
.list-type05 .item-text .title {
  font-size: 2.8rem;
}
.list-type05 .item-text .text {
  margin-top: 15px;
}
.list-type05 .item-text:after {
  content: "";
  width: 10px;
  height: 14px;
  background: url(/front/jmsf/assets/images/common/ico-arrow01.png) no-repeat;
  background-size: 10px;
  position: absolute;
  right: 15px;
  bottom: 20px;
  transition: .6s;
}

.list-type06 {
  border: 1px solid #deeaf1;
  padding-left: 0px;
}
.list-type06 .item-inner {
  display: block;
  padding: 10px;
}
.list-type06 p {
  display: inline-block;
  vertical-align: middle;
}
.list-type06 li.list-item{
    list-style: none;
}
.list-type06 .label {
  padding-right: 16px;
}
.list-type06 .label span {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 2px;
  padding: 6px;
  color: #fff;
}
.list-type06 .label.label01 span {
  background: #827315;
}
.list-type06 .label.label02 span {
  background: #337a98;
}
.list-type06 .label.label03 span {
  background: #af2828;
}
.list-type06 .label.label04 span {
  background: #c54662;
}
.list-type06 .label.label05 span {
  background: #477926;
}
.list-type06 .label.label06 span {
  background: #1478d2;
}
.list-type06 .label.label07 span {
  background: #003c8c;
}
.list-type06 .date {
  font-size: 1.2rem;
}

.list-type07 .list-item {
  padding: 2px;
  border: 1px solid #deeaf0;
  margin-bottom: 10px;
}

.list-type07 .item-link {
  display: block;
  padding: 1em 15px;
  position: relative;
  transition: .6s;
}
.list-type07 .item-link:after {
  content: "";
  width: 10px;
  height: 14px;
  background: url(/front/jmsf/assets/images/common/ico-arrow01.png) no-repeat;
  background-size: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -7px;
  transition: .6s;
}
.list-type07 .item-link:hover {
  color: #005ab4;
}
.list-type07 .item-link:hover:after {
  right: 10px;
}
.list-type07 .item-link.current {
  color: #005ab4;
}

.list-type07 .child-list {
  background: #f4faff;
  padding: 15px;
}
.list-type07 .child-list ul {
  font-size: 1.2rem;
  padding-left: 20px;
}
.list-type07 .child-list ul li {
  margin-top: 3px;
}
.list-type07 .child-list ul a {
  transition: .3s;
}
.list-type07 .child-list ul a:hover {
  color: #005ab4;
}

.list-type07 .child-item {
  margin-bottom: 10px;
}
.list-type07 .child-item:last-child {
  margin-bottom: 0;
}

.list-type07 .child-link {
  font-size: 1.4rem;
  position: relative;
  padding-left: 20px;
  transition: .3s;
  display: block;
}
.list-type07 .child-link:before, .list-type07 .child-link:after {
  content: "";
  position: absolute;
}
.list-type07 .child-link:before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #8caabe;
  left: 0;
  top: 3px;
  transition: .3s;
}
.list-type07 .child-link:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2px 0 2px 4px;
  border-color: transparent transparent transparent #fff;
  left: 6px;
  top: 8px;
}
.list-type07 .child-link:hover {
  color: #005ab4;
}
.list-type07 .child-link:hover:before {
  background: #005ab4;
}
.list-type07 .child-link.current {
  color: #005ab4;
}
.list-type07 .child-link.current:before {
  background: #005ab4;
}

/* ===== pager ===== */
.pager-type01 {
  text-align: center;
  font-size: 0;
}
.pager-type01 li {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  font-size: 1.5rem;
  margin: 0 7px;
}
.pager-type01 a, .pager-type01 span {
  display: block;
  line-height: 40px;
  border-radius: 4px;
  border: 1px solid #deeaf1;
  transition: .3s;
}
.pager-type01 a:hover {
  color: #fff;
  border-color: #005ab4;
  background: #005ab4;
}
.pager-type01 .current a, .pager-type01 .current span {
  color: #fff;
  border-color: #005ab4;
  background: #005ab4;
}
.pager-type01 .pager-arrow a {
  color: #005ab4;
}
.pager-type01 .pager-arrow a:hover {
  color: #fff;
}

/* ===== nav ===== */
.nav-type01 {
  text-align: center;
  border: 1px solid #deeaf1;
  border-right: none;
}
.nav-type01 .nav-item {
  width: 25%;
  border-right: 1px solid #deeaf1;
  box-sizing: border-box;
}
.nav-type01 a {
  display: table;
  height: 60px;
  width: 100%;
  background: #f4faff;
  transition: .3s;
}
.nav-type01 a span {
  display: table-cell;
  vertical-align: middle;
}
.nav-type01 a:hover {
  color: #005ab4;
}
.nav-type01 .current a {
  color: #fff;
  background: #005ab4;
}

/* ===== form parts ===== */
.select-type01 {
  overflow: hidden;
  position: relative;
  border: 1px solid #deeaf1;
  border-radius: 4px;
}
.select-type01 select {
  width: 100%;
  height: 48px;
  padding-left: 1em;
  position: relative;
  font-size: 1.3rem;
}
.select-type01:before, .select-type01:after {
  content: "";
  display: block;
  position: absolute;
}
.select-type01:before {
  width: 20px;
  height: 48px;
  top: 0;
  right: 0;
  background: #8caabe;
}
.select-type01:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: #fff transparent transparent transparent;
  top: 50%;
  margin-top: -3px;
  right: 7px;
}

.inputText-type01 input {
  width: 100%;
  max-width: 375px;
  font-size: 1.4rem;
  height: 45px;
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  padding: 0 1em;
}

.textarea-type01 textarea {
  width: 100%;
  font-size: 1.4rem;
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  padding: 1em;
}

.radio-type01 {
  margin: 10px 0;
}
.radio-type01 .radiobox {
  display: inline-block;
  margin-right: 20px;
}
.radio-type01 .radiobox:last-child {
  margin-right: 0;
}
.radio-type01 input[type="radio"] {
  display: none;
}
.radio-type01 input[type="radio"]:checked + label:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.radio-type01 label {
  display: inline-block;
  line-height: 20px;
  position: relative;
  padding-left: 28px;
  margin-bottom: 0;
  cursor: pointer;
  vertical-align: bottom;
}
.radio-type01 label:before, .radio-type01 label:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  transition: all .3s ease;
  transition-property: border-color, -webkit-transform;
  transition-property: transform, border-color;
  transition-property: transform, border-color, -webkit-transform;
}
.radio-type01 label:before {
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
}
.radio-type01 label:after {
  top: 5px;
  left: 5px;
  width: 12px;
  height: 12px;
  -webkit-transform: scale(0);
          transform: scale(0);
  background: #005ab4;
}
.radio-type01 p {
  margin-bottom: 24px;
}
.radio-type01 p:last-child {
  margin-bottom: 0;
}

.check-type01 {
  padding: 10px 0;
}
.check-type01 .checkbox {
  margin-bottom: 10px;
}
.check-type01 .checkbox:last-child {
  margin-bottom: 0;
}
.check-type01 input[type="checkbox"] {
  display: none;
}
.check-type01 input[type="checkbox"]:checked + label:after {
  background-image: url(/front/jmsf/assets/images/common/ico-check01.png);
}
.check-type01 label {
  display: inline-block;
  line-height: 26px;
  position: relative;
  padding-left: 34px;
  margin-bottom: 0;
  cursor: pointer;
  vertical-align: bottom;
}
.check-type01 label:before, .check-type01 label:after {
  position: absolute;
  content: "";
  transition: all .3s ease;
  transition-property: border-color, -webkit-transform;
  transition-property: transform, border-color;
  transition-property: transform, border-color, -webkit-transform;
}
.check-type01 label:before {
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
  border-radius: 2px;
}
.check-type01 label:after {
  top: 8px;
  left: 6px;
  width: 15px;
  height: 12px;
  background-size: 15px;
}
.check-type01 p {
  margin-bottom: 24px;
}
.check-type01 p:last-child {
  margin-bottom: 0;
}

.inputSubmit-type01 {
  text-align: center;
  display: inline-block;
  height: 50px;
  width: 100%;
  max-width: 200px;
  color: #005ab4;
  border: 2px solid #005ab4;
  border-radius: 6px;
  box-shadow: 2px 2px 0px 0px #005ab4;
  transition: .3s;
  font-size: 1.4rem;
}
.inputSubmit-type01:hover {
  box-shadow: none;
  -webkit-transform: translate3d(2px, 2px, 0);
          transform: translate3d(2px, 2px, 0);
  background: #005ab4;
  color: #fff;
}

.inputSubmit-type02 {
  text-align: center;
  display: inline-block;
  height: 56px;
  width: 100%;
  max-width: 250px;
  background: #e65014;
  border-radius: 6px;
  box-shadow: 2px 2px 0px 0px #c82800;
  transition: .3s;
  font-size: 1.5rem;
  color: #fff;
}

.inputSubmit-type02:disabled{
    background: #a5a2a2;
    box-shadow: 2px 2px 0px 0px #4c4b4b;
}
.inputSubmit-type02:disabled:hover{
    cursor: default;
    background: #a5a2a2;
    box-shadow: 2px 2px 0px 0px #4c4b4b;
      -webkit-transform: none;
          transform: none;
}

.inputSubmit-type02:hover {
  box-shadow: none;
  -webkit-transform: translate3d(2px, 2px, 0);
          transform: translate3d(2px, 2px, 0);
  background: #c82800;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  /* ===== list ===== */
  .list-type03 .list-item {
    margin-bottom: 15px !important;
  }
  .list-type03.col-3 .list-item, .list-type03.col-4 .list-item {
    width: 49% !important;
    margin-right: 0 !important;
  }
  .list-type03.col-3 .list-item:nth-child(2n), .list-type03.col-4 .list-item:nth-child(2n) {
    margin-left: auto;
    margin-right: 0 !important;
  }
  .list-type05 .list-item {
    margin-bottom: 15px;
  }
  .list-type05 .item-text .title {
    font-size: 2.2rem;
  }
  .list-type05 .item-text .text {
    font-size: 1.2rem;
    margin-top: 8px;
  }
}

@media only screen and (max-width: 768px) {
  /* ===== flexbox ===== */
  .col {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .col:last-child {
    margin-bottom: 0;
  }
  /* ===== inner ===== */
  .inner-type01 {
    padding: 0 15px;
  }
  /* ===== title ===== */
  .title-type01 {
    font-size: 2.4rem;
    padding-bottom: 8px;
    position: relative;
    border-bottom: 2px solid #eee;
  }
  .title-type01:before {
    content: "";
    width: 30%;
    height: 2px;
    background: #005ab4;
    position: absolute;
    left: 0;
    bottom: -2px;
  }
  .title-type02 {
    font-size: 2.2rem;
    border-bottom-width: 2px;
    padding: 15px;
    letter-spacing: .06em;
  }
  /* ===== btn ===== */
  .btn-type01 a {
    max-width: 320px;
  }
  .btn-type01 a:hover {
    box-shadow: 2px 2px 0px 0px #005ab4;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    background: none;
    color: #005ab4;
  }
  .btn-type02 a {
    max-width: 320px;
  }
  .btn-type02 a:hover {
    box-shadow: 2px 2px 0px 0px #fff;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    background: none;
    color: #fff;
  }
  .btn-type03 {
    margin-top: 15px;
  }
  .btn-type03 a {
    font-size: 1.4rem;
  }
  .btn-type03 a:after {
    width: 8px;
    height: 12px;
    background-size: 8px;
    right: 10px;
    margin-top: -6px;
  }
  .btn-type03 a:hover {
    color: #000;
  }
  .btn-type03 .ico-key img {
    width: 20px;
  }
  .btn-type05 a {
    font-size: 1.4rem;
    padding: 14px;
  }
  .btn-type05 a:after {
    width: 8px;
    height: 12px;
    background-size: 8px;
    right: 10px;
    margin-top: -6px;
  }
  .btn-type05 a:hover {
    color: #000;
  }
  /* ===== list ===== */
  .list-type01 .item-inner {
    padding: 15px 0;
  }
  .list-type01 .item-inner:hover .title {
    -webkit-animation: none;
            animation: none;
  }
  .list-type01 p {
    display: block;
  }
  .list-type01 .icon {
    padding-right: 0;
  }
  .list-type01 .icon span {
    font-size: 1rem;
    padding: 3px 4px;
    letter-spacing: 0;
    margin-bottom: 5px;
  }
  .list-type01 .date {
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
    width: auto;
  }
  .list-type01 .label {
    display: inline-block;
    vertical-align: middle;
    width: 86px;
    padding-right: 0;
  }
  .list-type01 .label span {
    font-size: 1rem;
    padding: 3px 0;
    letter-spacing: 0;
  }
  .list-type01 .title {
    margin-top: 6px;
  }
  .list-type02 .list-item {
    width: 100%;
    margin-top: 15px;
  }
  .list-type02 .list-item:nth-child(2) {
    margin-top: 15px;
  }
  .list-type02 .item-inner:hover .item-image img {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .list-type02 .item-inner:hover .item-title {
    color: #000;
  }
  .list-type02 .item-inner:hover .item-title:after {
    right: 15px;
  }
  .list-type02 .item-title {
    bottom: 0;
    right: 0;
    border-width: 2px;
    padding: 15px 20px;
    font-size: 1.6rem;
  }
  .list-type03.col-2 .list-item, .list-type03.col-3 .list-item {
    width: 100% !important;
  }
  .list-type03 .item-inner:hover .item-image img {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .list-type03 .item-inner:hover .item-title {
    color: #000;
  }
  .list-type03 .item-title {
    padding: 20px 20px 20px 10px;
  }
  .list-type03 .item-title:after {
    width: 8px;
    height: 12px;
    background-size: 8px;
    right: 10px;
    margin-top: -6px;
  }
  .list-type04 .list-item {
    width: 100%;
    margin-top: 15px;
  }
  .list-type04 .list-item:nth-child(2) {
    margin-top: 15px;
  }
  .list-type04 .item-inner {
    display: table;
    width: 100%;
    height: 80px;
  }
  .list-type04 .item-inner:hover .item-title {
    color: #000;
  }
  .list-type04 .item-image img {
    max-width: 50px;
  }
  .list-type04 .item-title {
    font-size: 1.6rem;
    padding-left: 15px;
  }
  .list-type05 .item-inner:hover .item-image img {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .list-type05 .item-inner:hover .item-text {
    color: #000;
  }
  .list-type05 .item-inner:hover .item-text:after {
    right: 10px;
  }
  .list-type05 .item-image {
    width: 100%;
  }
  .list-type05 .item-text {
    width: auto;
    padding: 2% 6%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-left: 1px solid #deeaf1;
    border-bottom-width: 2px;
  }
  .list-type05 .item-text .title {
    font-size: 1.6rem;
  }
  .list-type05 .item-text:after {
    width: 8px;
    height: 12px;
    background-size: 8px;
    right: 10px;
    bottom: 15px;
  }
  .list-type06 .label span {
    font-size: 1rem;
    padding: 3px 6px;
    letter-spacing: 0;
  }
  .list-type06 .date {
    font-size: 1.2rem;
  }
  .list-type07 .item-link:after {
    width: 8px;
    height: 12px;
    background-size: 8px;
    right: 10px;
    margin-top: -6px;
  }
  .list-type07 .item-link:hover {
    color: #000;
  }
  .list-type07 .item-link:hover:after {
    right: 10px;
  }
  .list-type07 .child-link:hover {
    color: #000;
  }
  .list-type07 .child-link:hover:before {
    background: #8caabe;
  }
  /* ===== pager ===== */
  .pager-type01 li {
    width: 30px;
    font-size: 1.3rem;
    margin: 0 5px;
  }
  .pager-type01 a, .pager-type01 span {
    line-height: 30px;
  }
  .pager-type01 a:hover {
    color: #000;
    border-color: #deeaf1;
    background: #fff;
  }
  .pager-type01 .pager-arrow a:hover {
    color: #005ab4;
  }
  /* ===== nav ===== */
  .nav-type01 {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  .nav-type01 a {
    line-height: 1.5;
    height: 50px;
  }
  .nav-type01 a:hover {
    color: #000;
  }
  /* ===== form parts ===== */
  .select-type01 select {
    height: 38px;
    padding-left: 1em;
    font-size: 1.2rem;
  }
  .select-type01:before {
    width: 16px;
    height: 38px;
  }
  .select-type01:after {
    right: 5px;
  }
}

/*------------------------------------------
  header
------------------------------------------*/
.fontsize-lead {
  font-size: 1.3rem;
}
.fontsize-lead.flexbox {
  align-items: center;
  margin-right: 8px;
}

.fontsize-change {
  margin-right: 17px;
  background: ffffff;
  border: solid 1px #005ab4;
  border-radius: 3px;
}

.size-button {
  font-size: 1.4rem;
  width: 55px;
  height: 40px;
  background-color: white;
  box-shadow: none;
  margin: none;
  padding: none;
  border: solid .1px #005ab4;
  color: #005ab4;
  cursor: pointer;
  outline: none;
  padding: 5px;
}
.size-button.current {
  background-color: #005ab4;
  color: white;
}
.size-button:hover {
  background-color: #005ab4;
  color: white;
  transition: .2s ease-in-out;
}

.site-header {
  position: relative;
}
.site-header .header-contents {
  position: relative;
  z-index: 20;
  background: #fff;
  padding: 20px 15px;
  align-items: center;
}
.site-header .header-menu {
  margin-left: auto;
  align-items: center;
}
.site-header .header-menu-sp {
  display: none;
}

.site-header .site-search {
  width: 260px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #deeaf0;
  box-sizing: border-box;
  border-radius: 7px;
}
.site-header .site-search input.search-text  {
  width: 100%;
  height: 48px;
  background: #eef6fe;
  padding: 0 1em;
  font-size: 1.3rem;
}
.site-header .site-search input.search-text  {
    cursor: auto;
}
.site-header .site-search input.search-btn  {
  position: absolute;
  top: 1px;
  right: 3px;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  box-shadow: 2px 2px 0px 0px #003c8c;
  background-color: #005ab4;
  background-image: url('/uploads/media/2020/01/20200108034205.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  transition: .3s;
}
.site-header .site-search input.search-btn :hover {
  box-shadow: none;
  -webkit-transform: translate3d(2px, 2px, 0);
          transform: translate3d(2px, 2px, 0);
    
}
.site-header .contact-btn {
  margin-left: 20px;
  text-align: center;
  width: 98px;
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: 0;
}
.site-header .contact-btn a {
  display: block;
  padding: 16px 0 10px;
  color: #fff;
  border-radius: 6px;
  background: #5BA5EF;
  box-shadow: 3px 3px 0px 0px #003c8c;
  transition: .3s;
  -moz-width:max-content;
       width: max-content;
}
.site-header .contact-btn a:hover {
  box-shadow: none;
  -webkit-transform: translate3d(3px, 3px, 0);
          transform: translate3d(3px, 3px, 0);
}
.site-header .contact-btn .icon {
  margin-bottom: 8px;
}

.gnav-trigger {
  display: none;
}

.groval-nav {
  background: #005ab4;
  position: relative;
  border-bottom: 5px solid #003c8c;
}
.groval-nav:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #1478d2;
  position: absolute;
  left: 0;
}
.groval-nav .nav-list {
  padding: 0;
  border-right: 1px solid #003c8c;
  border-left: 1px solid #1478d2;
}
.groval-nav .list-item {
  width: 20%;
  text-align: center;
}
.groval-nav .list-item a {
  display: table;
  width: 100%;
  height: 64px;
  box-sizing: border-box;
  border-right: 1px solid #1478d2;
  border-left: 1px solid #003c8c;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.3;
  position: relative;
  transition: .3s;
}
.groval-nav .list-item a:after {
  content: "";
  opacity: 0;
  width: 100%;
  height: 1px;
  background: #003c8c;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  transition: .3s;
}
.groval-nav .list-item a:hover {
  background: #003c8c;
  transition: .3s;
}
.groval-nav .list-item a:hover:after {
  opacity: 1;
  transition: .3s;
}
.groval-nav .list-item span {
  display: table-cell;
  vertical-align: middle;
}
.groval-nav .list-item.current a {
  padding: 5px;
}
.groval-nav .list-item.current a:after {
  content: none;
}
.groval-nav .list-item.current a:hover {
  background: #005ab4;
}
.groval-nav .list-item.current a:hover span {
  transition: .3s;
  box-shadow: none;
  -webkit-transform: translate3d(2px, 2px, 0);
  transform: translate3d(2px, 2px, 0);
}
.groval-nav .list-item.current span {
  background: #1478dc;
  border-radius: 7px;
  box-shadow: 2px 2px 0px 0px #003c8c;
  transition: .3s;
}

.groval-nav-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 10;
}
.exlarge-br {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .site-header .contact-btn {
    margin-left: 15px;
    width: 80px;
    font-size: 1.1rem;
  }
  .site-header .contact-btn a {
    padding: 12px 0 8px;
  }
  .site-header .icon img {
    width: 36px;
  }
  .groval-nav .list-item a {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 768px) {
  .site-header .header-contents {
    padding: 10px 15px;
    box-shadow: 0px 1px 1px 0px rgba(51, 51, 51, .2);
  }
  .site-header .sitelogo {
    width: 200px;
  }
  .site-header .header-menu {
    display: none;
  }
  .site-header .site-search {
    width: auto;
  }
  .site-header .contact-btn {
    width: 20%;
    margin-left: 2%;
    font-size: 1rem;
  }
  .site-header .contact-btn a {
    padding: 8px 0 6px;
    box-shadow: 2px 2px 0px 0px #003c8c;
  }
  .site-header .contact-btn a:hover {
    box-shadow: none;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .site-header .contact-btn .icon {
    margin-bottom: 6px;
  }
  .site-header .contact-btn .icon img {
    width: 26px;
  }
  .gnav-trigger {
    display: block;
    position: absolute;
    right: 15px;
    top: 13px;
    text-align: center;
    cursor: pointer;
  }
  .gnav-trigger .trigger-icon {
    display: inline-block;
    width: 28px;
    height: 18px;
    position: relative;
  }
  .gnav-trigger .trigger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #666;
    position: absolute;
    left: 0;
    transition: .3s;
  }
  .gnav-trigger .trigger-icon span:nth-of-type(1) {
    top: 0;
  }
  .gnav-trigger .trigger-icon span:nth-of-type(2) {
    top: 50%;
    margin-top: -1px;
  }
  .gnav-trigger .trigger-icon span:nth-of-type(3) {
    bottom: 0;
  }
  .gnav-trigger .trigger-text {
    color: #666;
    font-weight: 400;
    width: 3em;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.1;
  }
  .gnav-trigger .trigger-text:after {
    content: "MENU";
  }
  .gnav-trigger.gnav-open .trigger-icon span:nth-of-type(1) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    margin-top: 8px;
  }
  .gnav-trigger.gnav-open .trigger-icon span:nth-of-type(2) {
    opacity: 0;
  }
  .gnav-trigger.gnav-open .trigger-icon span:nth-of-type(3) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-bottom: 8px;
  }
  .gnav-trigger.gnav-open .trigger-text:after {
    content: "CLOSE";
  }
  .groval-nav {
    width: 100%;
    height: 100vh;
    border: none;
    position: absolute;
    display: none;
    z-index: 100;
    background: none;
  }
  .groval-nav:after {
    content: none;
  }
  .groval-nav .nav-list {
    border: none;
    background: #005ab4;
  }
  .groval-nav .list-item {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #fff;
  }
  .groval-nav .list-item br {
    display: none;
  }
  .groval-nav .list-item a {
    border: none;
    padding: 0 1em;
    height: 54px;
  }
  .groval-nav .list-item a:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -4px;
  }
  .groval-nav .list-item:last-child {
    border-bottom: none;
  }
  .groval-nav .list-item:last-child a {
    padding: 0 1em;
  }
  .groval-nav .list-item:last-child span {
    background: none;
    border-radius: 0;
    box-shadow: none;
  }
  .groval-nav .header-menu-sp {
    padding: 10px;
    position: relative;
    align-items: center;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    background: #f0f0f0;
  }
}

/*------------------------------------------
  footer
------------------------------------------*/
.site-footer .footer-nav {
  background: #dae8f4;
  padding: 20px 0;
}
.site-footer .footer-nav li {
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 30px;
}
.site-footer .footer-nav li:last-child {
  margin-right: 0;
}
.site-footer .footer-nav a {
  display: block;
}
.site-footer .footer-nav a:before {
  content: ">";
  color: #005ab4;
  padding-right: .5em;
}

.site-footer .copyright {
  text-align: center;
  font-weight: 400;
  font-size: 1.2rem;
  padding: 30px 15px;
}

.site-footer .pagetop {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: none;
}

@media only screen and (max-width: 768px) {
  .site-footer .footer-nav {
    padding: 10px 0;
  }
  .site-footer .footer-nav li {
    font-size: 1.2rem;
    margin-right: 10px;
  }
  .site-footer .copyright {
    padding: 15px;
  }
  .site-footer .pagetop {
    width: 40px;
    right: 15px;
    bottom: 60px;
  }
}

/*------------------------------------------
  contents
------------------------------------------*/
.page-head {
  background: #eef6fe;
}
.page-head .head-title {
  display: table;
  height: 175px;
  width: 100%;
  box-sizing: border-box;
}
.page-head .pagetitle {
  display: table-cell;
  vertical-align: middle;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #005ab4;
}

.breadcrumb {
  background: #dae8f4;
  padding: 12px 0;
}
.wrapper .breadcrumb ul {
  font-size: 0;
}
.wrapper .breadcrumb ul li {
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  font-size: 1.2rem;
  margin-right: 10px;
}

.wrapper .breadcrumb ul li a {
  display: block;
  position: relative;
  padding-right: 20px;
}
.breadcrumb a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #8caabe;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
}

.column-wrapper {
  padding-top: 80px;
  padding-bottom: 90px;
  max-width: 1240px;
  margin: auto;
  overflow: hidden;
}
.column-wrapper .main-contents {
  padding: 0;
  margin-left: 280px;
}
.column-wrapper .aside-contents {
  width: 240px;
  padding-left: 20px;
  float: left;
}

.aside-contents .list-type07 .list-item {
  margin-bottom: 0;
  border-bottom: none;
}
.aside-contents .list-type07 .list-item:last-child {
  border-bottom: 1px solid #deeaf0;
}

.main-contents {
  padding: 80px 0 90px;
}

.page-section {
  margin-bottom: 60px;
}
.page-section:last-child {
  margin-bottom: 0;
}
.page-section .sec-contents {
  margin-bottom: 45px;
}
.page-section .sec-contents:last-child {
  margin-bottom: 0;
}

.contents-information .cont-head {
  display: table;
  width: 100%;
  margin-bottom: 5px;
}
.contents-information .cont-head .title, .contents-information .cont-head .select {
  display: table-cell;
  vertical-align: middle;
}
.contents-information .cont-head .title {
  width: 7em;
}
.contents-information .cont-head .select-number {
  width: 135px;
  padding-left: 15px;
}

.contents-information .cont-list {
  margin-bottom: 30px;
}

.contents-information .list-type01 .label {
  width: 180px;
}

.contents-news .cont-head {
  display: table;
  width: 100%;
}
.contents-news .cont-head .nav, .contents-news .cont-head .select {
  display: table-cell;
  vertical-align: middle;
}
.contents-news .cont-head .select-number {
  width: 135px;
  padding-left: 15px;
}

.contents-news .cont-list {
  margin-bottom: 30px;
}

.contents-linklist {
  justify-content: space-between;
}
.contents-linklist .linkbox {
  width: 32%;
}

.contents-lead {
  margin-bottom: 25px;
}
.contents-lead .lead-image {
  width: 60%;
  margin-bottom: 0;
}
.contents-lead .lead-text {
  position: relative;
  width: 40%;
  padding: 3%;
  box-sizing: border-box;
  border-top: 1px solid #deeaf1;
  border-right: 1px solid #deeaf1;
  border-bottom: 3px solid #005ab4;
}
.contents-lead .lead-text .title {
  font-size: 2.8rem;
}

.contents-form {
  font-size: 1.4rem;
}
.contents-form table {
  width: 100%;
  text-align: left;
  border: 1px solid #deeaf1;
  border-bottom: none;
}
.contents-form table tr {
  border-bottom: 1px solid #deeaf1;
}
.contents-form table th, .contents-form table td {
  vertical-align: middle;
  box-sizing: border-box;
}
.contents-form table th {
  background: #f4faff;
  padding: 1em;
  width: 220px;
  position: relative;
}
.contents-form table th span {
  display: inline-block;
  font-size: 1.1rem;
  color: #c81414;
  border: 1px solid #c81414;
  border-radius: 4px;
  padding: 2px 5px;
  position: absolute;
  right: 1em;
}
.contents-form table td {
  padding: 10px;
  border-left: 1px solid #deeaf1;
}
.contents-form .form-agree {
  text-align: center;
  margin: 30px 0;
}
.contents-form .form-btn {
  text-align: center;
}
.contents-form .form-btn input {
  margin: 0 10px;
}
.contents-form input[type="text"]:hover {
  cursor: text;
}
.contents-form textarea:hover {
  cursor: text;
}
/*iform用調整*/

.contents-form {
  font-size: 1.4rem;
}
table.contents-form {
  width: 100%;
  text-align: left;
  border: 1px solid #deeaf1;
  border-bottom: none;
}
table.contents-form tr {
  border-bottom: 1px solid #deeaf1;
}
table.contents-form th, table.contents-form td {
  vertical-align: middle;
  box-sizing: border-box;
}
table.contents-form th label span, table.contents-form td label span {
    font-size: 100%;
}
table.contents-form th {
  background: #f4faff;
  padding: 1em;
  width: 220px;
  position: relative;
}
table.contents-form th span:nth-child(2) {
  display: inline-block;
  /*font-size: 1.1rem;*/
  color: #c81414;
  /*border: 1px solid #c81414;*/
  border-radius: 4px;
  /*padding: 2px 5px;*/
  position: absolute;
  right: 1em;
}
table.contents-form td {
  padding: 10px;
  border-left: 1px solid #deeaf1;
}
.contents-form .form-agree {
  text-align: center;
  margin: 30px 0;
}
.contents-form .subBox {
  text-align: center;
}
.contents-form .subBox input {
  margin: 0 10px;
}
.contents-form input[type="text"]:hover {
  cursor: text;
}
.contents-form textarea:hover {
  cursor: text;
}


.wysiwyg {
  margin-bottom: 45px;
}
.wysiwyg:last-child {
  margin-bottom: 0;
}
.wysiwyg > div {
  margin-bottom: 45px;
}
.wysiwyg > div:last-child {
  margin-bottom: 0;
}
.wysiwyg > div div {
  margin-bottom: 25px;
}
.wysiwyg > div div:last-child {
  margin-bottom: 0;
}
.wysiwyg strong {
  font-weight: bold;
}
.wysiwyg h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #005ab4;
  line-height: 1.3;
  position: relative;
  border: 1px solid #deeaf1;
  border-bottom: 2px solid #c8dcf0;
  padding: 16px 25px;
  margin-bottom: 25px;
  letter-spacing: .08em;
  padding-right: 100px;
}
.wysiwyg h3:after {
  content: "";
  width: 160px;
  height: 2px;
  background: #005ab4;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.wysiwyg h3 .label{
  position: absolute;
  background: #af2828;
  color: #fff;
  font-size: 1.2rem;
  padding: 6px 0;
  width: 70px;
  text-align: center;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wysiwyg h3 .label.red{
  background: #af2828;
}
.wysiwyg h3 .label.gray{
  background: #555555;
}
.wysiwyg h4 {
  font-size: 1.9rem;
  color: #005ab4;
  line-height: 1.3;
  padding-bottom: 15px;
  border-bottom: 1px solid #c8dcf0;
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
}
.wysiwyg h4:after {
  content: "";
  width: 3px;
  height: 1em;
  background: #005ab4;
  position: absolute;
  left: 0;
  top: 4px;
}
.wysiwyg h5 {
  font-size: 1.9rem;
  color: #005ab4;
  line-height: 1.3;
  margin-bottom: 20px;
}
.wysiwyg h6 {
  font-size: 1.9rem;
  line-height: 1.3;
  margin-bottom: 20px;
}
.wysiwyg ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.wysiwyg ul:last-child {
  margin-bottom: 0;
}
.wysiwyg ul li {
  margin-bottom: 15px;
  list-style: disc;
}

.wysiwyg ul li:last-child {
  margin-bottom: 0;
}
.wysiwyg ol {
  list-style: inside decimal;
  margin-bottom: 30px;
}
.wysiwyg ol:last-child {
  margin-bottom: 0;
}
.wysiwyg ol li {
  margin-bottom: 10px;
}
.wysiwyg ol li:last-child {
  margin-bottom: 0;
}

.wysiwyg ol.privacy{
  margin-left: 20px;
}

.wysiwyg ol.privacy li {
  margin-bottom: 30px;
}

.wysiwyg ol.privacy li >ol{
    margin: 20px 0 20px 20px;
}

.wysiwyg ol.privacy li >ol li{
  margin-bottom: 15px;
}

.wysiwyg p {
  line-height: 2.1;
  margin-bottom: 25px;
}
.wysiwyg p:last-child {
  margin-bottom: 0;
}
.wysiwyg p a {
  color: #005ab4;
}
.wysiwyg p a:hover {
  text-decoration: underline;
}
.wysiwyg a {
  position: relative;
}
.wysiwyg.row a[href$=".pdf"]{
  color: #005ab4;
}
.wysiwyg.row a[href$=".pdf"]:hover {
  text-decoration: underline;
}
.wysiwyg.row a[href$=".pdf"]:after,
.cont-list .list-type01 a[href$=".pdf"] p.title:after {
  content: "";
  width: 14px;
  height: 19px;
  margin-left: 4px;
  display: inline-block;
  background: url(/front/jmsf/assets/images/common/ico-pdf01.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.wysiwyg.row a[href$=".docx"],
.wysiwyg.row a[href$=".doc"],
.wysiwyg.row a[href$=".docm"],
.wysiwyg.row a[href$=".docx"],
.wysiwyg.row a[href$=".dotx"]{
  color: #005ab4;
}
.wysiwyg.row a[href$=".docx"]:hover,
.wysiwyg.row a[href$=".doc"]:hover,
.wysiwyg.row a[href$=".docm"]:hover,
.wysiwyg.row a[href$=".docx"]:hover,
.wysiwyg.row a[href$=".dotx"]:hover {
  text-decoration: underline;
}
.wysiwyg.row a[href$=".docx"]:after ,
.wysiwyg.row a[href$=".doc"]:after ,
.wysiwyg.row a[href$=".docm"]:after ,
.wysiwyg.row a[href$=".docx"]:after ,
.wysiwyg.row a[href$=".dotx"]:after,
.cont-list .list-type01 a[href$=".docx"] p.title:after,
.cont-list .list-type01 a[href$=".doc"] p.title:after ,
.cont-list .list-type01 a[href$=".docm"] p.title:after ,
.cont-list .list-type01 a[href$=".docx"] p.title:after ,
.cont-list .list-type01 a[href$=".dotx"] p.title:after{
  content: "";
  width: 14px;
  height: 19px;
  margin-left: 4px;
  display: inline-block;
  background: url(/front/jmsf/assets/images/common/ico-word01.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.wysiwyg a[target="_blank"] {
  color: #005ab4;
}
.wysiwyg a[target="_blank"]:hover {
  text-decoration: underline;
}

.wysiwyg a[target="_blank"]:after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 4px;
  display: inline-block;
  background: url(/front/jmsf/assets/images/common/ico-link01.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.list-type01 a[target="_blank"] p.title:after,
.table03 a[target="_blank"]:after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 4px;
  display: inline-block;
  background: url(/front/jmsf/assets/images/common/ico-link01.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.wysiwyg a.arrow {
  font-size: 1.4rem;
  padding-left: 14px;
  cursor: pointer;
}
.wysiwyg a.arrow:before {
  content: "";
  width: 8px;
  height: 14px;
  background: url(/front/jmsf/assets/images/common/ico-arrow01.png) no-repeat;
  background-size: 8px;
  position: absolute;
  top: 5px;
  left: 0;
  transition: .6s;
}
.wysiwyg .btn {
  cursor: pointer;
}
.wysiwyg table {
  margin-bottom: 30px;
  border-top: 1px solid #deeaf1;
  border-left: 1px solid #deeaf1;
}
.wysiwyg table:last-child {
  margin-bottom: 0;
}

.wysiwyg table tr {
  border-bottom: 1px solid #deeaf1;
}
.wysiwyg table th, .wysiwyg table td {
  border-right: 1px solid #deeaf1;
  padding: 1em;
}
.wysiwyg table th {
  background: #f4faff;
  text-align: center;
}
.wysiwyg table td {
  font-size: 1.4rem;
  font-weight: 400;
}
.wysiwyg table td:first-child {
  text-align: center;
  padding: 1em 0;
}

.wysiwyg .table01 {
  width: 100%;
  border-top: 1px solid #deeaf1;
  border-left: 1px solid #deeaf1;
}
.wysiwyg .table01 tr {
  border-bottom: 1px solid #deeaf1;
}
.wysiwyg .table01 th, .wysiwyg .table01 td {
  border-right: 1px solid #deeaf1;
  padding: 1em;
}
.wysiwyg .table01 th {
  background: #f4faff;
  text-align: center;
}
.wysiwyg .table01 td {
  font-size: 1.4rem;
  font-weight: 400;
}
.wysiwyg .table01 td:first-child {
  text-align: center;
  padding: 1em 0;
}
.wysiwyg .table02 {
  width: 100%;
  text-align: left;
  border-top: 1px solid #deeaf1;
  border-left: 1px solid #deeaf1;
}
.wysiwyg .table02 tr {
  border-bottom: 1px solid #deeaf1;
}
.wysiwyg .table02 th, .wysiwyg .table02 td {
  border-right: 1px solid #deeaf1;
  padding: 1em 1.5em;
  font-size: 1.4rem;
  font-weight: 400;
}
.wysiwyg .table02 th {
  background: #f4faff;
  width: 9em;
}
.wysiwyg .table03 {
  width: 100%;
  text-align: left;
  border-top: 1px solid #deeaf1;
  border-left: none;
}
.wysiwyg .table03 tr {
  border-bottom: 1px solid #deeaf1;
}
.wysiwyg .table03 th, .wysiwyg .table03 td {
  border-right: none;
  background: #ffffff;
  padding: 20px 0;
  vertical-align: middle;
}
.wysiwyg .table03 th {
  text-align: left;
  width: 10em;
  padding-right: 1em;
}
.wysiwyg .table03 td {
  font-size: 1.4rem;
}
.wysiwyg .table03 td:last-child {
  width: 50%;
}
.wysiwyg .table03 .btn-list {
  text-align: right;
}
.wysiwyg .table03 .btn-list li {
  display: inline-block;
  vertical-align: middle;
  padding-left: 0;
  text-indent: 0;
  margin-bottom: 0;
  margin-left: 15px;
}
.wysiwyg .table03 .btn-list li:first-child {
  margin-left: 0;
}
.wysiwyg .table03 .btn-list li:before {
  content: none;
}
.wysiwyg .table03 .btn-list .btn-type01 {
  width: 40%;
}
.wysiwyg .table03 .btn-list .btn-type04 {
  width: 30%;
}
.wysiwyg .table04 {
  width: 100%;
  text-align: left;
  border-left: none;
}
.wysiwyg .table04 tr {
  border-bottom: 1px solid #deeaf1;
}
.wysiwyg .table04 th, .wysiwyg .table04 td {
  padding: 20px 0;
  vertical-align: middle;
  background-color: #ffffff;
  border-right: none;
}
.wysiwyg .table04 th {
  width: 9em;
  padding-right: 1em;
  text-align: left;
}
.wysiwyg .table04 td {
  font-size: 1.4rem;
  font-weight: 400;
  padding-right: 1em;
}
.wysiwyg .table04 td:last-child {
  padding-right: 0;
}
.wysiwyg .table05 {
  font-weight: 400;
  text-align: left;
  width: 100%;
  border-left: none;
}
.wysiwyg .table05 tr {
  border-bottom: 1px solid #deeaf1;
}

.wysiwyg .table05 td:first-child{
    text-align: left;
}
.wysiwyg .table05 td {
  vertical-align: middle;
  width: 8em;
  padding: 15px 3rem 15px 0!important;
  border-right: none;
  font-size: inherit;
  font-weight: inherit;
}
.wysiwyg .table05 td:last-child {
  padding-right: 0;
  width: auto;
}

.wysiwyg strong{
    font-weight: bold;
}

.wysiwyg em{
    font-style:oblique;
}

.wysiwyg sup{
    vertical-align: super;
    font-size: 1.2rem;
}

.wysiwyg sub{
    vertical-align: sub;
    font-size: 1.2rem;
}

.wysiwyg pre{
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 2rem 0;
}

.wysiwyg code{
    box-sizing: border-box;
    background-color: #394034;
    color: #f8f8f2!important;
    display: block;
    padding: 4rem 2.4rem;
    text-align: left;
    overflow: auto;
    resize: horizontal;
    border: 0;
    border-radius: 8px;
    vertical-align: 0;
    font-weight: 700;
}

.wysiwyg blockquote {
    position: relative;
    padding: 3rem;
    margin: 2rem 0;
    box-sizing: border-box;
    font-style: italic;
    background: #f6f6f6;
    color: #555;
}
/*
.wysiwyg blockquote:before{
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 3px;
    content: "“";
    font-family: sans-serif;
    color: #cfcfcf;
    font-size: 90px;
    line-height: 1;
}
*/
.wysiwyg blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

.wysiwyg blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}

.wysiwyg .textlink {
    display: inline-block;
    padding-right: 4rem;
    position: relative;
}


.wysiwyg .img-list {
  display: -moz-flex;
  display:      flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.wysiwyg .img-list > div {
  width: 25%;
  box-sizing: border-box;
  padding: 0 1%;
}

@media only screen and (max-width: 1024px) {
  .page-head .pagetitle {
    font-size: 3.6rem;
  }
  .column-wrapper {
    padding: 50px 0;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
  }
  .column-wrapper .main-contents {
    margin-left: 0;
    width: 100%;
    -ms-order: 1;
        order: 1;
  }
  .column-wrapper .aside-contents {
    width: 100%;
    padding-left: 0;
    float: none;
    padding: 50px 20px 0;
    -ms-order: 2;
        order: 2;
  }
  .main-contents {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 768px) {
  .page-head .head-title {
    height: 130px;
  }
  .page-head .pagetitle {
    font-size: 2.8rem;
  }
  .breadcrumb {
    padding: 10px 0;
  }
  .breadcrumb ul li {
    margin: 0;
    font-size: 1.1rem;
  }
  .column-wrapper {
    padding: 30px 0;
  }
  .column-wrapper .aside-contents {
    padding: 30px 15px 0;
  }
  .main-contents {
    padding: 30px 0;
  }
  .page-section {
    margin-bottom: 40px;
  }
  .page-section .sec-contents {
    margin-bottom: 30px;
  }
  .contents-information .cont-head .title {
    display: none;
  }
  .contents-information .cont-head .select-number {
    width: 100px;
    padding-left: 5px;
  }
  .contents-information .list-type01 .label {
    width: 130px;
  }
  .contents-news .cont-head {
    overflow: hidden;
  }
  .contents-news .cont-head .nav, .contents-news .cont-head .select {
    display: block;
  }
  .contents-news .cont-head .nav {
    margin-bottom: 15px;
  }
  .contents-news .cont-head .select-number {
    float: right;
    width: 135px;
    padding-left: 15px;
  }
  .contents-linklist .linkbox {
    width: 100%;
  }
  .contents-lead {
    position: relative;
    margin-bottom: 25px;
  }
  .contents-lead .lead-image {
    width: 100%;
  }
  .contents-lead .lead-text {
    width: auto;
    padding: 2% 4%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-left: 1px solid #deeaf1;
    border-bottom-width: 2px;
  }
  .contents-lead .lead-text .title {
    font-size: 1.8rem;
  }
  .contents-form table th, .contents-form table td {
    display: block;
    width: 100%;
  }
  .contents-form table .th-icon {
    text-align: center;
    width: 70px;
    padding: 0;
  }
  .contents-form table .th-icon span {
    display: inline-block;
    font-size: 1.1rem;
    color: #c81414;
    border: 1px solid #c81414;
    border-radius: 4px;
    padding: 2px 5px;
  }
  .contents-form table td {
    border-left: none;
  }
  .contents-form .form-agree {
    margin: 20px 0;
    font-size: 1.3rem;
    text-align: left;
  }
  .contents-form .form-btn input {
    margin-bottom: 15px;
  }
  .contents-form .form-btn input:last-child {
    margin-bottom: 0;
  }
  .wysiwyg {
    margin-bottom: 30px;
  }
  .wysiwyg > div {
    margin-bottom: 35px;
  }
  .wysiwyg > div div {
    margin-bottom: 20px;
  }
  .wysiwyg h3 {
    font-size: 2rem;
    padding: 10px .5em;
    margin-bottom: 20px;
    letter-spacing: .06em;
  }
  .wysiwyg h3 .label {
    position: static;
    display: block;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-bottom: 8px;
    font-size: 1rem;
    width: 60px;
    padding: 4px 0;
  }
  .wysiwyg h4 {
    font-size: 1.7rem;
    padding-bottom: 10px;
    padding-left: 1em;
    margin-bottom: 15px;
  }
  .wysiwyg h4:after {
    width: 2px;
  }
  .wysiwyg h5 {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
  .wysiwyg h6 {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
  .wysiwyg p {
    margin-bottom: 20px;
  }
  .wysiwyg p a:hover {
    text-decoration: none;
  }
  .wysiwyg a.pdf:hover {
    text-decoration: none;
  }
  .wysiwyg a.link:hover {
    text-decoration: none;
  }
  .wysiwyg .btn {
    text-align: center;
  }
  .wysiwyg .table02 th, .wysiwyg .table02 td {
    padding: 1em;
    font-size: 1.3rem;
  }
  .wysiwyg .table03 th {
    display: block;
    width: 100%;
    padding: 20px 0 0;
  }
  .wysiwyg .table03 td {
    display: block;
    width: 100%;
    padding: 10px 0 0;
  }
  .wysiwyg .table03 td:last-child {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 20px;
  }
  .wysiwyg .table03 .btn-list {
    text-align: center;
  }
  .wysiwyg .table03 .btn-list li {
    display: block;
    text-align: center;
    margin: 0 0 20px;
  }
  .wysiwyg .table03 .btn-list li:last-child {
    margin-bottom: 0;
  }
  .wysiwyg .table03 .btn-list .btn-type01, .wysiwyg .table03 .btn-list .btn-type04 {
    width: 100%;
  }
  .wysiwyg .table04 th, .wysiwyg .table04 td {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .wysiwyg .table04 th {
    width: 7em;
    padding-right: 1em;
  }
  .wysiwyg .table04 td {
    font-size: 1.3rem;
  }
  .wysiwyg .table05 td {
    width: 7em;
    padding: 10px 2rem 10px 0;
  }
  .wysiwyg .img-list > div {
    width: 50%;
    margin-bottom: 2%;
  }
}

/*------------------------------------------
  Clearfix
------------------------------------------*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/*------------------------------------------
  ol,li
------------------------------------------*/


ol {
    list-style-position: inside;
}
ol li {
    padding-left: 20px;
    text-indent: -20px;
}
li > ol{
    margin-top: 10px;
    display: block;
    counter-reset: list;
}
li > ol >li {
    list-style: none!important;
}
li > ol > li:before {
    content: "("counter(list)") " ;
    counter-increment: list;
}

/* ===== form parts iform調整用 ===== */
.select-type01 {
  overflow: hidden;
  position: relative;
  border: 1px solid #deeaf1;
  border-radius: 4px;
}
.select-type01 select {
  width: 100%;
  height: 48px;
  padding-left: 1em;
  position: relative;
  font-size: 1.3rem;
}
.select-type01:before, .select-type01:after {
  content: "";
  display: block;
  position: absolute;
}
.select-type01:before {
  width: 20px;
  height: 48px;
  top: 0;
  right: 0;
  background: #8caabe;
}
.select-type01:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: #fff transparent transparent transparent;
  top: 50%;
  margin-top: -3px;
  right: 7px;
}

.contents-form input[type="text"], .contents-form input[type="email"]{
  width: 100%;
  max-width: 375px;
  font-size: 1.4rem;
  height: 45px;
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  padding: 0 1em;
}

.contents-form textarea {
  width: 100%;
  font-size: 1.4rem;
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  padding: 1em;
}

.radio-type01 {
  margin: 10px 0;
}
.contents-form .radio-group {
  display: inline-block;
  margin-right: 20px;
}
.contents-form .radio-group:last-child {
  margin-right: 0;
}
.radio-group input[type="radio"] {
  display: none;
}
.radio-group input[type="radio"]:checked + label:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.radio-group label {
  display: inline-block;
  line-height: 20px;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  cursor: pointer;
  vertical-align: bottom;
}
.radio-group label:before, .radio-group label:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  transition: all .3s ease;
  transition-property: border-color, -webkit-transform;
  transition-property: transform, border-color;
  transition-property: transform, border-color, -webkit-transform;
}
.radio-group label:before {
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
}
.radio-group label:after {
  top: 5px;
  left: 5px;
  width: 12px;
  height: 12px;
  -webkit-transform: scale(0);
          transform: scale(0);
  background: #005ab4;
}
.radio-group p {
  margin-bottom: 24px;
}
.radio-group p:last-child {
  margin-bottom: 0;
}

.checkbox-group {
  padding: 10px 0;
}
.checkbox-group .checkbox {
  margin-bottom: 10px;
}
.checkbox-group .checkbox:last-child {
  margin-bottom: 0;
}
.checkbox-group input[type="checkbox"] {
  display: none;
}
.checkbox-group input[type="checkbox"]:checked + label:after {
  background-image: url(/front/jmsf/assets/images/common/ico-check01.png);
}
.checkbox-group label {
  display: inline-block;
  line-height: 26px;
  position: relative;
  padding-left: 34px !important;
  margin-bottom: 0;
  cursor: pointer;
  vertical-align: bottom;
  margin-bottom:10px;
}
.checkbox-group label:before, .checkbox-group label:after {
  position: absolute;
  content: "";
  transition: all .3s ease;
  transition-property: border-color, -webkit-transform;
  transition-property: transform, border-color;
  transition-property: transform, border-color, -webkit-transform;
}
.checkbox-group label:before {
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
  border-radius: 2px;
}
.checkbox-group label:after {
  top: 8px;
  left: 6px;
  width: 15px;
  height: 12px;
  background-size: 15px;
}
.checkbox-group p {
  margin-bottom: 24px;
}
.checkbox-group p:last-child {
  margin-bottom: 0;
}

.subBox #resetBtn {
  text-align: center;
  display: inline-block;
  height: 50px;
  width: 100%;
  max-width: 200px;
  color: #005ab4;
  border: 2px solid #005ab4;
  border-radius: 6px;
  box-shadow: 2px 2px 0px 0px #005ab4;
  transition: .3s;
  font-size: 1.4rem;
  background-color:white;
}
.subBox #resetBtn:hover {
  box-shadow: none;
  -webkit-transform: translate3d(2px, 2px, 0);
          transform: translate3d(2px, 2px, 0);
  background: #005ab4;
  color: #fff;
}

.inputSubmit-type02, form button[type='submit'] {
  text-align: center;
  display: inline-block;
  height: 56px;
  width: 100%;
  max-width: 250px;
  background: #e65014;
  border-radius: 6px;
  box-shadow: 2px 2px 0px 0px #c82800;
  transition: .3s;
  font-size: 1.5rem;
  color: #fff;
}

.inputSubmit-type02:disabled, form button[type='submit']:disabled{
    background: #a5a2a2;
    box-shadow: 2px 2px 0px 0px #4c4b4b;
}
.inputSubmit-type02:disabled:hover, form button[type='submit']:disabled:hover{
    cursor: default;
    background: #a5a2a2;
    box-shadow: 2px 2px 0px 0px #4c4b4b;
      -webkit-transform: none;
          transform: none;
}

.inputSubmit-type02:hover, form button[type='submit']:hover {
  box-shadow: none;
  -webkit-transform: translate3d(2px, 2px, 0);
          transform: translate3d(2px, 2px, 0);
  background: #c82800;
  color: #fff;
}
.bnr {
    display: inline;
}

.radio-group br{
    display:none;
}
form .subBox{
    text-align:center;
}

#agree_check+span{
    display: inline-block;
    margin-bottom: 20px;
    min-height:50px;   
}

#agree_check+span:before {
    position: relative;
    content: "";
    transition: all .3s ease;
    transition-property: border-color, -webkit-transform;
    transition-property: transform, border-color;
    transition-property: transform, border-color, -webkit-transform;
    left: 0;
    top: 8px;
    width: 25px;
    height: 25px;
    border: 1px solid #e8e8e8;
    background: #fafafa;
    border-radius: 2px;
    display: inline-block;
    margin-right: 10px;
}
#agree_check+span:after {
    content: "";
    position: relative;
    display: none;
    left: 10px;
    width: 6px;
    height: 12px;
    border: solid #005ab4;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 20px;
}
#agree_check:checked+span:after {
    display:block;
}