@charset "UTF-8";
@import url(//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap);
/*------------------------------------------
  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 JP", sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  background: #fff;
  color: #274664;
  line-height: 1.8;
}

a {
  color: #274664;
  text-decoration: none;
}
a.hvop {
  transition: opacity .3s ease;
}
a.hvop:hover {
  opacity: .7;
  transition: opacity .2s ease;
  cursor: pointer !important;
}
a.text-link {
  text-decoration: underline;
  color: #2ca6e0 !important;
}

.disp-tab {
  display: none;
}

.disp-sp {
  display: none;
}

.wrapper {
  padding-top: 78px;
  overflow: hidden;
}

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

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

/*------------------------------------------
  modules
------------------------------------------*/
.l-grid {
  display: -moz-flex;
  display:      flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}

.l-grid-col-2 .l-grid-item {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
}
.l-grid-col-2 .l-grid-item:nth-child(2n) {
  margin-right: 0;
}

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

.l-grid-col-4 .l-grid-item {
  width: 23%;
  margin-right: 2.6666%;
  margin-bottom: 4%;
}
.l-grid-col-4 .l-grid-item:nth-child(4n) {
  margin-right: 0;
}

/* ===== layout ===== */
[class*="l-inner"] {
  margin: auto;
  padding: 0 20px;
}

.l-inner__type01 {
  max-width: 1000px;
}

/* ===== title ===== */
.m-title__type01 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 45px;
}
.m-title__type01 span {
  background: linear-gradient(transparent 85%, #dadf00 85%);
}

.m-title__type02 {
  font-weight: 700;
  font-size: 2rem;
  padding: .6em 10px;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  color: #333;
}

.m-title__type03 {
  font-size: 2.5rem;
  font-weight: 700;
  background: #f4f4f9;
  display: inline-block;
  padding: .5em 1.5em;
  margin-bottom: 40px;
  line-height: 1.5;
}

.m-title__type04 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #274664;
}

.m-title__type05 {
  border-bottom: 1px solid #274664;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: .5em;
}

/* ===== btn ===== */
.m-btn__type01 {
  display: block;
  text-align: left;
  color: #808080;
  font-size: 1.3rem;
  position: relative;
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 36px;
  border: 1px solid #808080;
  transition: .3s;
}
.m-btn__type01:before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 27px;
  height: 10px;
  margin-top: -5px;
  transition: .3s;
  background-image: url(../images/common/btn-arrow01.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.m-btn__type01:hover {
  background: #274664;
  color: #fff;
}
.m-btn__type01:hover:before {
  background-image: url(../images/common/btn-arrow03.svg);
}

.m-btn__type02 {
  display: inline-block;
  text-align: left;
  color: #274664;
  font-size: 1.4rem;
  position: relative;
  padding: 8px 20px;
  padding-right: 65px;
  font-weight: 700;
  border-radius: 36px;
  border: 1px solid #274664;
  transition: .3s;
}
.m-btn__type02:before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 27px;
  height: 10px;
  margin-top: -5px;
  transition: .3s;
  background-image: url(../images/common/btn-arrow02.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.m-btn__type02:hover {
  color: #fff;
  border-color: #fff;
}
.m-btn__type02:hover:before {
  background-image: url(../images/common/btn-arrow03.svg);
}

.m-btn__type03 {
  display: inline-block;
  text-align: left;
  color: #fff;
  background: #abbdce;
  font-size: 1.4rem;
  letter-spacing: .1em;
  position: relative;
  padding: 8px 22px;
  padding-right: 70px;
  font-weight: 500;
  border-radius: 36px;
  transition: .3s;
}
.m-btn__type03:before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 27px;
  height: 10px;
  margin-top: -5px;
  background: url(../images/common/btn-arrow03.svg) no-repeat;
  background-size: 100%;
}
.m-btn__type03:hover {
  background: #274664;
}

.m-btn__type04 {
  display: inline-block;
  text-align: left;
  color: #fff;
  background: #abbdce;
  font-size: 1.3rem;
  position: relative;
  padding: 8px 22px;
  padding-right: 40px;
  min-width: 138px;
  font-weight: 500;
  border-radius: 36px;
  transition: .3s;
  box-sizing: border-box;
}
.m-btn__type04:before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 20px;
  height: 10px;
  margin-top: -5px;
  background: url(../images/common/btn-arrow03.svg) no-repeat center;
  background-size: 100%;
}
.m-btn__type04:hover {
  background: #274664;
}

.m-btn__type05 {
  display: inline-block;
  text-align: left;
  color: #fff;
  background: #abbdce;
  font-size: 2.3rem;
  letter-spacing: 0;
  position: relative;
  padding: 1em 60px;
  padding-right: 115px;
  font-weight: 500;
  border-radius: 50px;
  transition: .3s;
}
.m-btn__type05:before {
  content: "";
  position: absolute;
  right: 35px;
  top: 50%;
  width: 35px;
  height: 14px;
  margin-top: -7px;
  background: url(../images/common/btn-arrow03.svg) no-repeat;
  background-size: 100%;
}
.m-btn__type05:hover {
  background: #274664;
}

/* ===== list ===== */
.m-list__type01 {
  border-top: 1px solid #e6e6e6;
}
.m-list__type01 .list-item {
  border-bottom: 1px solid #e6e6e6;
  font-size: 1.5rem;
}
.m-list__type01 .item-inner {
  color: #333;
  padding: 15px .5em;
}
.m-list__type01 .item-inner:hover .title {
  text-decoration: underline;
}
.m-list__type01 .item-date {
  width: 100px;
  border-right: 1px solid #e6e6e6;
  padding: .3em 0;
}
.m-list__type01 .item-text {
  width: calc(100% - 121px);
  margin-left: auto;
  padding: .3em 0;
}
.m-list__type01 .item-tag {
  margin-top: 10px;
}
.m-list__type01 .item-tag:last-child {
  margin-top: 0;
}
.m-list__type01 .item-tag .tag-label {
  padding-top: 1px;
  font-size: 1.3rem;
}
.m-list__type01 .tag {
  padding-top: 10px;
}

.m-list__type02 .list-item {
  width: 21.6%;
  margin-right: 4.533%;
  margin-top: 80px;
}
.m-list__type02 .list-item:nth-child(4n) {
  margin-right: 0;
}
.m-list__type02 .list-item:nth-child(1), .m-list__type02 .list-item:nth-child(2), .m-list__type02 .list-item:nth-child(3), .m-list__type02 .list-item:nth-child(4) {
  margin-top: 0;
}

.m-list__type02 .item-image {
  margin-bottom: 25px;
}

.m-list__type02 .item-text {
  border-left: 2px solid #274664;
  padding-left: 1em;
}
.m-list__type02 .item-text .title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
}
.m-list__type02 .item-text .text {
  color: #333;
}
.m-list__type02 .item-text .btn {
  text-align: right;
  margin-top: 15px;
}

.m-list__type03 .list-item {
  color: #333;
  padding: 1em 60px;
  background: #fff;
  position: relative;
}
.m-list__type03 .list-item:before {
  content: "●";
  color: #274664;
  position: absolute;
  left: 22px;
}
.m-list__type03 .list-item:nth-child(2n) {
  background: #f4f4f9;
}

.m-list__type03 a {
  display: inline-block;
  color: #2ca6e0;
  text-decoration: underline;
  position: relative;
}

.m-list__type03 span {
  display: inline-block;
  margin-right: 1.5em;
}

.m-list__type04 {
  border-top: 1px solid #e6e6e6;
}
.m-list__type04 .list-item {
  padding: 30px 0;
  border-bottom: 1px solid #e6e6e6;
}
.m-list__type04 .item-image {
  width: 29%;
}
.m-list__type04 .item-text {
  width: 66%;
  margin-left: auto;
}
.m-list__type04 .item-text .title {
  font-size: 2.5rem;
  font-weight: 700;
}
.m-list__type04 .item-text .pos {
  font-size: 1.8rem;
}
.m-list__type04 .item-text .text {
  color: #333;
  margin-top: 15px;
}

.m-list__type05 {
  margin-bottom: 50px;
}
.m-list__type05:last-child {
  margin-bottom: 0;
}
.m-list__type05 .list-item {
  margin-bottom: 20px;
  background: #f4f4f9;
  padding: 25px 20px;
  font-weight: 700;
  align-items: center;
}
.m-list__type05 .list-item:last-child {
  margin-bottom: 0;
}
.m-list__type05 .item-num {
  text-align: center;
  font-size: 1.5rem;
  width: 32px;
  line-height: 32px;
  background: #274664;
  color: #fff;
  border-radius: 50%;
}
.m-list__type05 .item-text {
  font-size: 1.8rem;
  width: calc(100% - 46px);
  margin-left: auto;
}

.m-list__type06 {
  border-top: 1px solid #e6e6e6;
}
.m-list__type06 .list-item {
  border-bottom: 1px solid #e6e6e6;
}
.m-list__type06 .item-inner {
  padding: 1em;
  display: block;
  color: #333;
}
.m-list__type06 .item-inner:hover .item-title {
  text-decoration: underline;
}
.m-list__type06 .item-title {
  font-weight: 500;
  padding: 3px 0;
}
.m-list__type06 .item-tag {
  margin-top: 5px;
}
.m-list__type06 .item-tag .tag-label {
  padding-top: 1px;
  font-size: 1.3rem;
}

.m-list__type07 .list-item {
  margin-right: 5%;
  margin-bottom: 5%;
  width: 30%;
}
.m-list__type07 .list-item:nth-child(3n) {
  margin-right: 0;
}

.m-list__type07 .item-inner {
  display: block;
}

.m-list__type07 .item-image {
  position: relative;
  margin-bottom: 20px;
}
.m-list__type07 .item-image img {
  height: auto;
}

.m-list__type07 .end-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 25px;
  background: rgba(39, 70, 100, .85);
}

.m-list__type07 .item-contents {
  border-left: 3px solid #274664;
  padding-left: 12px;
}

.m-list__type07 .item-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: .5em;
  color: #2ca6e0;
  text-decoration: underline;
  overflow: hidden;
  line-height: 1.5;
}
.m-list__type07 .item-title p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.m-list__type07 .item-text {
  color: #333;
  line-height: 1.5;
  margin-bottom: .5em;
}

.m-list__type07 .item-more {
  color: #2ca6e0;
  text-decoration: underline;
  margin-bottom: .5em;
}

.m-list__type07 .item-date {
  text-align: right;
  color: #808080;
  font-size: 1.4rem;
}

.m-list__type07 .item-foot {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px dotted #e6e6e6;
}

.m-list__type08 {
  border-top: 1px solid #e6e6e6;
}
.m-list__type08 .list-item {
  padding: 30px 0;
  border-bottom: 1px solid #e6e6e6;
}
.m-list__type08 .item-image {
  width: 45%;
  margin-left: auto;
}
.m-list__type08 .item-text {
  width: 50%;
}
.m-list__type08 .item-text .title {
  font-size: 2.5rem;
  font-weight: 700;
}
.m-list__type08 .item-text .pos {
  font-size: 1.8rem;
}
.m-list__type08 .item-text .text {
  color: #333;
  margin-top: 15px;
}

.search-result-list li {
  margin-bottom: 30px;
}
.search-result-list li:last-child {
  margin-bottom: 0;
}

.search-result-list a {
  font-size: 1.8rem;
  text-decoration: underline;
  font-weight: 700;
  color: #2ca6e0;
}

.m-taglist {
  font-size: 0;
}
.m-taglist a, .m-taglist span {
  display: inline-block;
  font-size: 1.1rem;
  padding: 2px 1em;
  background: #f4f4f9;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  margin-right: 6px;
  margin-bottom: 6px;
  color: #333;
}
.m-taglist__more:after {
  content: "...";
  display: inline-block;
  font-size: 1.1rem;
  padding: 2px 1em;
  background: #f4f4f9;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  margin-bottom: 6px;
  color: #333;
}
.m-taglist .label {
  background: none;
  border: none;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.3rem;
  margin-right: 0;
}

/* ===== box ===== */
.m-box__type01 {
  margin-bottom: 90px;
}
.m-box__type01:last-child {
  margin-bottom: 0;
}
.m-box__type01 .box-text p {
  margin-bottom: 1em;
}
.m-box__type01 .box-text p:last-child {
  margin-bottom: 0;
}

.m-box__type02 {
  margin-bottom: 90px;
}
.m-box__type02:last-child {
  margin-bottom: 0;
}
.m-box__type02 .box-text {
  font-size: 1.8rem;
  line-height: 1.88;
}
.m-box__type02 .box-text p {
  margin-bottom: 1.5em;
  font-weight: 500;
}
.m-box__type02 .box-text p:last-child {
  margin-bottom: 0;
}
.m-box__type02 .box-text p.caution {
  font-weight: 400;
  padding: 25px 30px 30px;
  background: #f4f4f9;
  color: #333333;
  font-size: 1.6rem;
}
.m-box__type02 .box-image {
  margin-top: 90px;
}
.m-box__type02 .box-image .img-caption {
  font-weight: bold;
  margin-bottom: .5em;
}

.m-box__type03 {
  padding: 25px 30px 30px;
  background: #f4f4f9;
  margin-bottom: 20px;
}
.m-box__type03:last-child {
  margin-bottom: 0;
}
.m-box__type03 .box-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: .5em;
}
.m-box__type03 .box-text {
  padding-left: 20px;
}
.m-box__type03 .box-text p {
  margin-bottom: 1.5em;
  color: #333;
}
.m-box__type03 .box-text p:last-child {
  margin-bottom: 0;
}

.m-box__type04 {
  margin-bottom: 40px;
}
.m-box__type04:last-child {
  margin-bottom: 0;
}
.m-box__type04 .box-text {
  width: 54%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.88;
}
.m-box__type04 .box-text p {
  margin-bottom: 1.5em;
}
.m-box__type04 .box-text p:last-child {
  margin-bottom: 0;
}
.m-box__type04 .box-image {
  width: 46%;
  position: relative;
  margin-left: auto;
  right: -4%;
}

.m-box__type05 {
  margin-bottom: 90px;
}
.m-box__type05:last-child {
  margin-bottom: 0;
}
.m-box__type05 .box-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1em;
}
.m-box__type05 .box-lead {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5em;
  background: rgba(171, 189, 206, .35);
  padding: .8em 1.5em;
  border-radius: 30px;
}
.m-box__type05 .box-lead .num:after {
  content: "／";
}
.m-box__type05 .box-contents {
  color: #333;
}
.m-box__type05 .box-contents p {
  margin-bottom: 1.5em;
}
.m-box__type05 .box-contents p:last-child {
  margin-bottom: 0;
}
.m-box__type05 .box-contents .image {
  margin-top: 55px;
}
.m-box__type05 .box-contents .image:first-child {
  margin-top: 0;
}
.m-box__type05 .l-grid {
  margin-top: 55px;
}
.m-box__type05 .l-grid:first-child {
  margin-top: 0;
}
.m-box__type05 .grid-box {
  width: 50%;
  box-sizing: border-box;
}
.m-box__type05 .grid-box:nth-child(odd) {
  padding-right: 1em;
  border-right: 1px solid #e6e6e6;
}
.m-box__type05 .grid-box:nth-child(even) {
  padding-left: 1em;
}

/* ===== text ===== */
.m-text__type01 {
  margin-bottom: 40px;
  color: #333;
}
.m-text__type01:last-child {
  margin-bottom: 0;
}

/* ===== nav ===== */
.m-nav__type01 {
  padding: 10px 10px 0;
  background: rgba(171, 189, 206, .35);
  margin-bottom: 60px;
}
.m-nav__type01:last-child {
  margin-bottom: 0;
}
.m-nav__type01 li {
  background: #fff;
  margin-bottom: 10px;
  font-size: 1.7rem;
}
.m-nav__type01 a {
  display: block;
  padding: .8em 1em;
  padding-right: 50px;
  background: #fff;
  position: relative;
  transition: .3s;
}
.m-nav__type01 a:after {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  right: .8em;
  top: 50%;
  margin-top: -11px;
  border-radius: 50%;
  border: 1px solid #274664;
  background-color: #fff;
  background-image: url(../images/common/ico-arrow07.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  transition: .3s;
}
.m-nav__type01 a:hover {
  background: #274664;
  color: #fff;
}
.m-nav__type01 .current a {
  color: #fff;
  background: #274664;
}
.m-nav__type01 .col-2 li {
  width: 44%;
}
.m-nav__type01 .col-2 li:nth-child(2n) {
  margin-left: auto;
  width: 55%;
}
.m-nav__type01 .col-4 li {
  margin-right: .666%;
  width: 24.5%;
}
.m-nav__type01 .col-4 li:nth-child(4n) {
  margin-right: 0;
}
.m-nav__type01 .col-6 li {
  margin-right: .8%;
  width: 16%;
}
.m-nav__type01 .col-6 li:nth-child(6n) {
  margin-right: 0;
}

.m-nav__type02 {
  position: relative;
  margin-bottom: 40px;
}
.m-nav__type02:before {
  content: "";
  width: 43px;
  height: 43px;
  background: #e6e6e6;
  position: absolute;
  right: 0;
  top: 0;
}
.m-nav__type02:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  transform: rotate(45deg);
}
.m-nav__type02 select {
  height: 44px;
  padding: 0 1em;
  border: 1px solid #b3b3b3;
  width: 100%;
  border-radius: 3px;
  color: #274664;
  position: relative;
}

/* ===== iframe ===== */
.m-movie {
  max-width: 600px;
  margin: auto;
}
.m-movie div {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.m-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ===== search ===== */
.contents-search {
  margin-bottom: 40px;
}
.contents-search__inner {
  background: #f4f4f9;
  padding: 20px;
}
.contents-search .search-box {
  margin-bottom: 15px;
  align-items: flex-start;
}
.contents-search .search-box:last-child {
  margin-bottom: 0;
}
.contents-search .search-box .box-label {
  width: 138px;
  text-align: center;
  line-height: 34px;
  color: #fff;
  background: #274664;
}
.contents-search .search-box .box-form {
  width: calc(100% - 160px);
  margin-left: auto;
}
.contents-search .search-lead {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5em;
}
.contents-search .search-btn {
  margin-top: 15px;
  text-align: right;
}
.contents-search .search-btn input {
  height: 52px;
  text-align: left;
  color: #fff;
  background: #abbdce url(../images/common/btn-arrow03.svg) no-repeat center right 20px;
  background-size: 28px;
  letter-spacing: 0;
  position: relative;
  padding: 0 30px;
  padding-right: 70px;
  font-weight: 700;
  border-radius: 50px;
  transition: .3s;
}
.contents-search .search-btn input:hover {
  background-color: #274664;
}
.contents-search .terms-list li {
  margin-right: 1em;
}
.contents-search .selectbox {
  overflow: hidden;
  width: 165px;
  border: 1px solid #b3b3b3;
  border-radius: 3px;
  position: relative;
  background: #fff;
}
.contents-search .selectbox:before {
  content: "";
  width: 30px;
  height: 100%;
  background: #e6e6e6 url(../images/common/ico-arrow07.svg) no-repeat center;
  background-size: 9px;
  position: absolute;
  right: 0;
  top: 0;
}
.contents-search .selectbox select {
  position: relative;
  width: 120%;
  z-index: 1;
  height: 30px;
  padding-left: 1em;
  outline-style: none;
}
.contents-search input[type=radio], .contents-search input[type=checkbox] {
  display: none;
}
.contents-search .radio, .contents-search .checkbox {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  padding-left: 24px;
  vertical-align: middle;
  cursor: pointer;
  color: #333;
}
.contents-search .radio:after, .contents-search .checkbox:after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -8px;
  width: 14px;
  height: 14px;
  border: 1px solid #b3b3b3;
  background: #fff;
  content: "";
}
.contents-search .radio:before {
  transition: opacity .2s linear;
  position: absolute;
  top: 50%;
  left: 6px;
  display: block;
  margin-top: -7px;
  width: 3px;
  height: 9px;
  border-right: 2px solid #274664;
  border-bottom: 2px solid #274664;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
  z-index: 1;
}
.contents-search input[type=radio]:checked ~ .radio:before {
  opacity: 1;
}
.contents-search .checkbox:before {
  transition: opacity .2s linear;
  position: absolute;
  top: 50%;
  left: 6px;
  display: block;
  margin-top: -7px;
  width: 3px;
  height: 9px;
  border-right: 2px solid #274664;
  border-bottom: 2px solid #274664;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
  z-index: 1;
}
.contents-search input[type=checkbox]:checked ~ .checkbox:before {
  opacity: 1;
}

.search-word {
  position: relative;
}
.search-word input[type="text"] {
  width: 100%;
  height: 38px;
  border: 1px solid #274664;
  padding: 0 1em;
  border-radius: 36px;
  font-size: 13px;
}
.search-word input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  height: 38px;
  width: 50px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/common/ico-search.svg) no-repeat center;
  background-size: 18px;
}
.search-word ::-moz-placeholder {
  color: #a0aebb;
}
.search-word :-ms-input-placeholder {
  color: #a0aebb;
}
.search-word ::-ms-input-placeholder {
  color: #a0aebb;
}
.search-word ::placeholder {
  color: #a0aebb;
}

.navigation {
  text-align: center;
  margin-top: 75px;
}
.navigation span, .navigation a {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  line-height: 38px;
  margin: 0 7px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 1.6rem;
  color: #274664;
  border: 1px solid #274664;
  box-sizing: border-box;
}
.navigation .current {
  color: #fff;
  background-color: #274664;
}
.navigation .prev, .navigation .next {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  background-color: #f4f4f9;
  background-size: 7px;
}
.navigation .prev {
  background-image: url(../images/common/arrow-pager-prev.svg);
}
.navigation .next {
  background-image: url(../images/common/arrow-pager-next.svg);
}

.page-count {
  text-align: center;
  color: #808080;
  padding-top: 20px;
}

@media only screen and (max-width: 1024px) {
  /* ===== nav ===== */
  .m-nav__type01 .col-4 li {
    width: 32%;
    margin-right: 2%;
    font-size: 1.5rem;
  }
  .m-nav__type01 .col-4 li:nth-child(4n) {
    margin-right: 2%;
  }
  .m-nav__type01 .col-4 li:nth-child(3n) {
    margin-right: 0;
  }
  .m-nav__type01 .col-6 li {
    margin-right: 1.333%;
    width: 24%;
  }
  .m-nav__type01 .col-6 li:nth-child(6n) {
    margin-right: 1.333%;
  }
  .m-nav__type01 .col-6 li:nth-child(4n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* ===== title ===== */
  .m-title__type01 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .m-title__type02 {
    font-size: 1.6rem;
    text-align: center;
    border-width: 1px;
  }
  .m-title__type03 {
    font-size: 1.9rem;
    padding: .5em;
    margin-bottom: 25px;
  }
  .m-title__type04 {
    font-size: 1.6rem;
  }
  .m-title__type05 {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }
  /* ===== btn ===== */
  .m-btn__type02 {
    font-size: 2rem;
    border-width: 2px;
    padding: 10px 30px;
    min-width: 275px;
    box-sizing: border-box;
  }
  .m-btn__type02:before {
    right: 25px;
    width: 37px;
    height: 14px;
    margin-top: -7px;
  }
  .m-btn__type03 {
    font-size: 2rem;
    padding: 10px 30px;
    min-width: 200px;
    box-sizing: border-box;
  }
  .m-btn__type03:before {
    right: 25px;
    width: 37px;
    height: 14px;
    margin-top: -7px;
  }
  .m-btn__type04 {
    background: #274664;
    font-size: 1.4rem;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .m-btn__type05 {
    display: block;
    font-size: 2rem;
    padding: .7em 30px;
    padding-right: 55px;
    line-height: 1.3;
    background: #274664;
  }
  .m-btn__type05:before {
    right: 20px;
  }
  .m-btn__type05 span {
    font-size: 1.5rem;
  }
  /* ===== list ===== */
  .m-list__type01 {
    border: none;
  }
  .m-list__type01 .list-item {
    border: none;
    margin-bottom: 35px;
  }
  .m-list__type01 .list-item:last-child {
    margin-bottom: 0;
  }
  .m-list__type01 .item-inner {
    padding: 0;
  }
  .m-list__type01 .item-date {
    border: none;
    width: 100%;
    padding: 0;
    margin-bottom: 5px;
  }
  .m-list__type01 .item-text {
    width: 100%;
    padding: 0;
  }
  .m-list__type01 .tag {
    padding-top: 15px;
  }
  .m-list__type01.mlpost-list {
    border-top: 1px solid #e6e6e6;
  }
  .m-list__type01.mlpost-list .list-item {
    margin-bottom: 0;
    border-bottom: 1px solid #e6e6e6;
  }
  .m-list__type01.mlpost-list .item-inner {
    padding: 1em 0;
  }
  .m-list__type02 .list-item {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 35px;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
  }
  .m-list__type02 .list-item:last-child {
    margin-bottom: 0;
  }
  .m-list__type02 .item-image {
    margin-bottom: 0;
    width: 110px;
  }
  .m-list__type02 .item-text {
    border-left: none;
    padding-left: 0;
    width: calc(100% - 125px);
    margin-left: auto;
    height: auto !important;
  }
  .m-list__type02 .item-text .title {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .m-list__type02 .item-text .btn {
    margin-top: 10px;
  }
  .m-list__type02 .item-text .btn a {
    width: 100%;
  }
  .m-list__type03 .list-item {
    padding: 1em 30px;
  }
  .m-list__type03 .list-item:before {
    left: 12px;
  }
  .m-list__type03 .list-item span {
    display: block;
  }
  .m-list__type04 {
    border-top: none;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 50px;
  }
  .m-list__type04 .list-item {
    padding: 0;
    border-bottom: none;
    margin-bottom: 50px;
  }
  .m-list__type04 .list-item:last-child {
    margin-bottom: 0;
  }
  .m-list__type04 .item-image {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .m-list__type04 .item-image img {
    width: 38%;
  }
  .m-list__type04 .item-text {
    width: 100%;
  }
  .m-list__type04 .item-text .title {
    font-size: 1.7rem;
    text-align: center;
  }
  .m-list__type04 .item-text .pos {
    font-size: 1.5rem;
    text-align: center;
  }
  .m-list__type04 .item-text .text {
    color: #333;
  }
  .m-list__type05 .list-item {
    margin-bottom: 10px;
    padding: 15px;
    align-items: flex-start;
  }
  .m-list__type05 .item-num {
    font-size: 1.1rem;
    width: 22px;
    line-height: 22px;
    margin-top: 3px;
  }
  .m-list__type05 .item-text {
    font-size: 1.5rem;
    width: calc(100% - 30px);
  }
  .m-list__type06 .item-inner {
    padding: 1em 0;
  }
  .m-list__type06 .item-title {
    padding: 0;
    margin-bottom: 1em;
  }
  .m-list__type07 .list-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .m-list__type07 .list-item:last-child {
    margin-bottom: 0;
  }
  .m-list__type07 .item-image {
    margin-bottom: 15px;
  }
  .m-list__type07 .item-contents {
    border: none;
    padding-left: 0;
  }
  .m-list__type07 .item-title {
    font-size: 1.6rem;
  }
  .m-list__type07 .item-date {
    font-size: 1.3rem;
  }
  .m-list__type07 .item-foot {
    padding-top: 15px;
  }
  .m-list__type08 {
    border: none;
  }
  .m-list__type08 .list-item {
    padding: 25px 0;
  }
  .m-list__type08 .item-image {
    width: 100%;
    margin-top: 35px;
    text-align: center;
  }
  .m-list__type08 .item-image img {
    width: 68%;
  }
  .m-list__type08 .item-text {
    width: 100%;
  }
  .m-list__type08 .item-text .title {
    font-size: 1.7rem;
    text-align: center;
  }
  .m-list__type08 .item-text .pos {
    font-size: 1.5rem;
    text-align: center;
  }
  .m-list__type08 .item-text .text {
    color: #333;
    margin-top: 15px;
  }
  .search-result-list li {
    margin-bottom: 20px;
  }
  .search-result-list a {
    font-size: 1.7rem;
  }
  /* ===== box ===== */
  .m-box__type01 {
    margin-bottom: 50px;
  }
  .m-box__type02 {
    margin-bottom: 50px;
  }
  .m-box__type02 .box-text {
    font-size: 1.5rem;
    line-height: 1.73;
  }
  .m-box__type02 .box-text p.caution {
    padding: 20px;
    font-size: 1.4rem;
  }
  .m-box__type03 {
    padding: 20px;
    margin-bottom: 10px;
  }
  .m-box__type03 .box-title {
    font-size: 1.5rem;
  }
  .m-box__type03 .box-text {
    padding-left: 0;
  }
  .m-box__type04 {
    display: block;
  }
  .m-box__type04 .box-text {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.73;
    margin-bottom: 20px;
  }
  .m-box__type04 .box-image {
    width: calc(100% + 40px);
    margin-left: -20px;
    position: relative;
    margin-bottom: 1.5em;
    right: 0;
  }
  .m-box__type04 .box-image:last-child {
    margin-bottom: 0;
  }
  .m-box__type05 {
    margin-bottom: 65px;
  }
  .m-box__type05 .box-title {
    font-size: 1.5rem;
    margin-bottom: 1em;
  }
  .m-box__type05 .box-lead {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .m-box__type05 .box-lead .num:after {
    content: none;
  }
  .m-box__type05 .box-lead .count {
    font-size: 80%;
  }
  .m-box__type05 .box-contents .image {
    margin-top: 30px;
  }
  .m-box__type05 .l-grid {
    margin-top: 30px;
  }
  .m-box__type05 .grid-box {
    width: 100%;
    margin-bottom: 40px;
  }
  .m-box__type05 .grid-box:last-child {
    margin-bottom: 0;
  }
  .m-box__type05 .grid-box:nth-child(odd) {
    padding: 0;
    border: none;
  }
  .m-box__type05 .grid-box:nth-child(even) {
    padding: 0;
  }
  /* ===== nav ===== */
  .m-nav__type01 {
    padding: 15px;
    margin-bottom: 40px;
  }
  .m-nav__type01 li {
    width: 100% !important;
    margin-right: 0 !important;
    font-size: 1.6rem;
  }
  .m-nav__type01 li:last-child {
    margin-bottom: 0;
  }
  /* ===== search ===== */
  .contents-search__inner {
    padding: 10px 10px 20px;
  }
  .contents-search .search-box {
    margin-bottom: 20px;
  }
  .contents-search .search-box .box-label {
    width: 110px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .contents-search .search-box .box-form {
    width: 100%;
  }
  .contents-search .search-lead {
    font-size: 1.4rem;
  }
  .contents-search .search-btn {
    padding: 0 15px;
    margin-top: 40px;
  }
  .contents-search .search-btn input {
    height: 56px;
    width: 100%;
    font-size: 1.9rem;
    background-color: #274664;
  }
  .contents-search .terms-list li {
    width: 32%;
    margin-right: 2%;
  }
  .contents-search .terms-list li:nth-child(3n) {
    margin-right: 0;
  }
  .contents-search .terms-list__p li {
    margin-right: 0;
    width: 100%;
  }
  .sp-scroll {
    -ms-overflow-x: auto;
        overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sp-scroll >div {
    width: 800px;
  }
}

/*------------------------------------------
  header
------------------------------------------*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  box-sizing: border-box;
}
.site-header__inner {
  height: 78px;
  align-items: center;
}
.site-header__contents {
  margin-left: auto;
  align-items: center;
}
.site-header .header-search {
  margin-left: 30px;
}
.site-header .header-search input {
  width: 235px;
  height: 38px;
  border: 1px solid #274664;
  padding: 0 1em;
  border-radius: 36px;
  font-size: 13px;
}
.site-header .header-search ::-moz-placeholder {
  color: #a0aebb;
}
.site-header .header-search :-ms-input-placeholder {
  color: #a0aebb;
}
.site-header .header-search ::-ms-input-placeholder {
  color: #a0aebb;
}
.site-header .header-search ::placeholder {
  color: #a0aebb;
}
.site-header .header-nav {
  margin-left: 20px;
  font-size: 1.3rem;
  font-weight: 500;
}
.site-header .header-nav li {
  padding-right: .8em;
  margin-right: .8em;
  border-right: 1px solid #274664;
}
.site-header .header-nav li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: #000;
}
.site-header .header-nav a {
  display: block;
}
.site-header .bogo-language-switcher {
  margin-left: 20px;
  font-size: 1.3rem;
  font-weight: 500;
  display: flex;
}
.site-header .bogo-language-switcher a {
  display: block;
}
.site-header .bogo-language-switcher .en {
  -ms-order: 2;
      order: 2;
}
.site-header .bogo-language-switcher .ja {
  padding-right: .8em;
  margin-right: .8em;
  border-right: 1px solid #274664;
  -ms-order: 1;
      order: 1;
}

.global-nav a {
  display: block;
}

.global-nav .nav-item {
  margin-left: 2em;
  padding: 15px 0;
}
.global-nav .nav-item:first-child {
  margin-left: 0;
}
.global-nav .nav-item:hover .nav-link {
  font-weight: 700;
  color: #a3b1be;
}
.global-nav .nav-item:hover .nav-link:after {
  opacity: 1;
}

.global-nav .nav-link {
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
  padding: 6px 0;
}
.global-nav .nav-link:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #274664;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: .3s;
}

.global-nav__block {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(39, 70, 100, .2);
  justify-content: space-between;
}
.global-nav__block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.global-nav__block.auto {
  justify-content: space-between;
}
.global-nav__block.auto .global-nav__box {
  margin-right: 0;
}

.global-nav__box {
  margin-right: 0;
}
.global-nav__box .box-title {
  font-weight: 500;
  position: relative;
  font-size: 1.4rem;
  border-bottom: 2px solid #274664;
  padding-right: 25px;
  margin-bottom: 15px;
}
.global-nav__box .box-title:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #274664 url(../images/common/ico-arrow01.svg) no-repeat center;
  background-size: 4px;
}
.global-nav__box .box-title a {
  color: #333;
  cursor: default;
}
.global-nav__box ul {
  font-size: 1.3rem;
  border-left: 2px solid rgba(39, 70, 100, .5);
  padding: 0 1em;
}
.global-nav__box ul a:hover {
  text-decoration: underline;
}
.global-nav__box li {
  margin-bottom: 5px;
}
.global-nav__box li:last-child {
  margin-bottom: 0;
}

.global-nav__child {
  display: none;
  position: fixed;
  width: 100%;
  top: 78px;
  left: 0;
  background: #fafafa;
  padding: 35px 0;
}
.global-nav__child .inner {
  max-width: 900px;
}

.overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(61, 61, 61, .25);
  z-index: 99;
}

@media only screen and (max-width: 1024px) {
  .site-header.header-open {
    right: 0;
    bottom: 0;
    overflow-y: auto;
    height: 100vh;
    transition: .8s;
    -webkit-overflow-scrolling: touch;
  }
  .site-header__inner {
    position: relative;
    height: 56px;
    padding: 0 15px;
  }
  .site-header__contents {
    display: none;
    position: absolute;
    background: #fff;
    top: 56px;
    left: 0;
    width: 100%;
    border-top: 1px solid #e6e6e6;
    padding-bottom: 60px;
  }
  .site-header__logo {
    width: 111px;
  }
  .site-header__trigger {
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 15px;
    width: 38px;
    height: 24px;
  }
  .site-header__trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: #274664;
    transition: .3s;
  }
  .site-header__trigger span:nth-child(1) {
    top: 0;
  }
  .site-header__trigger span:nth-child(2) {
    top: 50%;
    margin-top: -2px;
  }
  .site-header__trigger span:nth-child(3) {
    bottom: 0;
  }
  .site-header__nav {
    margin-left: auto;
    padding-right: 60px;
  }
  .site-header .bogo-language-switcher {
    margin-left: 20px;
    font-size: 1.2rem;
  }
  .site-header .bogo-language-switcher li {
    line-height: 24px;
    width: 40px;
    text-align: center;
    background: #f0f0f0;
    color: #999;
  }
  .site-header .bogo-language-switcher a {
    display: block;
  }
  .site-header .bogo-language-switcher a.current {
    background: #274664;
    color: #fff;
  }
  .site-header .bogo-language-switcher .en {
    -ms-order: 2;
        order: 2;
  }
  .site-header .bogo-language-switcher .ja {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    -ms-order: 1;
        order: 1;
  }
  .site-header .header-search {
    margin-left: 0;
    padding: 30px 15px;
  }
  .site-header .header-search input {
    width: 100%;
    height: 48px;
  }
  .site-header .header-nav {
    display: none;
  }
  .global-nav .nav-item {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e6e6e6;
  }
  .global-nav .nav-item:hover .nav-link {
    color: #274664;
  }
  .global-nav .nav-link {
    font-size: 1.4rem;
    padding: 1em;
  }
  .global-nav .nav-link:after {
    content: none;
  }
  .global-nav__block {
    display: block;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .global-nav__box {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .global-nav__box .box-title {
    font-weight: 500;
    position: relative;
    font-size: 1.4rem;
    border-bottom: 2px solid #274664;
    padding-right: 25px;
    margin-bottom: 15px;
  }
  .global-nav__box ul {
    font-size: 1.3rem;
    padding: 0;
    border-left: none;
  }
  .global-nav__child {
    padding: 20px 0;
    position: static;
  }
  .global-nav__child .inner {
    padding: 0 15px;
  }
}

/*------------------------------------------
  footer
------------------------------------------*/
.site-footer {
  position: relative;
}
.site-footer__contents {
  border-top: 1px solid #f0f0f0;
}
.site-footer .footer-contents__top {
  padding: 40px 0 60px;
}
.site-footer .footer-contents__bottom {
  padding: 20px 0;
}
.site-footer .footer-contents__copy {
  border-top: none;
  color: #666;
  font-size: 1.2rem;
  position: absolute;
  bottom: 26px;
  right: 20px;
}
.site-footer .footer-contents__inner {
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-logo {
  width: 20%;
}
.site-footer .footer-logo .logo-image {
  margin-bottom: 25px;
}
.site-footer .footer-menu {
  width: 72%;
  justify-content: space-between;
}
.site-footer .footer-menu li {
  width: 27%;
}
.site-footer .footer-menu .menu-text {
  color: #808080;
  font-size: 1.1rem;
  margin-top: 15px;
}
.site-footer .footer-sns {
  width: 20%;
}
.site-footer .footer-nav {
  width: 72%;
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.2rem;
}
.site-footer .footer-nav li {
  border-right: 1px solid #666;
  padding-right: 1em;
  margin-right: 1em;
}
.site-footer .footer-nav li:last-child {
  border-right: none;
  margin-right: 0;
}
.site-footer .footer-nav a {
  color: #666;
  display: block;
}
.site-footer .footer-nav a:hover {
  text-decoration: underline;
}

.btn-pagetop {
  position: absolute;
  right: 15px;
  top: -86px;
  z-index: 10;
}

@media only screen and (max-width: 1024px) {
  .site-footer .footer-contents__top .footer-contents__inner {
    align-items: flex-start;
  }
  .site-footer .footer-contents__copy {
    position: static;
    text-align: right;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
  }
  .site-footer .footer-logo {
    width: 20%;
  }
  .site-footer .footer-menu {
    width: 76%;
  }
  .site-footer .footer-menu li {
    width: 32%;
  }
  .site-footer .footer-sns {
    width: 20%;
  }
  .site-footer .footer-nav {
    width: 76%;
  }
}

@media only screen and (max-width: 768px) {
  .site-footer .footer-contents__top {
    padding: 50px 0 40px;
  }
  .site-footer .footer-contents__bottom {
    border-top: none;
    padding: 0 0 30px;
  }
  .site-footer .footer-contents__copy {
    text-align: center;
    font-size: 1rem;
  }
  .site-footer .footer-logo {
    width: 100%;
    text-align: center;
  }
  .site-footer .footer-logo img {
    width: 140px;
  }
  .site-footer .footer-logo .logo-image {
    margin-bottom: 10px;
  }
  .site-footer .footer-menu {
    display: none;
  }
  .site-footer .footer-sns {
    width: 100%;
    text-align: center;
  }
  .site-footer .footer-nav {
    display: none;
  }
  .btn-pagetop {
    width: 53px;
    top: auto;
    bottom: 80px;
  }
}

/*------------------------------------------
  contents
------------------------------------------*/
.main-contents {
  padding-bottom: 100px;
}

.page-breadcrumb {
  border-top: 1px solid #e6e6e6;
  color: #8fa1b2;
  font-size: 1.2rem;
  padding: 10px 0;
}
.page-breadcrumb a {
  color: #8fa1b2;
  text-decoration: underline;
}
.page-breadcrumb > div > span {
  display: inline;
  padding-right: 14px;
  margin-right: 10px;
  background: url(../images/common/ico-arrow04.svg) no-repeat top 7px right;
  background-size: 4px;
}
.page-breadcrumb > div > span:last-child {
  padding-right: 0;
  margin-right: 0;
  background: none;
}
.page-breadcrumb > div > span:first-child a:before {
  content: "TOP";
}
.page-breadcrumb > div > span:first-child a span {
  font-size: 0;
}

.page-head {
  background-color: #274664;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page-head__inner {
  position: relative;
  height: 312px;
  max-width: 1096px;
  align-items: center;
}
.page-head__contents {
  width: 100%;
  max-width: 960px;
  margin: auto;
}
.page-head__logo {
  position: absolute;
  left: 0;
  top: 25px;
}
.page-head__title {
  color: #fff;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.2;
  padding-top: 1em;
}
.page-head__title span {
  font-size: 3rem;
}

.page-tab {
  text-align: center;
}
.page-tab__list {
  display: flex;
}
.page-tab__top {
  width: 94%;
}
.page-tab__bottom {
  width: 100%;
}
.page-tab li {
  width: 50%;
}
.page-tab a {
  display: block;
  background: rgba(171, 189, 206, .1);
  padding: 1.2em 1em;
}
.page-tab a span {
  display: inline-block;
  padding-right: 30px;
  position: relative;
}
.page-tab a span:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
  border-radius: 50%;
  background: #a3b1be;
  background-image: url(../images/common/ico-arrow01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 4px;
  transition: .3s;
  box-sizing: border-box;
}
.page-tab .current a {
  background: rgba(171, 189, 206, .35);
}
.page-tab .current a span:after {
  background-color: #274664;
}

.page-nav {
  background: rgba(171, 189, 206, .35);
  padding: 25px 0;
  position: relative;
}
.page-nav__top:after {
  content: "";
  width: 6%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.page-nav li {
  font-size: 1.5rem;
  margin-right: 1em;
  padding: 5px 0;
}
.page-nav li:last-child {
  margin-right: 0;
}
.page-nav a {
  display: block;
  padding-right: 35px;
  line-height: 25px;
  position: relative;
  transition: .3s;
}
.page-nav a:after {
  content: "";
  width: 23px;
  height: 23px;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  border: 1px solid #274664;
  background-image: url(../images/common/ico-arrow05.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6px;
  transition: .3s;
}
.page-nav a:hover {
  font-weight: 700;
}
.page-nav a:hover:after {
  background-color: #274664;
  background-image: url(../images/common/ico-arrow06.svg);
}
.page-nav .current a {
  pointer-events: none;
  font-weight: 700;
}
.page-nav .current a:after {
  background-color: #274664;
  background-image: url(../images/common/ico-arrow06.svg);
}

.page-contents {
  padding: 100px 0;
}

.page-label {
  margin-bottom: 60px;
}
.page-label span {
  display: inline-block;
  color: #fff;
  background: #274664;
  font-size: 3.7rem;
  font-weight: 700;
  padding: 0 1em;
}

.page-label__search {
  margin-bottom: 60px;
  justify-content: space-between;
  align-items: center;
}
.page-label__search .page-label {
  margin-bottom: 0;
}
.page-label__search .page-search {
  width: 60%;
  max-width: 380px;
}

.page-section {
  margin-bottom: 110px;
}
.page-section:last-child {
  margin-bottom: 0;
}
.page-section .section-lead {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 60px;
}
.page-section .section-contents {
  margin-bottom: 80px;
}
.page-section .section-contents:last-child {
  margin-bottom: 0;
}
.page-section .section-contents.full-image {
  margin-bottom: 60px;
}

.page-section__error {
  text-align: center;
  padding-top: 80px;
}
.page-section__error .section-title {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1em;
}
.page-section__error .error-text p {
  margin-bottom: 40px;
}
.page-section__error .error-text p:last-child {
  margin-bottom: 0;
}

.cmn-section__bnr {
  padding-top: 100px;
  border-top: 1px solid #f0f0f0;
}
.cmn-section__bnr .section-contents {
  background: #f4f4f9;
  border-radius: 10px;
  padding: 30px;
}
.cmn-section__bnr .bnr-list li {
  width: 23%;
  margin-top: 2.666%;
  margin-right: 2.666%;
}
.cmn-section__bnr .bnr-list li:nth-child(4n) {
  margin-right: 0;
}
.cmn-section__bnr .bnr-list li:nth-child(1), .cmn-section__bnr .bnr-list li:nth-child(2), .cmn-section__bnr .bnr-list li:nth-child(3), .cmn-section__bnr .bnr-list li:nth-child(4) {
  margin-top: 0;
}
.cmn-section__bnr .bnr-list img {
  width: 100%;
}

.post-article .article-header {
  margin-bottom: 55px;
}
.post-article .article-header .header-date {
  font-size: 1.4rem;
  color: #808080;
  margin-bottom: 1em;
}
.post-article .article-header .header-title {
  margin-bottom: 0;
}
.post-article .article-header .header-tag {
  margin-top: 40px;
  display: table;
}
.post-article .article-header .header-tag p {
  display: table-cell;
}
.post-article .article-header .header-tag .tag-label {
  font-size: 1.3rem;
  color: #333;
}
.post-article .article-header .header-tag__target .tag-label {
  min-width: 3em;
}
.post-article .article-header .header-tag__program .tag-label {
  min-width: 6em;
}

.post-article .article-contents strong {
  font-weight: bold;
}

.post-article .article-contents p {
  margin-bottom: 1.5em;
}

.post-article .article-contents img.aligncenter {
  display: block;
  margin: auto;
}

.post-article .article-btn {
  text-align: center;
  margin-top: 80px;
}
.post-article .article-btn a {
  width: 242px;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .page-label__search {
    display: block;
  }
  .page-label__search .page-search {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .main-contents {
    padding-bottom: 0;
  }
  .page-breadcrumb {
    padding: 6px 0;
  }
  .page-breadcrumb > div {
    padding: 0 10px;
  }
  .page-head__inner {
    text-align: center;
    height: 260px;
  }
  .page-head__logo {
    left: 15px;
    top: 15px;
  }
  .page-head__title {
    font-size: 2.7rem;
    line-height: 1.5;
  }
  .page-head__title span {
    font-size: 2.4rem;
  }
  .page-head__title .sub02 {
    font-size: 1.9rem;
  }
  .page-tab {
    width: 100%;
  }
  .page-tab li {
    width: auto;
  }
  .page-tab__top {
    background: #274664;
    -ms-overflow-x: scroll;
        overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .page-tab__top a {
    background: #274664;
    color: rgba(255, 255, 255, .55);
    padding: 0 1em;
  }
  .page-tab__top a span {
    padding: .8em 0;
    padding-right: 0;
  }
  .page-tab__top a span:after {
    content: none;
  }
  .page-tab__top a span:before {
    width: 100%;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .page-tab__top .current a {
    background: #274664;
    color: #fff;
  }
  .page-tab__top .current a span:before {
    content: "";
  }
  .page-tab__bottom {
    font-size: 1.2rem;
    background: rgba(171, 189, 206, .35);
  }
  .page-tab__bottom .page-tab__list {
    padding: 20px;
    text-align: left;
  }
  .page-tab__bottom li {
    flex-grow: 1;
    margin-right: 10px;
  }
  .page-tab__bottom li:last-child {
    margin-right: 0;
  }
  .page-tab__bottom a {
    padding: .6em;
    background: #fff;
  }
  .page-tab__bottom a span {
    display: block;
  }
  .page-tab__bottom a span:after {
    background-color: #fff;
    background-image: url(../images/common/ico-arrow05.svg);
    background-size: 4px;
    border: 1px solid #274664;
  }
  .page-tab__bottom .current a {
    background: #274664;
    color: #fff;
  }
  .page-tab__bottom .current a span:after {
    border: 1px solid #fff;
    background-image: url(../images/common/ico-arrow06.svg);
  }
  .page-nav {
    padding: 20px 0;
  }
  .page-nav__top:after {
    content: none;
  }
  .page-nav li {
    width: 49%;
    margin-right: 0;
    padding: 0;
    background: #fff;
    font-size: 1.4rem;
    margin-top: 2%;
  }
  .page-nav li:nth-child(2n) {
    margin-left: auto;
  }
  .page-nav li:nth-child(1), .page-nav li:nth-child(2) {
    margin-top: 0;
  }
  .page-nav a {
    background: #fff;
    padding: 10px .7em;
    padding-right: 35px;
    line-height: 1.5;
  }
  .page-nav a:after {
    width: 20px;
    height: 20px;
    right: .7em;
    top: 50%;
    margin-top: -10px;
    box-sizing: border-box;
    background-size: 4px;
  }
  .page-nav .current a {
    background: #274664;
    color: #fff;
  }
  .page-nav .current a:after {
    border-color: #fff;
  }
  .page-contents {
    padding: 60px 0;
  }
  .page-label {
    margin-bottom: 45px;
  }
  .page-label span {
    font-size: 2.9rem;
    padding: 0 .5em;
  }
  .page-label.disp-sp span {
    margin-bottom: 4px;
  }
  .page-label.disp-sp span:last-child {
    margin-bottom: 0;
  }
  .page-label__search {
    margin-bottom: 40px;
  }
  .page-label__search .page-search {
    max-width: none;
    width: 100%;
  }
  .page-section {
    margin-bottom: 80px;
  }
  .page-section .section-lead {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  .page-section .section-contents {
    margin-bottom: 55px;
  }
  .page-section .section-contents.full-image {
    margin-bottom: 40px;
  }
  .page-section__error {
    padding-top: 50px;
  }
  .full-image {
    position: relative;
    width: calc(100% + 40px);
    left: -20px;
  }
  .cmn-section__bnr {
    padding-top: 70px;
    border-top: none;
  }
  .cmn-section__bnr .section-inner {
    padding: 0;
  }
  .cmn-section__bnr .section-contents {
    border-radius: 0;
    padding: 25px;
  }
  .cmn-section__bnr .bnr-list li {
    width: 48%;
    margin-top: 4% !important;
    margin-right: 0;
  }
  .cmn-section__bnr .bnr-list li:nth-child(2n) {
    margin-left: auto;
  }
  .cmn-section__bnr .bnr-list li:nth-child(1), .cmn-section__bnr .bnr-list li:nth-child(2) {
    margin-top: 0 !important;
  }
  .post-article .article-header {
    margin-bottom: 40px;
  }
  .post-article .article-header .header-tag {
    margin-top: 25px;
  }
  .post-article .article-btn {
    margin-top: 40px;
  }
}

/*------------------------------------------
  home
------------------------------------------*/
.home-section {
  position: relative;
}

.home-section__mv {
  height: 500px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home-section__mv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
}
.home-section__mv .section-inner {
  position: relative;
}
.home-section__mv .mv-lead {
  padding-top: 45px;
}
.home-section__mv .mv-logo {
  position: absolute;
  top: 25px;
  left: 30px;
}

.home-section__about {
  padding: 88px 0;
  background: #f4f4f9 url(../images/home/bg-about.png) no-repeat left top;
}
.home-section__about .section-inner {
  position: relative;
}
.home-section__about .section-contents {
  position: relative;
}
.home-section__about .about-block {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fabe00;
  width: 48%;
  box-sizing: border-box;
  padding: 3% 4%;
}
.home-section__about .about-block .block-title {
  font-family: Arial, "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #fff;
  line-height: 1.2;
}
.home-section__about .about-block .block-lead {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.home-section__about .about-block .block-text {
  font-size: 1.3rem;
  color: #333;
}
.home-section__about .about-block .block-btn {
  text-align: right;
  margin-top: 15px;
}
.home-section__about .about-image {
  width: 73%;
  margin-left: auto;
}

.home-section__event {
  padding: 100px 0;
  background: rgba(171, 189, 206, .45);
}
.home-section__event .section-contents {
  position: relative;
}
.home-section__event .section-header {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.home-section__event .section-header .header-btn {
  position: absolute;
  bottom: 0;
  right: 24px;
}
.home-section__event .section-title {
  font-family: Arial, "Noto Sans JP", sans-serif;
  font-size: 5.5rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.home-section__event .section-title__sub {
  font-weight: 700;
  font-size: 1.8rem;
}

.evenSlider {
  max-width: 704px;
  margin: auto;
  position: static;
}
.evenSlider .slick-list {
  overflow: visible;
  position: static;
}
.evenSlider .slide-item {
  background: #fff;
  margin: 0 12px;
}
.evenSlider .slide-item .item-inner {
  display: block;
  position: relative;
  padding: 20px 20px 80px;
  box-sizing: border-box;
  transition: .3s;
}
.evenSlider .slide-item .item-inner:hover {
  box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, .5);
}
.evenSlider .slide-item .item-inner:hover .item-arrow {
  background-color: #274664;
  background-image: url(../images/common/btn-arrow03.svg);
}
.evenSlider .slide-item .item-image {
  margin-bottom: 15px;
}
.evenSlider .slide-item .item-image img {
  width: 100%;
  height: auto;
}
.evenSlider .slide-item .item-title {
  font-weight: 700;
  color: #274664;
  line-height: 1.5;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 15px;
}
.evenSlider .slide-item .item-title:after {
  content: "";
  width: 80px;
  height: 3px;
  background: #274664;
  position: absolute;
  bottom: 0;
  left: 0;
}
.evenSlider .slide-item .item-text {
  font-size: 1.3rem;
  color: #333;
}
.evenSlider .slide-item .item-foot {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e6e6e6;
}
.evenSlider .slide-item .item-arrow {
  position: absolute;
  transition: .3s;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid #274664;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(../images/common/btn-arrow02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px;
}
.evenSlider .slick-arrow {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  background-color: rgba(39, 70, 100, .9);
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin-top: -29px;
  transition: .3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.evenSlider .slick-arrow:hover {
  opacity: .7;
}
.evenSlider .slick-prev {
  left: 10px;
  background-image: url(../images/common/ico-arrow02.svg);
}
.evenSlider .slick-next {
  right: 10px;
  background-image: url(../images/common/ico-arrow03.svg);
}

.home-section__information {
  padding-top: 100px;
}
.home-section__information .section-header {
  position: relative;
  margin-bottom: 25px;
}
.home-section__information .section-header .header-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.home-section__information .section-title {
  font-family: Arial, "Noto Sans JP", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.home-section__information .section-title__sub {
  font-weight: 700;
  font-size: 1.3rem;
}

.banner-ffp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    /*width: 250px;*/
    width: 125px;
    z-index: 9;
}

.banner-ffp a {
    margin-right: -7px;
}

.BD-home .cmn-section__bnr {
  border-top: none;
  padding-top: 70px;
}

@media only screen and (max-width: 768px) {
  .home-section__mv {
    height: 325px;
  }
  .home-section__mv .mv-lead {
    padding-top: 48px;
  }
  .home-section__mv .mv-lead img {
    width: 80px;
  }
  .home-section__mv .mv-logo {
    top: 15px;
    left: 12px;
  }
  .home-section__about {
    padding: 0;
    background: #fff;
  }
  .home-section__about .section-inner {
    padding: 15px 0 0;
  }
  .home-section__about .about-block {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translateY(0);
    width: calc(100% - 15px);
    padding: 25px;
  }
  .home-section__about .about-block .block-title {
    font-size: 3.9rem;
  }
  .home-section__about .about-block .block-lead {
    font-size: 1.7rem;
  }
  .home-section__about .about-block .block-text {
    font-size: 1.4rem;
  }
  .home-section__about .about-block .block-btn {
    text-align: left;
  }
  .home-section__about .about-image {
    width: 100%;
    position: relative;
    margin-top: -146px;
  }
  .home-section__event {
    padding: 80px 0;
  }
  .home-section__event .section-header {
    text-align: left;
    margin-bottom: 20px;
    padding-left: 40px;
  }
  .home-section__event .section-header .header-btn {
    position: absolute;
    bottom: 0;
    right: 24px;
  }
  .home-section__event .section-title {
    font-size: 4rem;
    margin-bottom: 0;
  }
  .home-section__event .section-title__sub {
    font-size: 1.4rem;
  }
  .home-section__event .btn-more {
    text-align: center;
    margin-top: 30px;
  }
  .evenSlider {
    position: relative;
  }
  .evenSlider .slick-list {
    width: 90%;
  }
  .evenSlider .slide-item {
    margin: 0 0 0 15px;
  }
  .evenSlider .slide-item .item-inner {
    padding: 15px 15px 70px;
  }
  .evenSlider .slide-item .item-image {
    margin-bottom: 15px;
  }
  .evenSlider .slide-item .item-title {
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
  .evenSlider .slide-item .item-title:after {
    height: 2px;
  }
  .evenSlider .slide-item .item-text {
    font-size: 1.4rem;
  }
  .evenSlider .slide-item .item-arrow {
    right: 15px;
    bottom: 15px;
    width: 39px;
    height: 39px;
    border-width: 2px;
    background-size: 23px;
  }
  .evenSlider .slick-arrow {
    top: auto;
    bottom: 100%;
    width: 48px;
    height: 48px;
    margin-top: 0;
    margin-bottom: 20px;
    background-size: 10px;
  }
  .evenSlider .slick-arrow:hover {
    opacity: .7;
  }
  .evenSlider .slick-prev {
    left: auto;
    right: 98px;
  }
  .evenSlider .slick-next {
    right: 40px;
  }
  .home-section__information {
    padding-top: 70px;
  }
  .home-section__information .section-header {
    text-align: center;
    margin-bottom: 35px;
  }
  .home-section__information .section-title {
    font-size: 3.7rem;
  }
  .home-section__information .section-title__sub {
    font-size: 1.4rem;
  }
  .home-section__information .btn-more {
    text-align: center;
    margin-top: 30px;
  }
}

/*------------------------------------------
  about
------------------------------------------*/
.publications-list .list-item {
  position: relative;
}
.publications-list .list-item:last-child {
  margin-bottom: 0;
}

.publications-list .item-category {
  margin-bottom: 10px;
}
.publications-list .item-category span {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.4rem;
  border: 2px solid #274664;
  padding: 0 1em;
}
.publications-list .item-category span:last-child {
  margin-right: 0;
}

.publications-list .item-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
}

.publications-list .item-icon {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 0;
  left: -50px;
  border-radius: 50%;
  background-color: #274664;
  background-repeat: no-repeat;
  background-position: center;
}

.publications-list .item-comment {
  margin-top: 1.5em;
}
.publications-list .item-comment p {
  display: table-cell;
  vertical-align: top;
}
.publications-list .item-comment .comment-label span {
  display: inline-block;
  font-size: 1.3rem;
  width: 90px;
  line-height: 25px;
  background: rgba(171, 189, 206, .45);
  border-radius: 4px;
  text-align: center;
}
.publications-list .item-comment .comment-text {
  color: #333;
  padding-left: 1em;
}

.publications-list .item-btn {
  text-align: right;
  margin-top: 1em;
}
.publications-list .item-btn a {
  margin-left: 15px;
}

.publications-list__type01 .list-item {
  padding-left: 50px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px dotted #999;
}

.publications-list__type01 .item-icon {
  background-image: url(../images/common/ico-book.svg);
  background-size: 16px;
}

.publications-list__type02 .list-item {
  padding-left: 50px;
  margin-bottom: 45px;
}
.publications-list__type02 .list-item:last-child {
  margin-bottom: 0;
}

.publications-list__type02 .item-icon {
  background-image: url(../images/common/ico-pen.svg);
  background-size: 23px;
}

.publications-list__type03 .list-item {
  margin-bottom: 45px;
}
.publications-list__type03 .list-item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .publications-list {
    padding-top: 15px;
  }
  .publications-list .item-category span {
    font-size: 1.3rem;
  }
  .publications-list .item-title {
    font-size: 1.7rem;
    margin-bottom: 3px;
    line-height: 1.6;
  }
  .publications-list .item-lead {
    font-size: 1.5rem;
  }
  .publications-list .item-icon {
    width: 25px;
    height: 25px;
    left: -35px;
  }
  .publications-list .item-comment p {
    display: block;
  }
  .publications-list .item-comment .comment-text {
    padding-left: 0;
    font-size: 1.5rem;
    margin-top: 8px;
    line-height: 1.733;
  }
  .publications-list .item-btn {
    margin-top: 2em;
  }
  .publications-list .item-btn a {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .publications-list .item-btn a:last-child {
    margin-bottom: 0;
  }
  .publications-list__type01 .list-item {
    padding-left: 35px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .publications-list__type01 .item-icon {
    background-size: 11px;
  }
  .publications-list__type02 .list-item {
    padding-left: 35px;
    margin-bottom: 30px;
  }
  .publications-list__type02 .item-icon {
    background-size: 15px;
  }
  .publications-list__type03 .list-item {
    margin-bottom: 30px;
  }
}

/*------------------------------------------
  ffp
------------------------------------------*/
.img__ffpAbout {
  text-align: center;
  padding-top: 15px;
}

.flow-list {
  max-width: 800px;
  margin: auto;
}
.flow-list .list-item {
  padding: 20px;
  display: table;
  width: 100%;
  box-sizing: border-box;
  background: rgba(171, 189, 206, .6);
  margin-bottom: 30px;
  position: relative;
}
.flow-list .list-item:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  margin-left: -9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 9px 0 9px;
  border-color: #274664 transparent transparent transparent;
}
.flow-list .list-item:last-child {
  margin-bottom: 0;
}
.flow-list .list-item:last-child:after {
  content: none;
}
.flow-list .list-item.yellow {
  background: #dadf00;
}
.flow-list .list-item.yellow .item-label {
  width: 108px;
}
.flow-list .list-item p {
  display: table-cell;
  vertical-align: middle;
  font-size: 1.8rem;
  font-weight: 500;
}
.flow-list .list-item .item-label {
  text-align: center;
  width: 254px;
}
.flow-list .list-item .item-label span {
  display: inline-block;
  vertical-align: middle;
  line-height: 40px;
}
.flow-list .list-item .item-label .label01 {
  width: 108px;
  background: #fff;
}
.flow-list .list-item .item-label .label02 {
  background: #274664;
  color: #fff;
  width: 146px;
}
.flow-list .list-item .item-text {
  padding-left: 2em;
}

.constitution-list {
  max-width: 800px;
  margin: auto;
  padding-top: 50px;
}
.constitution-list .list-item {
  margin-bottom: 30px;
}
.constitution-list .list-item:last-child {
  margin-bottom: 0;
}
.constitution-list .list-item .item-head {
  padding: 20px;
  background: rgba(171, 189, 206, .6);
  font-size: 1.8rem;
  font-weight: 500;
  align-items: center;
}
.constitution-list .list-item .item-head .head-label {
  background: #fff;
  text-align: center;
  width: 108px;
  line-height: 40px;
}
.constitution-list .list-item .item-head .head-title {
  width: calc(100% - 108px - 2em);
  margin-left: auto;
}
.constitution-list .list-item .item-text {
  background: #f4f4f9;
  padding: 1.5em;
}

.faq-list {
  margin-top: 55px;
  border-top: 1px solid #e6e6e6;
}
.faq-list .list-item {
  padding: 40px 0 30px;
  border-bottom: 1px solid #e6e6e6;
}
.faq-list .faq-text {
  position: relative;
  padding-left: 55px;
}
.faq-list .faq-text:after {
  content: "";
  width: 38px;
  height: 38px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}
.faq-list .faq-text__q {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 35px;
}
.faq-list .faq-text__q:after {
  background-color: #274664;
  background-image: url(../images/common/ico-q.svg);
}
.faq-list .faq-text__a:after {
  background-color: #fff;
  border: 1px solid #274664;
  background-image: url(../images/common/ico-a.svg);
}

@media only screen and (max-width: 768px) {
  .img__ffpAbout {
    padding-top: 5px;
  }
  .img__ffpAbout img {
    width: 75%;
  }
  .flow-list .list-item {
    padding: 10px 10px 15px;
    display: block;
    margin-bottom: 35px;
    text-align: center;
  }
  .flow-list .list-item:after {
    bottom: -22px;
  }
  .flow-list .list-item.yellow .item-label {
    width: auto;
  }
  .flow-list .list-item p {
    display: block;
    font-size: 1.5rem;
  }
  .flow-list .list-item .item-label {
    width: 100%;
    margin-bottom: 5px;
  }
  .flow-list .list-item .item-label span {
    line-height: 30px;
  }
  .flow-list .list-item .item-label .label01 {
    width: 84px;
  }
  .flow-list .list-item .item-label .label02 {
    width: 138px;
  }
  .flow-list .list-item .item-text {
    padding-left: 0;
  }
  .constitution-list {
    padding-top: 15px;
  }
  .constitution-list .list-item .item-head {
    padding: 10px 10px 15px;
    display: block;
    text-align: center;
    font-size: 1.5rem;
  }
  .constitution-list .list-item .item-head .head-label {
    display: inline-block;
    width: 80px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .constitution-list .list-item .item-head .head-title {
    width: 100%;
    margin-left: 0;
  }
  .faq-list {
    margin-top: 40px;
  }
  .faq-list .list-item {
    padding: 30px 0;
  }
  .faq-list .faq-text {
    padding-left: 35px;
  }
  .faq-list .faq-text:after {
    width: 25px;
    height: 25px;
    background-size: 9px;
    top: 2px;
  }
  .faq-list .faq-text__q {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
}

/*------------------------------------------
  it
------------------------------------------*/
.learning-contents {
  padding: 25px 20px;
}

.learning-block {
  margin-bottom: 35px;
}
.learning-block:last-child {
  margin-bottom: 0;
}
.learning-block .block-title {
  padding-left: 25px;
  position: relative;
  font-weight: bold;
  margin-bottom: .5em;
}
.learning-block .block-title:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}
.learning-block .block-text {
  padding-left: 25px;
  color: #333;
}
.learning-block .block-text a {
  text-decoration: underline;
  color: #2ca6e0;
}

@media only screen and (max-width: 768px) {
  .BD-it .page-nav li:first-child a,
  .BD-ffdp .page-nav li:first-child a {
    font-size: 1.2rem;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .learning-contents {
    padding: 20px 10px;
  }
  .learning-block .block-title {
    padding-left: 20px;
  }
  .learning-block .block-text {
    padding-left: 0;
  }
}

/*------------------------------------------
  tips
------------------------------------------*/
.BD-tips .page-head {
  background-image: url(../images/tips/pagevisual.jpg);
}

@media only screen and (max-width: 768px) {
  .BD-tips .page-head {
    background-image: url(../images/tips/pagevisual-sp.jpg);
  }
}

/*------------------------------------------
  utokyotv
------------------------------------------*/
.movie-list .list-item {
  margin-bottom: 35px;
  position: relative;
  padding-left: 50px;
}
.movie-list .list-item:last-child {
  margin-bottom: 0;
}
.movie-list .list-item:before {
  content: "";
  width: 38px;
  height: 38px;
  background: #274664;
  background-image: url(../images/common/ico-movie.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.movie-list a {
  font-weight: bold;
  color: #2ca6e0;
  font-size: 1.8rem;
  text-decoration: underline;
}
.movie-list a:hover {
  text-decoration: none;
}

.movie-list .year {
  color: #808080;
  font-size: 1.4rem;
}

.movie-list__archive .list-item {
  margin-right: 5%;
  margin-bottom: 5%;
  width: 30%;
}
.movie-list__archive .list-item:nth-child(3n) {
  margin-right: 0;
}

.movie-list__archive .item-inner {
  display: block;
}

.movie-list__archive .item-image {
  margin-bottom: 20px;
}
.movie-list__archive .item-image img {
  height: auto;
}

.movie-list__archive .item-contents {
  border-left: 3px solid #274664;
  padding-left: 12px;
  position: relative;
  padding-bottom: 40px;
}

.movie-list__archive .item-date {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  font-size: 1.4rem;
  color: #808080;
}

.movie-list__archive .item-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1em;
  color: #2ca6e0;
  text-decoration: underline;
  overflow: hidden;
}

.movie-list__archive .item-text {
  margin-bottom: 1em;
}

.movie-list__archive .item-goal .goal-label {
  display: inline-block;
  background: rgba(171, 189, 206, .35);
  padding: 5px 1em;
}

.movie-list__archive .item-goal .goal-text p {
  padding: .5em 0;
  color: #333;
  border-bottom: 1px dotted #ccc;
}
.movie-list__archive .item-goal .goal-text p:last-child {
  border-bottom: none;
}
.movie-list__archive .item-goal .goal-text p:before {
  content: "●";
  color: #274664;
}

@media only screen and (max-width: 768px) {
  .movie-list .list-item {
    margin-bottom: 20px;
    padding-left: 35px;
    line-height: 1.6;
  }
  .movie-list .list-item:before {
    width: 25px;
    height: 25px;
    background-size: 13px;
  }
  .movie-list a {
    font-size: 1.7rem;
  }
  .movie-list .year {
    font-size: 1.3rem;
    display: block;
  }
  .movie-list__archive .list-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .movie-list__archive .list-item:last-child {
    margin-bottom: 0;
  }
  .movie-list__archive .item-contents {
    border-left: none;
    padding-left: 0;
    padding-bottom: 0;
    height: auto !important;
  }
  .movie-list__archive .item-date {
    position: static;
    font-size: 1.2rem;
    margin-top: 1em;
  }
  .movie-list__archive .item-title {
    font-size: 1.7rem;
  }
  .movie-list__archive .item-text {
    color: #333;
  }
  .movie-list__archive .item-goal {
    font-size: 1.3rem;
  }
  .movie-list__archive .item-goal .goal-label {
    margin-bottom: 1em;
    position: relative;
    border-radius: 4px;
  }
  .movie-list__archive .item-goal .goal-label:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 18px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: rgba(171, 189, 206, .35) transparent transparent transparent;
  }
  .movie-list__archive .item-goal .goal-text p {
    border: none;
    padding: 0;
    display: inline;
  }
  .movie-list__archive .item-goal .goal-text p:last-child {
    border-bottom: none;
  }
  .movie-list__archive .item-goal .goal-text p:last-child:after {
    content: none;
  }
  .movie-list__archive .item-goal .goal-text p:before {
    content: none;
  }
  .movie-list__archive .item-goal .goal-text p:after {
    content: "／";
  }
}

/*------------------------------------------
  archives
------------------------------------------*/
/*------------------------------------------
  information
------------------------------------------*/
.BD-information .page-head {
  background-image: url(../images/information/pagevisual.jpg);
}

@media only screen and (max-width: 768px) {
  .BD-information .page-head {
    background-image: url(../images/information/pagevisual-sp.jpg);
  }
}

/*------------------------------------------
  event
------------------------------------------*/
.BD-event .page-head {
  background-image: url(../images/event/pagevisual.jpg);
}

@media only screen and (max-width: 768px) {
  .BD-event .page-head {
    background-image: url(../images/event/pagevisual-sp.jpg);
  }
}

/*------------------------------------------
  policy
------------------------------------------*/
/*------------------------------------------
  privacypolicy
------------------------------------------*/
.policy-lead {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.88;
  margin-bottom: 100px;
}

@media only screen and (max-width: 768px) {
  .policy-lead {
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
}

/*------------------------------------------
  sitemap
------------------------------------------*/
/*------------------------------------------
  visit
------------------------------------------*/
/*------------------------------------------
  contact
------------------------------------------*/
.contents-contact {
  background: #f7f8fa;
  padding: 65px 0 115px;
}
.contents-contact .contents-inner {
  max-width: 490px;
  margin: auto;
}
.contents-contact .form-block {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e6e6e6;
}
.contents-contact .form-block:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.contents-contact .form-block.submit {
  border-top: none;
  padding-top: 0;
  text-align: center;
}
.contents-contact .form-block.submit input {
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #abbdce;
  background-image: url(../images/common/btn-arrow03.svg);
  background-repeat: no-repeat;
  background-position: center right 30px;
  background-size: 35px;
  font-size: 2.3rem;
  letter-spacing: 0;
  position: relative;
  width: 405px;
  max-width: 100%;
  height: 95px;
  font-weight: 500;
  border-radius: 50px;
  transition: .3s;
}
.contents-contact .form-block.submit input:hover {
  background-color: #274664;
}
.contents-contact .form-block .block-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 40px;
}
.contents-contact .form-box {
  margin-bottom: 30px;
}
.contents-contact .form-box:last-child {
  margin-bottom: 0;
}
.contents-contact .form-box .box-title {
  padding-left: 1em;
  margin-bottom: .5em;
}
.contents-contact input[type="text"], .contents-contact input[type="email"] {
  background: #fff;
  width: 100%;
  height: 46px;
  border: 1px solid #274664;
  border-radius: 6px;
  padding: 0 1em;
}
.contents-contact textarea {
  background: #fff;
  width: 100%;
  border: 1px solid #274664;
  border-radius: 6px;
  padding: 1em;
}
.contents-contact .radio {
  padding-left: 1em;
}
.contents-contact .radio input[type="radio"] {
  display: none;
}
.contents-contact .radio .mwform-radio-field {
  display: block;
  margin-bottom: 15px;
  margin-left: 0;
}
.contents-contact .radio .mwform-radio-field:last-child {
  margin-bottom: 0;
}
.contents-contact .radio .mwform-radio-field-text {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 0 20px;
  border-radius: 2px;
  line-height: 1.3;
  color: #333;
}
.contents-contact .radio .mwform-radio-field-text:before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #c8c8c8;
}
.contents-contact .radio input[type="radio"]:checked + .mwform-radio-field-text:after {
  position: absolute;
  content: "";
  top: 7px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #274664;
}
.contents-contact ::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #a0aebb;
}
.contents-contact :-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #a0aebb;
}
.contents-contact ::-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #a0aebb;
}
.contents-contact ::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #a0aebb;
}
.contents-contact .box-caution {
  font-size: 1.3rem;
}
.contents-contact .reset-button {
  font-size: 1.3rem;
  color: #2ca6e0;
  text-decoration: underline;
}

.form-lead__conf {
  display: none;
}

.mw_wp_form_confirm .contents-contact .form-box .box-title {
  padding-left: 0;
}

.mw_wp_form_confirm .contents-contact .radio {
  padding-left: 0;
  margin-bottom: 0;
}

.mw_wp_form_confirm .form-lead__top {
  display: none;
}

.mw_wp_form_confirm .form-lead__conf {
  display: block;
}

.mw_wp_form_confirm .box-caution {
  display: none;
}

@media only screen and (max-width: 768px) {
  .contents-contact {
    padding: 40px 0 60px;
  }
  .contents-contact .form-block.submit input {
    font-size: 2rem;
    height: 56px;
    background-color: #274664;
  }
}

/*------------------------------------------
  ml
------------------------------------------*/
.BD-ml_post .page-head {
  background-image: url(../images/ml/pagevisual.jpg);
}

.ml-form {
  background: #f7f8fa;
  padding: 40px 0;
}
.ml-form__inner {
  max-width: 505px;
  margin: auto;
}
.ml-form label {
  padding-left: 1em;
  margin-bottom: .5em;
  display: block;
}
.ml-form input[type="text"], .ml-form input[type="email"] {
  background: #fff;
  width: 100%;
  height: 46px;
  border: 1px solid #274664;
  border-radius: 6px;
  padding: 0 1em;
}
.ml-form input[type="submit"] {
  color: #fff;
  width: 165px;
  height: 40px;
  border-radius: 60px;
  background: #274664;
  font-weight: bold;
  display: inline-block;
  font-weight: 700;
  margin: 0 6px;
  transition: .3s;
}
.ml-form input[type="submit"]:last-child {
  background: #a3b1be;
}
.ml-form input[type="submit"]:hover {
  opacity: .7;
}
.ml-form p br {
  display: none;
}
.ml-form p {
  margin-bottom: 25px;
}
.ml-form p:last-child {
  margin-bottom: 0;
  text-align: center;
}
.ml-form ::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #a0aebb;
}
.ml-form :-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #a0aebb;
}
.ml-form ::-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #a0aebb;
}
.ml-form ::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #a0aebb;
}

.s2_message {
    text-align: center;
}

@media only screen and (max-width: 768px) {
  .BD-ml_post .page-head {
    background-image: url(../images/ml/pagevisual-sp.jpg);
  }
}

/*------------------------------------------
  mlrequest
------------------------------------------*/