header.site-head-pc {
  width: 100%;
  display: block;
  padding: 0 50px;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  header.site-head-pc {
    display: none;
  }
}
header.site-head-pc .header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
}
header.site-head-pc .header-inner .logo {
  padding: 15px;
  width: 150px;
}
header.site-head-pc .header-inner .logo img {
  width: 100%;
}
header.site-head-pc .header-inner .header-nav {
  width: calc(100% - 290px);
  padding: 15px 10px;
  box-sizing: border-box;
}
header.site-head-pc .header-inner .header-nav nav.nav-global {
  display: block;
  text-align: center;
}
header.site-head-pc .header-inner .header-nav nav.nav-global ul li {
  padding: 0 2%;
  display: inline-block;
}
header.site-head-pc .header-inner .header-nav nav.nav-global ul li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.site-head-pc .header-inner .header-nav nav.nav-global ul li a::after {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  background: #2e5a8d;
  left: 50%;
  bottom: -2px;
  width: 0px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.site-head-pc .header-inner .header-nav nav.nav-global ul li a:hover {
  color: #2e5a8d;
}
header.site-head-pc .header-inner .header-nav nav.nav-global ul li a:hover::after {
  width: 100%;
  left: 0;
}
header.site-head-pc .header-inner .header-contact {
  width: 65px;
  padding: 0 0 0 105px;
}
header.site-head-pc .header-inner .header-contact a.contact-btn {
  display: flex;
  width: 65px;
  height: 65px;
  background: #92867e;
}

.site-head-sp {
  display: block;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999999;
  border-bottom: 1px solid #dddddd;
}
@media screen and (min-width: 1000px) {
  .site-head-sp {
    display: none;
  }
}
.site-head-sp .header-innner-sp {
  display: flex;
  justify-content: space-between;
  height: 36px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
}
.site-head-sp .header-innner-sp .site-logo-sp {
  width: calc(100% - 60px);
}
.site-head-sp .header-innner-sp .site-logo-sp a {
  text-decoration: none;
}
.site-head-sp .header-innner-sp .site-logo-sp span {
  display: block;
}
.site-head-sp .header-innner-sp .site-logo-sp span.catch {
  font-size: 10px;
  color: #fefefe;
  margin-bottom: 3px;
  font-weight: normal;
}
.site-head-sp .header-innner-sp .site-logo-sp img {
  max-width: 240px;
  width: 100%;
}
.site-head-sp .header-innner-sp .site-navi-icon {
  width: 50px;
}
.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 36px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2e5a8d;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger span:nth-of-type(1) {
  top: 0px;
}
.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger span:nth-of-type(2) {
  top: 16px;
}
.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger span:nth-of-type(3) {
  bottom: 0px;
}
.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(16px) rotate(-45deg);
  transform: translateY(16px) rotate(-45deg);
}
.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}
.site-head-sp .site-nav-sp {
  display: none;
  width: 100%;
  height: calc(100vh - 66px);
  background: rgba(255, 255, 255, 0.8);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-head-sp .site-nav-sp .navi-global-sp {
  display: block;
}
.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list li {
  display: block;
  border-bottom: 1px solid #cccccc;
}
.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list li:first-of-type {
  border-top: 1px solid #cccccc;
}
.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list li a {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 100%;
  font-weight: 200;
  color: #555555;
  padding: 20px;
  font-size: 14px;
}
.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list li a::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 14px;
  right: 20px;
  top: 50%;
  background: url(../images/nav_sp_icon.png) no-repeat left center;
  margin-top: -7px;
}
.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list-sp {
  margin: 25px 0 0 0;
  text-align: center;
}
.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list-sp li {
  display: inline-block;
  margin: 0 15px;
}

.dir2-mainvisual__wrap .visual-set {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 380px;
  padding: 20px;
  box-sizing: border-box;
  background: #c8beb7;
}
.dir2-mainvisual__wrap .visual-set .object-parts__type01 {
  position: absolute;
  left: 0;
  top: 0;
  width: 350px;
}
@media screen and (max-width: 999px) {
  .dir2-mainvisual__wrap .visual-set .object-parts__type01 {
    width: 200px;
  }
}
@media screen and (max-width: 700px) {
  .dir2-mainvisual__wrap .visual-set .object-parts__type01 {
    width: 150px;
  }
}
.dir2-mainvisual__wrap .visual-set .object-parts__type02 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 350px;
}
@media screen and (max-width: 999px) {
  .dir2-mainvisual__wrap .visual-set .object-parts__type02 {
    width: 200px;
  }
}
@media screen and (max-width: 700px) {
  .dir2-mainvisual__wrap .visual-set .object-parts__type02 {
    width: 150px;
  }
}
.dir2-mainvisual__wrap .visual-set .object-parts__center {
  width: 100%;
  max-width: 600px;
}
.dir2-mainvisual__wrap .visual-set .object-parts__center .title-block {
  text-align: center;
  line-height: 1.3;
  color: #fefefe;
}
.dir2-mainvisual__wrap .visual-set .object-parts__center .title-block h1 {
  display: block;
}
.dir2-mainvisual__wrap .visual-set .object-parts__center .title-block h1 span {
  display: block;
}
.dir2-mainvisual__wrap .visual-set .object-parts__center .title-block h1 span.lang-en {
  position: relative;
  font-size: 60px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .dir2-mainvisual__wrap .visual-set .object-parts__center .title-block h1 span.lang-en {
    font-size: 30px;
  }
}
.dir2-mainvisual__wrap .visual-set .object-parts__center .title-block h1 span.lang-en::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: url("../images/title_bottom_bg.png") no-repeat center center;
  bottom: 0px;
  left: 0px;
}
.dir2-mainvisual__wrap .visual-set .object-parts__center .title-block h1 span.lang-jp {
  font-weight: normal;
}

.contents-block__wrap .r-contents-block {
  padding: 100px 40px;
}
@media screen and (max-width: 999px) {
  .contents-block__wrap .r-contents-block {
    padding: 70px 20px;
  }
}
.contents-block__wrap .r-contents-block.bg-type01 {
  background: #f8f5f1;
}
.contents-block__wrap .r-contents-block.bg-type02 {
  background: #f4ede8;
}
.contents-block__wrap .r-contents-block.bg-type03 {
  background-image: url("../images/top/bg_project01.png"), url("../images/top/bg_project02.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left bottom;
  background-size: 16% auto, 20% auto;
}
.contents-block__wrap .r-contents-block .contents-inner.base-wd {
  max-width: 1400px;
  margin: 0 auto;
}
.contents-block__wrap .r-contents-block .contents-inner.min-wd {
  max-width: 1100px;
  margin: 0 auto;
}
.contents-block__wrap .r-contents-block .contents-inner .title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 70px;
}
@media screen and (max-width: 700px) {
  .contents-block__wrap .r-contents-block .contents-inner .title-block {
    display: block;
    margin-bottom: 50px;
  }
}
.contents-block__wrap .r-contents-block .contents-inner .title-block h2 {
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 999px) {
  .contents-block__wrap .r-contents-block .contents-inner .title-block h2 {
    font-size: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  .contents-block__wrap .r-contents-block .contents-inner .title-block .btn-moreinfo {
    text-align: right;
    display: none;
  }
}
.contents-block__wrap .r-contents-block .contents-inner .title-block .btn-moreinfo a {
  position: relative;
  display: inline-block;
  padding: 8px 60px;
  border: 2px solid #2e5a8d;
  color: #2e5a8d;
  line-height: 1.2;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 35px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  .contents-block__wrap .r-contents-block .contents-inner .title-block .btn-moreinfo a {
    font-size: 14px;
    width: 70%;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
  }
}
.contents-block__wrap .r-contents-block .contents-inner .title-block .btn-moreinfo a::after {
  display: block;
  content: url("../images/top/about_btn_arrow.png");
  position: absolute;
  right: 15px;
  top: 50%;
  line-height: 1;
  font-size: 0px;
  margin-top: -6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contents-block__wrap .r-contents-block .contents-inner .title-block .btn-moreinfo a:hover {
  background: #2e5a8d;
  color: #fefefe;
}
.contents-block__wrap .r-contents-block .contents-inner .title-block .btn-moreinfo a:hover::after {
  right: 10px;
}

footer.site-footer {
  background: #f4ede8;
  padding: 80px 0;
}
footer.site-footer .footer-contact-block {
  padding: 100px 40px 200px 40px;
  background: url("../images/footer_bg.png") no-repeat right center;
  background-size: auto 100%;
}
@media screen and (max-width: 999px) {
  footer.site-footer .footer-contact-block {
    padding: 80px 20px 150px 20px;
    background-size: auto 30%;
  }
}
footer.site-footer .footer-contact-block h5 {
  line-height: 1.5;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (max-width: 999px) {
  footer.site-footer .footer-contact-block h5 {
    font-size: 20px;
  }
}
footer.site-footer .footer-contact-block .read-text {
  line-height: 1.5;
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 999px) {
  footer.site-footer .footer-contact-block .read-text {
    font-size: 14px;
    text-align: left;
  }
}
footer.site-footer .footer-contact-block .btn-block-large {
  max-width: 1000px;
  margin: 0 auto;
}
footer.site-footer .footer-contact-block .btn-block-large a {
  position: relative;
  display: block;
  padding: 30px 20px;
  font-size: 50px;
  color: #2e5a8d;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: 5px solid #2e5a8d;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 999px) {
  footer.site-footer .footer-contact-block .btn-block-large a {
    font-size: 40px;
  }
}
@media screen and (max-width: 700px) {
  footer.site-footer .footer-contact-block .btn-block-large a {
    font-size: 20px;
    padding: 30px 10px;
  }
}
footer.site-footer .footer-contact-block .btn-block-large a::after {
  display: block;
  content: url("../images/top/about_btn_arrow.png");
  position: absolute;
  right: 25px;
  top: 50%;
  line-height: 1;
  font-size: 0px;
  margin-top: -6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer.site-footer .footer-contact-block .btn-block-large a:hover {
  background: #2e5a8d;
  color: #fefefe;
}
footer.site-footer .footer-contact-block .btn-block-large a:hover::after {
  right: 15px;
}
footer.site-footer .footer-information {
  padding: 0 40px;
}
@media screen and (max-width: 999px) {
  footer.site-footer .footer-information {
    padding: 0 20px;
  }
}
footer.site-footer .footer-information h6 {
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  footer.site-footer .footer-information h6 {
    text-align: center;
  }
}
footer.site-footer .footer-information h6 img {
  width: 200px;
}
footer.site-footer .footer-information .sns-link {
  padding-bottom: 20px;
}
footer.site-footer .footer-information .sns-link ul {
  display: flex;
}
@media screen and (max-width: 700px) {
  footer.site-footer .footer-information .sns-link ul {
    justify-content: center;
  }
}
footer.site-footer .footer-information .sns-link ul li {
  margin: 0 15px 0 0;
}
footer.site-footer .footer-information .sns-link ul li a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer.site-footer .footer-information .sns-link ul li a:hover {
  opacity: 0.7;
}
footer.site-footer .footer-information .footer-navlist {
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  footer.site-footer .footer-information .footer-navlist {
    display: none;
  }
}
footer.site-footer .footer-information .footer-navlist ul {
  display: flex;
}
@media screen and (max-width: 700px) {
  footer.site-footer .footer-information .footer-navlist ul {
    display: block;
  }
}
footer.site-footer .footer-information .footer-navlist ul li {
  display: block;
  padding: 0 10px;
  border-left: 1px solid #999999;
}
footer.site-footer .footer-information .footer-navlist ul li:first-of-type {
  padding-left: 0;
  border-left: none;
}
footer.site-footer .footer-information .footer-navlist ul li a {
  color: #333333;
  text-decoration: none;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer.site-footer .footer-information .footer-navlist ul li a:hover {
  color: #2e5a8d;
}
footer.site-footer .footer-information p.copyright {
  line-height: 1.5;
  font-size: 14px;
  color: #666666;
}
@media screen and (max-width: 700px) {
  footer.site-footer .footer-information p.copyright {
    text-align: center;
    font-size: 12px;
  }
}

.top-mainvisual__wrap .visual-set {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 750px;
  padding: 20px;
  box-sizing: border-box;
  background: #c8beb7;
}
.top-mainvisual__wrap .visual-set .object-parts__type01 {
  position: absolute;
  left: 0;
  top: 0;
  width: 350px;
}
@media screen and (max-width: 999px) {
  .top-mainvisual__wrap .visual-set .object-parts__type01 {
    width: 200px;
  }
}
@media screen and (max-width: 700px) {
  .top-mainvisual__wrap .visual-set .object-parts__type01 {
    width: 150px;
  }
}
.top-mainvisual__wrap .visual-set .object-parts__type02 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 350px;
}
@media screen and (max-width: 999px) {
  .top-mainvisual__wrap .visual-set .object-parts__type02 {
    width: 200px;
  }
}
@media screen and (max-width: 700px) {
  .top-mainvisual__wrap .visual-set .object-parts__type02 {
    width: 150px;
  }
}
.top-mainvisual__wrap .visual-set .object-parts__center {
  width: 100%;
  max-width: 600px;
}
.top-mainvisual__wrap .visual-set .object-parts__center h2 {
  margin-bottom: 50px;
  text-align: center;
}
.top-mainvisual__wrap .visual-set .object-parts__center .vs-btn__wrap {
  padding: 0 50px;
}
.top-mainvisual__wrap .visual-set .object-parts__center .vs-btn__wrap a {
  position: relative;
  display: block;
  font-size: 26px;
  border: 2px solid #fefefe;
  line-height: 1.5;
  box-sizing: border-box;
  color: #fefefe;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  .top-mainvisual__wrap .visual-set .object-parts__center .vs-btn__wrap a {
    font-size: 18px;
  }
}
.top-mainvisual__wrap .visual-set .object-parts__center .vs-btn__wrap a::after {
  display: block;
  content: url("../images/icon_arrow.png");
  position: absolute;
  right: 25px;
  top: 50%;
  line-height: 1;
  font-size: 0px;
  margin-top: -7px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-mainvisual__wrap .visual-set .object-parts__center .vs-btn__wrap a:hover {
  background: #2e5a8d;
  border: 2px solid #2e5a8d;
}
.top-mainvisual__wrap .visual-set .object-parts__center .vs-btn__wrap a:hover::after {
  right: 15px;
}

.about-block {
  display: block;
  background: url("../images/top/about_bg.png") no-repeat right 50px;
  background-size: 48% auto;
}
@media screen and (max-width: 999px) {
  .about-block {
    background: none !important;
  }
}
.about-block h2 {
  display: block;
  line-height: 1.2;
  font-size: 60px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1399px) {
  .about-block h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 999px) {
  .about-block h2 {
    font-size: 30px;
  }
}
.about-block .text-block {
  line-height: 1.7;
  max-width: 50%;
  padding-bottom: 30px;
}
@media screen and (max-width: 1399px) {
  .about-block .text-block {
    max-width: 60%;
  }
}
@media screen and (max-width: 700px) {
  .about-block .text-block {
    max-width: 100%;
  }
}
.about-block .text-block p {
  margin-bottom: 32px;
  font-size: 18px;
  color: #555555;
}
@media screen and (max-width: 999px) {
  .about-block .text-block p {
    font-size: 14px;
  }
}
.about-block .text-block p.tl {
  font-size: 30px;
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 999px) {
  .about-block .text-block p.tl {
    font-size: 20px;
  }
}
.about-block .about-btn {
  padding-bottom: 40px;
}
.about-block .about-btn a {
  position: relative;
  display: inline-block;
  padding: 15px 90px;
  border: 2px solid #2e5a8d;
  color: #2e5a8d;
  line-height: 1.2;
  font-size: 23px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 35px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  .about-block .about-btn a {
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 18px;
  }
}
.about-block .about-btn a::after {
  display: block;
  content: url("../images/top/about_btn_arrow.png");
  position: absolute;
  right: 25px;
  top: 50%;
  line-height: 1;
  font-size: 0px;
  margin-top: -6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-block .about-btn a:hover {
  background: #2e5a8d;
  color: #fefefe;
}
.about-block .about-btn a:hover::after {
  right: 15px;
}

.news-block .news-postlist__wrap article {
  display: flex;
  margin: 0 0 20px;
  line-height: 1.4;
}
@media screen and (max-width: 700px) {
  .news-block .news-postlist__wrap article {
    display: block;
  }
}
.news-block .news-postlist__wrap article .post-left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  background: #2e5a8d;
}
@media screen and (max-width: 700px) {
  .news-block .news-postlist__wrap article .post-left {
    display: block;
    width: 100%;
    padding: 5px;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
}
.news-block .news-postlist__wrap article .post-left span.post-dates {
  color: #fefefe;
}
.news-block .news-postlist__wrap article .post-right {
  width: calc(100% - 130px);
  padding: 5px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #2e5a8d;
}
@media screen and (max-width: 700px) {
  .news-block .news-postlist__wrap article .post-right {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    border: none;
  }
}
.news-block .news-postlist__wrap article .post-right h5.post-title {
  display: block;
  font-weight: normal;
  margin: 0 0 5px;
}
.news-block .news-postlist__wrap article .post-right h5.post-title a {
  text-decoration: none;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-block .news-postlist__wrap article .post-right h5.post-title a:hover {
  color: #2e5a8d;
  text-decoration: underline;
}
@media screen and (max-width: 999px) {
  .news-block .news-postlist__wrap article .post-right h5.post-title a {
    font-size: 14px;
  }
}
.news-block .news-postlist__wrap article .post-right .post-categorylist ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .news-block .news-postlist__wrap article .post-right .post-categorylist ul {
    justify-content: flex-end;
  }
}
.news-block .news-postlist__wrap article .post-right .post-categorylist ul li {
  margin-right: 10px;
}
.news-block .news-postlist__wrap article .post-right .post-categorylist ul li:last-of-type {
  margin-right: 0;
}
.news-block .news-postlist__wrap article .post-right .post-categorylist ul li span {
  display: inline-block;
  font-size: 12px;
  border: 1px solid #f1b991;
  color: #df803a;
  padding: 2px 10px;
  border-radius: 3px;
}

.work-block .works-list__wrap .workslist__role {
  display: flex;
  clear: both;
  margin-bottom: 50px;
}
@media screen and (max-width: 700px) {
  .work-block .works-list__wrap .workslist__role {
    display: block;
  }
}
.work-block .works-list__wrap .workslist__role .works-title {
  width: 160px;
}
@media screen and (max-width: 700px) {
  .work-block .works-list__wrap .workslist__role .works-title {
    width: 120px;
    margin: 0 auto 20px auto;
  }
}
.work-block .works-list__wrap .workslist__role .works-title h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  padding: 20px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 80px 0 0 80px;
  position: sticky;
  top: 50px;
}
@media screen and (max-width: 700px) {
  .work-block .works-list__wrap .workslist__role .works-title h3 {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    font-size: 14px;
  }
}
.work-block .works-list__wrap .workslist__role .works-title h3 span.icon_wrap {
  text-align: center;
}
.work-block .works-list__wrap .workslist__role .works-title h3 span.icon_wrap span.icons {
  display: block;
  margin-bottom: 10px;
}
.work-block .works-list__wrap .workslist__role .works-title h3 span.icon_wrap span.icons img {
  width: 50%;
}
.work-block .works-list__wrap .workslist__role .workslist-block {
  width: calc(100% - 160px);
  clear: both;
}
@media screen and (max-width: 700px) {
  .work-block .works-list__wrap .workslist__role .workslist-block {
    width: 100%;
  }
}
.work-block .works-list__wrap .workslist__role .workslist-block ul {
  display: flex;
  flex-wrap: wrap;
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li {
  display: block;
  width: 32%;
  margin: 0 2% 2% 0;
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li:nth-of-type(3n) {
  margin: 0 0 2% 0;
}
@media screen and (max-width: 999px) {
  .work-block .works-list__wrap .workslist__role .workslist-block ul li {
    width: 49%;
    margin: 0 2% 2% 0 !important;
  }
  .work-block .works-list__wrap .workslist__role .workslist-block ul li:nth-of-type(even) {
    margin: 0 0 2% 0 !important;
  }
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a {
  display: block;
  text-decoration: none;
  color: #fefefe;
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a figure {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #2e5a8d;
  line-height: 0;
  font-size: 0px;
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a figure img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a figure figcaption {
  position: absolute;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  top: 45%;
  left: 0;
  margin-top: -1em;
  font-size: 20px;
  letter-spacing: 5px;
  opacity: 0;
  transition: all .3s ease-out .2s;
  text-align: center;
  line-height: 1.5;
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a figure figcaption p {
  line-height: 1.2;
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a figure figcaption p.w_ttl {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px;
}
@media screen and (max-width: 999px) {
  .work-block .works-list__wrap .workslist__role .workslist-block ul li a figure figcaption p.w_ttl {
    font-size: 14px;
  }
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a figure figcaption p.w_dptn {
  font-size: 14px;
}
@media screen and (max-width: 999px) {
  .work-block .works-list__wrap .workslist__role .workslist-block ul li a figure figcaption p.w_dptn {
    font-size: 10px;
  }
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a figure::after {
  position: absolute;
  /*border: solid 1px #777;*/
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transform: scale(1, 1);
  transition: all .3s ease-out;
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a figure:hover img {
  opacity: 0.1;
  transform: scale(1.3);
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a figure:hover::after {
  opacity: 1;
  transform: scale(0.92, 0.88);
}
.work-block .works-list__wrap .workslist__role .workslist-block ul li a figure:hover figcaption {
  letter-spacing: 1px;
  opacity: 1;
}

.project-block .project-list {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 700px) {
  .project-block .project-list {
    display: block;
  }
}
.project-block .project-list .project-each {
  margin: 0 30px;
  max-width: 320px;
}
@media screen and (max-width: 700px) {
  .project-block .project-list .project-each {
    margin: 0 auto 45px auto;
  }
}
.project-block .project-list .project-each .thumb {
  margin-bottom: 20px;
}
.project-block .project-list .project-each .thumb img {
  width: 100%;
  border-radius: 160px;
}
.project-block .project-list .project-each h4 {
  display: block;
  text-align: center;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 12px;
}
@media screen and (max-width: 999px) {
  .project-block .project-list .project-each h4 {
    font-size: 18px;
  }
}
.project-block .project-list .project-each .infotext {
  text-align: center;
}
.project-block .project-list .project-each .infotext span {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 20px;
  color: #92867e;
  border: 2px solid #92867e;
  line-height: 1.2;
}
@media screen and (max-width: 999px) {
  .project-block .project-list .project-each .infotext span {
    font-size: 14px;
  }
}

.works-contents__dir2 {
  padding: 70px 0;
}
.works-contents__dir2 .works-sortlist {
  margin-bottom: 70px;
}
.works-contents__dir2 .works-sortlist nav.works-btnlist {
  display: block;
  text-align: center;
}
.works-contents__dir2 .works-sortlist nav.works-btnlist ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.works-contents__dir2 .works-sortlist nav.works-btnlist ul li {
  display: block;
  line-height: 1.5;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  margin: 0 10px;
  padding: 5px 25px;
  border: 2px solid #aaaaaa;
  border-radius: 20px;
  color: #555555;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 999px) {
  .works-contents__dir2 .works-sortlist nav.works-btnlist ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  .works-contents__dir2 .works-sortlist nav.works-btnlist ul li {
    word-wrap: break-word;
    width: 48%;
    margin: 1%;
    box-sizing: border-box;
    font-size: 12px;
    padding: 13px 5px;
    border-radius: 35px;
  }
}
.works-contents__dir2 .works-sortlist nav.works-btnlist ul li:hover {
  background: #2e5a8d;
  color: #fefefe;
  border: 2px solid #2e5a8d;
}
.works-contents__dir2 .works-list__wrap__dir2 {
  display: flex;
  flex-wrap: wrap;
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row {
  display: block;
  width: 25%;
  padding: 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .works-contents__dir2 .works-list__wrap__dir2 .works-row {
    width: 50%;
    padding: 5px;
  }
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a {
  display: block;
  text-decoration: none;
  color: #fefefe;
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a figure {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #2e5a8d;
  line-height: 0;
  font-size: 0px;
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a figure img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a figure figcaption {
  position: absolute;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  top: 45%;
  left: 0;
  margin-top: -1em;
  font-size: 20px;
  letter-spacing: 5px;
  opacity: 0;
  transition: all .3s ease-out .2s;
  text-align: center;
  line-height: 1.5;
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a figure figcaption p {
  line-height: 1.2;
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a figure figcaption p.w_ttl {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px;
}
@media screen and (max-width: 999px) {
  .works-contents__dir2 .works-list__wrap__dir2 .works-row a figure figcaption p.w_ttl {
    font-size: 14px;
  }
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a figure figcaption p.w_dptn {
  font-size: 14px;
}
@media screen and (max-width: 999px) {
  .works-contents__dir2 .works-list__wrap__dir2 .works-row a figure figcaption p.w_dptn {
    font-size: 10px;
  }
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a figure::after {
  position: absolute;
  /*border: solid 1px #777;*/
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transform: scale(1, 1);
  transition: all .3s ease-out;
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a figure:hover img {
  opacity: 0.1;
  transform: scale(1.3);
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a figure:hover::after {
  opacity: 1;
  transform: scale(0.92, 0.88);
}
.works-contents__dir2 .works-list__wrap__dir2 .works-row a figure:hover figcaption {
  letter-spacing: 1px;
  opacity: 1;
}
.works-contents__dir2 .works-single {
  display: block;
  padding: 0 20px;
}
.works-contents__dir2 .works-single header.works-head__single {
  margin-bottom: 50px;
  text-align: center;
}
.works-contents__dir2 .works-single header.works-head__single .w-title-block {
  margin-bottom: 50px;
}
.works-contents__dir2 .works-single header.works-head__single .w-title-block h2 {
  font-size: 32px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 5px;
}
.works-contents__dir2 .works-single header.works-head__single .w-title-block p.category {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #df7f39;
}
.works-contents__dir2 .works-single header.works-head__single .w-title-block p.site-url {
  line-height: 1.3;
  color: #5681b3;
}
.works-contents__dir2 .works-single header.works-head__single .w-title-block p.site-url a {
  color: #5681b3;
}
.works-contents__dir2 .works-single header.works-head__single .w-title-block p.site-url a:hover {
  text-decoration: none;
}
.works-contents__dir2 .works-single header.works-head__single .w-title-block p.site-url i {
  margin-left: 5px;
}
.works-contents__dir2 .works-single header.works-head__single .main-visual {
  max-width: 1340px;
  margin: 0 auto;
}
.works-contents__dir2 .works-single header.works-head__single .main-visual img {
  width: 100%;
}
.works-contents__dir2 .works-single .works-post-contents .read-block {
  max-width: 1340px;
  margin: 0 auto 50px auto;
  line-height: 1.5;
  text-align: center;
}
.works-contents__dir2 .works-single .works-post-contents .thumb-list {
  max-width: 1024px;
  margin: 0 auto;
  padding: 50px;
}
.works-contents__dir2 .works-single .works-post-contents .thumb-list ul {
  display: block;
}
.works-contents__dir2 .works-single .works-post-contents .thumb-list ul li {
  display: block;
  margin-bottom: 30px;
  border: 1px solid #dddddd;
}
.works-contents__dir2 .works-single .works-post-contents .thumb-list ul li img {
  width: 100%;
}
.works-contents__dir2 .works-single .works-post-contents .works-credit {
  max-width: 1024px;
  margin: 0 auto;
}
.works-contents__dir2 .works-single .works-post-contents .works-credit table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.5;
  font-size: 14px;
}
.works-contents__dir2 .works-single .works-post-contents .works-credit table tbody tr {
  border-bottom: 1px solid #cccccc;
}
.works-contents__dir2 .works-single .works-post-contents .works-credit table tbody tr:first-of-type {
  border-top: 1px solid #cccccc;
}
.works-contents__dir2 .works-single .works-post-contents .works-credit table tbody tr th {
  width: 130px;
  padding: 15px 0;
  text-align: left;
}
.works-contents__dir2 .works-single .works-post-contents .works-credit table tbody tr td {
  padding: 15px 0;
  text-align: left;
}

.btn-moreinfo-sp {
  display: none;
  margin-top: 50px;
}
@media screen and (max-width: 700px) {
  .btn-moreinfo-sp {
    display: block;
  }
}
.btn-moreinfo-sp a {
  position: relative;
  display: inline-block;
  padding: 15px 90px;
  border: 2px solid #2e5a8d;
  color: #2e5a8d;
  line-height: 1.2;
  font-size: 23px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 35px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  .btn-moreinfo-sp a {
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 18px;
  }
}
.btn-moreinfo-sp a::after {
  display: block;
  content: url("../images/top/about_btn_arrow.png");
  position: absolute;
  right: 25px;
  top: 50%;
  line-height: 1;
  font-size: 0px;
  margin-top: -6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-moreinfo-sp a:hover {
  background: #2e5a8d;
  color: #fefefe;
}
.btn-moreinfo-sp a:hover::after {
  right: 15px;
}

.privacy__block {
  line-height: 1.5;
  font-size: 16px;
}
@media screen and (max-width: 700px) {
  .privacy__block {
    font-size: 14px;
  }
}
.privacy__block .read-text {
  margin-bottom: 50px;
}
.privacy__block > dl {
  display: block;
  padding: 30px 0;
  border-bottom: 1px solid #cccccc;
}
.privacy__block > dl dt {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .privacy__block > dl dt {
    font-size: 18px;
  }
}
.privacy__block > dl dd {
  display: block;
}
.privacy__block > dl dd ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.privacy__block p.signiture {
  text-align: right;
  margin-top: 20px;
}

.contact-block .read-block {
  line-height: 1.5;
  font-size: 16px;
  text-align: center;
}
.contact-block .form-block__wrap .form-block {
  margin-bottom: 30px;
}
.contact-block .form-block__wrap .form-block .form-term {
  display: block;
  margin-bottom: 35px;
}
.contact-block .form-block__wrap .form-block .form-term legend {
  display: none;
}
.contact-block .form-block__wrap .form-block .form-term p.term-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #555555;
}
@media screen and (max-width: 999px) {
  .contact-block .form-block__wrap .form-block .form-term p.term-title {
    font-size: 14px;
  }
}
.contact-block .form-block__wrap .form-block .form-term p.term-title span.must-input {
  display: inline-block;
  margin-left: 10px;
  background: #ff0000;
  padding: 3px 10px;
  color: #fefefe;
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 999px) {
  .contact-block .form-block__wrap .form-block .form-term p.term-title span.must-input {
    font-size: 12px;
  }
}
.contact-block .form-block__wrap .form-block .form-term .term-input input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #aaaaaa;
  padding: 15px;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .contact-block .form-block__wrap .form-block .form-term .term-input input {
    padding: 10px;
  }
}
.contact-block .form-block__wrap .form-block .form-term .term-input select {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 5px;
  border: 1px solid #aaaaaa;
  padding: 15px;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .contact-block .form-block__wrap .form-block .form-term .term-input select {
    padding: 10px;
  }
}
.contact-block .form-block__wrap .form-block .form-term .term-input textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 300px;
  border-radius: 5px;
  border: 1px solid #aaaaaa;
  padding: 15px;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .contact-block .form-block__wrap .form-block .form-term .term-input textarea {
    padding: 10px;
  }
}
.contact-block .form-block__wrap .privacy-text {
  text-align: center;
  color: #555555;
  font-size: 14px;
  margin-bottom: 35px;
  line-height: 1.5;
}
.contact-block .form-block__wrap .form-btnlist .btn-submit {
  text-align: center;
}
.contact-block .form-block__wrap .form-btnlist .btn-submit input {
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
  font-size: 20px;
  color: #fefefe;
  text-decoration: none;
  background: #e0803a;
  padding: 15px 50px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 999px) {
  .contact-block .form-block__wrap .form-btnlist .btn-submit input {
    width: 100%;
    padding: 15px 5px;
    box-sizing: border-box;
    font-size: 18px;
  }
}
.contact-block .form-block__wrap .form-btnlist .btn-submit input:hover {
  opacity: 0.7;
}

.about-block_dir2 .pre-read {
  line-height: 1.5;
  margin-bottom: 70px;
}
.about-block_dir2 .pre-read .p-title-block {
  margin-bottom: 40px;
  text-align: center;
}
.about-block_dir2 .pre-read .p-title-block h3 {
  font-size: 60px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 999px) {
  .about-block_dir2 .pre-read .p-title-block h3 {
    font-size: 28px;
  }
}
.about-block_dir2 .pre-read .p-title-block p {
  font-size: 30px;
  color: #2e5a8d;
  font-weight: 500;
}
@media screen and (max-width: 999px) {
  .about-block_dir2 .pre-read .p-title-block p {
    font-size: 20px;
  }
}
.about-block_dir2 .pre-read .p-title-block p span {
  color: #df803a;
}
.about-block_dir2 .pre-read .read-text p {
  text-align: center;
  margin-bottom: 1.5em;
  line-height: 1.8;
  font-size: 20px;
}
@media screen and (max-width: 999px) {
  .about-block_dir2 .pre-read .read-text p {
    font-size: 16px;
  }
}
.about-block_dir2 .pre-read .read-text p:last-of-type {
  margin-bottom: 0;
}
.about-block_dir2 .about-service .p-title-block {
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.5;
}
.about-block_dir2 .about-service .p-title-block h4 {
  font-size: 40px;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 999px) {
  .about-block_dir2 .about-service .p-title-block h4 {
    font-size: 28px;
  }
}
.about-block_dir2 .about-service .p-title-block p {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 999px) {
  .about-block_dir2 .about-service .p-title-block p {
    font-size: 16px;
  }
}
.about-block_dir2 .about-service .service-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media screen and (max-width: 700px) {
  .about-block_dir2 .about-service .service-list {
    display: block;
    margin-bottom: 40px;
  }
}
.about-block_dir2 .about-service .service-list .row {
  width: calc(100% / 3);
  padding: 0 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 700px) {
  .about-block_dir2 .about-service .service-list .row {
    width: 100%;
    padding: 0 0 25px 0;
  }
}
.about-block_dir2 .about-service .service-list .row .photo-block img {
  width: 100%;
}
.about-block_dir2 .about-service .service-list .row .text-block {
  padding: 10px 20px;
  line-height: 1.5;
}
.about-block_dir2 .about-service .service-list .row .text-block h5 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.about-block_dir2 .about-service .service-list .row .text-block .text {
  font-size: 14px;
}
.about-block_dir2 .about-service .flow-list dl.row {
  display: flex;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .about-block_dir2 .about-service .flow-list dl.row {
    display: block;
  }
}
.about-block_dir2 .about-service .flow-list dl.row dt {
  display: flex;
  align-items: center;
  width: 360px;
  padding: 30px;
  box-sizing: border-box;
  background: #2e5a8d;
  min-height: 200px;
}
@media screen and (max-width: 999px) {
  .about-block_dir2 .about-service .flow-list dl.row dt {
    width: 250px;
  }
}
@media screen and (max-width: 700px) {
  .about-block_dir2 .about-service .flow-list dl.row dt {
    display: block;
    width: 100%;
    padding: 10px;
    min-height: auto;
  }
}
.about-block_dir2 .about-service .flow-list dl.row dt .tl {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
}
@media screen and (max-width: 999px) {
  .about-block_dir2 .about-service .flow-list dl.row dt .tl {
    font-size: 16px;
  }
}
.about-block_dir2 .about-service .flow-list dl.row dt .tl span {
  display: inline-block;
  vertical-align: middle;
  color: #7da7d7;
  font-size: 40px;
  margin-right: 15px;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 999px) {
  .about-block_dir2 .about-service .flow-list dl.row dt .tl span {
    font-size: 22px;
  }
}
.about-block_dir2 .about-service .flow-list dl.row dd {
  display: block;
  width: calc(100% - 360px);
  padding: 30px;
  background: #ffffff;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .about-block_dir2 .about-service .flow-list dl.row dd {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 700px) {
  .about-block_dir2 .about-service .flow-list dl.row dd {
    display: block;
    width: 100%;
    padding: 10px;
    min-height: auto;
  }
}
.about-block_dir2 .about-service .flow-list dl.row dd p {
  font-size: 14px;
}
.about-block_dir2 .about-service .flow-list dl.row dd p.notes {
  text-indent: -1em;
  padding-left: 1em;
}
.about-block_dir2 .about-service .member-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .about-block_dir2 .about-service .member-list {
    display: block;
  }
}
.about-block_dir2 .about-service .member-list .row {
  width: 360px;
  padding: 25px;
  box-sizing: border-box;
  background: #faf8f6;
  margin: 10px;
}
@media screen and (max-width: 700px) {
  .about-block_dir2 .about-service .member-list .row {
    width: 100%;
    margin: 45px 0;
    padding: 15px;
  }
}
.about-block_dir2 .about-service .member-list .row .icon-block {
  position: relative;
  text-align: center;
  top: -50px;
}
.about-block_dir2 .about-service .member-list .row .icon-block img {
  max-width: 100%;
}
.about-block_dir2 .about-service .member-list .row .text-block {
  line-height: 1.5;
}
.about-block_dir2 .about-service .member-list .row .text-block .name-set {
  margin-top: -30px;
  text-align: center;
  margin-bottom: 25px;
}
.about-block_dir2 .about-service .member-list .row .text-block .name-set p.jp {
  font-size: 22px;
  font-weight: bold;
}
.about-block_dir2 .about-service .member-list .row .text-block .name-set p.en {
  font-size: 16px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #666666;
  margin-bottom: 7px;
}
.about-block_dir2 .about-service .member-list .row .text-block .name-set p.type {
  font-size: 14px;
  font-weight: bold;
}
.about-block_dir2 .about-service .member-list .row .text-block .name-set p.type span {
  padding: 2px 5px;
  color: #fefefe;
  background: #61b9c3;
}
.about-block_dir2 .about-service .member-list .row .text-block .exp p {
  line-height: 1.7;
  font-size: 13px;
  color: #666666;
}
.about-block_dir2 .about-service .btn-block {
  text-align: center;
}
.about-block_dir2 .about-service .btn-block a {
  position: relative;
  display: inline-block;
  padding: 15px 90px;
  border: 2px solid #2e5a8d;
  color: #2e5a8d;
  line-height: 1.2;
  font-size: 23px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 35px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  .about-block_dir2 .about-service .btn-block a {
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 18px;
  }
}
.about-block_dir2 .about-service .btn-block a::after {
  display: block;
  content: url("../images/top/about_btn_arrow.png");
  position: absolute;
  right: 25px;
  top: 50%;
  line-height: 1;
  font-size: 0px;
  margin-top: -6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-block_dir2 .about-service .btn-block a:hover {
  background: #2e5a8d;
  color: #fefefe;
}
.about-block_dir2 .about-service .btn-block a:hover::after {
  right: 15px;
}

.cs-block {
  padding: 200px 20px;
  text-align: center;
  font-size: 20px;
  color: #aaaaaa;
}

/*# sourceMappingURL=style.css.map */
