@charset "UTF-8";
/*******************************
		BASE CODE
*******************************/
.c-linkbtn {
  padding: 0 15px 0;
  margin-bottom: 60px;
}
.c-linkbtn .link_btn_inner {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}
.c-linkbtn .link_btn_inner li {
  margin: 0 auto 30px;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link {
  width: 320px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  background-color: #004080;
  font-size: 1.8rem;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  border: 1px solid #004080;
  text-decoration: none;
  transition: color 0.3s;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link span {
  z-index: 2;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link::after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 35px;
  transform-origin: center;
  transition: border, right 0.3s;
  z-index: 2;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #fff;
  z-index: 1;
  left: -2.5%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  top: -2.5%;
  position: absolute;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link:hover {
  color: #004080;
  transition: color 0.3s;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link:hover::after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #004080;
  border-bottom: 2px solid #004080;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 35px;
  transform-origin: center;
  transition: border, right 0.3s;
  z-index: 2;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link:hover::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #fff;
  z-index: 1;
  left: -2.5%;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s;
  top: -2.5%;
  position: absolute;
}
.c-linkbtn .link_btn_inner li:last-child {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-linkbtn {
    padding: 0 30px 0;
    margin-bottom: 60px;
  }
  .c-linkbtn .link_btn_inner {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }
  .c-linkbtn .link_btn_inner li {
    margin: 0 auto 30px;
  }
  .c-linkbtn .link_btn_inner li .link_btn_inner_link {
    width: 320px;
    height: 80px;
    display: flex;
    justify-content: cenfter;
    align-items: center;
    border-radius: 10px;
    color: #fff;
    background-color: #004080;
    font-size: 2rem;
    line-height: 1.2;
  }
  .c-linkbtn .link_btn_inner li:last-child {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .c-linkbtn {
    padding: 0 60px 0;
    margin-bottom: 100px;
  }
  .c-linkbtn .link_btn_inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  .c-linkbtn .link_btn_inner li {
    margin: 0;
    width: 31%;
  }
  .c-linkbtn .link_btn_inner li .link_btn_inner_link {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .c-linkbtn .link_btn_inner li:last-child {
    margin: 0;
  }
}

.search-input-wrap {
  display: block;
  text-align: center;
  margin: 0 auto 40px;
}
.search-input-wrap #searchform {
  width: auto;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
.search-input-wrap #searchform input {
  border: 1px solid #666666;
  height: 50px;
  width: 320px;
  font-size: 1.6rem;
  padding-left: 8px;
  background-color: #fff;
  padding-right: 40px;
}
.search-input-wrap #searchform input[type=submit] {
  background: url(/common/images/icon-search.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  width: 24px;
  border: none;
  height: 24px;
  bottom: 0;
  margin: auto 0;
  right: 10px;
  background-size: contain;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .search-input-wrap {
    display: block;
    text-align: center;
    margin: 0 auto;
    background-color: #004080;
    padding: 0 0 60px;
  }
}

.mdblock {
  display: block;
}
@media screen and (min-width: 1280px) {
  .mdblock {
    display: none;
  }
}

.lgblock {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lgblock {
    display: block;
  }
}

.xlblock {
  display: none;
}
@media screen and (min-width: 1280px) {
  .xlblock {
    display: block;
  }
}

.morebtn {
  font-family: "Roboto Condensed", sans-serif;
  padding: 20px;
  font-size: 1.8rem;
  text-align: center;
  display: block;
  width: 240px;
  background: #fff;
  color: #4275d4;
  border-radius: 9999px;
  border: 1px solid #fff;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
}
.morebtn:after {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  left: auto;
  top: 33%;
  right: 5%;
  content: "＞";
  margin-right: 10px;
  transform: scalex(0.6);
  display: inline-block;
}
.morebtn:hover {
  background: #4275d4;
  color: #fff;
}

.topabout {
  padding: 20% 0;
  margin-bottom: 15%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topabout {
    padding: 100px 0;
    margin: 320px 0 15% auto;
  }
}
.topabout::after {
  background: #dfecf7;
  height: 100%;
  width: 85%;
  max-width: 1100px;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  z-index: -3;
  border-radius: 60px 0 0 60px;
}
@media screen and (min-width: 1024px) {
  .topabout::after {
    max-width: 100%;
    border-radius: 60px 0 0 60px;
  }
}
.topabout .topabout__textatea__photo {
  width: 85%;
  margin-left: 5%;
  margin-bottom: 5%;
}
@media screen and (min-width: 1024px) {
  .topabout .topabout__textatea__photo {
    position: absolute;
    top: -160px;
    left: 0;
    z-index: -1;
    width: auto;
  }
}
.topabout .topabout__textatea {
  width: 95%;
  margin: auto 0 auto auto;
  padding: 10% 10% 10% 10%;
  border-radius: 30px 0 0 30px;
  background: #61a0d5;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .topabout .topabout__textatea {
    max-width: 60%;
    padding: 85px 0 85px 100px;
  }
}
.topabout .topabout__textatea .topabout__textatea__title {
  color: #fff;
  text-align: left;
}
.topabout .topabout__textatea .topabout__textatea__title span {
  color: #fff;
}
.topabout .topabout__textatea p {
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 10%;
}
@media screen and (min-width: 768px) {
  .topabout .topabout__textatea p {
    font-size: 1.6rem;
  }
  .topabout .topabout__textatea p br.mdblock {
    display: none;
  }
}
.topabout .topabout__textatea .morebtn {
  color: #61a0d5;
}
.topabout .topabout__textatea .morebtn:hover {
  color: #fff;
  background: #61a0d5;
}

.topenviroment {
  padding: 15% 5%;
  margin-bottom: 15%;
  background: #e1e4ed;
}
@media screen and (min-width: 768px) {
  .topenviroment {
    padding: 100px 5%;
  }
}
.topenviroment .topenviroment__textatea__photo {
  width: 100%;
  margin-bottom: 5%;
}
@media screen and (min-width: 1024px) {
  .topenviroment .topenviroment__textatea__photo {
    position: relative;
    z-index: 9;
  }
}
.topenviroment .topenviroment__textatea {
  position: relative;
  background: #5a689d;
  max-width: 1100px;
  margin: auto 0 auto auto;
  padding: 10%;
  border-radius: 30px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .topenviroment .topenviroment__textatea {
    padding: 10% 15%;
  }
}
@media screen and (min-width: 1024px) {
  .topenviroment .topenviroment__textatea {
    margin: auto;
    padding: 90px 75px;
  }
}
.topenviroment .topenviroment__textatea .topenviroment__textatea__title {
  color: #fff;
  text-align: left;
}
.topenviroment .topenviroment__textatea .topenviroment__textatea__title span {
  color: #fff;
  margin-bottom: 2%;
}
.topenviroment .topenviroment__textatea p {
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 10%;
}
@media screen and (min-width: 768px) {
  .topenviroment .topenviroment__textatea p {
    font-size: 1.6rem;
  }
  .topenviroment .topenviroment__textatea p br.mdblock {
    display: none;
  }
}
.topenviroment .topenviroment__textatea .morebtn {
  color: #5a689d;
}
.topenviroment .topenviroment__textatea .morebtn:hover {
  color: #fff;
  background: #5a689d;
}
@media screen and (min-width: 1024px) {
  .topenviroment {
    margin-bottom: 30%;
  }
  .topenviroment .topenviroment__textatea {
    margin: auto;
    padding: 90px 75px;
    position: absolute;
    width: 100%;
    bottom: -45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .topenviroment .topenviroment__textatea p {
    margin: 0;
  }
  .topenviroment .topenviroment__textatea .topenviroment__flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
}
@media screen and (min-width: 1280px) {
  .topenviroment .topenviroment__textatea {
    bottom: -52.5%;
  }
}

.topourwork {
  padding: 20% 0;
  margin-bottom: 15%;
  position: relative;
}
.topourwork img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .topourwork {
    padding: 100px 0;
    margin: auto 0 15% 0;
  }
}
@media screen and (min-width: 1024px) {
  .topourwork {
    margin-bottom: 0%;
  }
}
.topourwork::after {
  background: #d7e2f5;
  height: 100%;
  width: 85%;
  max-width: 1100px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  z-index: -3;
  border-radius: 0 60px 60px 0;
}
@media screen and (min-width: 1024px) {
  .topourwork::after {
    width: 80%;
    max-width: 100%;
    border-radius: 0 60px 60px 0;
    padding: 85px 0 85px 100px;
  }
}
.topourwork .topourwork__textatea__photo {
  width: 85%;
  margin: 0 5% 0 auto;
  margin-bottom: 5%;
}
@media screen and (min-width: 1024px) {
  .topourwork .topourwork__textatea__photo {
    position: absolute;
    top: -160px;
    right: 0;
    z-index: -1;
    width: auto;
  }
}
.topourwork .topourwork__textatea {
  width: 95%;
  margin: auto auto auto 0;
  padding: 5% 10% 10% 10%;
  border-radius: 0 30px 30px 0;
  background: #4275d4;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .topourwork .topourwork__textatea {
    max-width: 60%;
  }
}
.topourwork .topourwork__textatea .topourwork__textatea__title {
  color: #fff;
  text-align: left;
}
.topourwork .topourwork__textatea .topourwork__textatea__title span {
  color: #fff;
}
.topourwork .topourwork__textatea p {
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 10%;
}
@media screen and (min-width: 768px) {
  .topourwork .topourwork__textatea p {
    font-size: 1.6rem;
  }
  .topourwork .topourwork__textatea p br.mdblock {
    display: none;
  }
}
.topourwork .topourwork__textatea .morebtn {
  color: #4275d4;
}
.topourwork .topourwork__textatea .morebtn:hover {
  color: #fff;
}