@charset "UTF-8";
/*==============================
	global
==============================*/
.inner {
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
}

.sp_only {
  display: block;
}

.pc_only {
  display: none;
}

.fnt-crimson {
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  color: #314588;
}

.bg-blue {
  background: #e8eaf1;
}

.moreLink {
  text-align: center;
}
.moreLink a {
  line-height: .8;
  display: inline-block;
  font-weight: bold;
}
.moreLink a:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #314588;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.moreLink a:hover:after {
  transform-origin: right top;
  transform: scale(0, 1);
}

.fixedBnr {
  position: fixed;
  bottom: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 98;
}
.fixedBnr div {
  width: 49%;
  transition: .3s;
}
.fixedBnr div:hover {
  opacity: .8;
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }

  .pc_only {
    display: block;
  }

  .fixedBnr {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    bottom: 10%;
  }
  .fixedBnr div {
    width: 100%;
    margin-bottom: 1rem;
  }
}
/*==============================
	header
==============================*/
header {
  width: 100%;
  background: rgba(49, 69, 136, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /*---------------------------
  	mobileHead
  ---------------------------*/
  /*---------------------------
  	overlay&glovalNav
  ---------------------------*/
}
header .inner {
  position: relative;
  padding: 3% 0;
}
header .mobileHead {
  position: relative;
  /*=== toggle ===*/
}
header .mobileHead h1 {
  width: 16%;
}
header .mobileHead .toggle {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8%;
  height: 50%;
  z-index: 999;
  transform: translate(0%, -50%);
}
header .mobileHead .toggle div {
  position: relative;
  height: 100%;
}
header .mobileHead .toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #FFF;
  left: 0;
  transition: transform .6s ease, top .5s ease;
}
header .mobileHead .toggle span:nth-child(1) {
  top: 0;
}
header .mobileHead .toggle span:nth-child(2) {
  top: 50%;
}
header .mobileHead .toggle span:nth-child(3) {
  top: 100%;
}
header .is-hidden {
  overflow: hidden;
  overflow-y: auto;
  /* scrollにはしないことでスクロールの必要がないときはスクロールバーを表示させない */
  -webkit-overflow-scrolling: touch;
}
header .overlay {
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  z-index: 997;
  visibility: hidden;
}
header .overlay .langNav {
  display: none;
}
header .globalNav {
  width: 75%;
  margin: 0 auto;
  padding-top: 20%;
  z-index: 998;
}
header .mainNav li {
  font-weight: bold;
  font-size: 4.8vw;
  margin-bottom: 3%;
}
header .mainNav li a {
  color: #314588;
}
header .langNav {
  width: 30%;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translate(0%, -50%);
}
header .langNav li {
  width: 45%;
  line-height: 2;
  text-align: center;
}
header .langNav li a {
  width: 100%;
  color: #FFF;
  display: inline-block;
  border: solid 1px #FFF;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3);
}

/*==============================
	open(header用)
==============================*/
.open .overlay {
  visibility: visible;
  opacity: 1;
}
.open .mobileHead .toggle span {
  background: #414c80;
}
.open .mobileHead .toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
}
.open .mobileHead .toggle span:nth-child(2) {
  display: none;
}
.open .mobileHead .toggle span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  header {
    /*---------------------------
    	mobileHead
    ---------------------------*/
    /*---------------------------
    	overlay&glovalNav
    ---------------------------*/
  }
  header .inner {
    padding: 1% 0;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
  }
  header .mobileHead {
    width: 8%;
    float: left;
  }
  header .mobileHead h1 {
    width: auto;
  }
  header .mobileHead .toggle {
    display: none;
  }
  header .mobileHead .langNav {
    display: none;
  }
  header .overlay {
    width: 80%;
    float: right;
    background: none;
    position: static;
    opacity: 1;
    visibility: visible;
  }
  header .overlay .langNav {
    display: -ms-flexbox;
    display: flex;
    width: 20%;
    position: static;
    transform: translate(0%, 0%);
  }
  header .overlay .langNav li {
    width: 42%;
    font-size: 1.0714285714vw;
  }
  header .overlay .langNav li a {
    display: block;
    /*padding: 12% 0;*/
  }
  header .globalNav {
    width: auto;
    padding-top: 0;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  header .mainNav {
    width: 80%;
    margin-left: -7%;
    font-size: 0;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  header .mainNav li {
    font-weight: bold;
    font-size: 1.1428571429vw;
    margin-bottom: 0;
    margin-left: 7%;
  }
  header .mainNav li a {
    color: #FFF;
  }
}
@media (min-width: 1400px) {
  header .overlay .langNav {
    font-size: 16px;
  }
  header .mainNav li {
    font-size: 16px;
  }
}
/*==============================
	footer
==============================*/
footer .contactArea {
  background: url("../img/common/footer_contact_bg-sp.jpg") no-repeat center center;
  background-size: cover;
  padding: 10% 0;
  position: relative;
}
footer .contactArea:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/common/shadow.png") repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
footer .contactArea .box {
  position: relative;
  width: 70%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 5% 0;
  z-index: 2;
}
footer .contactArea .box p {
  font-size: 2.6666666667vw;
  font-weight: bold;
  margin-bottom: 2.5%;
}
footer .contactArea .box .tel {
  width: 68%;
  margin: 0 auto;
  margin-bottom: 2.5%;
  position: relative;
}
footer .contactArea .box .tel img {
  display: block;
  width: 100%;
}
footer .contactArea .box .tel:before {
  content: "";
  display: block;
  width: 12%;
  height: 40px;
  background: url("../img/common/tel_ico.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -15%;
  transform: translate(0%, -50%);
}
footer .contactArea .box .note {
  font-size: .8em;
  margin-bottom: 0;
  font-weight: 700;
}
footer .contactArea .box .note small {
  font-weight: normal;
  color: #323232;
}
footer .linkArea {
  background: #314588;
  padding: 4.5% 0 12%;
}
footer .linkArea .links {
  margin-bottom: 3%;
}
footer .linkArea .logo {
  width: 20%;
  margin: 0 auto 8%;
}
footer .linkArea .logo img {
  display: block;
  width: 100%;
}
footer .linkArea .footLink {
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 8%;
  border-top: solid 1px #FFF;
  border-left: solid 1px #FFF;
}
footer .linkArea .footLink li {
  width: calc(100% / 2);
  font-size: 2.1333333333vw;
  text-align: center;
  border-bottom: solid 1px #FFF;
  border-right: solid 1px #FFF;
  box-sizing: border-box;
}
footer .linkArea .footLink li a {
  width: 100%;
  padding: 3% 0;
  color: #FFF;
  display: inline-block;
}
footer .linkArea .sns {
  width: 20%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .linkArea .sns li {
  width: calc((100% / 2) - 12%);
}
footer .linkArea .sns svg {
  fill: #FFF;
}
footer small {
  color: #FFF;
  text-align: center;
  display: block;
}

@media screen and (min-width: 768px) {
  footer .contactArea {
    background: url("../img/common/footer_contact_bg-pc.jpg") no-repeat center center;
    background-size: cover;
    padding: 4% 0;
  }
  footer .contactArea .box {
    width: 42%;
    padding: 3% 0;
    transition: .3s;
  }
  footer .contactArea .box:hover {
    opacity: .8;
  }
  footer .contactArea .box p {
    font-size: 1.4285714286vw;
  }
  footer .contactArea .box .tel {
    width: 60%;
  }
  footer .contactArea .box .note {
    font-size: 1vw;
  }
  footer .linkArea {
    padding: 3% 0 2%;
  }
  footer .linkArea .inner {
    position: relative;
  }
  footer .linkArea .logo {
    width: 8%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  footer .linkArea .links {
    width: 65%;
    margin: 0 0 0 auto;
  }
  footer .linkArea .wrap {
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5%;
    padding-top: 3%;
  }
  footer .linkArea .footLink {
    width: 100%;
    border: none;
    margin-right: 8%;
    margin-bottom: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  footer .linkArea .footLink li {
    width: auto;
    border: none;
    font-size: 1vw;
    border-right: solid 1px #FFF;
    padding: 0 3.5%;
    line-height: 1.0;
  }
  footer .linkArea .footLink li a {
    display: inline-block;
    padding: 0;
  }
  footer .linkArea .footLink li:first-child {
    padding: 0 3.5% 0 0;
  }
  footer .linkArea .footLink li:last-child {
    border-right: none;
    padding: 0 0 0 3.5%;
  }
  footer .linkArea .sns {
    width: 10%;
    margin: 1rem 0 0 0;
  }
  footer .linkArea small {
    text-align: right;
  }
}
@media (min-width: 1400px) {
  footer .linkArea .footLink li {
    font-size: 14px;
  }
}
/*==============================
	pageTop
==============================*/
.pageTop {
  position: fixed;
  bottom: 6%;
  right: 0;
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  background: rgba(49, 69, 136, 0.6);
  z-index: 10;
}
.pageTop:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .pageTop {
    bottom: 0;
  }
}
/*==============================
	layout
==============================*/
.grid {
  flex: none;
}

.grid.gutters {
  margin-left: -4%;
}

.grid.gutters > .col {
  margin-left: 4%;
}

.grid.is-mobile {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.grid.gutters.is-offset {
  margin-left: 0;
}

.grid.gutters.is-offset > .col {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .grid {
    display: -ms-flexbox;
    display: flex;
  }

  .grid.is-mobile > * + * {
    margin-top: 0%;
  }

  .grid.gutters.is-offset {
    margin-left: -4%;
  }

  .grid.gutters.is-offset > .col {
    margin-left: 4%;
  }
}
/*==============================
	column
==============================*/
.is-mb1 {
  width: 8.333333%;
}

.is-mb2 {
  width: calc(8.333333% * 2);
}

.is-mb3 {
  width: calc(8.333333% * 3);
}

.is-mb4 {
  width: calc(8.333333% * 4);
}

.is-mb5 {
  width: calc(8.333333% * 5);
}

.is-mb6 {
  width: calc(8.333333% * 6);
}

.is-mb7 {
  width: calc(8.333333% * 7);
}

.is-mb8 {
  width: calc(8.333333% * 8);
}

.is-mb9 {
  width: calc(8.333333% * 9);
}

.is-mb10 {
  width: calc(8.333333% * 10);
}

.is-mb11 {
  width: calc(8.333333% * 11);
}

.is-mb12 {
  width: 100%;
}

.grid.gutters > .is-mb1 {
  width: calc(8.333333% - 4%);
}

.grid.gutters > .is-mb2 {
  width: calc(8.333333% * 2 - 4%);
}

.grid.gutters > .is-mb3 {
  width: calc(8.333333% * 3 - 4%);
}

.grid.gutters > .is-mb4 {
  width: calc(8.333333% * 4 - 4%);
}

.grid.gutters > .is-mb5 {
  width: calc(8.333333% * 5 - 4%);
}

.grid.gutters > .is-mb6 {
  width: calc(8.333333% * 6 - 4%);
}

.grid.gutters > .is-mb7 {
  width: calc(8.333333% * 7 - 4%);
}

.grid.gutters > .is-mb8 {
  width: calc(8.333333% * 8 - 4%);
}

.grid.gutters > .is-mb9 {
  width: calc(8.333333% * 9 - 4%);
}

.grid.gutters > .is-mb10 {
  width: calc(8.333333% * 10 - 4%);
}

.grid.gutters > .is-mb11 {
  width: calc(8.333333% * 11 - 4%);
}

.grid.gutters > .is-mb12 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .is-pc1 {
    width: 8.333333%;
  }

  .is-pc2 {
    width: calc(8.333333% * 2);
  }

  .is-pc3 {
    width: calc(8.333333% * 3);
  }

  .is-pc4 {
    width: calc(8.333333% * 4);
  }

  .is-pc5 {
    width: calc(8.333333% * 5);
  }

  .is-pc6 {
    width: calc(8.333333% * 6);
  }

  .is-pc7 {
    width: calc(8.333333% * 7);
  }

  .is-pc8 {
    width: calc(8.333333% * 8);
  }

  .is-pc9 {
    width: calc(8.333333% * 9);
  }

  .is-pc10 {
    width: calc(8.333333% * 10);
  }

  .is-pc11 {
    width: calc(8.333333% * 11);
  }

  .is-pc12 {
    width: 100%;
  }

  .grid.gutters > .is-pc1 {
    width: calc(8.333333% - 4%);
  }

  .grid.gutters > .is-pc2 {
    width: calc(8.333333% * 2 - 4%);
  }

  .grid.gutters > .is-pc3 {
    width: calc(8.333333% * 3 - 4%);
  }

  .grid.gutters > .is-pc4 {
    width: calc(8.333333% * 4 - 4%);
  }

  .grid.gutters > .is-pc5 {
    width: calc(8.333333% * 5 - 4%);
  }

  .grid.gutters > .is-pc6 {
    width: calc(8.333333% * 6 - 4%);
  }

  .grid.gutters > .is-pc7 {
    width: calc(8.333333% * 7 - 4%);
  }

  .grid.gutters > .is-pc8 {
    width: calc(8.333333% * 8 - 4%);
  }

  .grid.gutters > .is-pc9 {
    width: calc(8.333333% * 9 - 4%);
  }

  .grid.gutters > .is-pc10 {
    width: calc(8.333333% * 10 - 4%);
  }

  .grid.gutters > .is-pc11 {
    width: calc(8.333333% * 11 - 4%);
  }

  .grid.gutters > .is-pc12 {
    width: 100%;
  }
}
