/* -----------------------------------------------------------
 * 共通
----------------------------------------------------------- */
.pc {
  display: block !important;
}
.mb {
  display: none !important;
}
.tb {
  display: none !important;
}
.m-title .m-title_text {
  position: relative;
  z-index: 1;
  color: #fff;
}
.m-title .m-title_text h2 {
  font-weight: 600;
  font-size: 42px;
  color: #FFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
  text-align: center;
  line-height: 1.6
}
.m-title .m-title_text .en {
  font-family: "gravesend-sans", sans-serif;
  margin-top: 5px;
  display: block;
  font-weight: 600;
  letter-spacing: 5px;
  font-size: 20px;
  color: #FFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}
@media screen and (max-width: 959px) {
  .pc {
    display: none !important;
  }
  .mb {
    display: block !important;
  }
  .tb {
    display: block !important;
  }
}
.br {
  display: block !important;
}
@media screen and (max-width: 600px) {
  .br {
    display: none !important;
  }
}
@media (min-width: 960px) and (max-width: 1024px) {
  .tb {
    display: block !important;
  }
  .br {
    display: block !important;
  }
}
@media (max-width: 599px) {
  .m-title .m-title_text h2 {
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 1.4
  }
  .m-title .m-title_text .en {
    margin-top: 5px;
    letter-spacing: 3px;
    font-size: 16px;
  }
}
/* フェード
----------------------------------------------------------- */
/* 上からフェードイン */
.slide-top {
  opacity: 0;
  transform: translate(0, -30px);
  transition: all .8s ease-out;
}
/* 下からフェードイン */
.slide-bottom {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all .8s ease-out;
}
/* 左からフェードイン */
.slide-left {
  opacity: 0;
  transform: translate(-30px, 0);
  transition: all .8s ease-out;
}
/* 右からフェードイン */
.slide-right {
  opacity: 0;
  transform: translate(30px, 0);
  transition: all .8s ease-out;
}
/* パンくず
----------------------------------------------------------- */
.pan {
  width: 88%;
  padding: 24px 6% 0;
  overflow: hidden;
}
.pan ul {
  font-size: 14px;
  padding: 0px;
}
.pan li {
  float: left;
  padding-left: 57px;
  background: url("../../img/common/h_pan.gif") no-repeat 10px center;
  background-size: 20px 11px;
  background-position: 20px 4px;
  list-style-type: none;
}
.pan li:first-child {
  background: none;
  padding-left: 0;
}
@media (max-width: 599px) {
  .pan {
    width: 100%;
    padding: 15px 0% 0;
  }
  .pan li {
    padding-left: 42px;
    font-size: 12px;
    background-position: 12px 6px;
  }
  .pan li:first-child {
    padding-left: 20px;
  }
}
@media (min-width: 600px) and (max-width: 1279px) {
  .pan {
    width: 90%;
    padding: 24px 5% 0;
  }
}
@media (min-width: 1280px) and (max-width: 1440px) {
  .pan {
    width: 90%;
    padding: 24px 5% 0;
  }
}
/* ページナビ
----------------------------------------------------------- */
nav.navigation {
  width: 42%;
  margin: 0 auto;
}
.pagination {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.pagination a {
  text-decoration: none;
}
.nav-links {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.nav-links a:hover {
  background: #0080CC;
  color: #fff;
}
.pagination .page-numbers {
  display: inline-block;
  margin-right: 10px;
  padding: 1px 15px;
  color: #0080CC;
  background: #fff;
  border: 1px solid #0080CC;
  font-size: 14px;
}
.pagination .current {
  background: #0080CC;
  color: #fff;
}
.pagination .prev, .pagination .next {
  background: transparent;
  box-shadow: none;
  color: #0080CC;
  text-decoration: none;
}
.pagination .dots {
  background: transparent;
  box-shadow: none;
  border: none;
}
.post__pagination {
  overflow: hidden;
  margin-top: 20px;
}
.post__pagination__left, .post__pagination__right {
  width: 200px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 18px;
}
.post__pagination__left {
  float: left;
  text-align: left;
}
.post__pagination__right {
  float: right;
  text-align: right;
}
.post__pagination__left > a, .post__pagination__right > a {
  display: block;
  position: relative;
}
@media (max-width: 599px) {
  nav.navigation {
    width: 88%;
  }
  .pagination .page-numbers {
    padding: 1px 5px;
  }
  .post__pagination__left, .post__pagination__right {
    width: 150px;
    font-size: 12px;
  }
}
@media (min-width: 600px) and (max-width: 1279px) {
  nav.navigation {
    width: 100%;
  }
}
/* ボタン
----------------------------------------------------------- */
.w_btn {
  display: inline-block;
  padding: 0 60px;
  text-align: center;
  text-decoration: none;
  line-height: 50px;
  outline: none;
  background-color: #0080CC;
  position: relative;
  transition: color 0.5s ease;
  letter-spacing: 3px;
}
.w_btn:hover::before {
  transform: scaleX(1);
  transform-origin: right;
}
.w_btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #FF9B27;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.5s ease;
  transition-property: transform;
}
.w_text {
  position: relative;
  color: #FFF;
}
.w_text:hover {
  color: #FFF;
  position: relative;
}
@media (max-width: 599px) {
  .b_btn {
    width: 200px;
  }
}
/* スクロール
----------------------------------------------------------- */
.scroll {
  font-size: 26px;
  text-align: center;
}
/* -----------------------------------------------------------
 * ページ
----------------------------------------------------------- */
/* トップ
----------------------------------------------------------- */
#vegas {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.index-mv-bg {
  width: 100%;
  height: 100vh;
  background: linear-gradient(110deg, transparent 0%, transparent 58%, #0080CC 50%, #006AAA 100%);
  opacity: .95;
}
.index-mv-copy {
  z-index: 998;
  position: absolute;
  text-align: center;
  top: 55%;
  right: 0%;
  transform: translate(-15%, -40%);
  -webkit-transform: translate(-15%, -40%);
  -ms-transform: translate(-15%, -40%);
}
.index-mv-copy * {
  overflow: visible
}
.index-mv-copy-upper {
  font-weight: 700;
  font-style: italic;
  color: #FFF;
  text-align: left;
  font-size: 62px;
  line-height: 1.2;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  transition-delay: .5s;
}
.index-mv-copy-middle {
  color: #FFF;
  text-align: left;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 4px;
  margin-bottom: 100px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  transition-delay: 1.0s;
}
.index-area {
  width: 1360px;
  margin: 60px auto 0;
  overflow: hidden;
}
.index-area a {
  color: #333;
}
.index-area a:hover {
  color: #FF9B27;
  opacity: 0.8;
}
.index-area span {
  font-size: 24px;
  font-weight: 600;
}
.index-area p {
  font-size: 16px;
  margin-top: 6px;
}
.index-area_l {
  width: 260px;
  height: 150px;
  background-image: url("../../img/top/bg_area_l.png");
  background-repeat: no-repeat;
  background-size: 420px 200px;
  margin-right: 50px;
  float: left;
  padding: 50px 0 0 160px;
  transition: all .4s ease
}
.index-area_c {
  width: 260px;
  height: 150px;
  background-image: url("../../img/top/bg_area_c.png");
  background-repeat: no-repeat;
  background-size: 420px 200px;
  margin-right: 50px;
  float: left;
  padding: 50px 0 0 160px;
  transition: all .4s ease
}
.index-area_r {
  width: 260px;
  height: 150px;
  background-image: url("../../img/top/bg_area_r.png");
  background-repeat: no-repeat;
  background-size: 420px 200px;
  float: left;
  padding: 50px 0 0 160px;
  transition: all .4s ease
}
.news {
  width: 1360px;
  margin: 0 auto 60px;
  padding: 60px 0 0;
}
.news-inner {
  width: 100%;
}
.news-upper {
  clear: both;
}
.news-upper .title {
  width: 30%;
  background: linear-gradient(90deg, #0080CC 0%, #006AAA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-family: "gravesend-sans", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  float: left;
}
.news-upper .title span {
  background: linear-gradient(90deg, #0080CC 0%, #006AAA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin-left: 24px;
  letter-spacing: 0px;
}
.news-lower {
  clear: both;
  overflow: hidden;
}
.news_contents .news_list {
  width: 100%;
  margin: 15px 0 40px;
  border-top: 1px solid #B7C1DA;
}
.news_contents .news_list li {
  padding: 20px 5px;
  border-bottom: 1px solid #B7C1DA;
/*
  text-overflow: ellipsis;
  white-space: nowrap;
*/
  overflow: hidden;
}
.news_contents .news_list .date {
  color: #0080CC;
  letter-spacing: 2px;
  margin-right: 20px;
}
.news_contents .news_list .category {
  display: inline-block;
  color: #0080CC;
  width: 100px;
  font-size: 14px;
  text-align: center;
  margin-right: 20px;
  padding: 2px 5px;
  border: solid 1px #0080CC;
}
.news_contents .news_list .news_text {
  color: #333;
}
span.new {
  margin-right: 10px;
  font-style: italic;
  color: #E60012
}
.btn_area {
  margin-top: 20px;
  text-align: center;
}
.btn_area a {
  color: #FFF;
}
@media (max-width: 599px) {
  #vegas {
    height: 55vh;
  }
  .index-mv-bg {
    background: linear-gradient(105deg, transparent 0%, transparent 50%, #0080CC 50%, #006AAA 100%);
    height: 55vh;
  }
  .index-mv-copy {
    top: 60%;
  }
  .index-mv-copy-upper {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .index-mv-copy-middle {
    font-size: 24px;
  }
  .index-area {
    width: 90%;
    margin: 40px 5% 0;
  }
  .index-area span {
    font-size: 20px;
  }
  .index-area p {
    font-size: 14px;
    margin-top: 4px;
    line-height: 1.4;
  }
  .index-area_l {
    width: 62%;
    background-size: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    float: left;
    padding: 40px 0 0 38%;
  }
  .index-area_c {
    width: 62%;
    background-size: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    float: left;
    padding: 40px 0 0 38%;
  }
  .index-area_r {
    width: 62%;
    background-size: 100%;
    float: left;
    padding: 40px 0 0 38%;
  }
  .news {
    width: 90%;
    margin: 0 5% 10px;
    padding: 0;
  }
  .news-inner {
    width: 90%;
    padding: 20px 5% 40px;
  }
  .news-upper .title {
    width: 100%;
    font-size: 40px;
  }
  .news-upper .title span {
    font-size: 20px;
    font-style: normal;
  }
  .news_contents .news_list {
    margin: 30px 0 40px;
  }
  .news_contents .news_list li {
    padding: 20px 5px;
  }
  .news_contents .news_list .date {
    margin-right: 10px;
  }
  .news_contents .news_list .category {
    margin-right: 0;
    padding: 2px 5px;
    line-height: 1.2;
  }
  .news_contents .news_list .news_text {
    display: block;
    margin-top: 10px;
    overflow: hidden;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  #vegas {
    height: 90vh;
  }
  .index-mv-bg {
    background: linear-gradient(110deg, transparent 0%, transparent 50%, #0080CC 50%, #006AAA 100%);
    height: 90vh;
  }
  .index-mv-copy-upper {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 40px;
  }
  .index-mv-copy-middle {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .index-mv-copy {
    top: 40%;
    transform: translate(-20%, -20%);
    -webkit-transform: translate(-20%, -20%);
    -ms-transform: translate(-20%, -20%);
  }
  .index-area {
    width: 90%;
    margin: 40px 5% 0;
  }
  .index-area span {
    font-size: 24px;
  }
  .index-area p {
    font-size: 16px;
    margin-top: 4px;
    line-height: 1.4;
  }
  .index-area_l {
    width: 78%;
    background-size: auto;
    margin-right: 0;
    margin-bottom: 20px;
    float: left;
    padding: 50px 0 0 22%;
  }
  .index-area_c {
    width: 78%;
    background-size: auto;
    margin-right: 0;
    margin-bottom: 20px;
    float: left;
    padding: 50px 0 0 22%;
  }
  .index-area_r {
    width: 78%;
    background-size: auto;
    float: left;
    padding: 50px 0 0 22%;
  }
  .news {
    width: 90%;
    margin: 0 5% 40px;
    padding: 0;
  }
  .news-inner {
    width: 100%;
    padding: 40px 0;
  }
  .news-upper .title {
    width: 100%;
    font-size: 40px;
  }
  .news-upper .title span {
    font-size: 20px;
    font-style: normal;
  }
  .news_contents .news_list {
    margin: 30px 0 60px;
  }
  .news_contents .news_list li {
    padding: 20px 5px;
  }
  .news_contents .news_list .date {
    margin-right: 10px;
  }
  .news_contents .news_list .category {
    margin-right: 0;
    padding: 2px 5px;
  }
  .news_contents .news_list .news_text {
    display: block;
    margin-top: 10px;
    overflow: hidden;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  .index-mv-bg {
    background: linear-gradient(110deg, transparent 0%, transparent 55%, #0080CC 50%, #006AAA 100%);
  }
  .index-mv-copy-upper {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 60px;
  }
  .index-mv-copy-middle {
    font-size: 36px;
    margin-bottom: 60px;
  }
  .index-mv-copy {
    top: 40%;
    transform: translate(-20%, -0%);
    -webkit-transform: translate(-20%, -0%);
    -ms-transform: translate(-20%, -0%);
  }
  .index-area {
    width: 90%;
    margin: 60px 5% 0;
  }
  .index-area_l {
    width: 230px;
    height: 140px;
    background-image: url("../../img/top/bg_area_l.png");
    background-repeat: no-repeat;
    background-size: 380px 190px;
    background-position: center;
    margin-right: 30px;
    float: left;
    padding: 50px 0 0 130px;
    transition-delay: .2s;
  }
  .index-area_c {
    width: 230px;
    height: 140px;
    background-image: url("../../img/top/bg_area_c.png");
    background-repeat: no-repeat;
    background-size: 380px 190px;
    background-position: center;
    margin-right: 30px;
    float: left;
    padding: 50px 0 0 130px;
    transition-delay: .4s;
  }
  .index-area_r {
    width: 230px;
    height: 140px;
    background-image: url("../../img/top/bg_area_r.png");
    background-repeat: no-repeat;
    background-size: 380px 190px;
    background-position: center;
    float: left;
    padding: 50px 0 0 130px;
    transition-delay: .6s;
  }
  .news {
    width: 90%;
    margin: 0 5% 60px;
    padding: 40px 0 0;
  }
  .news-upper .title {
    width: 40%;
  }
}
@media (min-width: 1281px) and (max-width: 1440px) {
  .index-mv-copy-upper {
    font-size: 48px;
  }
  .index-mv-copy-middle {
    font-size: 32px;
  }
  .index-area_l {
    margin-right: 15px;
    margin-left: 15px;
  }
  .index-area_c {
    margin-right: 15px;
    margin-left: 15px;
  }
  .index-area_r {
    margin-right: 15px;
    margin-left: 15px;
  }
  .news {
    width: 90%;
    margin: 0 5% 80px;
  }
}
@media (min-width: 1441px) and (max-width: 1919px) {
  .index-mv-copy-upper {
    font-size: 52px;
  }
  .index-mv-copy-middle {
    font-size: 32px;
  }
}
/* 企業情報
----------------------------------------------------------- */
.company_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 60px 18%;
  background-color: rgba(191, 223, 255, .15);
  line-height: 1.8;
}
.company .m-title {
  position: relative;
  background-position: center center;
  background-size: cover;
  color: #fff;
  background-image: url("../../img/company/ttl_bg.jpg");
  padding: 160px 0 80px;
}
.company .m-title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../img/common/bg-dot.png");
  background-attachment: fixed;
}
.company h3 {
  font-weight: 500;
  margin-bottom: 40px;
  padding-left: 30px;
  font-size: 32px;
  color: #0080CC;
  position: relative;
  line-height: 1.0;
  text-align: left;
}
.company h3:before {
  content: '';
  position: absolute;
  left: 0%;
  width: 6px;
  height: 34px;
  background-color: #0080CC
}
.company h4 {
  font-weight: 500;
  font-size: 28px;
  color: #333;
  margin: 20px 0 10px;
}
.company h5 {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin: 0 0 10px;
}
.greeting {
  margin-bottom: 40px;
  overflow: hidden;
}
.greeting .left {
  width: 52%;
  margin-right: 8%;
  float: left;
  transition-delay: .2s;
}
.greeting .left .name {
  font-size: 14px;
  margin-top: 30px;
  text-align: right;
}
.greeting .left .name img {
  margin-right: 20px;
  margin-top: 8px;
  pointer-events: none;
}
.greeting .left .name span {
  font-size: 20px;
  font-weight: 600;
  margin-left: 15px;
}
.greeting .right {
  width: 40%;
  float: left;
  transition-delay: .4s;
}
.greeting .right img {
  width: 93%;
  border-radius: 10px;
  box-shadow: 30px 30px 0px 0px rgba(0, 128, 204, 1);
  pointer-events: none;
}
.greeting p {
  line-height: 2.0;
  margin-bottom: 15px;
}
.philosophy_inner {
  width: 64%;
  margin: 0;
  padding: 40px 18%;
  line-height: 1.8;
}
.philosophy_inner ul {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 0 30px;
  background-image: url("../../img/company/bg_logo.png");
  background-repeat: no-repeat;
}
.philosophy_inner ul li {
  list-style: none;
  font-size: 28px;
  font-weight: 600;
  color: #0080CC;
  margin-bottom: 30px;
}
.philosophy_inner ul li:nth-child(2) {
  transition-delay: .2s;
}
.philosophy_inner ul li:nth-child(3) {
  transition-delay: .4s;
}
.philosophy_inner ul li:nth-child(4) {
  transition-delay: .6s;
}
.philosophy_inner ul li span {
  font-style: italic;
  margin-right: 10px;
}
.company-history_itemwrap {
  margin: 60px 0 0;
  padding: 0 0px
}
.company-history_item {
  display: flex;
}
.company-history_item:last-of-type .company-history_item_body:after {
  content: none
}
.company-history_item_year {
  font-family: "gravesend-sans", sans-serif;
  font-size: 20px;
  color: #0080CC;
  letter-spacing: 3px;
  line-height: 1.6;
  flex: 0 0 100px;
  margin-right: 80px;
  text-align: right
}
.company-history_item_body {
  position: relative;
  padding-bottom: 30px;
  padding-left: 80px
}
.company-history_item_body:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 128, 204, 1);
  content: ""
}
.company-history_item_body:after {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 5px;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 128, 204, .2);
  content: ""
}
.about {
  margin: 60px auto 0;
}
.about dl.cell_item {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}
.about dl.cell_item dt {
  clear: both;
  float: left;
  width: 13%;
  padding-left: 2%;
  text-align: left;
  line-height: 1.8;
  color: #0080CC;
}
.about dl.cell_item dt.first {
  padding-top: 25px;
}
.about dl.cell_item dd {
  width: 83%;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 1px solid #B7C1DA;
  line-height: 1.8;
  padding: 0 2% 25px 15%;
}
.about dl.cell_item dd.first {
  border-top: 1px solid #B7C1DA;
  padding-top: 25px;
}
.about dl.cell_item dd img {
  margin-top: 10px;
}
.about dl.cell_item dd span.c_name {
  font-size: 14px;
  border-radius: 30px;
  border: solid 1px #0080CC;
  background-color: #0080CC;
  padding: 5px 15px;
  margin: 15px 0 5px;
  color: #FFF;
  text-align: center;
}
.about dl.cell_item dd p.c_address {
  line-height: 1.6;
  margin: 8px 0 20px;
}
.about dl.cell_item dd ul {
  margin-left: 18px;
}
.about dl.cell_item dd ul li {
  width: 100%;
  margin-bottom: 5px;
  line-height: 1.6;
  list-style-type: none;
}
.about dl.cell_item dd ul li::before {
  content: '・';
  color: #0080CC;
  font-size: 18px;
  font-weight: 600;
  margin-left: -18px;
  margin-right: 5px;
}
.about p {
  margin: 20px 0;
  padding: 0;
  text-align: left;
  line-height: 1.8;
}
.about p span.attention {
  color: #0059B2;
  font-weight: 600;
}
.organization_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 60px 18%;
  line-height: 1.8;
  text-align: center;
}
.organization_inner .date {
  width: 100%;
  text-align: right;
}
.organization_inner img {
  pointer-events: none;
}
.law_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 60px 18%;
  background-color: rgba(191, 223, 255, .15);
  line-height: 1.8;
}
.law_inner .link {
  padding-left: 30px;
  margin: 20px 0 0 0;
  text-align: left;
  background-image: url("../../img/common/icon_link.png");
  background-repeat: no-repeat;
  background-position: 0 9px;
  background-size: 16px 16px;
  list-style-type: none;
}
.access {
  margin-bottom: 40px;
}
#fukuoka {
  content: "";
  display: block;
  height: 75px;
  margin-top: -75px;
  vertical-align: top;
}
#tokyo {
  content: "";
  display: block;
  height: 75px;
  margin-top: -75px;
  vertical-align: top;
}
#yokohama {
  content: "";
  display: block;
  height: 75px;
  margin-top: -75px;
  vertical-align: top;
}

.access p {
  line-height: 1.6;
}
.map01 {
  clear: both;
  width: 99%;
  border: 1px solid #B7C1DA;
  background-color: #FFF;
  padding: 5px;
  margin: 20px auto;
}
.map01 #gmap01, .map01 #gmap02, .map01 #gmap03 {
  width: 100%;
  height: 500px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}
.map01 #gmap01 p, .map01 #gmap02 p, .map01 #gmap03 p {
  padding: 0;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 599px) {
  .company_inner {
    width: 90%;
    margin: 30px 0 60px;
    padding: 40px 5% 20px;
  }
  .company .m-title {
    padding: 140px 0 60px;
  }
  .company_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .company_inner h3:before {
    height: 26px;
  }
  .company_inner h4 {
    font-size: 24px;
  }
  .greeting .left {
    width: 100%;
    margin-right: 0;
  }
  .greeting .left .name img {
    width: 160px;
    margin-right: 10px;
    margin-top: 12px;
  }
  .greeting .left .name span {
    font-size: 18px;
  }
  .greeting .right {
    width: 100%;
    margin: 40px 0 20px;
  }
  .greeting .right img {
    width: 95%;
    box-shadow: 15px 15px 0px 0px rgba(0, 128, 204, 1);
  }
  .philosophy_inner {
    width: 90%;
    padding: 0 5%;
    line-height: 1.8;
  }
  .philosophy_inner ul {
    margin-bottom: 20px;
    padding: 10px 0 30px;
    background-size: 100%;
  }
  .philosophy_inner ul li {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .philosophy_inner ul li span {
    margin-right: 5px;
  }
  .philosophy_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .philosophy_inner h3:before {
    height: 26px;
  }
  .company-history_item_year {
    font-size: 18px;
    margin-right: 0;
    text-align: left
  }
  .company-history_item_body {
    padding-left: 30px
  }
  .about {
    margin: 20px auto 0;
  }
  .about dl.cell_item dt {
    clear: both;
    float: left;
    width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.8;
    color: #0080CC;
  }
  .about dl.cell_item dt.first {
    padding-top: 20px;
  }
  .about dl.cell_item dd {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 0 20px;
  }
  .about dl.cell_item dd span.c_name {
    border-radius: 20px;
    padding: 5px 15px;
    margin: 15px 0 5px;
  }
  .about dl.cell_item dd ul li::before {
    margin-left: -22px;
  }
  .organization_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .organization_inner h3:before {
    height: 26px;
  }
  .organization_inner {
    width: 90%;
    margin: 0 0 60px;
    padding: 0 5%;
  }
  .organization_inner .date {
    margin-bottom: 20px;
  }
  .law_inner {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5%;
}
  .law_inner p {
    line-height: 1.6;
}
  .law_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
    line-height: 1.2;
  }
  .law_inner h3:before {
    height: 28px;
  }
  .map01 #gmap01, .map01 #gmap02, .map01 #gmap03 {
    height: 300px;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .company_inner {
    width: 90%;
    margin: 30px 0 60px;
    padding: 40px 5% 20px;
  }
  .company .m-title {
    padding: 140px 0 60px;
  }
  .company_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .company_inner h3:before {
    height: 26px;
  }
  .company_inner h3 {
    font-size: 20px;
  }
  .company h4 {
    font-size: 24px;
  }
  .greeting .left {
    width: 100%;
    margin-right: 0;
  }
  .greeting .left .name img {
    width: 250px;
    margin-right: 15px;
    margin-top: 10px;
  }
  .greeting .right {
    width: 100%;
    margin: 40px 0;
    text-align: center;
  }
  .greeting .right img {
    width: 80%;
  }
  .philosophy_inner {
    width: 90%;
    padding: 0 5%;
    line-height: 1.8;
  }
  .philosophy_inner ul {
    margin-bottom: 20px;
    padding: 10px 0 60px;
    background-size: 550px;
    background-position: center;
  }
  .philosophy_inner ul li {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .philosophy_inner ul li span {
    margin-right: 5px;
  }
  .philosophy_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .philosophy_inner h3:before {
    height: 26px;
  }
  .company-history_item_year {
    font-size: 18px;
    margin-right: 40px;
  }
  .company-history_item_body {
    padding-left: 50px
  }
  .about {
    margin: 40px auto;
  }
  .about dl.cell_item dt {
    clear: both;
    float: left;
    width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.8;
    color: #0080CC;
  }
  .about dl.cell_item dt.first {
    padding-top: 20px;
  }
  .about dl.cell_item dd {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 0 20px;
  }
  .about dl.cell_item dd span.c_name {
    border-radius: 20px;
    padding: 5px 15px;
    margin: 15px 0 5px;
  }
  .about dl.cell_item dd ul li::before {
    margin-left: -22px;
  }
  .organization_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .organization_inner h3:before {
    height: 26px;
  }
  .organization_inner {
    width: 90%;
    margin: 0 0 60px;
    padding: 0 5%;
  }
  .organization_inner .date {
    margin-bottom: 20px;
  }
  .law_inner {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5%;
}
  .law_inner p {
    line-height: 1.6;
}
  .law_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
    line-height: 1.2;
  }
  .law_inner h3:before {
    height: 28px;
  }
  .map01 #gmap01, .map01 #gmap02, .map01 #gmap03 {
    height: 400px;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  .company_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5%;
  }
  .philosophy_inner {
    width: 90%;
    padding: 0 5%;
    line-height: 1.8;
  }
  .organization_inner {
    width: 90%;
    padding: 0 5%;
  }
  .law_inner {
    width: 90%;
    padding: 60px 5%;
  }
}
@media (min-width: 1281px) and (max-width: 1440px) {
  .company_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5%;
  }
  .philosophy_inner {
    width: 90%;
    padding: 20px 5% 30px;
    line-height: 1.8;
  }
  .philosophy_inner ul {
    padding: 10px 0 20px;
    background-size: 500px;
  }
  .philosophy_inner ul li {
    margin-bottom: 30px;
  }
  .organization_inner {
    width: 90%;
    padding: 0 5%;
  }
  .law_inner {
    width: 90%;
    padding: 60px 5%;
  }
}
/* 事業紹介
----------------------------------------------------------- */
.business_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 60px 18%;
  background-color: rgba(191, 223, 255, .15);
  line-height: 1.8;
  overflow: hidden;
}
.business .m-title {
  position: relative;
  background-position: center center;
  background-size: cover;
  color: #fff;
  background-image: url("../../img/business/ttl_bg.jpg");
  padding: 160px 0 80px;
}
.business .m-title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../img/common/bg-dot.png");
  background-attachment: fixed;
}
.business h3 {
  font-weight: 500;
  margin-bottom: 40px;
  padding-left: 30px;
  font-size: 32px;
  color: #0080CC;
  position: relative;
  line-height: 1.0;
  text-align: left;
}
.business h3:before {
  content: '';
  position: absolute;
  left: 0%;
  width: 6px;
  height: 34px;
  background-color: #0080CC
}
.business_inner .left {
  width: 50%;
  margin-right: 5%;
  float: left;
  transition-delay: .2s;
}
.business_inner .left h4 {
  font-size: 32px;
  font-weight: 600;
  color: #0080CC;
  margin-bottom: 20px;
  line-height: 1.6;
}
.business_inner .left p {
  line-height: 2.0
}
.business_inner .right {
  width: 45%;
  float: left;
  transition-delay: .4s;
}
.business_inner .right img {
  width: 93%;
  border-radius: 10px;
  box-shadow: 15px 15px 0px 0px rgba(0, 128, 204, .4);
  pointer-events: none;  
}
.department_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 60px 18% 0;
  background: linear-gradient(90deg, transparent 0% 28%, rgba(191, 223, 255, .15) 28% 100%);
  line-height: 1.8;
  overflow: hidden;
}
.department_inner .box-l, .department_inner .box-r {
  margin: 0 0 60px;
  line-height: 2.0;
  overflow: hidden
}
.department_inner .box-l .left {
  float: left;
  width: 62%;
  margin-right: 3%;
  transition-delay: .2s;
}
.department_inner .box-l .right {
  float: right;
  width: 35%;
  transition-delay: .4s;
}
.department_inner .box-r .left {
  float: left;
  width: 35%;
  margin-right: 3%;
  transition-delay: .4s;
}
.department_inner .box-r .right {
  float: right;
  width: 62%;
  transition-delay: .2s;
}
.department_inner .left img, .department_inner .right img {
  width: 92%;
  border-radius: 10px;
  box-shadow: 10px 10px 0px 0px rgba(0, 128, 204, .4);
  pointer-events: none;
}
.department_ttl {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  padding: 0 0 5px;
  font-size: 32px;
  font-weight: 600;
  color: #0080CC;
  border-bottom: 3px solid #DDD;
}
.department_ttl:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 70px;
  height: inherit;
  border-bottom: 3px solid #0080CC;
}
.department_ttl span {
  font-family: "gravesend-sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FF9B27;
  margin-left: 20px;
  letter-spacing: 2px;
}
.package_inner {
  width: 52%;
  margin: 40px 25% 60px 0;
  padding: 60px 5% 60px 18%;
  background: url("../../img/business/bg_package.jpg");
  background-repeat: none;
  background-position: center;
  background-size: cover;
  line-height: 1.8;
  overflow: hidden;
  text-align: center;
}
.package_inner h4 {
  font-weight: 500;
  font-size: 20px;
  color: #333;
  content: "";
  display: inline-block;
  background-image: url("../../img/common/list01.png");
  background-repeat: no-repeat;
  background-position: 0 20px;
  background-size: 16px;
  vertical-align: middle;
  padding: 0 0 0 30px;
}
.package_inner h4 span {
  font-weight: 600;
  font-size: 28px;
}
.package_inner p {
  line-height: 1.8;
  margin: 20px 0 40px;
}
.development_inner {
  width: 58%;
  margin: 60px 18%;
  padding: 40px 3%;
  background-color: rgba(191, 223, 255, .15);
  line-height: 1.8;
  overflow: hidden;
}
.development_inner h4 {
  font-weight: 600;
  padding-left: 30px;
  font-size: 28px;
  color: #333;
  background-image: url("../../img/common/list01.png");
  background-repeat: no-repeat;
  background-position: 0 17px;
  background-size: 16px 16px;
}
.development_inner p {
  line-height: 1.8;
  margin: 20px 0;
}
.development_cat {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  padding: 0 0 5px;
  font-size: 20px;
  font-weight: 600;
  color: #0080CC;
  border-bottom: 2px solid #CCC;
}
.development_cat:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 70px;
  height: inherit;
  border-bottom: 2px solid #0080CC;
}
.development_inner ul {
  width: 100%;
  overflow: hidden;
  margin: 20px 0;
  padding: 0;
}
.development_inner ul li {
  float: left;
  padding-left: 18px;
  margin: 0 15px 15px 0;
  text-align: left;
  background-image: url("../../img/common/list02.png");
  background-repeat: no-repeat;
  background-position: 0 10px;
  background-size: 10px 10px;
  list-style-type: none;
  font-size: 16px;
}
.m_b-three {
  width: 64%;
  margin: 40px 0 0;
  padding: 60px 18%;
  background: linear-gradient(110deg, #0080CC 0%, #0080CC 30%, #4873CA 100%);
  overflow: hidden;
}
.m_b-three .left {
  width: 60%;
  margin: 20px 5% 0 0;
  float: left;
}
.m_b-three .right {
  width: 35%;
  margin: 0;
  float: right;
}
.m_b-three .right img {
  pointer-events: none;
}
.m_b-three .left span {
  font-size: 24px;
  font-weight: 600;
  border-radius: 30px;
  background-color: #FF9B27;
  padding: 5px 30px;
  color: #FFF;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 20px;
  line-height: 1.0;
}
.m_b-three .left .logo {
  margin: 50px 0;
}
.m_b-three .left p {
  color: #FFF;
  line-height: 2.0;
}
.summary {
  width: 64%;
  margin: 60px 18%;
  line-height: 2.0;
  text-align: center;
}
.feature {
  width: 64%;
  margin: 60px 18%;
  text-align: center;
  overflow: hidden;
}
.feature ul {
  width: 100%;
  margin: 0;
}
.feature ul li {
  width: 30%;
  padding: 40px 0;
  margin: 0 1.6%;
  float: left;
  background-color: rgba(191, 223, 255, .4);
  list-style: none;
  text-align: center;
  border-radius: 15px;
}
.feature ul li p {
  font-size: 20px;
  font-weight: 600;
  color: #FF9B27;
  margin-top: 20px;
}
.feature ul li:nth-child(1) {
  transition-delay: .2s;
}
.feature ul li:nth-child(2) {
  transition-delay: .4s;
}
.feature ul li:nth-child(3) {
  transition-delay: .6s;
}
.feature ul li {
  pointer-events: none;
}
.function {
  width: 80%;
  margin: 40px 0 60px;
  padding: 60px 10% 0;
  background: rgba(191, 223, 255, .15);
  line-height: 1.8;
  overflow: hidden;
}
.function .box-l, .function .box-r {
  margin: 0 0 40px;
  line-height: 2.0;
  overflow: hidden
}
.function .box-l .left {
  float: left;
  width: 42%;
  margin-right: 3%;
  transition-delay: .2s;
}
.function .box-l .right {
  float: right;
  width: 55%;
  transition-delay: .4s;
}
.function .box-r .left {
  float: left;
  width: 55%;
  margin-right: 3%;
  transition-delay: .4s;
}
.function .box-r .right {
  float: right;
  width: 42%;
  transition-delay: .2s;
}
.function_ttl {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  padding: 0 0 5px;
  font-size: 32px;
  font-weight: 600;
  color: #0080CC;
  border-bottom: 3px solid #DDD;
}
.function_ttl:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 70px;
  height: inherit;
  border-bottom: 3px solid #0080CC;
}
.function_ttl span {
  font-family: "gravesend-sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #FF9B27;
  margin-right: 20px;
  letter-spacing: 2px;
  font-style: italic;
}
.function .left img, .function .right img {
  margin-top: 40px;
  pointer-events: none;
}
.function_m {
  font-weight: 600;
  font-size: 20px;
  color: #333;
  content: "";
  display: inline-block;
  background-image: url("../../img/common/list01.png");
  background-repeat: no-repeat;
  background-position: 0 13px;
  background-size: 16px;
  vertical-align: middle;
  padding: 0 0 0 30px;
}
.function p {
  line-height: 1.8;
  margin-bottom: 15px;
}
.function p span.point {
  font-family: "bicyclette", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #FF9B27;
  letter-spacing: 2px;
}
.function p span.attention {
  color: #B20000;
}
.spec {
  width: 52%;
  margin: 40px 25% 60px 0;
  padding: 60px 5% 60px 18%;
  background: url("../../img/business/bg_package.jpg");
  background-repeat: none;
  background-position: center;
  background-size: cover;
  line-height: 1.8;
  overflow: hidden;
}
.spec ul {
  width: 100%;
  overflow: hidden;
  margin: 20px 0 0;
  padding: 0;
}
.spec ul li {
  padding-left: 18px;
  margin: 0 0 10px 0;
  text-align: left;
  background-image: url("../../img/common/list02.png");
  background-repeat: no-repeat;
  background-position: 0 10px;
  background-size: 10px 10px;
  list-style-type: none;
}
.spec p {
  line-height: 1.8;
  margin-top: 5px;
}
.spec p span.attention {
  color: #B20000;
}
.spec .link {
  padding-left: 30px;
  margin: 20px 0 0 0;
  text-align: left;
  background-image: url("../../img/common/icon_link.png");
  background-repeat: no-repeat;
  background-position: 0 9px;
  background-size: 16px 16px;
  list-style-type: none;
}
@media (max-width: 599px) {
  .business_inner {
    width: 90%;
    margin: 30px 0 40px;
    padding: 40px 5% 60px;
  }
  .business h3 {
    margin-bottom: 10px;
    padding-left: 24px;
    font-size: 28px;
  }
  .business h3:before {
    height: 26px;
  }
  .business_inner .left {
    width: 100%;
    margin-right: 0;
  }
  .business_inner .left h4 {
    font-size: 28px;
    line-height: 1.6;
  }
  .business_inner .left p {
    line-height: 2.0
  }
  .business_inner .right {
    width: 100%;
    margin-top: 20px;
  }
  .business_inner .right img {
    box-shadow: 10px 10px 0px 0px rgba(0, 128, 204, 1);
  }
  .department_inner {
    width: 90%;
    margin: 40px 0;
    padding: 20px 5%;
    line-height: 1.8;
  }
  .department_inner .box-l, .department_inner .box-r {
    margin: 0 0 20px;
    line-height: 2.0;
    overflow: hidden
  }
  .department_inner .box-l .left {
    width: 100%;
    margin: 20px 0;
  }
  .department_inner .box-l .right {
    width: 100%;
    margin: 0 0 20px;
  }
  .department_inner .box-r .left {
    width: 100%;
    margin: 0 0 20px;
  }
  .department_inner .box-r .right {
    width: 100%;
    margin: 20px 0;
  }
  .department_ttl {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    font-size: 28px;
    line-height: 1.0
  }
  .department_ttl:before {
    left: 0;
  }
  .department_ttl span {
    font-size: 16px;
    margin-left: 0;
  }
  .package_inner {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5%;
  }
  .package_inner h4 {
    font-size: 14px;
  }
  .package_inner h4 span {
    font-size: 24px;
  }
  .package_inner p {
    margin: 10px 0 30px;
  }
  .development_inner {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5% 0;
  }
  .development_inner h4 {
    padding-left: 30px;
    font-size: 24px;
    background-position: 0 14px;
  }
  .development_inner p {
    margin: 10px 0 20px;
  }
  .development_inner ul li {
    margin: 0 15px 10px 0;
    float: none;
  }
  .m_b-three {
    width: 90%;
    margin: 30px 0 0;
    padding: 40px 5%;
  }
  .m_b-three .left {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .m_b-three .left img {
    width: 70%;
  }
  .m_b-three .right {
    width: 100%;
    margin: 30px 0 0 0;
  }
  .m_b-three .left span {
    font-size: 16px;
    padding: 5px 15px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
  .m_b-three .left .logo {
    margin: 30px 0;
  }
  .m_b-three .left p {
    color: #FFF;
    line-height: 2.0;
    text-align: left;
  }
  .summary {
    width: 90%;
    margin: 30px 5% 0;
  }
  .feature {
    width: 90%;
    margin: 40px 5%;
  }
  .feature ul li {
    width: 90%;
    padding: 30px 0;
    margin: 10px 5%;
  }
  .feature ul li p {
    font-size: 20px;
    font-weight: 600;
    color: #FF9B27;
    margin-top: 20px;
  }
  .function {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5% 20px;
  }
  .function .box-l, .function .box-r {
    margin: 0;
    line-height: 2.0;
    overflow: hidden
  }
  .function .box-l .left {
    width: 100%;
    margin: 20px 0;
  }
  .function .box-l .right {
    width: 100%;
    margin: 0 0 20px;
  }
  .function .box-r .left {
    width: 100%;
    margin: 0 0 20px;
  }
  .function .box-r .right {
    width: 100%;
    margin: 20px 0;
  }
  .function_ttl {
    font-size: 24px;
  }
  .function_ttl span {
    font-size: 24px;
    margin-right: 15px;
  }
  .function .left img, .function .right img {
    margin-top: 0;
  }
  .function_m {
    font-size: 18px;
    background-position: 0 10px;
    background-size: 14px;
    padding: 0 0 0 25px;
  }
  .spec {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5%;
  }
  .spec ul li {
    line-height: 1.6;
  }
  .spec p {
    line-height: 1.8;
    margin-top: 5px;
  }
  .spec p span.attention {
    color: #B20000;
  }
  .spec .link {
    padding-left: 30px;
    margin: 20px 0 0 0;
    text-align: left;
    background-image: url("../../img/common/icon_link.png");
    background-repeat: no-repeat;
    background-position: 0 9px;
    background-size: 16px 16px;
    list-style-type: none;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .business_inner {
    width: 90%;
    margin: 30px 0 40px;
    padding: 40px 5% 60px;
  }
  .business_inner .left {
    width: 100%;
    margin-right: 0;
  }
  .business_inner .left h4 {
    font-size: 24px;
    line-height: 1.4;
  }
  .business_inner .left p {
    line-height: 2.0
  }
  .business_inner .right {
    width: 100%;
    margin-top: 20px;
  }
  .business_inner .right img {
    box-shadow: 10px 10px 0px 0px rgba(0, 128, 204, 1);
  }
  .department_inner {
    width: 90%;
    margin: 40px 0;
    padding: 20px 5%;
    line-height: 1.8;
  }
  .department_inner .box-l, .department_inner .box-r {
    margin: 0 0 20px;
    line-height: 2.0;
    overflow: hidden
  }
  .department_inner .box-l .left {
    width: 100%;
    margin: 20px 0;
  }
  .department_inner .box-l .right {
    width: 100%;
    margin: 0 0 20px;
  }
  .department_inner .box-r .left {
    width: 100%;
    margin: 0 0 20px;
  }
  .department_inner .box-r .right {
    width: 100%;
    margin: 20px 0;
  }
  .department_ttl {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    font-size: 28px;
    line-height: 1.0
  }
  .department_ttl:before {
    left: 0;
  }
  .department_ttl span {
    font-size: 16px;
    margin-left: 0;
  }
  .package_inner {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5%;
  }
  .package_inner h4 {
    font-size: 14px;
  }
  .package_inner h4 span {
    font-size: 24px;
  }
  .package_inner p {
    margin: 10px 0 30px;
  }
  .development_inner {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5% 0;
  }
  .development_inner h4 {
    padding-left: 30px;
    font-size: 24px;
    background-position: 0 14px;
  }
  .development_inner p {
    margin: 10px 0 20px;
  }
  .development_inner ul li {
    margin: 0 15px 10px 0;
    float: none;
  }
  .m_b-three {
    width: 90%;
    margin: 30px 0 0;
    padding: 40px 5%;
    text-align: center;
  }
  .m_b-three .left {
    width: 100%;
    margin: 20px 0 0;
    text-align: center;
  }
  .m_b-three .right {
    width: 100%;
    margin: 30px 0 0 0;
  }
  .m_b-three .left span {
    font-size: 20px;
    padding: 5px 15px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
  .m_b-three .left .logo {
    margin: 50px 0;
  }
  .m_b-three .left p {
    color: #FFF;
    line-height: 2.0;
    text-align: left;
  }
  .summary {
    width: 90%;
    margin: 30px 5% 0;
  }
  .feature {
    width: 90%;
    margin: 40px 5%;
  }
  .feature ul li {
    width: 90%;
    padding: 30px 0;
    margin: 10px 5%;
  }
  .feature ul li p {
    font-size: 20px;
    font-weight: 600;
    color: #FF9B27;
    margin-top: 20px;
  }
  .function {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5% 20px;
  }
  .function .box-l, .function .box-r {
    margin: 0;
    line-height: 2.0;
    overflow: hidden
  }
  .function .box-l .left {
    width: 100%;
    margin: 20px 0;
  }
  .function .box-l .right {
    width: 100%;
    margin: 0 0 20px;
  }
  .function .box-r .left {
    width: 100%;
    margin: 0 0 20px;
  }
  .function .box-r .right {
    width: 100%;
    margin: 20px 0;
  }
  .function_ttl {
    font-size: 24px;
  }
  .function_ttl span {
    font-size: 24px;
    margin-right: 15px;
  }
  .function .left img, .function .right img {
    margin-top: 0;
  }
  .function_m {
    font-size: 18px;
    background-position: 0 10px;
    background-size: 14px;
    padding: 0 0 0 25px;
  }
  .spec {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5%;
  }
  .spec ul li {
    line-height: 1.6;
  }
  .spec p {
    line-height: 1.8;
    margin-top: 5px;
  }
  .spec p span.attention {
    color: #B20000;
  }
  .spec .link {
    padding-left: 30px;
    margin: 20px 0 0 0;
    text-align: left;
    background-image: url("../../img/common/icon_link.png");
    background-repeat: no-repeat;
    background-position: 0 9px;
    background-size: 16px 16px;
    list-style-type: none;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  .business_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5%;
  }
  .department_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5% 0;
    background: linear-gradient(90deg, transparent 0% 20%, rgba(191, 223, 255, .15) 20% 100%);
  }
  .package_inner {
    width: 62%;
    margin: 40px 15% 60px 0;
    padding: 60px 5% 60px 18%;
    background: url("../../img/business/bg_package.jpg");
    background-repeat: none;
    background-position: center;
    background-size: cover;
    line-height: 1.8;
    overflow: hidden;
    text-align: center;
  }
  .development_inner {
    width: 80%;
    margin: 60px 5%;
    padding: 60px 5% 0;
  }
  .m_b-three {
    width: 90%;
    margin: 40px 0 0;
    padding: 60px 5%;
  }
  .m_b-three .left {
    width: 65%;
  }
  .m_b-three .right {
    width: 30%;
  }
  .m_b-three .left span {
    font-size: 20px;
  }
  .m_b-three .left .logo img {
    width: 80%
  }
  .summary {
    width: 90%;
    margin: 60px 5%;
  }
  .feature {
    width: 90%;
    margin: 60px 5%;
  }
  .feature ul li p {
    font-size: 18px;
  }
  .function {
    width: 90%;
    padding: 40px 5% 0;
  }
  .spec {
    width: 75%;
    margin: 40px 15% 60px 0;
    padding: 60px 5%;
  }
}
@media (min-width: 1281px) and (max-width: 1440px) {
  .business_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5%;
  }
  .department_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5% 0;
    background: linear-gradient(90deg, transparent 0% 15%, rgba(191, 223, 255, .15) 15% 100%);
  }
  .package_inner {
    width: 62%;
    margin: 40px 15% 60px 0;
    padding: 60px 5% 60px 18%;
    background: url("../../img/business/bg_package.jpg");
    background-repeat: none;
    background-position: center;
    background-size: cover;
    line-height: 1.8;
    overflow: hidden;
    text-align: center;
  }
  .development_inner {
    width: 80%;
    margin: 60px 5%;
    padding: 60px 5%;
  }
  .m_b-three {
    width: 76%;
    padding: 60px 12%;
  }
  .feature {
    width: 90%;
    margin: 60px 5%;
  }
  .function {
    width: 90%;
    padding: 40px 5% 0;
    background: linear-gradient(90deg, transparent 0% 15%, rgba(191, 223, 255, .15) 15% 100%);
  }
  .spec {
    width: 65%;
    margin: 40px 15% 60px 0;
    padding: 60px 10%;
  }
}
@media (min-width: 1441px) and (max-width: 1919px) {
  .m_b-three {
    width: 76%;
    padding: 60px 12%;
  }
  .feature {
    width: 90%;
    margin: 60px 5%;
  }
}
/* 採用情報
----------------------------------------------------------- */
.recruit .m-title {
  position: relative;
  background-position: center 30px;
  background-size: cover;
  color: #fff;
  background-image: url("../../img/recruit/ttl_bg.jpg");
  padding: 160px 0 80px;
}
.recruit .m-title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../img/common/bg-dot.png");
  background-attachment: fixed;
}
.recruit_index_seek {
  width: 100%;
  margin: 30px 0 60px;
  background-image: url("../../img/recruit/bg_person.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.recruit_index_seek_inner {
  width: 58%;
  margin: 80px 18%;
  padding: 20px 3% 40px;
  line-height: 1.8;
  background-color: #FFF;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
}
.recruit_index_seek_inner .heading {
  font-weight: 600;
  margin: 20px 0 0;
  font-size: 48px;
  color: #0080CC;
  text-align: center;
}
.recruit_index_company {
  width: 64%;
  margin: 40px 0 60px;
  padding: 20px 18%;
  line-height: 1.8;
  overflow: hidden;
}
.recruit_index_seek_inner img {
  pointer-events: none;
}
.recruit_index_company .left {
  width: 45%;
  margin-right: 5%;
  float: left;
}
.recruit_index_company .left img {
  pointer-events: none;
}
.recruit_index_company .right {
  width: 50%;
  float: right;
  transition-delay: .2s;
}
.recruit_index_company .right h4 {
  font-size: 28px;
  color: #0080CC;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 500;
}
.recruit_index_company .right p {
  font-weight: 500;
  margin-bottom: 20px;
}
.recruit_index_interview {
  width: 54%;
  margin: 40px 0 60px;
  padding: 60px 23%;
  background-color: rgba(191, 223, 255, .3);
  background-repeat: no-repeat;
  overflow: hidden;
}
.recruit_index_interview .heading {
  font-weight: 600;
  font-size: 32px;
  color: #0080CC;
  text-align: center;
}
.recruit_index_interview ul {
  width: 100%;
  margin: 60px 0;
}
.recruit_index_interview ul li {
  width: 32%;
  margin-left: 2%;
  margin-bottom: 60px;
  list-style: none;
  float: left;
  background-color: #FFF;
  overflow: hidden;
}
.recruit_index_interview ul li:first-child {
  margin-left: 0;
}
.recruit_index_interview ul li:nth-child(2) {
  transition-delay: .2s;
}
.recruit_index_interview ul li:nth-child(3) {
  transition-delay: .4s;
}
.interview-list {
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
}
.interview-list a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.interview-list img {
  height: auto;
  transition: transform .4s ease; /* ゆっくり変化させる */
}
.interview-list:hover img {
  transform: scale(1.1); /* 拡大 */
  opacity: .8;
}
.recruit_index_interview ul li .name {
  font-family: "gravesend-sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #333;
  padding: 20px 0 25px;
  letter-spacing: 5px;
  line-height: 1.0;
}
.recruit_index_interview ul li .name span.years {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.0;
  background-color: #0080CC;
  padding: 5px 15px;
  margin-right: 15px;
  color: #FFF;
  letter-spacing: 0;
}
.recruit_index_interview ul li .name span.faculty {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.0;
  color: #333;
  letter-spacing: 0;
}
#y {
  content: "";
  display: inline-block;
  height: 75px;
  margin-top: -75px;
  vertical-align: top;
}
#u {
  content: "";
  display: inline-block;
  height: 75px;
  margin-top: -75px;
  vertical-align: top;
}
#n {
  content: "";
  display: inline-block;
  height: 75px;
  margin-top: -75px;
  vertical-align: top;
}
.job_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 60px 18%;
  background-color: rgba(191, 223, 255, .15);
}
.my-job {
  width: 100%;
  margin: 0 0 40px;
  overflow: hidden;
}
.my-job .right {
  width: 45%;
  padding-bottom: 10px;
  float: right;
  transition-delay: .2s;
}
.my-job .right img {
  width: 92%;
  border-radius: 10px;
  box-shadow: 10px 10px 0px 0px rgba(0, 128, 204, .4);
  pointer-events: none;
}
.my-job .left {
  width: 50%;
  margin-right: 5%;
  float: left;
}
.my-job .left h4 {
  font-size: 32px;
  color: #0080CC;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 600;
}
.my-job .left p {
  font-weight: 500;
  margin-bottom: 60px;
  line-height: 2.0;
}
:root {
  --circle-size: clamp(1.5rem, 5vw, 2rem);
  --spacing: clamp(0.25rem, 2vw, 0.5rem);
}
.c-stepper__item {
  position: relative;
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  &:before {
    content: "";
    flex: 0 0 var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    background-color: #FF9B27;
  }
  &:not(:last-child) {
    &:after {
      content: "";
      position: absolute;
      left: 0;
      top: calc(var(--circle-size) + var(--spacing));
      bottom: var(--spacing);
      z-index: -1;
      transform: translateX(calc(var(--circle-size) / 2));
      width: 2px;
      background-color: #FFEBD4;
    }
  }
}
.c-stepper__title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.0;
  color: #0080CC;
}
.c-stepper__desc {
  font-size: 18px;
  text-align: left;
  line-height: 1.8;
  font-weight: 500;
}
.c-stepper__content {
  width: 100%;
}
.training_inner .heading {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 32px;
  color: #0080CC;
  text-align: center;
}
.training_inner p.training {
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
  line-height: 2.0;
}
.training_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 40px 18% 0;
  background: linear-gradient(90deg, transparent 0% 28%, rgba(191, 223, 255, .15) 28% 100%);
  line-height: 1.8;
  overflow: hidden;
}
.training_inner .diagram {
  text-align: center;
  margin-bottom: 60px;
}
.training_inner .diagram img {
  pointer-events: none;
}
.training_inner .box-l, .training_inner .box-r {
  margin: 0 0 60px;
  line-height: 2.0;
  overflow: hidden
}
.training_inner .box-l .left {
  float: left;
  width: 62%;
  margin-right: 3%;
  transition-delay: .2s;
}
.training_inner .box-l .right {
  float: right;
  width: 35%;
  transition-delay: .4s;
  padding-bottom: 10px;
}
.training_inner .box-r .left {
  float: left;
  width: 35%;
  margin-right: 3%;
  transition-delay: .4s;
  padding-bottom: 10px;
}
.training_inner .box-r .right {
  float: right;
  width: 62%;
  transition-delay: .2s;
}
.training_inner .left img, .training_inner .right img {
  width: 92%;
  border-radius: 10px;
  box-shadow: 10px 10px 0px 0px rgba(0, 128, 204, .4);
  margin-bottom: 0;
  pointer-events: none;
}
.training_ttl {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  padding: 0 0 5px;
  font-size: 32px;
  font-weight: 600;
  color: #0080CC;
  border-bottom: 3px solid #DDD;
}
.training_ttl:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 70px;
  height: inherit;
  border-bottom: 3px solid #0080CC;
}
.training_ttl span {
  font-family: "gravesend-sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #FF9B27;
  margin-right: 20px;
  letter-spacing: 2px;
  font-style: italic;
}
.numbers_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 60px 18%;
  background: rgba(191, 223, 255, .15);
  line-height: 1.8;
  overflow: hidden;
}
.numbers_inner .heading {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 32px;
  color: #0080CC;
  text-align: center;
}
.numbers_inner ul {
  width: 100%;
  margin-top: 40px;
}
.numbers_inner ul li {
  width: 31.3%;
  margin: 0 1% 40px;
  list-style: none;
  background-color: #DFEFFF;
  text-align: center;
  float: left;
  font-weight: 600;
  padding: 40px 0;
  border-radius: 10px;
}
.numbers_inner ul li:nth-child(2) {
  transition-delay: .2s;
}
.numbers_inner ul li:nth-child(3) {
  transition-delay: .4s;
}
.numbers_inner ul li:nth-child(4) {
  transition-delay: .6s;
}
.numbers_inner ul li:nth-child(5) {
  transition-delay: .8s;
}
.count {
  font-family: "gravesend-sans", sans-serif;
  color: #0080CC;
  font-size: 60px;
  line-height: 1.0;
  margin-top: 20px;
}
.count span.unit {
  color: #333;
  font-size: 20px;
  font-weight: 600;
}
.interaction_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 40px 18% 0;
  background: linear-gradient(90deg, rgba(191, 223, 255, .15) 0% 72%, transparent 72% 100%);
  line-height: 1.8;
  overflow: hidden;
}
.interaction_inner .heading {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 32px;
  color: #0080CC;
  text-align: center;
}
.interaction_inner p {
  font-weight: 500;
  margin-bottom: 60px;
  text-align: center;
  line-height: 2.0;
}
.interaction_inner .box-l {
  margin: 0 0 60px;
  line-height: 2.0;
  overflow: hidden;
}
.interaction_inner .box-r {
  margin: 0 0 60px;
  line-height: 2.0;
  overflow: hidden;
}
.interaction_inner .box-l .left {
  float: left;
  width: 42%;
  margin-right: 3%;
  transition-delay: .2s;
}
.interaction_inner .box-l .left p {
  text-align: left
}
.interaction_inner .box-l .right {
  float: right;
  width: 55%;
  padding-bottom: 10px;
  transition-delay: .4s;
}
.interaction_inner .box-r .left {
  float: left;
  width: 55%;
  padding-bottom: 10px;
  margin-right: 3%;
  transition-delay: .4s;
  overflow: hidden;
}
.interaction_inner .box-r .right {
  float: right;
  width: 42%;
  transition-delay: .2s;
}
.interaction_inner .box-r .right p {
  text-align: left
}
.interaction_inner .left img, .interaction_inner .right img {
  width: 95%;
  border-radius: 10px;
  box-shadow: 10px 10px 0px 0px rgba(0, 128, 204, .4);
  position: relative;
  pointer-events: none;
}
.interaction_ttl {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  padding: 0 0 15px;
  font-size: 32px;
  font-weight: 600;
  color: #0080CC;
  border-bottom: 3px solid #DDD;
  line-height: 1.4;
}
.interaction_date {
  font-family: "gravesend-sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FF9B27;
  letter-spacing: 2px;
}
.office_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 40px 18% 0;
  background: linear-gradient(90deg, transparent 0% 25%, rgba(191, 223, 255, .15) 25% 100%);
  line-height: 1.8;
  overflow: hidden;
}
.office_inner .heading {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 32px;
  color: #0080CC;
  text-align: center;
}
.office_inner h3 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 50px;
  padding-left: 30px;
  font-size: 32px;
  color: #0080CC;
  position: relative;
  line-height: 1.0;
  text-align: left;
}
.office_inner h3:before {
  content: '';
  position: absolute;
  left: 0%;
  width: 6px;
  height: 34px;
  background-color: #0080CC
}
.office_inner .gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
.office_inner .row {
  display: grid;
  gap: 20px;
}
.office_inner .row-1 {
  grid-template-columns: repeat(1, 1fr);
}
.office_inner .row-2 {
  grid-template-columns: repeat(2, 1fr);
}
.office_inner .row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  pointer-events: none;
}
.interview_inner {
  margin: 15px 0 60px;
}
.employee {
  width: 70%;
  margin: 0 15% 35px;
  padding: 0 0 60px;
  background-color: rgba(191, 223, 255, .15);
  line-height: 1.8;
  overflow: hidden;
}
.employee img {
  margin: 0 0 20px;
  border-radius: 10px;
  pointer-events: none;
}
.employee .name {
  font-family: "gravesend-sans", sans-serif;
  font-weight: 600;
  font-size: 28px;
  margin: 10px 0 40px;
  letter-spacing: 5px;
  line-height: 1.0;
}
.employee .name span.years {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  background-color: #0080CC;
  padding: 5px 15px;
  margin-right: 15px;
  color: #FFF;
  letter-spacing: 0;
}
.employee .name span.faculty {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.0;
  color: #333;
  letter-spacing: 0;
}
.employee .heading-11 {
  position: relative;
  padding: 5px;
  margin-bottom: 40px;
  background-color: #0080CC;
  font-family: "gravesend-sans", sans-serif;
  color: #FF9B27;
  width: 200px;
  text-align: center;
}
.employee .heading-11::before {
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: solid 10px transparent;
  border-left: solid 20px #006AAA;
  content: '';
}
.employee .interview {
  width: 80%;
  margin: 60px 10%;
}
.interview-txt .txt-q {
  font-weight: 600;
  color: #0080CC;
}
.interview-txt p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.interview .ttl {
  font-weight: 600;
  font-size: 20px;
  color: #333;
  content: "";
  display: inline-block;
  background-image: url("../../img/common/list01.png");
  background-repeat: no-repeat;
  background-position: 0 12px;
  background-size: 16px;
  vertical-align: middle;
  padding: 0 0 0 30px;
  margin: 20px 0 0;
}
.schedulebox {
  width: 100%;
  margin-top: 40px;
}
.schedulebox .left {
  width: 50%;
  float: left;
}
.schedulebox .right {
  width: 50%;
  float: left;
}
.schedule {
  position: relative;
  font-size: 16px;
}
.schedule::before {
  position: absolute;
  top: 0px;
  left: 6.5em;
  width: 6px;
  height: 100%;
  background-color: #E9ECF3;
  content: "";
}
.schedule ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.schedule li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.schedule li + li {
  margin-top: 2em;
}
.schedule_time {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 5em;
  height: 2em;
  border-radius: 6px;
  background-color: #0080CC;
  color: #fff;
  text-align: center;
}
.schedule_time::before {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateX(50%) translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  z-index: -1;
  background-color: #0080CC;
  content: "";
}
.schedule_time::after {
  position: absolute;
  top: 50%;
  left: 99px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #0080CC;
  content: "";
}
.schedule_content_title {
  font-weight: 600;
}
.schedule_content {
  margin: 0px 0px 0px 3em;
  width: calc(100% - 10em);
}
.requirement_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 60px 18%;
  background-color: rgba(191, 223, 255, .15);
}
.requirement_inner .heading {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 32px;
  color: #0080CC;
  text-align: center;
}
.requirement_inner p {
  font-weight: 500;
  margin-bottom: 60px;
  text-align: center;
  line-height: 2.0;
}
.requirement_inner h3 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 50px;
  padding-left: 30px;
  font-size: 32px;
  color: #0080CC;
  position: relative;
  line-height: 1.0;
  text-align: left;
}
.requirement_inner h3:before {
  content: '';
  position: absolute;
  left: 0%;
  width: 6px;
  height: 34px;
  background-color: #0080CC
}
.requirement_inner .recruitment {
  margin: 60px auto 0;
}
.recruitment dl.cell_item {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}
.recruitment dl.cell_item dt {
  clear: both;
  float: left;
  width: 22%;
  padding-left: 2%;
  text-align: left;
  line-height: 1.8;
  color: #0080CC;
}
.recruitment dl.cell_item dt.first {
  padding-top: 25px;
}
.recruitment dl.cell_item dd {
  width: 74%;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 1px solid #B7C1DA;
  line-height: 1.8;
  padding: 0 2% 25px 24%;
}
.recruitment dl.cell_item dd.first {
  border-top: 1px solid #B7C1DA;
  padding-top: 25px;
}
.recruitment dl.cell_item dd img {
  margin-top: 10px;
}
.recruitment dl.cell_item dd img:hover {
  opacity: 0.7;
}
.flow_inner {
  width: 64%;
  margin: 0 0 60px;
  padding: 20px 18%;
  line-height: 1.8;
  text-align: center;
}
.flow_inner h3 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 50px;
  padding-left: 30px;
  font-size: 32px;
  color: #0080CC;
  position: relative;
  line-height: 1.0;
  text-align: left;
}
.flow_inner h3:before {
  content: '';
  position: absolute;
  left: 0%;
  width: 6px;
  height: 34px;
  background-color: #0080CC
}
.step-flow {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 100px;
  position: relative;
}
.step-number {
  font-family: "gravesend-sans", sans-serif;
  background-color: #0080CC;
  color: #FFF;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.step-label {
  font-size: 18px;
  font-weight: 500;
}
/* ステップ間の矢印風ライン */
.step::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 10px;
  font-size: 18px;
  color: #AAA;
  font-weight: 600;
}
.step:last-child::after {
  content: "";
}
.recruit_btn {
  margin: 60px auto;
}
.faq_inner {
  width: 64%;
  margin: 40px 0 60px;
  padding: 60px 18% 1px;
  background-color: rgba(191, 223, 255, .15);
}
.faq_inner h3 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 50px;
  padding-left: 30px;
  font-size: 32px;
  color: #0080CC;
  position: relative;
  line-height: 1.0;
  text-align: left;
}
.faq_inner h3:before {
  content: '';
  position: absolute;
  left: 0%;
  width: 6px;
  height: 34px;
  background-color: #0080CC
}
.accordionWrap li {
  background-color: #FFF;
  border-radius: 10px;
  list-style: none;
  margin-bottom: 30px;
}
.accordionWrap li:last-child {
  margin-bottom: 60px;
}
.accordionWrap .question {
  display: flex;
  position: relative;
  padding: 30px;
  cursor: pointer;
}
.accordionWrap .question .status {
  position: absolute;
  transition: all 0.3s;
  width: 16px;
  height: 16px;
  top: 27px;
  right: 30px;
  border-radius: 5px;
  border: 2px solid #0080CC;
  background-color: #0080CC;
  padding: 5px;
}
.accordionWrap .question .status:before, .accordionWrap .question .status:after {
  content: "";
  position: absolute;
  z-index: 1;
  background: #FFF;
}
.accordionWrap .question .status:before {
  left: 50%;
  width: 2px;
  margin-left: -1px;
  height: 16px;
}
.accordionWrap .question .status:after {
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 16px;
}
.accordionWrap .question.active .status {
  background-color: #FFF;
  padding: 5px;
}
.accordionWrap .question.active .status:before {
  content: none;
}
.accordionWrap .question.active .status:after {
  background: #0080CC;
}
.accordionWrap .question p {
  padding: 0 40px;
  background: url("../../img/recruit/icon_Q.png")no-repeat 0 3px;
}
.accordionWrap .answer {
  display: none;
  padding: 30px 50px;
  background-color: #0080CC;
  cursor: default;
  border-radius: 0 0 10px 10px;
}
.accordionWrap .answer p {
  position: relative;
  padding: 0 40px;
  color: #FFF;
  background: url(../../img/recruit/icon_A.png) no-repeat 0 4px;
  line-height: 1.8;
}
@media (max-width: 599px) {
  .recruit .m-title {
    padding: 140px 0 60px;
  }
  .recruit_index_seek {
    width: 100%;
    margin: 30px 0 40px;
  }
  .recruit_index_seek_inner {
    width: 80%;
    margin: 40px 5%;
    padding: 20px 5% 40px;
    border-radius: 10px;
  }
  .recruit_index_seek_inner .heading {
    margin: 0 0 15px;
    font-size: 28px;
  }
  .recruit_index_company {
    width: 90%;
    margin: 20px 5% 0;
    padding: 20px 0;
  }
  .recruit_index_company .left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .recruit_index_company .right {
    width: 100%;
  }
  .recruit_index_company .right h4 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .recruit_index_company .right p {
    font-weight: 500;
    margin-bottom: 20px;
  }
  .recruit_index_interview {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5%;
  }
  .recruit_index_interview .heading {
    font-size: 28px;
  }
  .recruit_index_interview ul {
    width: 80%;
    margin: 40px 10%;
  }
  .recruit_index_interview ul li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .my-job {
    width: 100%;
    margin: 0 0 40px;
    overflow: hidden;
  }
  .my-job .right {
    width: 45%;
    padding-bottom: 10px;
    float: right;
    transition-delay: .2s;
  }
  .my-job .right img {
    width: 92%;
    border-radius: 10px;
    box-shadow: 10px 10px 0px 0px rgba(0, 128, 204, .4);
  }
  .my-job .left {
    width: 50%;
    margin-right: 5%;
    float: left;
  }
  .my-job .left h4 {
    font-size: 32px;
    color: #0080CC;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 600;
  }
  .my-job .left p {
    font-weight: 500;
    margin-bottom: 60px;
    line-height: 2.0;
  }
  .job_inner {
    width: 90%;
    margin: 40px 0;
    padding: 30px 5% 0;
    line-height: 1.8;
  }
  .my-job .right {
    width: 100%;
    padding-bottom: 10px;
  }
  .my-job .right img {
    width: 97%;
  }
  .my-job .left {
    width: 100%;
    margin-right: 0;
  }
  .my-job .left h4 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .my-job .left p {
    margin-bottom: 20px;
  }
  .training_inner {
    width: 90%;
    margin: 40px 0;
    padding: 20px 5%;
    line-height: 1.8;
  }
  .training_inner .heading {
    margin-bottom: 15px;
    font-size: 28px;
  }
  .training_inner p.training {
    margin-bottom: 15px;
    text-align: left;
  }
  .training_inner .diagram {
    margin-bottom: 20px;
  }
  .training_inner .box-l, .training_inner .box-r {
    margin: 0 0 20px;
    line-height: 2.0;
    overflow: hidden
  }
  .training_inner .box-l .left {
    width: 100%;
    margin: 20px 0;
  }
  .training_inner .box-l .right {
    width: 100%;
    margin: 0;
  }
  .training_inner .box-r .left {
    width: 100%;
    margin: 0;
  }
  .training_inner .box-r .right {
    width: 100%;
    margin: 20px 0;
  }
  .training_ttl {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    font-size: 26px;
    line-height: 1.0
  }
  .training_ttl:before {
    left: 0;
  }
  .training_ttl span {
    font-size: 28px;
    margin-left: 0;
  }
  .numbers_inner {
    width: 90%;
    margin: 40px 0;
    padding: 20px 5%;
    line-height: 1.8;
  }
  .numbers_inner .heading {
    margin-bottom: 15px;
    font-size: 28px;
  }
  .numbers_inner ul {
    margin-top: 20px;
  }
  .numbers_inner ul li {
    width: 100%;
    margin: 0 0 20px;
    padding: 30px 0;
  }
  .count {
    margin-top: 10px;
  }
  .interaction_inner {
    width: 90%;
    margin: 40px 0;
    padding: 20px 5% 40px;
    line-height: 1.8;
  }
  .interaction_inner .heading {
    margin-bottom: 10px;
    font-size: 28px;
  }
  .interaction_inner p {
    margin-bottom: 20px;
    text-align: left;
  }
  .interaction_inner .box-l, .interaction_inner .box-r {
    margin: 0;
    line-height: 2.0;
    overflow: hidden
  }
  .interaction_inner .box-l .left {
    width: 100%;
    margin: 30px 0 0;
  }
  .interaction_inner .box-l .right {
    width: 100%;
    margin: 0;
  }
  .interaction_inner .box-r .left {
    width: 100%;
    margin: 0;
  }
  .interaction_inner .box-r .right {
    width: 100%;
    margin: 30px 0 0;
  }
  .interaction_ttl {
    width: 100%;
    margin: 0 0 10px;
    padding: 0 0 10px;
    font-size: 28px;
  }
  .interaction_date {
    font-size: 16px;
  }
  .office_inner {
    width: 90%;
    margin: 40px 0;
    padding: 20px 5% 0;
    line-height: 1.8;
  }
  .office_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .office_inner h3:before {
    height: 26px;
  }
  .office_inner .gallery {
    gap: 5px;
  }
  .office_inner .row {
    gap: 5px;
  }
  .office_inner .row img {
    border-radius: 5px;
  }
  .employee {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 40px;
  }
  .employee img {
    margin: 0 0 15px;
    border-radius: 8px;
  }
  .employee .name {
    font-size: 24px;
    margin: 10px 0 20px;
  }
  .employee .name span {
    font-size: 14px;
  }
  .employee .heading-11 {
    padding: 3px;
  }
  .employee .interview {
    width: 90%;
    margin: 20px 5% 0;
  }
  .schedulebox {
    width: 100%;
    margin-top: 30px;
  }
  .schedulebox .left {
    width: 100%;
  }
  .schedulebox .right {
    width: 100%;
  }
  .schedule {
    font-size: 14px;
  }
  .schedule_time::after {
    left: 86px;
  }
  .requirement_inner {
    width: 90%;
    margin: 30px 0 40px;
    padding: 40px 5%;
  }
  .requirement_inner .heading {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.6;
  }
  .requirement_inner p {
    margin-bottom: 40px;
    line-height: 1.8;
  }
  .requirement_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .requirement_inner h3:before {
    height: 26px;
  }
  .requirement_inner .recruitment {
    margin: 40px auto 0;
  }
  .requirement_inner dl.cell_item dt {
    width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
  }
  .requirement_inner dl.cell_item dt.first {
    padding-top: 20px;
  }
  .requirement_inner dl.cell_item dd {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 0 20px;
  }
  .flow_inner {
    width: 90%;
    margin: 0 0 20px;
    padding: 20px 5% 0;
  }
  .flow_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .flow_inner h3:before {
    height: 26px;
  }
  .recruit_btn {
    margin: 0 auto 60px;
  }
  .faq_inner {
    width: 90%;
    margin: 30px 0 60px;
    padding: 40px 5% 20px;
  }
  .faq_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .faq_inner h3:before {
    height: 26px;
  }
  .accordionWrap li {
    margin-bottom: 20px;
  }
  .accordionWrap li:last-child {
    margin-bottom: 40px;
  }
  .accordionWrap .question {
    padding: 20px;
    line-height: 1.6;
  }
  .accordionWrap .question .status {
    width: 12px;
    height: 12px;
    top: 20px;
    right: 20px;
  }
  .accordionWrap .question .status:before {
    height: 12px;
  }
  .accordionWrap .question .status:after {
    width: 12px;
  }
  .accordionWrap .question p {
    padding: 0 32px;
    background: url("../../img/recruit/icon_Q.png")no-repeat 0 1px;
  }
  .accordionWrap .answer {
    padding: 20px 0 20px 30px;
    line-height: 1.6;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .recruit .m-title {
    padding: 140px 0 60px;
  }
  .recruit_index_seek {
    width: 100%;
    margin: 30px 0 40px;
  }
  .recruit_index_seek_inner {
    width: 80%;
    margin: 60px 5%;
    padding: 40px 5%;
    border-radius: 10px;
    text-align: center;
  }
  .recruit_index_seek_inner .heading {
    margin: 0 0 40px;
    font-size: 28px;
  }
  .recruit_index_company {
    width: 90%;
    margin: 20px 5% 0;
    padding: 20px 0;
  }
  .recruit_index_company .left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .recruit_index_company .right {
    width: 100%;
  }
  .recruit_index_company .right h4 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .recruit_index_company .right p {
    font-weight: 500;
    margin-bottom: 20px;
  }
  .recruit_index_interview {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5%;
  }
  .recruit_index_interview .heading {
    font-size: 28px;
  }
  .recruit_index_interview ul {
    margin: 40px 0;
  }
  .recruit_index_interview ul li {
    margin-bottom: 40px;
  }
  .job_inner {
    width: 90%;
    margin: 40px 0;
    padding: 30px 5% 0;
    line-height: 1.8;
  }
  .my-job .right {
    width: 100%;
    padding-bottom: 10px;
  }
  .my-job .right img {
    width: 97%;
  }
  .my-job .left {
    width: 100%;
    margin-right: 0;
  }
  .my-job .left h4 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .my-job .left p {
    margin-bottom: 20px;
  }
  .training_inner {
    width: 90%;
    margin: 40px 0;
    padding: 20px 5%;
    line-height: 1.8;
  }
  .training_inner .heading {
    margin-bottom: 15px;
    font-size: 28px;
  }
  .training_inner p.training {
    margin-bottom: 15px;
    text-align: left;
  }
  .training_inner .diagram {
    margin-bottom: 20px;
  }
  .training_inner .box-l, .training_inner .box-r {
    margin: 0 0 20px;
    line-height: 2.0;
    overflow: hidden
  }
  .training_inner .box-l .left {
    width: 100%;
    margin: 20px 0;
  }
  .training_inner .box-l .right {
    width: 100%;
    margin: 0 0 20px;
  }
  .training_inner .box-r .left {
    width: 100%;
    margin: 0 0 20px;
  }
  .training_inner .box-r .right {
    width: 100%;
    margin: 20px 0;
  }
  .training_ttl {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    font-size: 28px;
    line-height: 1.0
  }
  .training_ttl:before {
    left: 0;
  }
  .training_ttl span {
    font-size: 28px;
    margin-left: 0;
  }
  .numbers_inner {
    width: 90%;
    margin: 40px 0;
    padding: 20px 5%;
    line-height: 1.8;
  }
  .numbers_inner .heading {
    margin-bottom: 15px;
    font-size: 28px;
  }
  .numbers_inner ul {
    margin-top: 20px;
  }
  .numbers_inner ul li {
    width: 100%;
    margin: 0 0 20px;
    padding: 30px 0;
  }
  .count {
    margin-top: 10px;
  }
  .interaction_inner {
    width: 90%;
    margin: 40px 0;
    padding: 40px 5% 40px;
    line-height: 1.8;
  }
  .interaction_inner .heading {
    margin-bottom: 10px;
    font-size: 28px;
  }
  .interaction_inner p {
    margin-bottom: 20px;
    text-align: left;
  }
  .interaction_inner .box-l, .interaction_inner .box-r {
    margin: 0 0 20px;
    line-height: 2.0;
    overflow: hidden
  }
  .interaction_inner .box-l .left {
    width: 100%;
    margin: 20px 0;
  }
  .interaction_inner .box-l .right {
    width: 100%;
    margin: 0;
  }
  .interaction_inner .box-r .left {
    width: 100%;
    margin: 0;
  }
  .interaction_inner .box-r .right {
    width: 100%;
    margin: 20px 0;
  }
  .interaction_ttl {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    font-size: 28px;
  }
  .interaction_date {
    font-size: 16px;
  }
  .office_inner {
    width: 90%;
    margin: 40px 0;
    padding: 20px 5%;
    line-height: 1.8;
  }
  .office_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .office_inner h3:before {
    height: 26px;
  }
  .office_inner .gallery {
    gap: 10px;
  }
  .office_inner .row {
    gap: 10px;
  }
  .office_inner .row img {
    border-radius: 8px;
  }
  .employee {
    width: 100%;
    margin: 30px 0 40px;
    padding: 0 0 40px;
  }
  .employee img {
    margin: 0 0 15px;
    border-radius: 8px;
  }
  .employee .name {
    font-size: 24px;
    margin: 10px 0 20px;
  }
  .employee .name span {
    font-size: 14px;
  }
  .employee .heading-11 {
    padding: 3px;
  }
  .employee .interview {
    width: 90%;
    margin: 20px 5% 0;
  }
  .schedulebox {
    width: 100%;
    margin-top: 30px;
  }
  .schedulebox .left {
    width: 100%;
  }
  .schedulebox .right {
    width: 100%;
  }
  .schedule {
    font-size: 14px;
  }
  .schedule_time::after {
    left: 86px;
  }
  .requirement_inner {
    width: 90%;
    margin: 30px 0 40px;
    padding: 40px 5%;
  }
  .requirement_inner .heading {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.6;
  }
  .requirement_inner p {
    margin-bottom: 40px;
    line-height: 1.8;
  }
  .requirement_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .requirement_inner h3:before {
    height: 26px;
  }
  .requirement_inner .recruitment {
    margin: 40px auto 0;
  }
  .requirement_inner dl.cell_item dt {
    width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
  }
  .requirement_inner dl.cell_item dt.first {
    padding-top: 20px;
  }
  .requirement_inner dl.cell_item dd {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 0 20px;
  }
  .flow_inner {
    width: 90%;
    margin: 0 0 20px;
    padding: 20px 5% 0;
  }
  .flow_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .flow_inner h3:before {
    height: 26px;
  }
  .recruit_btn {
    margin: 0 auto 60px;
  }
  .faq_inner {
    width: 90%;
    margin: 30px 0 60px;
    padding: 40px 5% 20px;
  }
  .faq_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .faq_inner h3:before {
    height: 26px;
  }
}
@media screen and (max-width: 959px) {
  .step-flow {
    flex-direction: column;
    align-items: flex-start;
  }
  .step {
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
  }
  .step-number {
    margin-bottom: 0;
    margin-right: 15px;
  }
  .step::after {
    content: "↓";
    position: absolute;
    top: auto;
    bottom: -35px;
    left: 11px;
    right: auto;
    transform: none;
  }
  .step:last-child::after {
    content: "";
    margin-bottom: 0;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  .recruit_index_seek {
    width: 100%;
    margin: 30px 0 60px;
  }
  .recruit_index_seek_inner {
    width: 80%;
    margin: 60px 5%;
    padding: 40px 5%;
    border-radius: 10px;
  }
  .recruit_index_seek_inner .heading {
    margin: 0;
    font-size: 42px;
  }
  .recruit_index_company {
    width: 90%;
    margin: 40px 5% 60px;
    padding: 20px 0;
  }
  .recruit_index_interview {
    width: 80%;
    margin: 60px 0;
    padding: 60px 10%;
  }
  .job_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5%;
  }
  .training_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5% 0;
    background: linear-gradient(90deg, transparent 0% 20%, rgba(191, 223, 255, .15) 20% 100%);
  }
  .numbers_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5%;
  }
  .interaction_inner {
    width: 90%;
    margin: 40px 0 60px;
    padding: 60px 5% 20px;
  }
  .office_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5%;
  }
  .interview_inner {
    margin: 15px 0 60px;
  }
  .employee {
    width: 90%;
    margin: 0 5% 35px;
  }
  .requirement_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5%;
  }
  .flow_inner {
    width: 90%;
    margin: 0;
    padding: 20px 5% 60px;
  }
  .recruit_btn {
    margin: 0 auto 60px;
  }
  .faq_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5% 10px;
  }
}
@media (min-width: 1281px) and (max-width: 1440px) {
  .recruit_index_seek {
    width: 100%;
    margin: 30px 0 60px;
  }
  .recruit_index_seek_inner {
    width: 80%;
    margin: 60px 5%;
    padding: 40px 5%;
    border-radius: 10px;
  }
  .recruit_index_seek_inner .heading {
    margin: 0;
    font-size: 42px;
  }
  .recruit_index_company {
    width: 90%;
    margin: 40px 5% 60px;
    padding: 20px 0;
  }
  .recruit_index_interview {
    width: 80%;
    margin: 60px 0;
    padding: 60px 10%;
  }
  .job_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5% 0;
  }
  .training_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5% 0;
    background: linear-gradient(90deg, transparent 0% 20%, rgba(191, 223, 255, .15) 20% 100%);
  }
  .numbers_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5%;
  }
  .interview_inner {
    margin: 15px 0 60px;
  }
  .interaction_inner {
    width: 90%;
    margin: 40px 0 60px;
    padding: 60px 5% 20px;
  }
  .office_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5% 0;
  }
  .employee {
    width: 90%;
    margin: 0 5% 35px;
  }
  .requirement_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5%;
  }
  .flow_inner {
    width: 90%;
    margin: 0;
    padding: 20px 5% 80px;
  }
  .recruit_btn {
    margin: 0 auto 60px;
  }
  .faq_inner {
    width: 90%;
    margin: 60px 0;
    padding: 60px 5% 20px;
  }
}
/* お問合せ
----------------------------------------------------------- */
.contact .m-title {
  position: relative;
  background-position: center center;
  background-size: cover;
  color: #fff;
  background-image: url("../../img/contact/ttl_bg.jpg");
  padding: 160px 0 80px;
}
.contact .m-title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../img/common/bg-dot.png");
  background-attachment: fixed;
}
.contact p {
  width: 70%;
  margin: 40px 15%;
  padding: 0;
  line-height: 1.8;
}
.contact_inner {
  width: 64%;
  margin: 0 15% 60px;
  padding: 30px 3%;
  background-color: rgba(191, 223, 255, .15);
}
.contact-form {
  margin: 30px auto;
  overflow: hidden;
}
.form-box {
  width: 100%;
  clear: both;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.form-box .form-box-title {
  width: 25%;
  float: left;
  margin-top: 8px;
}
.form-box .form-box-title h4 {
  font-weight: 500;
  display: inline;
}
.form-box .form-box-title p, .form-box-wrapper p {
  display: inline;
  margin: 0;
  padding: 0;
}
.form-box span.form-box-required {
  background: #D90000;
  border-radius: 3px;
  margin-right: 30px;
  padding: 7px 13px 8px;
  text-align: center;
  line-height: 1;
  font-size: 12px;
  color: #FFF;
  display: inline;
  float: right;
}
.form-box-wrapper {
  width: 75%;
  text-align: left;
  float: right;
}
.form-box-wrapper-check {
  width: 75%;
  float: right;
  text-align: left;
  margin-top: 8px;
  margin-bottom: 20px;
}
.form-box form {
  margin: 0;
  padding: 0;
}
.form-box input {
  padding: 8px;
  background-color: #FFF;
  border: 1px solid #0080CC;
  margin-top: 0px;
  vertical-align: -5%;
  font-size: 16px;
  font-family: "SourceHanSerif";
  width: 94%;
}
.form-box textarea {
  padding: 8px;
  background-color: #FFF;
  border: 1px solid #0080CC;
  font-size: 16px;
  font-family: "SourceHanSerif";
  width: 94%;
}
.form-box select {
  padding: 8px;
  background-color: #FFF;
  border: 1px solid #0080CC;
  font-size: 16px;
  font-family: "SourceHanSerif";
}
.form-box label {
  cursor: pointer;
}
.form-box select:focus, .form-box input:focus, .form-box textarea:focus {
  background-color: #F4F6F9;
}
.sendbox {
  margin: 30px 0 60px;
  text-align: center;
}
input[type="submit"] {
  position: relative;
  z-index: 2;
  background: rgba(0, 128, 204, 1.0);
  color: #FFF;
  line-height: 60px;
  font-size: 18px;
  width: 20%;
  font-family: "SourceHanSerif";
  font-weight: 500;
  letter-spacing: 5px;
  margin: 0 15px
}
input[type="submit"]:hover {
  background: rgba(0, 128, 204, 0.7);
  color: #FFF;
  text-decoration: none
}
input[type="submit"]::before, input[type="submit"]::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #0080CC
}
input[type="submit"]::before {
  right: 0
}
input[type="submit"]::after {
  left: 0
}
input[type="submit"]:hover::before, input[type="submit"]:hover::after {
  width: 0;
  background-color: #0080CC
}
input[type="submit"], input[type="submit"]::before, input[type="submit"]::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s
}
input[type="button"], input[type="reset"] {
  position: relative;
  z-index: 2;
  background: rgba(204, 204, 204, 1.0);
  color: #333;
  line-height: 60px;
  font-size: 18px;
  width: 20%;
  font-family: "SourceHanSerif";
  font-weight: 500;
  margin: 0 15px
}
input[type="button"]:hover, input[type="reset"]:hover {
  background: rgba(204, 204, 204, 0.7);
  color: #333;
  text-decoration: none
}
input[type="button"]::before, input[type="button"]::after, input[type="reset"]::before, input[type="reset"]::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #CCC
}
input[type="button"]::before, input[type="reset"]::before {
  right: 0
}
input[type="button"]::after, input[type="reset"]::after {
  left: 0
}
input[type="button"]:hover::before, input[type="button"]:hover::after, input[type="reset"]:hover::before, input[type="reset"]:hover::after {
  width: 0;
  background-color: #CCC
}
input[type="button"], input[type="button"]::before, input[type="button"]::after, input[type="reset"], input[type="reset"]::before, input[type="reset"]::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s
}
input[type="submit"], input[type="button"], input[type="reset"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration, input[type="reset"]::-webkit-search-decoration {
  display: none
}
input[type="submit"]::focus, input[type="button"]::focus, input[type="reset"]::focus {
  outline-offset: -2px
}
input::placeholder {
  color: #DDDDDD;
}
textarea::placeholder {
  color: #DDDDDD;
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 14px;
  margin-top: 5px;
}
.wpcf7-form.invalid .wpcf7-response-output {
  display: none;
}
.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}
.wpcf7-spinner {
  display: none !important;
}
.finish_inner {
  width: 64%;
  margin: 30px 15% 60px;
  padding: 80px 3% 100px;
  background-color: rgba(191, 223, 255, .15);
  text-align: center;
  font-weight: 500;
  line-height: 2.0;
}
@media (max-width: 599px) {
  .contact_inner {
    width: 80%;
    margin: 30px 5%;
    padding: 20px 5% 0px;
  }
  .contact .m-title {
    padding: 140px 0 60px;
  }
  .contact p {
    width: 90%;
    margin: 30px 5% 15px;
  }
  .contact-form {
    margin: 0 auto;
  }
  .form-box .form-box-title {
    width: 100%;
    float: left;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .form-box span.form-box-required {
    margin-right: 0;
  }
  .form-box-wrapper {
    width: 100%;
    margin-bottom: 25px;
  }
  .form-box-wrapper-check {
    width: 100%;
    margin-top: 0;
    margin-bottom: 25px;
  }
  .sendbox {
    margin: 30px 0 40px;
  }
  input.submit_button {
    margin: 10px 0 0;
  }
  input[type="submit"] {
    line-height: 40px;
    font-size: 16px;
    width: 35%;
    margin: 0 15px
  }
  input[type="button"], input[type="reset"] {
    line-height: 40px;
    font-size: 16px;
    width: 35%;
    margin: 0 15px
  }
  .finish_inner {
    width: 80%;
    margin: 30px 5%;
    padding: 15px 5% 30px;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .contact_inner {
    width: 80%;
    margin: 30px 5%;
    padding: 30px 5%;
  }
  .contact .m-title {
    padding: 140px 0 60px;
  }
  .contact p {
    width: 90%;
    margin: 30px 5% 15px;
  }
  .contact-form {
    margin: 20px auto 0;
  }
  .form-box .form-box-title {
    width: 100%;
    float: left;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .form-box span.form-box-required {
    margin-right: 0;
  }
  .form-box-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }
  .form-box-wrapper-check {
    width: 100%;
    margin-bottom: 30px;
  }
  input.submit_button {
    margin: 10px 0 0;
  }
  .finish_inner {
    width: 80%;
    margin: 30px 5%;
    padding: 60px 5% 80px;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  .contact_inner {
    width: 80%;
    margin: 40px 5%;
    padding: 60px 5%;
  }
  .form-box .form-box-title {
    width: 30%;
  }
  .contact p {
    width: 90%;
    margin: 40px 5% 20px;
  }
  .form-box-wrapper {
    width: 70%;
  }
  .form-box-wrapper-check {
    width: 70%;
  }
  .finish_inner {
    width: 80%;
    margin: 30px 5% 60px;
    padding: 80px 5% 100px;
  }
}
@media (min-width: 1281px) and (max-width: 1440px) {
  .contact_inner {
    width: 80%;
    margin: 60px 5%;
    padding: 60px 5%;
  }
  .contact p {
    width: 90%;
    margin: 60px 5% 20px;
  }
  .finish_inner {
    width: 80%;
    margin: 30px 5% 60px;
    padding: 60px 5% 100px;
  }
}
/* お知らせ
----------------------------------------------------------- */
.news_in {
  margin-bottom: 0;
}
.news_in .m-title {
  position: relative;
  background-position: center center;
  background-size: cover;
  color: #fff;
  background-image: url("../../img/news/ttl_bg.jpg");
  padding: 160px 0 80px;
}
.news_in .m-title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../img/common/bg-dot.png");
  background-attachment: fixed;
}
.news_m {
  width: 64%;
  margin: 30px 0 60px;
  padding: 0 18%;
  line-height: 1.8;
}
.news_m .heading {
  font-weight: 600;
  font-size: 32px;
  color: #0080CC;
  text-align: center;
  margin-bottom: 30px;
}
.newsdetail {
  width: 64%;
  margin: 40px 0 60px;
  padding: 0 18%;
  line-height: 1.8;
}
.newsdetail h3.entrytitle {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  padding: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
  color: #0080CC;
  border-bottom: 3px solid #CCC;
}
.newsdetail h3.entrytitle:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100px;
  height: inherit;
  border-bottom: 3px solid #0080CC;
}
.newsdetail h3.entrytitle span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-right: 15px;
  font-style: italic;
  color: #E60012
}
span.new {
  margin-right: 10px;
  font-style: italic;
  color: #E60012
}
.newsdetail .entrytime {
  display: block;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px
}
.newsdetail .next_prev {
  margin: 30px 20% 0;
  width: 60%
}
.newsdetail .next_prev .next {
  float: left
}
.newsdetail .next_prev .prev {
  float: right
}
.newsdetail .entrybody {
  border-bottom: solid 1px #CCC;
  padding-top: 20px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  line-height: 1.8;
  overflow: hidden
}
.newsdetail img {
  margin: 20px 15px 20px 0;
  max-width: 800px;
  height: auto
}
.newsdetail .date {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-right: 15px;
  color: #FF9B27;
}
.newsdetail .category {
  display: inline-block;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  margin-right: 15px;
  padding: 3px 15px;
  background-color: #0080CC;
  letter-spacing: 2px;
}
@media (max-width: 599px) {
  .news_in .m-title {
    padding: 140px 0 60px;
  }
  .news_m {
    width: 90%;
    margin: 30px 5% 40px;
    padding: 0;
  }
  .news_m .heading {
    font-size: 28px;
    margin-bottom: 0;
  }
  .newsdetail {
    width: 90%;
    margin: 30px 5% 40px;
    padding: 0;
  }
  .newsdetail h3.entrytitle {
    font-size: 20px;
    line-height: 1.4;
  }
  .newsdetail h3.entrytitle span {
    font-size: 16px;
    line-height: 1.4;
    margin-right: 10px;
  }
  span.new {
    margin-right: 10px;
  }
  .newsdetail .entrybody {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .newsdetail img {
    margin: 20px 0;
  }
  .newsdetail .date {
    font-size: 14px;
  }
  .newsdetail .category {
    font-size: 12px;
    padding: 3px 10px;
  }
}
@media (min-width: 600px) and (max-width: 1279px) {
  .news_in .m-title {
    padding: 140px 0 60px;
  }
  .news_m {
    width: 90%;
    margin: 30px 5% 40px;
    padding: 0;
  }
  .news_m .heading {
    font-size: 28px;
    margin-bottom: 0;
  }
  .newsdetail {
    width: 90%;
    margin: 40px 5% 40px;
    padding: 0;
  }
  .newsdetail h3.entrytitle {
    font-size: 20px;
    line-height: 1.4;
  }
  .newsdetail h3.entrytitle span {
    font-size: 16px;
    line-height: 1.4;
    margin-right: 10px;
  }
  span.new {
    margin-right: 10px;
  }
  .newsdetail .entrybody {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .newsdetail img {
    margin: 20px 0;
  }
  .newsdetail .date {
    font-size: 14px;
  }
  .newsdetail .category {
    font-size: 12px;
    padding: 3px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1440px) {
  .news_m {
    width: 90%;
    margin: 40px 5% 60px;
    padding: 0;
  }
  .newsdetail {
    width: 90%;
    margin: 40px 5% 60px;
    padding: 0;
  }
}
/* プライバシーポリシー
----------------------------------------------------------- */
.privacy_inner {
  width: 64%;
  margin: 40px 15% 60px;
  padding: 60px 3%;
  background-color: rgba(191, 223, 255, .15);
  line-height: 1.8;
}
.privacy .m-title {
  position: relative;
  background-position: center center;
  background-size: cover;
  color: #fff;
  background-image: url("../../img/privacy/ttl_bg.jpg");
  padding: 160px 0 80px;
}
.privacy .m-title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../img/common/bg-dot.png");
  background-attachment: fixed;
}
.privacy_inner h3 {
  font-weight: 500;
  margin-bottom: 40px;
  padding-left: 30px;
  font-size: 32px;
  color: #0080CC;
  position: relative;
  line-height: 1.0;
}
.privacy_inner h3:before {
  content: '';
  position: absolute;
  left: 0%;
  width: 6px;
  height: 34px;
  background-color: #0080CC
}
.privacy_inner h4 {
  font-weight: 600;
  font-size: 24px;
  color: #0080CC;
  margin: 20px 0 10px;
}
.privacy_inner p {
  margin: 0 0 15px;
}
.privacy_inner ol {
  width: 100%;
  margin: 0;
}
.privacy_inner ol {
  list-style-position: inside;
}
.privacy_inner ol li {
  font-weight: 600;
  margin-bottom: 15px;
  margin-left: 22px;
  list-style: decimal;
}
.privacy_inner ol li dl {
  font-weight: 400;
  margin-top: 8px;
}
.privacy_inner ol li dl dt {
  padding-left: 1em;
}
.privacy_inner ol li dl dt:before {
  content: "・";
  margin-left: -1em;
}
.privacy_inner ol li dl dd {
  padding-left: 18px;
}
.privacy_inner .line {
  width: 100%;
  height: 1px;
  background-color: #CCC;
  margin: 40px 0;
}
.privacy_inner .right {
  margin: 20px 0 0;
  text-align: right;
}
@media (max-width: 599px) {
  .privacy_inner {
    width: 80%;
    margin: 30px 5% 60px;
    padding: 40px 5%;
  }
  .privacy .m-title {
    padding: 140px 0 60px;
  }
  .privacy_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .privacy_inner h3:before {
    height: 26px;
  }
  .privacy_inner h4 {
    font-size: 20px;
  }
  .privacy_inner .line {
    width: 100%;
    height: 1px;
    background-color: #CCC;
    margin: 40px 0;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .privacy_inner {
    width: 80%;
    margin: 30px 5% 60px;
    padding: 40px 5%;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  .privacy_inner {
    width: 80%;
    margin: 60px 5%;
    padding: 60px 5%;
  }
}
@media (min-width: 1281px) and (max-width: 1440px) {
  .privacy_inner {
    width: 80%;
    margin: 60px 5%;
    padding: 60px 5%;
  }
}
/* 情報セキュリティ
----------------------------------------------------------- */
.security_inner {
  width: 64%;
  margin: 40px 15% 60px;
  padding: 60px 3%;
  background-color: rgba(191, 223, 255, .15);
  line-height: 1.8;
}
.security .m-title {
  position: relative;
  background-position: center center;
  background-size: cover;
  color: #fff;
  background-image: url("../../img/security/ttl_bg.jpg");
  padding: 160px 0 80px;
}
.security .m-title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../img/common/bg-dot.png");
  background-attachment: fixed;
}
.security_inner h3 {
  font-weight: 500;
  margin-bottom: 40px;
  padding-left: 30px;
  font-size: 32px;
  color: #0080CC;
  position: relative;
  line-height: 1.0;
}
.security_inner h3:before {
  content: '';
  position: absolute;
  left: 0%;
  width: 6px;
  height: 34px;
  background-color: #0080CC
}
.security_inner h4 {
  font-weight: 600;
  font-size: 24px;
  color: #0080CC;
  margin: 20px 0 10px;
}
.security_inner .mark {
  width: 100%;
  text-align: right;
  margin: 30px 0;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
}
.security_inner img {
  float: left;
  margin: 0;
  height: 100px;
}
.security_inner p {
  margin: 0 0 15px;
}
.security_inner ol {
  width: 100%;
  margin: 0;
}
.security_inner ol {
  list-style-position: inside;
}
.security_inner ol li {
  font-weight: 600;
  margin-bottom: 15px;
  margin-left: 22px;
  list-style: decimal;
}
.security_inner ol li dl {
  font-weight: 400;
  margin-top: 8px;
  padding-left: 22px;
}
.security_inner ol li dl dt:before {
  content: "・"
}
.security_inner ol li dl dd {
  padding-left: 18px;
}
.security_inner .right {
  margin: 20px 0;
  text-align: right;
}
@media (max-width: 599px) {
  .security_inner {
    width: 80%;
    margin: 30px 5% 60px;
    padding: 40px 5%;
  }
  .security .m-title {
    padding: 140px 0 60px;
  }
  .security_inner h3 {
    margin-bottom: 30px;
    padding-left: 24px;
    font-size: 24px;
  }
  .security_inner h3:before {
    height: 26px;
  }
  .security_inner h4 {
    font-size: 20px;
  }
  .security_inner .mark {
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .security_inner {
    width: 80%;
    margin: 30px 5% 60px;
    padding: 40px 5%;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  .security_inner {
    width: 80%;
    margin: 60px 5%;
    padding: 60px 5%;
  }
}
@media (min-width: 1281px) and (max-width: 1440px) {
  .security_inner {
    width: 80%;
    margin: 60px 5%;
    padding: 60px 5%;
  }
}