@charset "UTF-8";
/*=====================

	注意！注意！注意！

	開発用のLESSです
　当ファイルをコンパイル
	ターミナル使って
lessc common.less common.css
	>common.cssを読込

=====================*/
/*=====================
	スタイル設定まとめ
=====================*/
/*角丸*/
/*線・パディング込のボックスサイズ*/
.box-border-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.shadow {
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
.disp-flex {
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -o-flexbox;
  display: flexbox;
  display: -webkit-box;
  display: flex;
}
.bg-blue {
  background-color: #f5f8ff;
}
.font-mincho {
  font-family: "Noto Serif", "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.bg-cover {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-position: center;
}
a:hover {
  opacity: 0.8;
}
.arrow-link {
  color: #1e47a3;
  display: flex;
  align-items: center;
  text-align: right;
  font-weight: bold;
}
.arrow-link img {
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
 }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
 }
}
.main-contents {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .main-contents {
    width: 100%;
 }
}
.sub-contents {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .sub-contents {
    width: 100%;
 }
}
.slim-contents {
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .slim-contents {
    width: 100%;
 }
}
@media screen and (min-width: 641px) {
  .menuNavi__item {
    display: none;
 }
}
.mt-6{
  margin-top: 60px;
}
.content-title {
  text-align: center;
  width: 100%;
}
.content-title span {
  color: #1e47a3;
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
}
.content-title span::before, .content-title span::after {
  content: "";
  position: absolute;
  top: -0.2rem;
  transform: rotate(30deg);
  display: block;
  width: 1px;
  height: 2.4rem;
  background-color: #1e47a3;
}
.content-title span::before {
  left: -2rem;
}
.content-title span::after {
  right: -2rem;
}
.content-title p {
  padding-top: 18px;
  font-weight: bold;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .content-title p {
    font-size: 2.4rem;
 }
}
.content-title .page-content-subtitle {
  color: #1e47a3;
  font-weight: bold;
  font-size: 1.8rem;
}
.l-header {
  background: none;
}
.l-header .header-top {
  width: 100%;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .l-header .header-top {
    padding: 0 15px 0;
 }
}
.l-header .header-top .header-content {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content {
    width: 100%;
    justify-content: space-between;
 }
}
.l-header .header-top .header-content .siteTitle {
  width: auto;
}
.l-header .header-top .header-content .siteTitle .header-logo-white {
  display: block;
}
.l-header .header-top .header-content .siteTitle .header-logo-blue {
  display: none;
}
.l-header .header-top .header-content .mainNavi {
  background: none;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content .mainNavi {
    display: none;
    position: fixed;
    background: rgba(255,255,255,0.95);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
    box-sizing: border-box;
    padding: 100px;
    overflow: scroll;
 }
}
@media screen and (max-width: 767px) {
  .l-header .header-top .header-content .mainNavi {
    overflow: scroll;
    padding: 100px 15px 100px;
 }
}
.l-header .header-top .header-content .mainNavi > p {
  display: none;
  font-weight: bold;
  font-size: 2rem;
  color: #1e47a3;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content .mainNavi > p {
    display: block;
 }
}
.l-header .header-top .header-content .mainNavi > ul {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content .mainNavi > ul {
    height: auto;
    display: block;
 }
}
.l-header .header-top .header-content .mainNavi > ul > li {
  color: #fff;
  padding: 0 12px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content .mainNavi > ul > li {
    line-height: 60px;
    font-size: 1.6rem;
    padding: 0;
    display: block;
    color: #1e47a3;
 }
}
.l-header .header-top .header-content .mainNavi > ul > li a {
  padding: 0;
  display: block;
}
.l-header .header-top .header-content .mainNavi > ul > li a:hover {
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content .mainNavi > ul > li a {
    border: none;
    color: #1e47a3;
 }
}
.l-header .header-top .header-content .mainNavi #header-app {
  position: relative;
}
.l-header .header-top .header-content .mainNavi #header-app ul {
  display: none;
  position: absolute;
  top: 70px;
  left: 18px;
  background: #fff;
  border-radius: 5px;
  padding: 10px 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content .mainNavi #header-app ul {
    display: block;
    position: inherit;
    top: auto;
    box-shadow: none;
    padding: 0;
 }
}
.l-header .header-top .header-content .mainNavi #header-app ul li {
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content .mainNavi #header-app ul li {
    display: block;
 }
}
.l-header .header-top .header-content .mainNavi #header-app ul li a {
  padding: 10px 20px;
  width: 23rem;
  color: #1e47a3;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content .mainNavi #header-app ul li a {
    width: auto;
    border: none;
    padding: 0 20px;
    line-height: 45px;
 }
  .l-header .header-top .header-content .mainNavi #header-app ul li a img {
    display: none;
 }
}
.l-header .header-top .header-content .mainNavi #header-app.open-services:after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  height: 2px;
  left: 18px;
  right: 18px;
  bottom: 16px;
}
.l-header .header-top .header-content .mainNavi #header-app.open-services ul {
  display: block;
}
.l-header .header-top .header-content .mainNavi .mainNavi-mobile-contact {
  display: none;
  border-top: 1px solid #e2e8f5;
  margin-top: 45px;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content .mainNavi .mainNavi-mobile-contact {
    display: block;
 }
}
.l-header .header-top .header-content .mainNavi .mainNavi-mobile-contact > a {
  margin-top: 45px;
  display: block;
  height: 60px;
  background: #1e47a3;
  border-radius: 5px;
  line-height: 60px;
  padding: 0;
  text-align: center;
  font-size: 1.6rem;
}
.l-header .header-top .header-content .mainNavi .mainNavi-mobile-contact div {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-header .header-top .header-content .mainNavi .mainNavi-mobile-contact div {
    display: block;
 }
}
.l-header .header-top .header-content .mainNavi .mainNavi-mobile-contact div a {
  padding: 0;
  color: #1e47a3;
  font-size: 2rem;
  display: block;
  width: 20rem;
  margin: 25px 15px 0;
  text-align: center;
  text-decoration: underline;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .l-header .header-top .header-content .mainNavi .mainNavi-mobile-contact div a {
    margin: 15px auto 0;
 }
}
.l-header .header-top .header-content .menuNavi {
  background: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-content .menuNavi {
    display: block;
    text-align: center;
    z-index: 10;
    position: absolute;
    right: 0;
    top: 0.5rem;
 }
}
.l-header .header-top .header-content .menuNavi > span {
  display: block;
  position: relative;
  width: 45px;
  height: 45px;
}
.l-header .header-top .header-content .menuNavi > span > span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #1e47a3;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  transition: ease 0.2s;
}
@media screen and (max-width: 767px) {
  .l-header .header-top .header-content .menuNavi > span > span {
    background: #fff;
 }
}
.l-header .header-top .header-content .menuNavi > span > span:nth-child(1) {
  margin-top: -10px;
}
.l-header .header-top .header-content .menuNavi > span > span:nth-child(3) {
  margin-bottom: -10px;
  top: auto;
  bottom: 50%;
}
.l-header .header-top .header-content .menuNavi p {
  font-size: 1rem;
  color: #1e47a3;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .l-header .header-top .header-content .menuNavi p {
    color: #fff;
 }
}
.l-header .header-top .header-content .menuNavi .ham-close {
  display: none;
}
.l-header .header-top .header-content .menuNavi.close > span > span {
  background: #1e47a3;
}
.l-header .header-top .header-content .menuNavi.close > span > span:nth-child(1) {
  margin-top: 0;
  transform: rotate(45deg);
}
.l-header .header-top .header-content .menuNavi.close > span > span:nth-child(2) {
  display: none;
}
.l-header .header-top .header-content .menuNavi.close > span > span:nth-child(3) {
  margin-bottom: 0;
  transform: rotate(-45deg);
}
.l-header .header-top .header-content .menuNavi.close p {
  color: #1e47a3;
}
.l-header .header-top .header-content .menuNavi.close .ham-menu {
  display: none;
}
.l-header .header-top .header-content .menuNavi.close .ham-close {
  display: block;
}
.l-header .header-top .header-contact {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-header .header-top .header-contact {
    display: none;
 }
}
.l-header .header-top .header-contact .header-contact-tel-wrap {
  padding: 15px 0;
}
.l-header .header-top .header-contact .header-contact-tel-wrap .header-contact-tel {
  font-size: 1.6rem;
  color: #1e47a3;
  font-weight: bold;
  border-bottom: 2px solid #1e47a3;
  display: block;
}
.l-header .header-top .header-contact .header-contact-tel-wrap .header-contact-tel span {
  font-size: 1.4rem;
}
.l-header .header-top .header-contact .header-contact-tel-wrap .header-contact-tel + .header-contact-tel {
  margin-top: 8px;
}
.l-header .header-top .header-contact .header-contact-email {
  background-color: #1e47a3;
  color: #fff;
  font-size: 1.5rem;
  padding: 15px 20px;
  margin-left: 15px;
  border-radius: 5px;
  font-weight: bold;
}
.l-header.header-bg-white {
  background: #fff;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
.l-header.header-bg-white .header-top .header-content .siteTitle .header-logo-white {
  display: none;
}
.l-header.header-bg-white .header-top .header-content .siteTitle .header-logo-blue {
  display: block;
}
.l-header.header-bg-white .header-top .header-content .mainNavi li {
  color: #1e47a3;
}
.l-header.header-bg-white .header-top .header-content .mainNavi li a {
  color: #1e47a3;
}
@media screen and (max-width: 767px) {
  .l-header.header-bg-white .header-top .header-content .menuNavi > span > span {
    background-color: #1e47a3;
 }
}
@media screen and (max-width: 767px) {
  .l-header.header-bg-white .header-top .header-content .menuNavi p {
    color: #1e47a3;
 }
}
#Main .main-wrap {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #Main .main-wrap {
    height: 680px;
 }
}
#Main .main-wrap .main-texture {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60%;
  background-image: url("../img/main-desktop-texture.png");
  background-size: cover;
  background-position: right;
}
@media screen and (max-width: 767px) {
  #Main .main-wrap .main-texture {
    width: 100%;
    height: 70%;
    top: 0;
    background-image: url("../img/main-mobile-texture.png");
    background-size: cover;
    background-position: center bottom;
 }
}
#Main .main-wrap .main-pic {
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../img/main-desktop-img.jpg");
  width: 70%;
  height: 100%;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #Main .main-wrap .main-pic {
    width: 100%;
    bottom: 0;
    height: 50%;
 }
}
#Main .main-wrap .l-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #Main .main-wrap .l-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: -30px;
 }
}
#Main .main-wrap .l-wrapper .main-text {
  color: #fff;
}
@media screen and (max-width: 767px) {
  #Main .main-wrap .l-wrapper .main-text {
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
 }
}
#Main .main-wrap .l-wrapper .main-text h1 {
  font-size: 3rem;
  line-height: 1.8;
  padding-bottom: 15px;
}
#Main .main-wrap .l-wrapper .main-text h1 span {
  margin-left: -1.7rem;
}
#Main .main-wrap .l-wrapper .main-text .main-text-cta {
  width: 300px;
  display: block;
  text-align: center;
  height: 60px;
  line-height: 60px;
  margin-top: 3rem;
  border-radius: 5px;
  background: #fff;
  color: #1e47a3;
  font-weight: bold;
  font-size: 1.6rem;
}
#Main .main-wrap .l-wrapper > img {
  width: 100%;
  max-width: 50%;
  margin-bottom: -50px;
}
@media screen and (max-width: 767px) {
  #Main .main-wrap .l-wrapper > img {
    width: 400px;
    max-width: 95%;
    margin-bottom: 45px;
 }
}
#Main .main-wrap .l-wrapper .main-text-cta-mobile {
  width: 100%;
}
#Main .main-wrap .l-wrapper .main-text-cta-mobile a {
  display: block;
  width: 300px;
  margin: 0 auto;
  text-align: center;
  height: 60px;
  line-height: 60px;
  font-size: 1.6rem;
  font-weight: bold;
  background: #1e47a3;
  color: #fff;
  border-radius: 5px;
}
#Theme {
  position: relative;
}
@media screen and (max-width: 1023px) {
  #Theme .content-pdg {
    position: relative;
    padding: 100px 0 350px;
 }
}
@media screen and (max-width: 767px) {
  #Theme .content-pdg {
    padding: 65px 15px;
 }
}
#Theme .content-pdg .l-wrapper {
  display: flex;
}
@media screen and (max-width: 1023px) {
  #Theme .content-pdg .l-wrapper {
    display: block;
 }
}
#Theme .content-pdg .l-wrapper .theme-text {
  width: 100%;
  max-width: 46%;
  padding: 50px 70px;
  box-sizing: border-box;
  border-radius: 5px;
  background: #fff;
  margin-top: 70px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
@media screen and (max-width: 1023px) {
  #Theme .content-pdg .l-wrapper .theme-text {
    max-width: none;
    margin: 0 auto;
    padding: 50px 30px;
 }
}
#Theme .content-pdg .l-wrapper .theme-text h3 {
  font-size: 2.4rem;
  padding-bottom: 2rem;
  line-height: 1.6;
  color: #1e47a3;
}
#Theme .content-pdg .l-wrapper .theme-text p {
  font-size: 1.4rem;
  line-height: 2;
}
#Theme .content-pdg .l-wrapper .theme-pic-wrap {
  position: absolute;
  right: 0;
  width: 60%;
  height: 100%;
  padding-bottom: 70px;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  #Theme .content-pdg .l-wrapper .theme-pic-wrap {
    position: absolute;
    height: auto;
    margin-top: 40px;
    width: 100%;
 }
}
@media screen and (max-width: 767px) {
  #Theme .content-pdg .l-wrapper .theme-pic-wrap {
    position: inherit;
    margin-left: -15px;
    width: 100vw;
    padding-bottom: 0;
 }
}
#Theme .content-pdg .l-wrapper .theme-pic-wrap .theme-pic {
  width: 100%;
}
#About {
  background-color: #f5f8ff;
}
#About .box-white {
  background-color: #fff;
  border-radius: 5px;
  padding: 60px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
@media screen and (max-width: 767px) {
  #About .box-white {
    padding: 50px 15px;
 }
}
#About .box-white .service {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  #About .box-white .service {
    max-width: 540px;
    margin: 0 auto;
 }
}
#About .box-white .service .service-pic {
  width: 50%;
  position: relative;
  background: linear-gradient(60deg,#2886d1,#1e47a3);
}
@media screen and (max-width: 1023px) {
  #About .box-white .service .service-pic {
    width: 100%;
    height: 300px;
    margin-top: 30px;
 }
}
@media screen and (max-width: 767px) {
  #About .box-white .service .service-pic {
    height: 240px;
 }
}
#About .box-white .service .service-pic img {
  width: 70%;
  position: absolute;
  left: 47%;
  top: 50%;
  transform: translate(-50%,-50%);
}
@media screen and (max-width: 1023px) {
  #About .box-white .service .service-pic img {
    width: 60%;
 }
}
#About .box-white .service .service-text {
  width: -webkit-calc(50% - 60px);
  width: -moz-calc(50% - 60px);
  width: calc(50% - 60px);
}
@media screen and (max-width: 1023px) {
  #About .box-white .service .service-text {
    width: 100%;
    padding-top: 2rem;
 }
}
#About .box-white .service .service-text p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#About .box-white .service .service-text .service-text-head {
  font-size: 2.4rem;
  padding-bottom: 2rem;
  color: #1e47a3;
  font-weight: bold;
}
#About .box-white .series {
  width: 100%;
  padding-top: 60px;
}
#About .box-white .series ul {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #e2e8f5;
}
#About .box-white .series ul li {
  width: 50%;
  box-sizing: border-box;
  padding: 30px;
  display: flex;
}
@media screen and (min-width: 768px) {
  #About .box-white .series ul li:nth-child(odd) {
    border-right: 1px solid #e2e8f5;
 }
  #About .box-white .series ul li:nth-child(n + 3) {
    border-top: 1px solid #e2e8f5;
 }
}
@media screen and (max-width: 767px) {
  #About .box-white .series ul li {
    width: 100%;
    padding: 15px;
 }
  #About .box-white .series ul li:nth-child(n + 2) {
    border-top: 1px solid #e2e8f5;
 }
}
#About .box-white .series ul li .series-icon {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #About .box-white .series ul li .series-icon {
    width: 65px;
 }
}
#About .box-white .series ul li .series-icon img {
  width: 110px;
  border-radius: 5px;
  border: 1px solid #1e47a3;
}
#About .box-white .series ul li .series-text {
  position: relative;
  padding-left: 15px;
  padding-bottom: 3rem;
}
#About .box-white .series ul li .series-text p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#About .box-white .series ul li .series-text .series-text-head {
  color: #1e47a3;
  font-weight: bold;
  font-size: 1.8rem;
  padding-bottom: 10px;
}
#About .box-white .series ul li .series-text .arrow-link {
  position: absolute;
  right: 0;
  bottom: 0;
}
#Case {
  padding-top: 100px;
  margin-top: -100px;
}
#Case .case-list-wrap .case-list li .case-service {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#Case .case-list-wrap .case-list li .case-service img {
  width: 50px;
  border: 1px solid #1e47a3;
  border-radius: 5px;
}
#Case .case-list-wrap .case-list li .case-service p {
  font-size: 18px;
  font-weight: bold;
  padding-left: 10px;
}
#Case .case-list-wrap .case-list li .case-info {
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
#Case .case-list-wrap .case-list li .case-info .case-info-pic {
  display: block;
  width: 38%;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #Case .case-list-wrap .case-list li .case-info .case-info-pic {
    background-position: top center;
    width: 100%;
 }
  #Case .case-list-wrap .case-list li .case-info .case-info-pic::before {
    content: "";
    display: block;
    padding-top: 60%;
 }
}
#Case .case-list-wrap .case-list li .case-info .case-info-text {
  width: 62%;
  box-sizing: border-box;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  #Case .case-list-wrap .case-list li .case-info .case-info-text {
    width: 100%;
    padding: 30px 15px;
 }
}
#Case .case-list-wrap .case-list li .case-info .case-info-text p {
  line-height: 1.8;
}
#Case .case-list-wrap .case-list li .case-info .case-info-text .case-info-name {
  font-weight: bold;
}
#Case .case-list-wrap .case-list li .case-info .case-info-text .case-info-head {
  color: #1e47a3;
  font-weight: bold;
  padding: 20px 0;
  font-size: 1.6rem;
}
#Case .case-list-wrap .case-list li .case-info .case-info-text .case-info-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}
#Case .case-list-wrap .case-list li:nth-child(1) .case-info-pic {
  background-image: url("../img/case-pic01.jpg");
}
#Case .case-list-wrap .case-list li:nth-child(2) .case-info-pic {
  background-image: url("../img/case-pic02.jpg");
}
#Case .case-list-wrap .case-list li:nth-child(3) .case-info-pic {
  background-image: url("../img/case-pic03.jpg");
}
#Case .case-list-wrap .case-list li + li {
  margin-top: 50px;
}


#Case .case-info-text dl{
  display: flex;
  align-items: center;
}

#Case .case-info-text dd{
  text-align: right;
  margin-left: auto;
}

#Case .case-info-text dd img{
  width: 100px;
}

#Case .more{
  display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
}

#Case .more a{
  display: block;
    border: 1px solid #e2e8f5;
    padding: 20px 0;
    color: #1e47a3;
    min-width: 220px;
    text-align: center;
    border-radius: 5px;
}

#Support .support-sub-text {
  max-width: 600px;
  margin: 40px auto;
  line-height: 1.8;
}
#Support .support-sub-text .support-sub-text-link {
  display: flex;
  justify-content: flex-end;
}
#Support .support-pic-wrap {
  text-align: center;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  #Support .support-pic-wrap {
    width: fit-content;
 }
}
#Support .support-pic-wrap > img {
  width: 100%;
  max-width: 900px;
}
@media screen and (max-width: 767px) {
  #Support .support-pic-wrap > img {
    max-width: 400px;
 }
}
#Support .support-pic-wrap > a {
  display: block;
  position: absolute;
  width: 30%;
  height: 34%;
}
@media screen and (max-width: 767px) {
  #Support .support-pic-wrap > a {
    width: 84%;
    height: 14%;
 }
}
#Support .support-pic-wrap .support-link01 {
  left: 0;
  bottom: 0;
  display: none;
}
@media screen and (max-width: 767px) {
  #Support .support-pic-wrap .support-link01 {
    top: 20%;
    right: 0;
    left: auto;
    display: block;
 }
}
#Support .support-pic-wrap .support-link02 {
  left: 35%;
  bottom: 0;
  display: none;
}
@media screen and (max-width: 767px) {
  #Support .support-pic-wrap .support-link02 {
    left: auto;
    bottom: auto;
    top: 57%;
    right: 0;
    display: block;
 }
}
#Support .support-pic-wrap .support-link03 {
  right: 0;
  bottom: 0;
  display: none;
}
@media screen and (max-width: 767px) {
  #Support .support-pic-wrap .support-link03 {
    display: block;
 }
}
.support-figure {
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .support-figure {
    width: 100%;
 }
}
@media screen and (max-width: 767px) {
  .support-figure {
    width: 100%;
 }
}
.support-figure .support-figure-flow {
  background: #fff;
  position: relative;
  padding: 70px 50px 50px;
  border-radius: 3px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
.support-figure .support-figure-flow .support-figure-flow-title {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #1e47a3;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 3rem;
  width: fit-content;
}
.support-figure .support-figure-flow .support-figure-flow-list {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.support-figure .support-figure-flow .support-figure-flow-list li {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #1e47a3;
  font-weight: bold;
  border: 1px solid;
  border-radius: 5px;
  text-align: center;
  width: 50px;
  height: 160px;
  font-size: 1.6rem;
  line-height: 48px;
  position: relative;
  background-color: #fff;
}
.support-figure .support-figure-flow .support-figure-flow-list li:nth-child(n + 2)::after {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/support-arrow.svg");
  width: 160px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 46px;
  margin-top: -7.5px;
  z-index: -1;
}
.support-figure .support-figure-flow .support-figure-flow-list > img {
  position: absolute;
}
.support-figure .support-figure-flow-links {
  padding-top: 7%;
}
.support-figure .support-figure-flow-links ul {
  display: flex;
  justify-content: space-between;
}
.support-figure .support-figure-flow-links ul li {
  width: -webkit-calc(33% - 25px);
  width: -moz-calc(33% - 25px);
  width: calc(33% - 25px);
  position: relative;
}
.support-figure .support-figure-flow-links ul li > img {
  position: absolute;
  top: -55%;
  left: 46%;
}
.support-figure .support-figure-flow-links ul li p {
  background: #1e47a3;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 10px 15px;
  border-radius: 3rem;
}
.support-figure .support-figure-flow-links ul li a {
  display: block;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  margin-top: 15px;
  overflow: hidden;
}
.support-figure .support-figure-flow-links ul li a:hover {
  opacity: 0.9;
}
.support-figure .support-figure-flow-links ul li a img {
  width: 100%;
}
.support-figure .support-figure-flow-links ul li:nth-child(1) > img {
  width: 51%;
}
.support-figure .support-figure-flow-links ul li:nth-child(2) > img {
  width: 74%;
}
.support-figure .support-figure-flow-links ul li:nth-child(3) > img {
  left: 52%;
  width: 21%;
}
#Flow {
  padding-top: 160px;
  margin-top: -60px;
}
#Flow .flow-list {
  max-width: 650px;
  margin: 40px auto 0;
}
#Flow .flow-list li {
  display: flex;
}
@media screen and (max-width: 767px) {
  #Flow .flow-list li {
    display: block;
 }
}
#Flow .flow-list li .flow-list-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
@media screen and (max-width: 767px) {
  #Flow .flow-list li .flow-list-pic {
    margin: 0 auto;
 }
}
#Flow .flow-list li .flow-list-pic span {
  position: absolute;
  left: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  background-color: #1e47a3;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
#Flow .flow-list li .flow-list-text {
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  #Flow .flow-list li .flow-list-text {
    text-align: center;
    padding: 15px 0 0;
 }
}
#Flow .flow-list li .flow-list-text p {
  line-height: 1.8;
}
#Flow .flow-list li .flow-list-text .flow-list-text-head {
  font-size: 1.6rem;
  color: #1e47a3;
  font-weight: bold;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #Flow .flow-list li .flow-list-text .flow-list-text-head {
    font-size: 1.8rem;
 }
}
#Flow .flow-list li + li {
  margin-top: 45px;
}
#Security .security-list {
  max-width: 650px;
  margin: 40px auto 0;
}
#Security .security-list li {
  display: flex;
}
@media screen and (max-width: 767px) {
  #Security .security-list li {
    display: block;
 }
}
#Security .security-list li .security-list-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 110px;
  height: 110px;
}
@media screen and (max-width: 767px) {
  #Security .security-list li .security-list-pic {
    margin: 0 auto;
    height: auto;
 }
}
#Security .security-list li .security-list-pic img {
  width: 8rem;
}
#Security .security-list li .security-list-text {
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  #Security .security-list li .security-list-text {
    text-align: center;
    padding: 15px 0 0;
 }
}
#Security .security-list li .security-list-text p {
  line-height: 1.8;
}
#Security .security-list li .security-list-text .security-list-text-head {
  font-size: 1.6rem;
  color: #1e47a3;
  font-weight: bold;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #Security .security-list li .security-list-text .security-list-text-head {
    font-size: 1.8rem;
 }
}
#Security .security-list li + li {
  margin-top: 45px;
}
#Company .content-pdg {
  padding-top: 0;
}
#Company .company-sections {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  #Company .company-sections {
    display: block;
 }
}
#Company .company-sections .company-section {
  max-width: 440px;
  width: 42%;
  margin: 45px auto 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #Company .company-sections .company-section {
    width: 100%;
 }
}
@media screen and (min-width: 1025px) {
  #Company .company-sections .company-section:nth-child(1) a {
    display: block;
    padding-top: 10px;
 }
}
#Company .company-sections .company-section .company-section-head {
  padding: 15px;
  margin-bottom: 10px;
  line-height: 1.6;
}
#Company .company-sections .company-section .company-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -30px;
}
#Company .company-sections .company-section .company-list li {
  width: 50%;
  margin-top: 30px;
}
#Company .company-sections .company-section .company-list li:nth-of-type(3), #Company .company-sections .company-section .company-list li:nth-of-type(4) {
  margin-top: 10px;
}
#Company .company-sections .company-section .company-list li a {
  display: flex;
  align-items: center;
  height: 100%;
}
#Company .company-sections .company-section img {
  max-width: 200px;
  width: 100%;
}
/*#News .content-pdg {
  padding-top: 0;
}*/
#News .news-wrap {
  margin-top: 45px;
}
#News .news-wrap .news-list {
  border-top: 1px solid #e2e8f5;
}
#News .news-wrap .news-list li {
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f5;
}
#News .news-wrap .news-list li a {
  display: flex;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  #News .news-wrap .news-list li a {
    flex-wrap: wrap;
 }
}
#News .news-wrap .news-list li a:hover {
  background-color: #f5f8ff;
}
#News .news-wrap .news-list li a .news-list-date {
  width: 13%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #News .news-wrap .news-list li a .news-list-date {
    width: 13%;
    text-align: left;
 }
}
@media screen and (max-width: 420px) {
  #News .news-wrap .news-list li a .news-list-date {
    width: 25%;
 }
}
#News .news-wrap .news-list li a .news-list-category {
  border: 1px solid #e2e8f5;
  padding: 8px 20px;
  border-radius: 5px;
  flex-shrink: 0;
  line-height: 1;
}
#News .news-wrap .news-list li a .news-list-title {
  padding-left: 30px;
  height: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #News .news-wrap .news-list li a .news-list-title {
    padding-left: 0;
    width: 100%;
    padding-top: 10px;
    line-height: 1.6;
 }
}
#News .news-wrap .more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 45px;
}
#News .news-wrap .more a {
  display: block;
  border: 1px solid #e2e8f5;
  padding: 20px 0;
  color: #1e47a3;
  min-width: 220px;
  text-align: center;
  border-radius: 5px;
}
#News .news-wrap .more a:hover {
  background-color: #f5f8ff;
}
#Links {
  background-position: center;
  background-size: cover;
  background-image: url("../img/cta-bg.png");
}
#Links .content-title p {
  color: #fff;
  padding: 0 0 45px;
}
#Links .links-list {
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
#Links .links-list li {
  width: 50%;
  color: #1e47a3;
}
#Links .links-list li:nth-child(n + 3) {
  border-top: 1px solid #e2e8f5;
}
#Links .links-list li:nth-child(odd) {
  border-right: 1px solid #e2e8f5;
}
@media screen and (max-width: 767px) {
  #Links .links-list li {
    width: 100%;
 }
  #Links .links-list li:nth-child(2) {
    border-top: 1px solid #e2e8f5;
 }
}
#Links .links-list li a {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 30px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  #Links .links-list li a {
    padding: 15px;
 }
}
#Links .links-list li a:hover {
  background-color: #f5f8ff;
}
#Links .links-list li a .links-list-pic {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1e47a3;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  #Links .links-list li a .links-list-pic {
    width: 80px;
    height: 80px;
    margin-right: 10px;
 }
}
#Links .links-list li a .links-list-pic img {
  width: 110px;
}
@media screen and (max-width: 767px) {
  #Links .links-list li a .links-list-pic img {
    width: 80px;
 }
}
#Links .links-list li a p {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #Links .links-list li a p {
    font-size: 1.6rem;
 }
}
#Footer {
  background-color: #282d34;
  color: #fff;
}
#Footer .footer-inner {
  display: flex;
  justify-content: space-between;
  padding: 45px 0;
}
@media screen and (max-width: 767px) {
  #Footer .footer-inner {
    display: block;
 }
}
@media screen and (max-width: 767px) {
  #Footer .footer-inner .footer-logo {
    text-align: center;
 }
}
#Footer .footer-inner .footer-info ul {
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #Footer .footer-inner .footer-info ul {
    display: block;
    text-align: center;
    margin-top: 40px;
    margin-bottom: -25px;
 }
}
#Footer .footer-inner .footer-info ul li + li {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  #Footer .footer-inner .footer-info ul li + li {
    margin: 25px 0;
 }
}
#Footer .footer-inner .footer-info .footer-asahikosan-logo {
  display: block;
  margin-left: auto;
  margin-top: 25px;
  width: 255px;
}
#Footer .copyright {
  padding: 25px 0;
  border-top: 1px solid #e2e8f5;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
}
#Footer .copyright p + p {
  padding-top: 10px;
}
.page-head {
  height: 200px;
  background: linear-gradient(60deg,#2886d1,#1e47a3);
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-head {
    height: 150px;
 }
}
.page-head h2 {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .page-head h2 {
    padding: 0 15px;
 }
}
.archive {
  margin-top: 50px;
}
.l-sidebar #form {
  position: relative;
}
.l-sidebar #form .form-icon {
  position: absolute;
  display: flex;
  height: 100%;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
}
.l-sidebar #form .form-icon img {
  fill: #000;
}
.l-sidebar #form input[type="text"] {
  width: 100%;
  height: 4.5rem;
  padding: 0 0 0 3.5rem;
  border: none;
  background-color: #f1f1f3;
  border-radius: 3px;
}
.sidebar-content {
  margin-top: 35px;
}
.sidebar-content .sidebar-title p {
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 20px;
}
.sidebar-content .sidebar-post li a {
  display: flex;
}
.sidebar-content .sidebar-post li a .post-thumbnail {
  width: 30%;
  height: 65px;
  border-radius: 5px;
  background-color: #e2e8f5;
  background-position: center;
  background-size: cover;
}
.sidebar-content .sidebar-post li a .post-thumbnail.post-no-thumbnail {
  background-image: url("../img/img_no.png");
}
.sidebar-content .sidebar-post li a .post-text {
  width: 70%;
  color: #1e47a3;
  box-sizing: border-box;
  padding-left: 10px;
  line-height: 1.6;
  font-weight: bold;
}
.sidebar-content .sidebar-post li + li {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #e2e8f5;
}
.sidebar-content .monthly-archive li a {
  padding: 20px 0;
  display: block;
}
.sidebar-content .monthly-archive li + li {
  border-top: 1px solid #e2e8f5;
}
.sidebar-content .category-list {
  display: flex;
  margin-left: -15px;
}
.sidebar-content .category-list li {
  margin-left: 15px;
  padding: 10px 0;
}
.sidebar-content .category-list li a {
  background: #1e47a3;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}
.content-page .box-white {
  background-color: #fff;
  border-radius: 5px;
  padding: 60px 30px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
@media screen and (max-width: 767px) {
  .content-page .box-white {
    padding: 50px 15px;
 }
}
.content-page #Form dl {
  display: flex;
}
@media screen and (max-width: 767px) {
  .content-page #Form dl {
    display: block;
 }
}
.content-page #Form dl dt {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .content-page #Form dl dt {
    width: 100%;
    padding-bottom: 10px;
 }
}
.content-page #Form dl dt .required-item {
  color: #B70000;
  font-size: 1.25rem;
  padding-left: 5px;
}
.content-page #Form dl dd {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .content-page #Form dl dd {
    width: 100%;
 }
}
.content-page #Form dl dd input {
  height: 45px;
  padding: 0 15px;
}
.content-page #Form dl dd input[type="text"], .content-page #Form dl dd #Message {
  background: #f1f1f3;
  border: none;
  box-sizing: border-box;
  width: 100%;
  border-radius: 5px;
}
.content-page #Form dl dd textarea {
  padding: 15px;
}
.content-page #Form dl dd .mwform-checkbox-field {
  margin: 0;
}
.content-page #Form dl dd .mwform-checkbox-field label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.content-page #Form dl dd .mwform-checkbox-field label input {
  width: 15px;
}
.content-page #Form dl:nth-of-type(2) dt .required-item {
  padding-left: 0;
}
.content-page #Form dl + dl {
  margin-top: 20px;
}
.content-page #Form .form-subtext {
  padding: 25px 0;
}
.content-page #Form .form-subtext p {
  font-size: 1.4rem;
  margin: 0;
}
.content-page #Form > p {
  display: flex;
}
.content-page #Form > p input[type="submit"] {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
  border: none;
  background: #1e47a3;
  padding: 15px;
  width: 250px;
  border-radius: 5px;
  color: #fff;
  margin: 0 auto;
}
.content-page #Form > p input[type="submit"]:hover {
  cursor: pointer;
}
.service-head {
  border-bottom: 1px solid #e2e8f5;
}
.service-head .service-head-inner {
  max-width: 700px;
  margin: 0 auto 80px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .service-head .service-head-inner {
    margin-bottom: 60px;
    display: block;
 }
}
.service-head .service-head-inner .service-head-icon {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #1e47a3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service-head .service-head-inner .service-head-icon {
    margin: 0 auto 20px;
 }
}
.service-head .service-head-inner .service-head-text {
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .service-head .service-head-inner .service-head-text {
    padding-left: 0;
 }
}
.service-head .service-head-inner .service-head-text p:nth-child(1) {
  color: #1e47a3;
  font-size: 2.6rem;
  font-weight: bold;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .service-head .service-head-inner .service-head-text p:nth-child(1) {
    font-size: 2.2rem;
    line-height: 1.4;
    text-align: center;
    padding-bottom: 20px;
 }
}
.service-head .service-head-inner .service-head-text p:nth-child(2) {
  line-height: 1.8;
}
.service-head .service-head-inner .service-head-text .arrow-link {
  margin-top: 15px;
  justify-content: flex-end;
}
.service-head .service-head-inner .service-head-text .service-head-links {
  display: flex;
  justify-content: flex-end;
}
.service-head .service-head-inner .service-head-text .service-head-links a:nth-child(n + 2) {
  margin-left: 30px;
}
.content-sub-text {
  max-width: 700px;
  margin: 30px auto 50px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .content-sub-text {
    margin: 30px auto 0;
 }
}
.support-list {
  display: flex;
  margin-left: -50px;
}
@media screen and (max-width: 767px) {
  .support-list {
    display: block;
    margin: 0;
 }
}
.support-list li {
  width: -webkit-calc(33% - 50px);
  width: -moz-calc(33% - 50px);
  width: calc(33% - 50px);
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .support-list li {
    width: 100%;
    margin: 60px auto 0;
    max-width: 450px;
 }
}
.support-list li .support-list-question {
  background: #f5f8ff;
  color: #1e47a3;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 30px 0;
  border-radius: 5px;
  text-align: center;
}
.support-list li .support-list-icon {
  display: flex;
  height: 125px;
  justify-content: center;
  align-items: center;
}
.support-list li .support-list-icon img {
  width: 140px;
}
.support-list li .support-list-arrow {
  height: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .support-list li .support-list-arrow {
    height: 45px;
 }
}
.support-list li .support-list-arrow::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -12px;
  border-top: solid 18px #1e47a3;
  border-left: solid 12px transparent;
  border-right: solid 12px transparent;
}
.support-list li .support-list-answer p {
  padding: 15px 0;
  border-radius: 25px;
  background: #1e47a3;
  color: #fff;
  text-align: center;
}
.support-list li .support-list-answer .support-list-pic {
  margin-top: 15px;
  height: 180px;
  border-radius: 5px;
  background-position: center;
  background-size: cover;
}
.support-list li:nth-child(1) .support-list-pic {
  background-image: url("../img/support-pic01.jpg");
}
.support-list li:nth-child(2) .support-list-pic {
  background-image: url("../img/support-pic02.jpg");
}
.support-list li:nth-child(3) .support-list-pic {
  background-image: url("../img/support-pic03.jpg");
}
.support-detail-list {
  padding: 80px 0;
  max-width: 770px;
  margin: 0 auto;
}
.support-detail-list li {
  display: flex;
  padding-top: 135px;
  margin-top: -100px;
}
@media screen and (max-width: 767px) {
  .support-detail-list li {
    display: block;
 }
}
.support-detail-list li .support-detail-list-icon {
  display: flex;
  justify-content: center;
  width: 15rem;
  flex-shrink: 0;
  align-items: baseline;
}
.support-detail-list li .support-detail-list-icon img {
  max-width: 8rem;
}
@media screen and (max-width: 767px) {
  .support-detail-list li .support-detail-list-icon {
    width: 100%;
    margin-bottom: 2rem;
 }
}
.support-detail-list li .support-detail-list-text p.support-detail-list-head {
  color: #1e47a3;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .support-detail-list li .support-detail-list-text p.support-detail-list-head {
    text-align: center;
 }
}
.support-detail-list li .support-detail-list-text p:nth-child(2) {
  line-height: 1.8;
}
#Functions {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  #Functions {
    padding-top: 60px;
 }
}
#Functions .function-list {
  margin-top: 30px;
  display: flex;
  margin-left: -50px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #Functions .function-list {
    flex-wrap: wrap;
    margin: -15px 30px 0;
 }
}
#Functions .function-list li {
  width: -webkit-calc(33% - 50px);
  width: -moz-calc(33% - 50px);
  width: calc(33% - 50px);
  margin-left: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #Functions .function-list li {
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
    max-width: 300px;
 }
}
#Functions .function-list li p {
  padding: 15px;
  background: #1e47a3;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  bottom: -15px;
}
@media screen and (max-width: 767px) {
  #Functions .function-list li p {
    margin: 0 15px;
 }
}
#Functions .function-list li .function-list-pic {
  margin: 15px 30px 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f8ff;
  border-radius: 50%;
  overflow: hidden;
}
#Functions .function-list li .function-list-pic::before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media screen and (max-width: 767px) {
  #Functions .function-list li .function-list-pic {
    margin-top: 15px;
 }
}
#Functions .function-list li .function-list-pic img {
  max-width: 80%;
  margin-bottom: 20px;
  width: 80%;
}
#Functions .function-list.function-list-service03 {
  justify-content: space-between;
  margin: -15px 0 0;
}
#Functions .function-list.function-list-service03 li {
  width: -webkit-calc(50% - 25px);
  width: -moz-calc(50% - 25px);
  width: calc(50% - 25px);
  position: relative;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  #Functions .function-list.function-list-service03 li {
    width: 100%;
    max-width: none;
 }
}
@media screen and (max-width: 767px) {
  #Functions .function-list.function-list-service03 li:nth-child(2) {
    margin-top: 70px !important;
 }
}
#Functions .function-list.function-list-service03 li:nth-child(2):after {
  display: block;
  content: "";
  position: absolute;
  left: -33px;
  top: 46%;
  border-left: 20px solid #1e47a3;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-bottom: -10px;
}
@media screen and (max-width: 767px) {
  #Functions .function-list.function-list-service03 li:nth-child(2):after {
    left: 47%;
    top: -50px;
    transform: rotate(90deg);
 }
}
#Functions .function-list.function-list-service03 li p {
  bottom: auto;
  display: inline-block;
  width: fit-content;
  padding: 15px 30px;
  margin: 0 auto;
}
#Functions .function-list.function-list-service03 li .function-list-pic {
  height: 480px;
  border-radius: 0;
}
#Functions .function-list.function-list-service03 li .function-list-pic img {
  margin-bottom: -30px;
  width: auto;
}
#Functions .function-list.function-list-service04 li .function-list-pic img {
  margin-bottom: 0;
}
#Functions .function-details {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  #Functions .function-details {
    margin-top: 60px;
 }
}
#Functions .function-details .function-detail-item {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #Functions .function-details .function-detail-item {
    display: flex;
    flex-direction: column;
 }
}
#Functions .function-details .function-detail-item .function-detail-pic {
  width: 47%;
  height: 330px;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #Functions .function-details .function-detail-item .function-detail-pic {
    width: 100%;
    order: 1;
    height: auto;
    margin-top: 30px;
 }
}
#Functions .function-details .function-detail-item .function-detail-pic.service-function-gif {
  height: auto;
  text-align: center;
}

#Functions .function-details .function-detail-item .function-detail-pic.service-function-gif .demogif {
  max-height: 350px;
}

#Functions .function-details .function-detail-item .function-detail-text {
  width: 47%;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #Functions .function-details .function-detail-item .function-detail-text {
    width: 100%;
    order: 0;
 }
}
#Functions .function-details .function-detail-item .function-detail-text .function-detail-text-head {
  font-size: 2.6rem;
  color: #1e47a3;
  font-weight: bold;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #Functions .function-details .function-detail-item .function-detail-text .function-detail-text-head {
    font-size: 2.2rem;
 }
}
#Functions .function-details .function-detail-item .function-detail-text .arrow-link {
  margin-top: 15px;
  justify-content: flex-end;
}
#Functions .function-details .function-detail-item:nth-child(1) .function-detail-pic {
  background-image: url("../img/service04-pic01.png");
}
#Functions .function-details .function-detail-item:nth-child(2) .function-detail-pic {
  background-image: url("../img/service04-pic02.png");
}
#Functions .function-details .function-detail-item + .function-detail-item {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #Functions .function-details .function-detail-item + .function-detail-item {
    margin-top: 60px;
 }
}
.function-list-service {
  justify-content: center;
  flex-wrap: wrap;
}
.function-list-service li:nth-child(n + 4) {
  margin-top: 40px;
}
.function-list-service li img {
  max-height: 80%;
}
.service-function-gif {
  background-image: none !important;
}
.service-function-detail-pic {
  background-image: none !important;
}
#Page-Case {
  padding: 160px 0 0;
  margin-top: -25px;
}
#Page-Case .service04-case-list {
  display: flex;
  justify-content: center;
}
#Page-Case .service04-case-list li {
  text-align: center;
}
#Page-Case .service04-case-list li > img {
  width: 145px;
  height: 145px;
  border-radius: 5px;
  border: 1px solid #1e47a3;
  display: block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 767px) {
  #Page-Case .service04-case-list li > img {
    width: 110px;
    height: 110px;
 }
}
#Page-Case .service04-case-list li .arrow-link {
  justify-content: center;
  line-height: 1.4;
  text-align: left;
}
#Page-Case .service04-case-list li:nth-child(n + 2) {
  margin-left: 50px;
}
.page-cta {
  background: #1e47a3;
  text-align: center;
  border-radius: 10px;
  padding: 60px 0;
}
.page-cta > p {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  padding-bottom: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-cta > p {
    font-size: 2rem;
 }
}
.page-cta a {
  display: flex;
  height: 45px;
  width: 250px;
  border-radius: 5px;
  background: #fff;
  color: #1e47a3;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: bold;
}
.others .box-white {
  padding: 50px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
@media screen and (max-width: 767px) {
  .others .box-white {
    padding: 50px 15px;
 }
}
.others .others-head {
  text-align: center;
}
.others .others-head .others-head-text {
  color: #1e47a3;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .others .others-head .others-head-text {
    font-size: 2.2rem;
    line-height: 1.4;
 }
}
.others .others-head .others-head-sub {
  line-height: 1.8;
  padding-top: 15px;
  text-align: left;
}
.others .others-list {
  display: flex;
  margin-left: -50px;
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .others .others-list {
    display: block;
    margin-left: 0;
 }
}
.others .others-list > li {
  width: -webkit-calc(33% - 50px);
  width: -moz-calc(33% - 50px);
  width: calc(33% - 50px);
  margin-left: 50px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .others .others-list > li::before {
    content: "";
    display: block;
    position: absolute;
    height: 50px;
    border-left: 2px solid #1e47a3;
    bottom: -50px;
    left: 50%;
 }
  .others .others-list > li::after {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1e47a3;
    bottom: -54px;
    left: 50%;
    transform: translate(-4px,-4px);
 }
}
@media screen and (max-width: 767px) {
  .others .others-list > li {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
 }
}
.others .others-list > li >p {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #1e47a3;
  display: none;
}
@media screen and (max-width: 767px) {
  .others .others-list > li >p {
    display: block;
 }
}
.others .others-list > li .others-list-details-wrap {
  background: #f5f8ff;
  padding: 30px;
  border-radius: 5px;
  margin-top: 15px;
}
.others .others-list > li .others-list-details-wrap .others-list-details li {
  color: #fff;
  border-radius: 25px;
  padding: 15px 0;
  text-align: center;
}
.others .others-list > li .others-list-details-wrap .others-list-details li:nth-child(1) {
  background: #1e47a3;
}
.others .others-list > li .others-list-details-wrap .others-list-details li:nth-child(2) {
  background: #1E75A3;
}
.others .others-list > li .others-list-details-wrap .others-list-details li:nth-child(3) {
  background: #1E8FA3;
}
.others .others-list > li .others-list-details-wrap .others-list-details li + li {
  margin-top: 15px;
}
.others .others-list > li .others-list-details-wrap .others-rest {
  margin-top: 15px;
}
.others .others-list > li .others-list-details-wrap .others-rest span {
  display: block;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 2.5px;
  margin: 5px auto 0;
}
.others .others-list > li .others-list-details-wrap .others-text {
  margin-top: 15px;
  margin-right: 5px;
  text-align: right;
}
.others .others-list-flow {
  display: flex;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .others .others-list-flow {
    display: none;
 }
}
.others .others-list-flow li {
  width: 100%;
  background: #1E75A3;
  color: #fff;
  position: relative;
}
.others .others-list-flow li p {
  padding: 15px 0;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
}
.others .others-list-flow li img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.others .others-list-flow li:nth-child(1) p {
  padding: 15px 10% 15px 0;
}
.others .others-list-flow li:nth-child(3) p {
  padding: 15px 0 15px 7%;
}
.page-case-head {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .page-case-head {
    padding-top: 30px;
 }
}
.page-case-head .page-case-head-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page-case-head .page-case-head-inner {
    flex-direction: column;
 }
}
.page-case-head .page-case-head-inner .page-case-text {
  width: -webkit-calc(50% - 50px);
  width: -moz-calc(50% - 50px);
  width: calc(50% - 50px);
}
@media screen and (max-width: 767px) {
  .page-case-head .page-case-head-inner .page-case-text {
    width: 100%;
    order: 1;
 }
}
.page-case-head .page-case-head-inner .page-case-text .page-case-text-head {
  font-size: 2.6rem;
  font-weight: bold;
  color: #1e47a3;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-case-head .page-case-head-inner .page-case-text .page-case-text-head {
    font-size: 1.8rem;
 }
}
.page-case-head .page-case-head-inner .page-case-text .page-case-info {
  padding: 20px 0 10px;
  line-height: 1.8;
}
.page-case-head .page-case-head-inner .page-case-text .page-case-info .page-case-info-detail {
  display: flex;
}
.page-case-head .page-case-head-inner .page-case-text .page-case-info .page-case-info-detail dt {
  width: 13rem;
  flex-shrink: 0;
  position: relative;
}
.page-case-head .page-case-head-inner .page-case-text .page-case-info .page-case-info-detail dt:after {
  content: ":";
  position: absolute;
  right: 0;
  padding-right: 1rem;
}
.page-case-head .page-case-head-inner .page-case-text .page-case-system ul {
  padding-top: 10px;
  margin-left: -10px;
  display: flex;
}
.page-case-head .page-case-head-inner .page-case-text .page-case-system ul li {
  overflow: hidden;
  width: 80px;
  margin-left: 10px;
  border: 1px solid #1e47a3;
  border-radius: 5px;
}
.page-case-head .page-case-head-inner .page-case-pic {
  padding-left: 50px;
  width: 50%;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .page-case-head .page-case-head-inner .page-case-pic {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    height: auto;
 }
}
.page-case-head .page-case-head-subtext {
  max-width: 770px;
  margin: 50px auto 0;
  border: 1px solid #1e47a3;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px 30px;
  line-height: 1.8;
  color: #1e47a3;
}
@media screen and (max-width: 767px) {
  .page-case-head .page-case-head-subtext {
    margin-top: 40px;
 }
}
.page-case-content li {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .page-case-content li {
    flex-direction: column;
 }
}
.page-case-content li .page-case-content-pic {
  width: -webkit-calc(50% - 50px);
  width: -moz-calc(50% - 50px);
  width: calc(50% - 50px);
}
@media screen and (max-width: 767px) {
  .page-case-content li .page-case-content-pic {
    width: 100%;
    order: 0;
 }
}
.page-case-content li .page-case-content-pic .page-case-content-pic-inner {
  height: auto;
  background-size: cover;
  background-position: center;
}
.page-case-content li .page-case-content-pic span {
  text-align: center;
  padding-top: 15px;
  line-height: 1.6;
  display: block;
}
.page-case-content li .page-case-content-text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .page-case-content li .page-case-content-text {
    width: 100%;
    order: 1;
    margin-top: 40px;
 }
}
.page-case-content li .page-case-content-text p {
  line-height: 1.8;
}
.page-case-content li .page-case-content-text .page-case-content-text-head {
  font-size: 2.6rem;
  color: #1e47a3;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page-case-content li .page-case-content-text .page-case-content-text-head {
    font-size: 1.8rem;
 }
}
#NotFound {
  text-align: center;
  padding: 100px 15px;
  max-width: 500px;
  line-height: 1.6;
}
#NotFound h2 {
  font-size: 2.8rem;
  color: #1e47a3;
  padding-bottom: 20px;
}
#NotFound ul {
  padding-top: 20px;
  text-align: left;
}
#NotFound ul li::before {
  content: "●";
  padding-right: 10px;
  color: #1e47a3;
}
#NotFound ul li:nth-child(n + 2) {
  padding-top: 15px;
}
#NotFound .back-home {
  margin-top: 30px;
}
#NotFound .back-home a {
  display: block;
  width: 200px;
  border-radius: 5px;
  background: #1e47a3;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 15px 0;
}

#contact-second #main-wrap{
  padding-top: 0;
} 

#contact-second .pagenavi-none{
  padding: 150px 0 0;
  height: 100vh;
}

@media screen and (max-width: 767px) {
   #contact-second .pagenavi-none{
    padding: 50px 0 0;
  }
}

@media screen and (min-width: 768px) {
   #contact-second .form-contact-btn{
    display: flex;
    width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    max-width: 98%;
  }
}

@media screen and (min-width: 768px) {
  #contact-second .contact-box input[type=submit], a.contact-top-btn{
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  #contact-second .contact-box input[type=submit], a.contact-top-btn{
    width: 80%;
    margin: 15px auto;
  }
}

.breadcrumb.archive{
  display: inline-block!important;
  margin: 0!important;
}


#category-case .heading-box{
  text-align: center;
  padding-bottom: 40px;
}

#category-case .heading-box h3{
  color: #191919;
  font-size: 2.6rem;
  padding-bottom: 30px;
}

@media screen and (max-width: 700px) {
  #category-case .heading-box h3{
    font-size: 2rem;
    line-height: 1.6;
    padding: 0 0 16px;
  }
}

#category-case .heading-box .text{
  line-height: 2;
}

@media screen and (min-width: 641px) {
  #category-case .br-sm{
    display: none;
  }
}

@media screen and (max-width: 640px) {
  #category-case .br-sm{
    display: block;
  }
}

#category-case .case-title-box .case-linkBtn-list{
  margin-bottom: 0;
}

#category-case .case-title-box{
  padding: 60px;
  background-color: #f5f8ff;
  margin-bottom: 40px;
  border-radius: 10px;
}


@media screen and (max-width: 950px) {
  #category-case .case-title-box{
    padding: 44px 34px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 800px) {
  #category-case .case-title-box{
    padding: 24px 28px;
  }
}

#category-case .case-linkBtn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
  #category-case .case-linkBtn-list {
    margin-bottom: 0;
  }
}

#category-case .case-title-box .case-linkBtn-list li{
  width: 24%;
  margin: 15px 0;
  text-align: center;
}

@media screen and (max-width: 950px) {
  #category-case .case-title-box .case-linkBtn-list li{
    width: 47%;
    margin: 10px;
  }
}

@media screen and (max-width: 800px) {
  #category-case .case-title-box .case-linkBtn-list li{
    width: 46%;
  }
}

@media screen and (max-width: 640px) {
 #category-case .case-title-box .case-linkBtn-list li{
    width: 100%;
    margin: 8px 0;
  }
}



#category-case .case-linkBtn-list a{
  border-radius: 5px;
  display: block;
  background-color: #1e47a3;
  color: #fff;
  padding: 20px 10px;
}

@media screen and (max-width: 640px) {
  #category-case .case-linkBtn-list a{
    padding: 15px 10px;
  }
}

#category-case .case-linkBtn-list a:hover{
  background-color: #fff;
  color: #1e47a3;
  border: 1px solid #1e47a3;
}

.note{
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
  margin-top: 50px;
}


.note a{
  display: inline-block;
  padding: 0 50px;
  position: relative;
}

.note a:before{
  content:'〉';
  font-size: 75%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  margin: auto;
}

@media screen and (max-width: 640px) {
  .note{
    font-size: 1.8rem;
    margin-top: 24px;
  }
}

@media screen and (max-width: 640px) {
  .note a{
    padding: 0 35px;
  }
}

#category-case .case-title-box{
  padding: 40px 25px;
}

#category-case .case-icon-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#category-case .case-icon-list li{
  width: 23%;
}

@media screen and (max-width: 900px) {
  #category-case .case-icon-list li{
    width: 49%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 640px) {
  #category-case .case-icon-list li{
    width: 100%;
    margin-bottom: 10px;
  }
}


#category-case .case-icon-list li:first-child{
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #category-case .case-icon-list li:first-child{
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 640px) {
  #category-case .case-icon-list li:first-child{
    margin-bottom: 10px;
  }
}

#category-case .case-icon-list .all-box{
  width: 23%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: auto;
  background-color: #fff;
  color: #1e47a3;
  border: 3px solid #1e47a3;
  padding: 20px 10px;
  text-align: center;
}

#category-case .case-icon-list .blue{
  background-color: #1e47a3;
  color: #fff;
}

@media screen and (max-width: 900px) {
  #category-case .case-icon-list .all-box{
    width: 49%;
  }
}

@media screen and (max-width: 768px) {
  #category-case .case-icon-list .all-box{
    border: 2px solid #1e47a3;
  }
}

@media screen and (max-width: 640px) {
  #category-case .case-icon-list .all-box{
    width: 100%;
    padding: 15px 10px;
  }
}

#category-case .case-icon-list dl{
  display: flex;
  align-items: center;
  text-align: left;
  background-color: #fff;
  color: #1e47a3;
  border: 3px solid #1e47a3;
  padding: 5px 5px 0;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #category-case .case-icon-list dl{
    border: 2px solid #1e47a3;
  }
}

@media screen and (max-width: 640px) {
  #category-case .case-icon-list dl{
    padding: 6px 6px 2px;
  }
}

#category-case .case-icon-list dt{
  width: 30%;
}

@media screen and (max-width: 900px) {
  #category-case .case-icon-list dt{
    width: 15%;
  }
}

@media screen and (max-width: 640px) {
  #category-case .case-icon-list dt{
    width: 20%;
  }
}


#category-case .case-icon-list dt img{
  border: 1px solid #1e47a3;
  border-radius: 5px;
  padding-right: 0;
}

#category-case .case-icon-list dd{
  width: 70%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 10px;
}

@media screen and (max-width: 900px) {
  #category-case .case-icon-list dd{
    width: 85%;
  }
}


@media screen and (max-width: 640px) {
  #category-case .case-icon-list dd{
    width: 80%;
  }
}

#category-case .case-icon-list .all-box:hover{
  background-color: #1e47a3;
  color: #fff;
}

#category-case .case-icon-list dl:hover{
  background-color: #1e47a3;
  color: #fff;
}

/*記事一覧*/

#category-case .wrap{
  width: 1080px;
  margin: 60px auto;
  max-width: 96%;
}

@media screen and (max-width: 700px) {
  #category-case .wrap{
    width: 100%;
    max-width: 90%;
  }
}

#category-case .case-content{
  padding: 0 0 60px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 800px) {
  #category-case .case-content{
    display: block;
    padding-top: 20px;
  }
}

#category-case .case-content li{
  width: 45%;
  margin-bottom: 72px;
  background-color: #fff;
  box-shadow: 0 3px 15px rgb(0 0 0 / 15%);
}

@media screen and (max-width: 800px) {
  #category-case .case-content li{
    width: 100%;
  }
}


#category-case .case-top-box{
  padding: 15px;
}

#category-case .case-top-box dl{ 
  display: flex;
  align-items: center;
}

#category-case .case-top-box dt{ 
  width: 75%;
}

#category-case .case-top-box dt img{ 
  width: 120px;
  margin-bottom: 10px;
}

#category-case .case-top-box .c-name{ 
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

#category-case .case-top-box .work-place{ 
  line-height: 1.5;
}

#category-case .case-top-box dd{ 
  width: 25%;
}

#category-case .thumbnail{
  height: 280px;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 800px){
  #category-case .thumbnail{
    width: 100%;
    height: 450px;
  }
}

@media screen and (max-width: 640px) {
  #category-case .thumbnail{
    width: 100%;
    height: 250px;
  }
}

#category-case .box{
  padding: 30px;
}

@media screen and (max-width: 640px) {
  #category-case .box{
    width: 100%;
    padding: 20px;
  }
}

#category-case .box .title{
  font-size: 2rem;
  color: #1e47a3;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  #category-case .box .title{
    font-size: 1.5rem;
    padding-bottom: 16px;
  }
}

#category-case .box .text{
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  #category-case .box .text{
    font-size: 1.4rem;
  }
}

#category-case .box .more-btn{
  text-align: right;
  margin-top: 40px;
}

@media screen and (max-width: 640px) {
  #category-case .box .more-btn{
    margin-top: 20px;
  }
}

#category-case .box .more-btn p{
  font-size: 1.4rem;
  color: #1e47a3;
  font-weight: bold;
  position: relative;
  padding-left: 13px;
  display: inline-block;
}

#category-case .box .more-btn p:before{
  content:'';
  background-image: url(../img/arrow-blue.svg);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 10px;
  background-size: cover;
  background-position: center;
}

#top-isms{
  max-width: 880px;
  margin: 60px auto 0;
  background: #fff;
  position: relative;
  padding: 50px;
  border-radius: 3px;
  box-shadow: 0 3px 15px rgb(0 0 0 / 15%);
}

@media screen and (max-width: 640px) {
  #top-isms{
    padding: 20px;
  }
}

#top-isms .heading{
  font-size: 2.6rem;
  color: #1e47a3;
  text-align: center;
}

@media screen and (max-width: 640px) {
  #top-isms .heading{
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 640px) {
  #top-isms .br-sm{
    display: block;
  }
}

@media screen and (min-width: 641px) {
  #top-isms .br-sm{
    display: none;
  }
}

#top-isms .text{
  line-height: 1.8;
}

#top-isms .box{
  width: 60%;
  margin: 40px auto 0;
}

@media screen and (max-width: 640px) {
  #top-isms .box{
    width: 100%;
    margin: 26px auto 0;
  }
}

#top-isms .box ul{
  display: flex;
  justify-content: center;
}


#top-isms .box ul li img{
  width: 100px;
}

#top-isms .box ul li{
  margin-right: 50px;
}

#top-isms .box ul li:last-child{
  margin-right: 0;
}

#top-isms .box .note{
  font-size: 1.4rem;
  font-weight: normal;
  color: #575656;
  margin-top: 20px;
}

@media screen and (max-width: 640px) {
  #top-isms .box .note{
    font-size: 1.3rem;
  }
}

#single-case{
  margin: 100px 0;
}

@media screen and (max-width: 767px) {
 #single-case{
    padding: 65px 15px;
    margin: 0;
 }
}

#single-case .more{
  display: flex;
    align-items: center;
    justify-content: center;
    margin: 45px 0 60px;
}

#single-case .more a{
  display: block;
    border: 1px solid #e2e8f5;
    padding: 20px 0;
    color: #1e47a3;
    min-width: 220px;
    text-align: center;
    border-radius: 5px;
}

#single-case .case-box .inner{
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  #single-case .case-box .inner{
        flex-direction: column;
  }
}

#single-case .case-box:first-child .inner{
  padding-top: 0;
}

#single-case .case-box:first-child .text-box{
    width: -webkit-calc(50% - 50px);
    width: -moz-calc(50% - 50px);
    width: calc(50% - 50px);
}

  #single-case .case-box:nth-child(4) .inner .text{
    margin-bottom: 80px;
  }


@media screen and (max-width: 767px) {
  #single-case .case-box:first-child .text-box{
    width: 100%;
  }
}

#single-case .case-box:nth-child(even) .pic-box{
  padding-left: 0;
  padding-right: 50px;
}

@media screen and (max-width: 767px) {
  #single-case .case-box:nth-child(even) .pic-box{
      padding-right: 0;
  }
}

#single-case .text-box{
  width: 50%;
}

@media screen and (max-width: 767px) {
 #single-case .text-box{
    width: 100%;
    order: 1;
  }
}

#single-case .pic-box{
  padding-left: 50px;
    width: 50%;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 767px) {
 #single-case .pic-box{
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    height: auto;
    padding-left
  }
}

#single-case .messeage{
  font-size: 2.6rem;
  font-weight: bold;
  color: #1e47a3;
  line-height: 1.5;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
 #single-case .messeage{
    font-size: 1.8rem;
  }
}

#single-case .detail{
  padding: 20px 0 10px;
  line-height: 1.8;
}

#single-case .text{
  padding-top: 20px;
  line-height: 1.8;
}

#single-case .appPhoto img{
  width: 180px;
}

#single-case .pic-detail{
  text-align: center;
    padding-top: 15px;
    line-height: 1.6;
    display: block;
}

/*サービスページの導入事例*/
#p-service-case{
  padding: 80px 0;
}
@media screen and (max-width: 640px) {
 #p-service-case{
    padding: 40px 0 ;
  }
}
#p-service-case .heading-box{
  font-size: 2.6rem;
  color: #1e47a3;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
 #p-service-case .heading-box{
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 640px) {
 #p-service-case .heading-box .br-sm{
    display: block;
  }
}

@media screen and (min-width: 641px) {
 #p-service-case .heading-box .br-sm{
    display: none;
  }
}

 #p-service-case .case-content li{
  width: 50%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 3px 15px rgb(0 0 0 / 15%);
  margin-bottom: 60px;
 }

 @media screen and (max-width: 640px) {
    #p-service-case .case-content li{
    width: 100%;
    margin-bottom: 20px;
  }
}

 #p-service-case .case-top-box{
  padding: 15px;
}

 #p-service-case .case-top-box dl{ 
  display: flex;
  align-items: center;
}

 #p-service-case .case-top-box dt{ 
  width: 75%;
}

 #p-service-case .case-top-box dt img{ 
  width: 120px;
  margin-bottom: 10px;
}

 #p-service-case .case-top-box .c-name{ 
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

 #p-service-case .case-top-box .work-place{ 
  line-height: 1.5;
}

 #p-service-case .case-top-box dd{ 
  width: 25%;
}

 #p-service-case .thumbnail{
  height: 280px;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 640px) {
   #p-service-case .thumbnail{
    width: 100%;
    height: 250px;
  }
}

 #p-service-case .box{
  padding: 30px;
}

@media screen and (max-width: 640px) {
  #p-service-case .box{
    width: 100%;
    padding: 20px;
  }
}

 #p-service-case .box .title{
  font-size: 2rem;
  color: #1e47a3;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
   #p-service-case .box .title{
    font-size: 1.5rem;
    padding-bottom: 16px;
  }
}

#p-service-case .box .text{
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  #p-service-case .box .text{
    font-size: 1.4rem;
  }
}

#p-service-case .box .more-btn{
  text-align: right;
  margin-top: 40px;
}

@media screen and (max-width: 640px) {
  #p-service-case .box .more-btn{
    margin-top: 20px;
  }
}

#p-service-case .box .more-btn p{
  font-size: 1.4rem;
  color: #1e47a3;
  font-weight: bold;
  position: relative;
  padding-left: 13px;
  display: inline-block;
}

#p-service-case .box .more-btn p:before{
  content:'';
  background-image: url(../img/arrow-blue.svg);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 10px;
  background-size: cover;
  background-position: center;
}










