/* base
---------------------------------------------------------------------------- */
/*------------- General Elements -------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #333;
  font-size: 1.5rem;
  line-height: 1.5;
}

a {
  text-decoration: underline;
  color: #00587c;
  outline: none;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

* {
  word-break: break-all;
}

@media screen and (max-width: 720px) {
  body {
    min-width: inherit;
    font-size: 4vw;
  }
}

/*------------- .l-pagebody -------------*/
.l-pagebody {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 720px) {
  .l-pagebody {
    padding-top: 16vw;
  }
}

/*------------- .l-header -------------*/

.l-header {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 45px;
}
.l-logo {
  margin-right: auto;
  font-size: 2rem;
  font-weight: bold;
}
.l-logo span {
  font-size: 3.2rem;
}
.l-logo a {
  text-decoration: none;
}
.l-gnav {
  margin-left: auto;
}
.l-gnav-list {
  font-size: 0;
  display: flex;
}
.l-gnav-item {
  text-align: center;
  font-size: 1.5rem;
}
.l-gnav-item a {
  display: flex;
  align-items: center;
  padding: 0 30px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  height: 54px;
  margin: 25px 0;
}
.l-gnav-item a:hover {
  background: #ccc;
}
.l-gnav-online a {
  padding: 15px 5px 15px 40px;
  line-height: 1;
  background: #00587c;
  color: #fff;
  position: relative;
  margin-left: 40px;
}
.l-gnav-online a:hover {
  background: #00587c;
  opacity: 0.8;
}
.l-gnav-online a:after {
  content: "";
  display: block;
  background: url("../img/common/bg_btn_online.png") no-repeat;
  background-size: 75px auto;
  height: 77px;
  width: 83px;
  position: absolute;
  left: -40px;
  top: -10px;
}
@media screen and (max-width: 1320px) {
  .l-header {
    padding: 0 20px;
  }
  .l-gnav-item a {
    padding: 0 10px;
  }
  .l-gnav-online a {
    padding: 20px 5px 20px 40px;
  }
}
@media screen and (max-width: 1080px) {
  .l-header {
    padding: 0 10px;
  }
  .l-gnav-item {
    font-size: 1.3rem;
  }
  .l-logo {
    font-size: 2rem;
  }
  .l-logo span {
    font-size: 3.2rem;
  }
  .l-gnav-online a {
    padding: 20px 5px 20px 5px;
    margin-left: 0;
  }
  .l-gnav-online a:after {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .l-header {
    padding: 0 5px;
  }
  .l-logo {
    font-size: 1.4rem;
  }
  .l-logo span {
    font-size: 2.2rem;
  }
  .l-gnav-item {
    font-size: 1.2rem;
  }
  .l-gnav-item a {
    padding: 0 5px;
  }
  .l-gnav-online a {
    padding: 20px 5px 20px 5px;
  }
}
@media screen and (max-width: 720px) {
  .l-header-wrapper {
    position: fixed;
    width: 100%;
    z-index: 999;
  }
  .l-header {
    height: 16vw;
    padding: 0 25px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 101;
  }
  .l-logo {
    font-size: 1.7rem;
  }
  .l-logo span {
    font-size: 2.6rem;
  }
  .nav-toggle {
    position: absolute;
    right: 7.2vw;
    top: 4.665vw;
    box-sizing: border-box;
    width: 11.2vw;
    height: 6.667vw;
    cursor: pointer;
    z-index: 101;
    padding: 0;
  }
  .nav-toggle div {
    position: relative;
  }
  .nav-toggle span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #00587c;
    left: 0;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .nav-toggle span:nth-child(1) {
    top: 0;
  }
  .nav-toggle span:nth-child(2) {
    top: 10px;
  }
  .nav-toggle span:nth-child(3) {
    top: 20px;
  }
  .l-gnav-sp {
    position: absolute;
    top: -100vw;
    left: 0;
    width: 100%;
    height: 0;
    background: #00587c;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: 2;
    overflow-y: scroll;
    color: #fff;
  }
  .l-gnav-sp a {
    color: #fff;
    text-decoration: none;
  }
  .l-gnav-sp-list {
    padding: 30px 15px;
  }
  .l-gnav-sp-list li {
    border-bottom: 1px solid #7facbe;
    line-height: 3;
  }
  .l-gnav-sp-list li a {
    display: block;
  }
  .l-gnav-sp-info {
    padding: 0 15px 30px 15px;
  }
  .l-gnav-sp-info-name {
    margin-right: 0;
    font-size: 1.7rem;
    font-weight: bold;
  }
  .l-gnav-sp-info span {
    font-size: 2.6rem;
  }
  .l-gnav-sp-info-add {
    padding: 0;
  }
  .is-open .l-gnav-sp {
    height: calc(100vh - 16vw);
    -moz-transform: translateY(116vw);
    -webkit-transform: translateY(116vw);
    transform: translateY(116vw);
  }
  .is-open .nav-toggle span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .is-open .nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .is-open .nav-toggle span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}
/*------------- .l-content -------------*/
.l-content-inner {
  max-width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  .l-content-inner {
    max-width: 100%;
    margin: 0 15px;
  }
}
/*------------- .l-footer -------------*/
.l-footer {
  background-image: url("../img/common/bg_footer.png"),
    linear-gradient(180deg, #fff 0%, #fff 50%, #00587c 50%, #00587c 100%);
  background-repeat: no-repeat;
  background-position: left -5.21vw top;
  background-size: 111.46vw auto;
  padding: 200px 0 166px 0;
  color: #fff;
}
.l-footer a {
  text-decoration: none;
  color: #fff;
}
.l-footer a:hover {
  text-decoration: underline;
}
.l-footer-nav {
  display: flex;
  padding: 0 0 80px 0;
}
.l-footer-nav p {
  width: 25%;
}

.l-footer-nav ul {
  width: 25%;
  line-height: 2.3333;
}
.l-footer-info {
  display: flex;
  align-items: center;
}
.l-footer-info-name {
  margin-right: 75px;
  font-size: 2.1rem;
  font-weight: bold;
}
.l-footer-info-name a:hover {
  text-decoration: none;
}
.l-footer-info-name span {
  font-size: 3.2rem;
}
.l-footer-info-add {
  padding: 13px 0;
}
.l-footer-copy {
  text-align: center;
  padding: 80px 0 0 0;
}
@media screen and (max-width: 1080px) {
  .l-footer {
    background-position: left -60vw top;
    background-size: 200vw auto;
    padding: 80px 0 166px 0;
  }
}
@media screen and (max-width: 720px) {
  .l-footer {
    background-position: left -229.6vw top;
    background-size: 642.6667vw auto;
    padding: 80px 0 166px 0;
  }
  .l-footer-nav {
    display: block;
    padding: 0 0 32px 0;
  }
  .l-footer-nav p {
    width: 100%;
    border-bottom: 1px solid #7facbe;
    line-height: 4.533;
  }

  .l-footer-nav ul {
    width: 100%;
    line-height: 4.533;
  }
  .l-footer-nav ul li {
    border-bottom: 1px solid #7facbe;
  }
  .l-footer-info {
    display: block;
  }
  .l-footer-info-name {
    margin-right: 0;
    font-size: 1.7rem;
    font-weight: bold;
  }
  .l-footer-info-name span {
    font-size: 2.6rem;
  }
  .l-footer-info-add {
    padding: 0;
  }
  .l-footer-copy {
    text-align: center;
    padding: 60px 0 0 0;
  }
}
/*------------- top -------------*/
.p-mv {
  background: url("../img/top/img_mv_pc.png") no-repeat center top;
  background-size: 100% auto;
  height: 26.04166vw;
}
.p-mv h2 {
  font-size: 2.394833vw;
  font-weight: bold;
  margin-left: 39.5833vw;
  padding-top: 6.8229vw;
  line-height: 1.5;
  color: #00587c;
}
@media screen and (max-width: 720px) {
  .p-mv {
    background: url("../img/top/img_mv_pc.png") no-repeat left -40.8vw top;
    background-size: 217.6vw auto;
    height: 56.8vw;
  }
  .p-mv h2 {
    font-size: 4vw;
    margin-left: 38.9333vw;
    padding-top: 18.6667vw;
  }
}
.p-point {
  display: flex;
  padding: 100px 0 0 0;
}
.p-point h2 {
  background: url("../img/top/bg_point.png") no-repeat center center;
  font-size: 2.6rem;
  font-weight: bold;
  color: #393939;
  text-align: center;
  width: 483px;
  display: flex;
  align-items: center;
  margin: 0 auto 0 0;
}
.p-point h2 span {
  margin: 0 auto;
}
.p-point-list {
  width: 50%;
  margin: 0 0 0 auto;
}
.p-point-item {
  margin: 0 0 40px 0;
}
.p-point-item h3 {
  background: url("../img/top/bg_point_ttl.png") no-repeat;
  padding: 60px 0 34px 58px;
  font-weight: bold;
  color: #1c1c1c;
  font-size: 2.6rem;
}
.p-point-item p {
  padding: 0 0 0 140px;
}
@media screen and (max-width: 720px) {
  .p-point-area {
    background: url("../img/top/bg_service.png") no-repeat center bottom;
    padding: 15px 0 100px 0;
  }
  .p-point {
    display: block;
    padding: 15px 0 15px 0;
  }
  .p-point h2 {
    background: url("../img/top/bg_point.png") no-repeat center center;
    background-size: 100% auto;
    font-size: 5.333vw;
    width: 70.9333vw;
    margin: 0 auto;
    padding: 21.333vw 0;
  }
  .p-point-list {
    width: 100%;
    margin: 0;
  }
  .p-point-item {
    margin: 0 0 40px 0;
  }
  .p-point-item h3 {
    background: url("../img/top/bg_point_ttl.png") no-repeat;
    background-size: 37.6vw auto;
    padding: 11.2vw 0 4vw 8vw;
    font-size: 5.333vw;
  }
  .p-point-item p {
    padding: 0 0 0 10.6667vw;
  }
}
.p-service-area {
  background: url("../img/top/bg_service.png") no-repeat center top;
  padding: 100px 0;
}
.p-btn-online {
  text-align: center;
  padding: 0 0 70px 0;
}
.p-btn-online a {
  display: inline-block;
  background: url("../img/top/bg_online.png") no-repeat center 35px #00587c;
  background-size: 120px auto;
  border: 1px solid #707070;
  padding: 160px 105px 25px 105px;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}
.p-btn-online a:hover {
  opacity: 0.8;
}
.p-service h2 {
  position: relative;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  color: #00587c;
  margin: 65px 0 110px 0;
  padding: 0 0 20px 0;
}
.p-service h2:after {
  display: block;
  content: "";
  height: 2px;
  width: 300px;
  background: #00587c;
  position: absolute;
  bottom: 0;
  left: calc(50% - 150px);
}
.p-service-list {
  display: flex;
  flex-wrap: wrap;
}
.p-service-item {
  margin: 0 20px 16px 0;
  border-radius: 3px;
  background: linear-gradient(150deg, #fff 0%, #fff 70%, #e5e5e5 100%);
  border: 1px solid #d4d2d2;
  width: calc((100% / 3) - 15px);
  text-align: center;
  position: relative;
}
.p-service-item a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 26px 0 10px 0;
}
.p-service-item:nth-child(3n) {
  margin: 0 0 16px 0;
}
.p-service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 34px solid #00587c;
  border-right: 34px solid transparent;
}
.p-service-img {
  margin-bottom: 10px;
}
.p-service-txtbold {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  text-decoration: underline;
  padding: 30px 0 0 0;
}
.p-logo-list {
  display: flex;
  margin-bottom: 75px;
}
.p-logo-item {
  width: calc(100% / 3);
  border-right: 1px dashed #cecece;
  text-align: center;
}
.p-logo-item a {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 10px 0 40px 0;
}
.p-logo-item img {
  height: 109px;
  width: auto;
  margin: 0 auto;
}
.p-logo-item:last-child {
  border-right: none;
}
.p-service-btn-area {
  display: flex;
  justify-content: center;
}
.p-service-btn {
  width: 250px;
  line-height: 55px;
  border: 1px solid #707070;
  text-align: center;
}
.p-service-btn:first-of-type {
  margin-right: 30px;
}
.p-service-btn a {
  display: block;
  text-decoration: none;
  color: #1c1c1c;
  font-size: 2rem;
  transition: 0.3s all;
}
.p-service-btn a:hover {
  color: #fff;
  background: #707070;
}
@media screen and (max-width: 720px) {
  .p-service-area {
    background: none;
    padding: 0 0 15px 0;
  }
  .p-btn-online {
    text-align: center;
    padding: 0 0 25px 0;
  }
  .p-btn-online a {
    background: url("../img/top/bg_online.png") no-repeat center 4vw #00587c;
    background-size: 32vw auto;
    padding: 37.8666vw 0 5.6vw 0;
    font-size: 4.5333vw;
    width: 77.8667vw;
  }
  .p-service h2 {
    font-size: 5.333vw;
    margin: 18.6667vw 0 8vw 0;
    padding: 0 0 5.333vw 0;
  }
  .p-service h2:first-of-type {
    margin-top: 0;
  }
  .p-service h2:after {
    width: 64.5333vw;
    left: calc(50% - 32.3vw);
  }
  .p-service-list {
    display: flex;
    flex-wrap: wrap;
  }
  .p-service-item {
    margin: 0 0 10px 0;
    width: 100%;
  }
  .p-service-item a {
    padding: 5.333vw 0 2.666vw 0;
  }
  .p-service-item:nth-child(3n) {
    margin: 0 0 10px 0;
  }
  .p-service-txtbold {
    font-size: 5.333vw;
  }
  .p-logo-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .p-logo-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px dashed #cecece;
  }
  .p-logo-item a {
    padding: 30px 0;
  }
  .p-logo-item img {
    height: 109px;
    width: auto;
    margin: 0 auto;
  }
  .p-logo-item:last-child {
    border-bottom: none;
  }
  .p-service-btn-area {
    flex-wrap: wrap;
    padding-bottom: 8vw;
  }
  .p-service-btn {
    width: 66.6667vw;
    line-height: 14.6667vw;
  }
  .p-service-btn:first-of-type {
    margin-right: 0;
    margin-bottom: 3.2vw;
  }
  .p-service-btn a {
    font-size: 4.5333vw;
  }
}
.p-about-area {
  background: #00587c;
  padding: 120px 0 60px 0;
}
.p-about-area h2 {
  text-align: center;
  margin: 0 0 110px 0;
}
.p-about-area h2 span {
  display: inline-block;
  border-bottom: 2px solid #fff;
  font-size: 2.6rem;
  font-weight: bold;
  padding: 0 98px 20px 98px;
  color: #fff;
}
.p-about {
  display: block;
}
.p-about-table {
  width: 100%;
  margin-right: 0;
}
.p-about-table table {
  background: #fff;
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  border: 1px solid #acacac;
}
.p-about-table table th {
  padding: 20px;
  width: 30%;
  text-align: center;
  border-bottom: 1px solid #acacac;
  color: #00587c;
}
.p-about-table table td {
  padding: 20px 5px;
  text-align: left;
  border-bottom: 1px solid #acacac;
}
.p-access {
  display: flex;
}
.p-about-access {
  width: 47%;
  margin-right: 3%;
  color: #fff;
}
.p-about-access h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.p-about-access p {
  margin-bottom: 20px;
}
.p-about-map {
  width: 50%;
}
.p-about-btn {
  text-align: center;
  padding: 35px 0 0 0;
}
.p-about-btn-area {
  display: flex;
  justify-content: center;
}
.p-about-btn a {
  display: inline-block;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #707070;
  color: #1c1c1c;
  font-size: 2rem;
  line-height: 55px;
  width: 250px;
  text-decoration: none;
  transition: 0.3s all;
}
.p-about-btn:first-of-type {
  margin-right: 30px;
}
.p-about-btn a:hover {
  background: #707070;
  color: #fff;
}
@media screen and (max-width: 720px) {
  .p-about-area {
    padding: 50px 0 60px 0;
  }
  .p-about-area h2 {
    margin: 0 0 50px 0;
  }
  .p-about-area h2 span {
    font-size: 5.333vw;
    padding: 0 18.133vw 5.333vw 18.133vw;
  }
  .p-about-table table {
    margin-bottom: 12px;
  }
  .p-about-table table th {
    padding: 20px 10px;
    width: 40%;
  }
  .p-about-table table td {
    padding: 20px 5px;
  }
  .p-access {
    display: block;
  }
  .p-about-access {
    width: 100%;
  }
  .p-about-access h3 {
    font-size: 4.533vw;
    margin: 20px 0;
  }
  .p-about-access p {
    margin-bottom: 20px;
  }
  .p-about-map {
    width: 100%;
  }
  .p-about-map iframe {
    width: 100%;
    height: 100vw;
  }
  .p-about-btn-area {
    flex-wrap: wrap;
    padding-bottom: 8vw;
  }
  .p-about-btn {
    width: 66.6667vw;
    line-height: 14.6667vw;
    padding: 0;
  }
  .p-about-btn:first-of-type {
    margin-right: 0;
    margin-bottom: 3.2vw;
    padding-top: 60px;
  }
  .p-about-btn a {
    font-size: 4.5333vw;
  }
}
.p-online {
  background: url("../img/top/bg_online.png") no-repeat right 200px bottom;
  padding: 245px 500px 90px 0;
  text-align: center;
}
.p-online-txt {
  font-size: 2.6rem;
  color: #00587c;
  font-weight: bold;
}
.p-online-btn a {
  display: inline-block;
  background: #00587c;
  border: 1px solid #00587c;
  color: #fff;
  text-decoration: none;
  padding: 9px 65px;
  margin-top: 35px;
  font-size: 2rem;
  transition: 0.3s all;
}
.p-online-btn a:hover {
  background: #fff;
  color: #00587c;
}
@media screen and (max-width: 1000px) {
  .p-online {
    background: url("../img/top/bg_online.png") no-repeat right 20px bottom;
    background-size: 300px auto;
    padding: 245px 40% 90px 0;
  }
}
@media screen and (max-width: 720px) {
  .p-online {
    background: url("../img/top/bg_online.png") no-repeat center bottom;
    background-size: 100% auto;
    padding: 19.7333vw 0 100vw 0;
    margin-bottom: 100px;
  }
  .p-online-txt {
    font-size: 5.333vw;
  }
  .p-online-btn a {
    padding: 10px 74px;
    margin-top: 35px;
    font-size: 4.533vw;
  }
}
.p-topics {
  margin-top: 20px;
  background: #f1f2f6;
  padding: 60px 110px;
  margin-bottom: 50px;
  display: flex;
}
.p-topics h2 {
  color: #00587c;
  font-size: 2.6rem;
  font-weight: bold;
  width: 25%;
}
.p-topics-list {
  width: 75%;
}
.p-topics-list ul li {
  margin-bottom: 30px;
}
.p-topics-list ul li a {
  color: #333;
  text-decoration: none;
}
.p-topics-list ul li span {
  display: block;
}
.p-topics-btn {
  text-align: right;
}
.p-topics-btn a {
  display: inline-block;
  margin: 0 20px 0 0;
  border: 1px solid #707070;
  background: #fff;
  padding: 11px 105px;
  color: #333;
  text-decoration: none;
  text-align: center;
}
.p-topics-btn a:hover {
  background: #707070;
  color: #fff;
}
@media screen and (max-width: 1080px) {
  .p-topics {
    padding: 60px 50px;
  }
}
@media screen and (max-width: 720px) {
  .p-topics {
    margin-top: 0;
    padding: 10px 20px 50px 20px;
    margin-bottom: 0;
    display: block;
  }
  .p-topics h2 {
    font-size: 5.333vw;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
  .p-topics-list {
    width: 100%;
  }
  .p-topics-btn {
    text-align: center;
  }
  .p-topics-btn a {
    margin: 0 20px 0 0;
    color: #00587c;
    font-size: 4.533vw;
  }
}
/*------------- sub -------------*/
.p-sub-mv {
  background: url("../img/common/bg_sub.png") no-repeat center top;
  background-size: 100% auto;
  height: 18.75vw;
  display: flex;
  align-items: center;
  width: 100%;
}
.p-sub-mv h2 {
  font-size: 2.394833vw;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  color: #00587c;
  width: 100%;
}
.breadcrumb {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px 0 0 0;
}
.breadcrumb ol li:not(:last-child)::after {
  content: " > ";
}
.breadcrumb ol li {
  display: inline-block;
}
.p-mh {
  position: relative;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  color: #00587c;
  margin: 65px 0 80px 0;
  padding: 0 0 20px 0;
}
.p-mh:after {
  display: block;
  content: "";
  height: 2px;
  width: 300px;
  background: #00587c;
  position: absolute;
  bottom: 0;
  left: calc(50% - 150px);
}
.p-txt {
  margin-bottom: 1em;
}
.p-list {
  margin: 0 0 30px 30px;
}
.p-list li {
  list-style-type: disc;
}
.p-num-list {
  margin: 0 0 30px 30px;
}
.p-num-list li {
  list-style-type: decimal;
  margin-bottom: 1em;
}
.p-red {
  color: #ff0000;
}
@media screen and (max-width: 720px) {
  .p-sub-mv {
    background: url("../img/common/bg_sub_sp.png") no-repeat center top;
    background-size: 100% auto;
    height: 42.5333vw;
  }
  .p-sub-mv h2 {
    font-size: 6.9333vw;
  }
  .breadcrumb {
    max-width: 1024px;
    margin: 0 auto;
    padding: 2vw 15px 0 15px;
    font-size: 3.3vw;
  }
  .p-mh {
    font-size: 4.8vw;
    margin: 18.6667vw 0 8vw 0;
    padding: 0 0 5.333vw 0;
  }
  .p-mh:after {
    width: 64.5333vw;
    left: calc(50% - 32.3vw);
  }
  .p-txt img {
    display: block;
    margin: 0 auto;
  }
}
/*------------- online -------------*/
.p-online-about {
  background: url("../img/online/bg_online_about.png") no-repeat 100px
    center #f5fbfa;
  background-size: 118px auto;
  border-radius: 10px;
  padding: 60px 80px 45px 360px;
  margin: 65px 0;
}
.p-online-about h3 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 25px;
}
.p-online-block {
  display: flex;
  justify-content: space-between;
  margin: 0 0 45px 0;
}
.p-online-block-img {
  width: 48.8%;
}
.p-online-block-txt {
  width: 48%;
}
.p-online-block-txt h4 {
  color: #00587c;
  font-size: 2.6rem;
  font-weight: bold;
  background: url("../img/online/bg_sh.png") no-repeat left center;
  padding: 24px 0 12px 60px;
  margin-bottom: 35px;
}
.p-online-flow-area {
  background: #00587c;
  padding: 70px 0 100px 0;
}
.p-online-flow h2 {
  position: relative;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  margin: 0 0 110px 0;
  padding: 0 0 20px 0;
  color: #fff;
}
.p-online-flow h2:after {
  display: block;
  content: "";
  height: 2px;
  width: 242px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: calc(50% - 121px);
}
.p-online-flow-list {
  display: flex;
}
.p-online-flow-item {
  width: 24%;
  margin-right: 1.5%;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px 5px 15px 5px;
  display: flex;
  flex-direction: column;
}
.p-online-flow-item:last-child {
  margin-right: 0;
}
.p-online-flow-no {
  margin: 0 0 auto 0;
  background: #b0cbd6;
  color: #00587c;
  font-size: 2rem;
}
.p-online-flow-txt {
  margin: auto 0 0 0;
  text-align: left;
}
.p-btn-online-form {
  text-align: center;
  padding: 67px 0 60px 0;
}
.p-btn-online-form a {
  display: inline-block;
  border: 2px solid #fff;
  background: url("../img/online/icn_online.png") no-repeat 66px
    center #b0cbd6;
  padding: 50px 60px 42px 160px;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  text-align: left;
}
.p-btn-online-form a:hover {
  background: url("../img/online/icn_online.png") no-repeat 66px
    center #fff;
  border: 2px solid #b0cbd6;
}
.p-btn-online-form.p-blue a {
  color: #fff;
  border: 1px solid #707070;
  background: url("../img/online/icn_online.png") no-repeat 66px
    center #00587c;
}
.p-btn-online-form.p-blue a:hover {
  background: url("../img/online/icn_online.png") no-repeat 66px
    center #fff;
  border: 1px solid #00587c;
  color: #00587c;
}
.p-online-apli {
  background: #fff;
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 50px 60px;
}
.p-online-apli h3 {
  color: #00587c;
  font-size: 2.6rem;
  font-weight: bold;
  background: url("../img/online/bg_sh.png") no-repeat left center;
  padding: 24px 0 12px 65px;
  margin-bottom: 35px;
}
.p-online-apli h4 {
  color: #00587c;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 14px;
}
.p-online-apli p {
  padding: 0 25px 35px 25px;
}
@media screen and (max-width: 720px) {
  .p-online-about {
    background: url("../img/online/bg_online_about.png") no-repeat
      20px 100px #f5fbfa;
    background-size: 39vw auto;
    padding: 8vw 1.333vw 8vw 1.333vw;
    margin: 10.6667vw 0 4vw 0;
  }
  .p-online-about h3 {
    font-size: 5.333vw;
    text-align: center;
    margin-bottom: 4vw;
  }
  .p-online-about p {
    padding-left: 45vw;
  }
  .p-online-block {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 0;
  }
  .p-online-block-img {
    width: 100%;
    margin-bottom: 4vw;
    text-align: center;
  }
  .p-online-block-txt {
    width: 100%;
    padding-bottom: 8vw;
  }
  .p-online-block:nth-of-type(2) .p-online-block-img {
    order: 1;
  }
  .p-online-block:nth-of-type(2) .p-online-block-txt {
    order: 2;
  }
  .p-online-block-txt h4 {
    font-size: 5.333vw;
    background-size: 17vw auto;
    padding: 9.0667vw 0 3.7333vw 20vw;
    margin-bottom: 9.333vw;
  }
  .p-online-flow-area {
    background: #00587c;
    padding: 4vw 0 8vw 0;
  }
  .p-online-flow h2 {
    font-size: 5.333vw;
    margin: 8vw 0 8vw 0;
    padding: 0 0 5.333vw 0;
  }
  .p-online-flow:after {
    width: 64.5333vw;
    left: calc(50% - 32.3vw);
  }
  .p-online-flow-list {
    flex-wrap: wrap;
  }
  .p-online-flow-item {
    width: 69.333vw;
    margin: 0 auto 2vw auto;
    padding: 4vw 1.333vw 6vw 1.333vw;
  }
  .p-online-flow-item:last-child {
    margin: 0 auto 2vw auto;
  }
  .p-online-flow-no {
    margin: 0 0 4vw 0;
    font-size: 5.3333vw;
  }
  .p-online-flow-txt {
    margin: 4vw 0 0 0;
  }
  .p-btn-online-form {
    text-align: center;
    padding: 67px 0 60px 0;
  }
  .p-btn-online-form a {
    background: url("../img/online/icn_online.png") no-repeat 2.666vw
      center #b0cbd6;
    padding: 12vw 6.6667vw 10vw 28.2667vw;
    font-size: 5.333vw;
  }
  .p-btn-online-form a:hover {
    background: url("../img/online/icn_online.png") no-repeat 2.666vw
      center #fff;
  }
  .p-btn-online-form.p-blue a {
    color: #fff;
    border: 1px solid #707070;
    background: url("../img/online/icn_online.png") no-repeat 2.666vw
      center #00587c;
  }
  .p-btn-online-form.p-blue a:hover {
    background: url("../img/online/icn_online.png") no-repeat 2.666vw
      center #fff;
    border: 1px solid #00587c;
    color: #00587c;
  }
  .p-online-apli {
    padding: 10.6667vw 2vw;
  }
  .p-online-apli h3 {
    font-size: 5.333vw;
    background-size: 17vw auto;
    padding: 9.0667vw 0 3.7333vw 17.333vw;
    margin-bottom: 9.333vw;
  }
  .p-online-apli h4 {
    color: #00587c;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 14px;
  }
  p.p-online-apli-btn {
    text-align: center;
    padding: 0 0 35px 0;
  }
  .p-online-apli p a {
    display: block;
  }
}
/*------------- form -------------*/
.p-form-table {
  padding: 30px 0;
}
.p-form-table table {
  width: 100%;
  border-top: 2px solid #00587c;
}
.p-form-table table th {
  font-weight: bold;
  text-align: left;
  width: 35%;
  vertical-align: top;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  padding: 1.2em 2em;
  border-bottom: 1px solid #ccc;
  line-height: 2.4;
}
.p-form-table table th.p-required::after {
  content: "必須";
  border: 1px solid #ff0000;
  color: #ff0000;
  background-color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  font-weight: normal;
  font-size: 1.4rem;
  padding: 0.2em 0.5em;
  position: absolute;
  top: 2.2em;
  right: 0;
  line-height: 1.5;
}
.p-form-table table td {
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  padding: 1.2em 2em;
  border-bottom: 1px solid #ccc;
  line-height: 2.4;
}
::placeholder {
  color: #bbb;
}
.p-form-table table td input[type="text"],
.p-form-table table td input[type="submit"],
.p-form-table table td input[type="email"],
.p-form-table table td input[type="date"],
.p-form-table table td input[type="tel"],
.p-form-table table td select,
.p-form-table table td option,
.p-form-table table td textarea {
  border: 0px;
  background-color: #f1f3f3;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  padding: 0.8rem 1.2rem;
  line-height: 1.5;
  font-size: 1.8rem;
  border-radius: 0;
  outline: none;
}
.p-form-table table td select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.p-form-table table td input[type="text"],
.p-form-table table td textarea {
  width: 100%;
}
.p-form-table table td input.datepicker.p-date,
.p-form-table table td input[type="date"].p-date {
  width: 40%;
}
.p-submit {
  text-align: center;
  padding: 6rem 0 8rem;
}
.p-btn-submit {
  color: #fff;
  font-size: 2rem;
  border-radius: 0;
  display: inline-block;
  padding: 9px 65px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  background: #00587c;
  border: 1px solid #00587c;
}
.p-btn-submit:hover {
  background: #fff;
  color: #00587c;
}
@media all and (max-width: 720px) {
  .p-form-table table th {
    display: block;
    width: 100%;
    border-bottom: 0px;
    padding: 1.2em 1rem 0.6em;
    font-size: 4.5333vw;
  }
  .p-form-table table th.p-required::after {
    font-size: 3.7333vw;
    padding: 0.1em 0.4em;
    position: static;
    margin-left: 1em;
  }
  .p-form-table table td {
    display: block;
    padding: 0.3em 2rem 1.5em;
    font-size: 4vw;
    width: 100%;
  }
  .p-form-table table td input[type="text"],
  .p-form-table table td input[type="submit"],
  .p-form-table table td input[type="email"],
  .p-form-table table td input[type="date"],
  .p-form-table table td select,
  .p-form-table table td option,
  .p-form-table table td textarea {
    font-size: 4vw;
  }
  .p-form-table table td input[type="text"],
  .p-form-table table td input[type="email"],
  .p-form-table table td textarea {
    width: 100%;
  }
  .p-form-table table td input.datepicker.p-date,
  .p-form-table table td input[type="date"].p-date {
    width: 100%;
    margin-bottom: 10px;
	height: 3em;
  }
  .p-submit {
    text-align: center;
    padding: 6vw 0 8vw;
  }
  .p-btn-submit {
    padding: 10px 74px;
    font-size: 4.533vw;
  }
}
/*------------- home -------------*/
.p-home-area {
  padding: 50px 0 0 0;
  background: url("../img/top/bg_service.png") no-repeat center bottom;
}
.p-home td {
  vertical-align: middle;
}
.p-csr,
.p-privacy,
.p-hansya,
.p-kengen {
  padding: 50px 0 0 0;
}
.p-topics-detail {
  padding: 0 0 30px 0;
}
.p-topics-detail p {
  margin: 0 0 1em 0;
}
.p-solicitate-area {
  background: url("../img/top/bg_service.png") no-repeat center bottom -50px;
  padding: 0 0 150px 0;
}
.p-company-area-img {
  background: url("../img/top/bg_service.png") no-repeat center bottom -50px;
  padding: 0 0 150px 0;
}
.p-company-area {
  background: #00587c;
  padding: 1px 0 60px 0;
  margin-top: 40px;
}
.p-company-area .p-mh {
  color: #fff;
}
.p-company-area .p-mh::after {
  background: #fff;
}
.p-company-ideco {
  text-align: center;
  margin-bottom: 30px;
}
.p-company-ideco img {
  max-width: 500px;
  height: auto;
  margin: 0 5px;
}
@media all and (max-width: 1020px) {
  .p-company-ideco img {
    margin: 0 0 10px 0;
  }
}
@media all and (max-width: 720px) {
  .p-topics-area {
    padding: 40px 0;
  }
  .p-solicitate-area {
    background: url("../img/top/bg_service.png") no-repeat center bottom -80px;
    padding: 0 0 50px 0;
  }
  .p-company-area-img {
    background: url("../img/top/bg_service.png") no-repeat center bottom -80px;
    padding: 0 0 50px 0;
  }
  .p-company-ideco {
    margin-bottom: 20px;
  }
  .p-company-ideco img {
    max-width: 80%;
    display: block;
    margin: 0 auto 10px auto;
  }
}
/* common
---------------------------------------------------------------------------- */
/* RWD表示切り替え
---------------------------------------------------------------------------- */
@media all and (min-width: 721px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 720px) {
  .nosp {
    display: none !important;
  }
}
/* clearfix
---------------------------------------------------------------------------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* テキスト
---------------------------------------------------------------------------- */
.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold !important;
}

@media screen and (max-width: 720px) {
  .sptal {
    text-align: left !important;
  }

  .sptac {
    text-align: center !important;
  }

  .sptar {
    text-align: right !important;
  }

  .spfwb {
    font-weight: bold !important;
  }
}


/* info style
 ------------------------------*/
section .p-topics-detail div .infoimg, .eventimg{ display:block;clear: both; }
section .p-topics-detail div .infoimg.center, section .p-topics-detail div .eventimg.center{ margin:0px auto; }
section .p-topics-detail div .infoimg.left, section .p-topics-detail div .eventimg.left{ margin-left:0px; margin-right:auto; }
section .p-topics-detail div .infoimg.right, section .p-topics-detail div .eventimg.right{ margin-right:0px; margin-left:auto; }
/*section .p-topics-detail div .infoimg.inline, section .p-topics-detail div .eventimg.inline{ display:inline;vertical-align: middle; }*/
section .p-topics-detail div .infoimg.inline, section .p-topics-detail div .eventimg.inline{ display:inline;float:left;vertical-align: top; margin-right: 20px; }
section .p-topics-detail div .infoimg.small, section .p-topics-detail div .eventimg.small{ max-width:30%; }
section .p-topics-detail div .infoimg.medium, section .p-topics-detail div .eventimg.medium{ max-width:50%; }
section .p-topics-detail div .infoimg.large, section .p-topics-detail div .eventimg.large{ max-width:100%; }
section .p-topics-detail div{ clear: both;overflow:hidden; }
