@charset "utf-8";

body {
  width: 100%;
  height: auto;
  text-align: left;
  font-family: "Helvetica Neue","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","遊ゴシック","Yu Gothic","メイリオ","Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #333333;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  body {
    line-height: 1.0;
    -webkit-text-size-adjust: 100%;
  }

  article,aside,canvas,details,figcaption,figure,
  footer,header,hgroup,menu,nav,section,summary { 
    display: block;
  }

  strong {
    font-weight: normal;
  }

  img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }
}
/* responsive End */

/*============================================================================
  Header Setting
============================================================================*/
header {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #cacaca;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto;
  padding-top: 15px;
  font-size: 0.8rem;
  font-weight: bolder;
}

.header__wrap .header_logo {
  width: 400px;
}

.header__wrap .header_info {
  text-align: right;
}

.header__wrap img {
  margin-top: 6px;
}

header .logo img {
  max-width: 75%;
  height: auto;
}

header .logo a {
  transition: all 0.3s ease;
}

header .logo a:hover {
  opacity: 0.8;
}

header .phone {
  width: 300px;
}

header .phone img {
  max-width: 90%;
  height: auto;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  header {
    width: 100%;
    /*height: 60px;*/
    border-bottom: 1px solid #cacaca;
  }

  .header__wrap {
    max-width: 70%;
    display: block;
  }

  .header__wrap .header_logo {
    max-width: 100%;
    margin: 0 auto;
  }

  .header__wrap .header_logo p {
    /*visibility: hidden;
    margin-top:-30px;*/
    display: none;
  }

  .header__wrap .header_logo h1 {
    text-align: center;
  }

  .header__wrap .header_info p {
    display: none;
  }
}
/* responsive End */

/*============================================================================
  Global Navi Setting
============================================================================*/
#navi-fixed {
  /*height: ; /* 高さ指定 */
  width: 100%; /* 横幅指定 */
  /* 以下はレイアウトのためのCSS */
  /*display: flex;
  justify-content: space-between;*/
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  /*border-bottom: 1px solid #cacaca;*/
}

/* JSを使いfixedクラスが付与された際の設定 */
#navi-fixed.fixed {
  position: fixed; /* fixedを設定して固定 */
  z-index: 999; /* 最前面へ */
  top: 0; /* 位置指定 */
  left: 0; /* 位置指定 */
}

.global-nav {
  display: flex;
  justify-content: center;
  width: 1000px;
  margin: 0 auto;
}

.global-nav li {
  width: 20%;
  font-weight: bolder;
}

.global-nav li a {
  position: relative;
  display: inline-block;
  width: 100%;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  color: #333333;
  background: #ffffff;
  transition: all 0.3s ease;
}

.global-nav li a:hover {
  background: #49e6ea;
  color: #ffffff;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  #navi-fixed nav {
  }

  .global-nav {
    max-width: 100%;
	/*box-shadow: 0 2px 2px rgba( 0, 0, 0, 0.1 );*/
  }

  .global-nav li {
    max-width: 20%;
    line-height: 45px;
    font-size: 0.8rem;
  }

  .global-nav li a {
    width: 100%;
    line-height: 45px;
  }
}
/* responsive End */

/*============================================================================
  Main Setting
============================================================================*/
main {
}

.main__contents {
  width: 1000px;
  margin: 0 auto;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .main__contents {
    width: 90%;
    margin: 0 auto;
  }
}
/* responsive End */

/*============================================================================
  Index Setting
============================================================================*/
/* slide image
============================================================================*/
.slide__container {
  width: 100%;
  position: relative;
}
/*
.mark {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  opacity: 0.2;
}
*/
.slider {
  display: flex;
  margin: 0 auto;
}

.slider li {
  height: auto;
}

.slider li.slider_item img {
  max-width: 100%;
  height: 500px;
  object-fit: cover;
}

.slider .slick-dots {
  bottom: 4%;
  z-index: +1;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .slider li.slider_item img {
    height: 250px;
  }
}
/* responsive End */

/* contents category
============================================================================*/
.contents__category {
  display: flex;
  justify-content: space-between;
  gap: 0 40px; /* 余白 */
  margin: 80px auto 0;
  color: #ffffff;
}

.contents__category a section {
  background: #01345b;
  text-align: center;
  padding-bottom: 30px;
}

.contents__category a section img {
  width: 100%;
  height: auto;
}

.contents__category h2 {
  margin: 15px 20px 0;
  padding-bottom: 6px;
  font-size: 1.8rem;
  font-weight: bolder;
  border-bottom: 1px dotted #67859d;
}

.contents__category h2 span {
  display: block;
  font-size: 0.9rem;
  /*font-weight: normal;*/
  color: #49e6ea;
}

.contents__category .text {
  margin-top: 10px;
  font-size: 0.9rem;
}

.contents__category .btn {
  display: inline-block;
  margin: 20px auto 0;
  padding: 12px 24px;
  font-weight: bolder;
  color: #49e6ea;
  border: 1px solid #49e6ea;
  transition: all 0.3s ease;
}
/* アイコン */
.contents__category .btn::after {
  content: "\f0a9";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  padding-left: 10px;
  background-position: 50%;
}

.contents__category a:hover .btn {
  color: #ffffff;
  background: #49e6ea;
  border: 1px solid #49e6ea;
}

/* 画像の拡大モーション */
.scale-img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease; /* 変化の時間 */
}

.contents__category a:hover .scale-img {
  transform: scale(1.2,1.2); /* 画像の拡大サイズ */
}

.scale {
  width: 100%;
  height: auto;
  overflow: hidden; /* 画像拡大時にはみ出た部分を隠す */
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .contents__category {
    display: block;
    margin: 30px auto 0;
    color: #ffffff;
  }

  .contents__category .category_l-box {
    max-width: 100%;
    margin: 0 auto;
  }

  .contents__category .category_r-box {
    max-width: 100%;
    margin: 30px auto 0;
  }

  .contents__category section img {
    width: 100%;
    height: auto;
  }

  .contents__category h2 {
    margin-top: 20px;
    font-size: 1.3rem;
  }
  
  .contents__category h2 span {
    display: none;
  }

  .contents__category .btn {
    font-size: 0.9rem;
  }
}
/* responsive End */

/* information
============================================================================*/
.information {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  margin-top: 50px;
  padding: 30px 0;
  background: #fafafa;
}

h3.info-midashi {
  margin: auto 0 auto 30px;
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: bolder;
  color: #ffffff;
  background: #49e6ea;
  border-radius: 4px;
}

h3.info-midashi::before {
  content: "\f05a";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  color: #ffffff;
}

.information section {
  width: 100%;
  padding: 0 30px 0 15px;
  line-height: 1.4;
}

.information .job em {
  font-size: 1.3rem;
  font-style: normal;
  font-weight: bolder;
}

.information .job a {
  color: #01345b;
  text-decoration: underline;
}


/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .information {
    max-width: 100%;
    display: block;
    margin-top: 20px;
    padding: 10px 10px 20px;
  }

  h3.info-midashi {
    margin: 0;
    font-size: 1.3rem;
  }
  
  .information section {
    margin: 0;
    padding: 0;
  }
  
  .information address {
    padding: 10px;
  }

  .information address span,
  .information .job p {
    font-size: 0.9rem;
  }
  
  .information .job {
    padding: 10px 10px 0;
    border-left: none;
  }
  
  .information .job em {
    font-size: 1.1rem;
  }
}
/* responsive End */

/*============================================================================
  Google map Setting
============================================================================*/
.g-map__wrap {
  margin-top: 50px;
  position: relative;
  width: 100%;
  height: 300px;
}

.g-map__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .g-map__wrap {
    margin-top: 30px;
    max-width: 100%;
    height: 200px;
  }
}
/* responsive End */

/*============================================================================
  Contact Wrap Setting
============================================================================*/
.contact__wrap {
  /*background: url(../img/footer_bg_contact_wrap.jpg) no-repeat 50% 50%/cover;*/
  background-color: #01345b;
  text-align: center;
  padding-top: 30px;
  color: #ffffff;
}

.contact__wrap > * {
  width: 1000px;
}

.contact__wrap h3,
.contact__wrap h4,
.contact__wrap h5 {
  margin: 0 auto;
  padding-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bolder;
  border-bottom: 1px dotted #67859d;
}

.contact__wrap span {
  display: block;
  font-size: 0.9rem;
  color: #49e6ea;
}

.contact__wrap p {
  margin: 10px auto 20px;
}

.contact__container {
  /*display: flex;*/
  /*justify-content: space-between;
  gap: 0 40px; /* 余白 */
  margin: 0 auto;
  padding-bottom: 40px;
  width: 500px;
}

.contact__container img {
  width: 100%;
  height: auto;
  border: 1px solid #ffffff;
}
/*
.contact__container a {
  transition: all 0.3s ease;
}

.contact__container a:hover {
  opacity: 0.8;
}
*/
/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .contact__wrap {
    padding-top: 15px;
  }

  .contact__wrap h3,
  .contact__wrap h4,
  .contact__wrap h5 {
    max-width: 90%;
    font-size: 1.2rem;
  }
  
  .contact__wrap h4 span {
    margin-top: 3px;
    font-size: 0.8rem;
  }

  .contact__wrap p {
    font-size: 0.8rem;
    margin: 10px auto 15px;
    max-width: 90%;
  }

  .contact__container {
    display: block;
    max-width: 80%;
    padding-bottom: 15px;
  }

  .contact__container .box-mail {
    margin-top: 10px;
  }
}
/* responsive End */

/*============================================================================
  Footer Setting
============================================================================*/
footer {
  width: 1000px;
  margin: 30px auto 0;
}

footer h4 img,
footer h5 img,
footer h6 img {
  width: 200px;
  height: auto;
}

footer .footer_info-wrap {
  padding-right: 50px;
}

footer .footer_info-wrap address {
  margin-top: 10px;
  padding-left: 5px;
  line-height: 1.6;
}

footer .footer_info-wrap address span {
  display: block;
}

footer .footer_navi-wrap {
  margin: 20px 0;
}

footer a {
  transition: all 0.3s ease;
  color: #333333;
}

footer a:hover {
  color: #49e6ea;
}

footer nav ul {
  display: flex;
  padding-left: 8px;
}

footer nav ul li {
  line-height: 1.6;
  padding-right: 20px;
}

footer nav li::before {
  content: "\f0a9";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  margin-right: 8px;
  color: #49e6ea;
}

.copyright {
  border-top: 1px solid #cacaca;
  padding: 20px 0 40px;
  font-size: 0.8rem;
  text-align: center;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  footer {
    max-width: 100%;
    margin: 10px auto 0;
    padding: 10px 0 20px;
    text-align: center;
  }

  footer h4,
  footer h5,
  footer h6 {
  }
  
  footer h4 img,
  footer h5 img,
  footer h6 img {
    max-width: 40%;
  }
  
  footer .footer_info-wrap {
    padding-right: 0;
    width: 90%;
    margin: 0 auto;
  }
  
  footer .footer_info-wrap address {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  footer .footer_navi-wrap {
    display: none;
  }
  
  .copyright {
    padding-bottom: 20px;
	border-top: 1px solid #cacaca;
  }
}
/* responsive End */

/*============================================================================
  Page Top Setting
============================================================================*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 999;
  font-size: 24px;
}

#page-top a {
  background: #49e6ea;
  text-decoration: none;
  color: #ffffff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: block;
  /*border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;*/
  /*border-radius: 50%;*/ /* 円 */
  /*border-radius: 5px;*/ /* 角丸 */
  /*opacity: 1.0;*/
  /*transition: all 0.3s ease;*/
}
/*
#page-top a:hover {
  text-decoration: none;
  opacity: 0.6;
}
*/
/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  #page-top {
    font-size: 20px;
  }
  
  #page-top a {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
/* responsive End */

/*============================================================================
  Contents Common Setting
============================================================================*/
.contents-title {
  background: #01345b;
  width: 100%;
  padding: 40px 0 30px;
}

.contents-title h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bolder;
  color: #ffffff;
}

.contents-title h2 span {
  display: block;
  font-size: 1.2rem;
  font-weight: nomal;
  color: #49e6ea;
}

.contents-title p {
  margin-top: 10px;
  text-align: center;
  line-height: 2.0;
  color: #ffffff;
}

.contents-title p::before {
  content: "―";
  font-size: 1.5rem;
  padding-right: 10px;
  vertical-align: middle;
}

.contents-title p::after {
  content: "―";
  font-size: 1.5rem;
  padding-left: 10px;
  vertical-align: middle;
}

.breadcrumb {
  width: 100%;
  margin: 0 auto;
  padding-top: 10px;
}

.breadcrumb a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.6;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  font-size: 0.8rem;
}

.breadcrumb li::after {
  content: "\f0da";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 0.7rem;
  /*color: #cacaca;*/
  padding: 0 10px;
  vertical-align: middle;
}

.breadcrumb li:last-child::after {
  display: none;
}

.contents__container {
  margin: 50px 0;
}

.main__column {
  display: flex;
  justify-content: space-between;
  gap: 0 40px; /* 余白 */
}

.left__column {
  /*width: 480px;*/
}

.right__column {
  /*width: 480px;*/
}

.midashi-style {
  padding: 20px 0 20px;
  color: #01345b;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .contents-title {
    width: 100%;
    padding: 15px 0 10px;
  }
  
  .contents-title h2 {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .contents-title h2 span {
    font-size: 0.9rem;
	margin-top: 2px;
  }

  .contents-title p {
    margin-top: 0;
    font-size: 0.8rem;
    text-align: center;
  }
  
  .contents-title p::before,
  .contents-title p::after {
    font-size: 1.0rem;
  }
  
  .breadcrumb {
    display: none;
  }
  
  .contents__container {
    padding: 0;
  }

  .main__column {
    display: block;
    max-width: 90%;
    margin: 0 auto;
  }

  .left__column {
    width: 100%;
    padding-bottom: 30px;
  }

  .right__column {
    width: 100%;
    padding-bottom: 30px;
  }
}
/* responsive End */

/*============================================================================
  Business Pages Setting
============================================================================*/
.category-navi {
  display: flex;
  justify-content: center;
}

.contents__container nav {
  position: relative;
  margin: 70px 0;
  padding: 15px 0;
  width: 100%;
  line-height: 1.4;
}

.contents__container nav::before,
.contents__container nav::after { 
  position: absolute;
  top: 0;
  content: '';
  width: 8px;
  height: 100%;
  display: inline-block;
}

.contents__container nav::before {
  border-left: 1px solid #cacaca;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  left: 0;
}

.contents__container nav::after {
  border-top: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  right: 0;
}

.category-navi li {
  border-right: 1px solid #cacaca;
  padding: 0 10px;
  line-height: 2.0;
}

.category-navi li:last-child {
  border-right: none;
  padding-right: 0;
}

.category-navi li a {
  padding: 6px 10px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.category-navi li a:hover {
  background-color: #ffcf43;
}

.jigyo {
  padding: 40px 0 30px;
}

.jigyo p {
  margin-top: 20px;
  line-height: 1.4;
}

.jigyo .image-list {
  margin-top: 20px;
  display: flex;
  gap: 0 10px; /* 余白 */
  justify-content: space-between;
}

.jigyo img {
  width: 100%;
  height: auto;
}

.jigyo .midashi-style {
  font-size: 1.6rem;
  font-weight: bolder;
  border-top: 4px solid #49e6ea;
  border-bottom: 1px dashed #49e6ea;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .contents__container nav {
    display: none;
  }
  
  .jigyo {
    font-size: 0.9rem;
    padding: 0;
  }
  
  .jigyo p {
    margin-top: 15px;
  }
  
  .jigyo .image-list {
    margin-top: 15px;
  }
  
  .jigyo .image-list li {
    width: 100%;
  }

  .jigyo img {
    max-width: 100%;
    max-height: auto;
  }
  
  .jigyo .midashi-style {
    padding: 14px 0;
    font-size: 1.3rem;
    text-align: center;
  }
}
/* responsive End */

/*============================================================================
  Machine Pages Setting
============================================================================*/
.list {
  padding-bottom: 50px;
}

.list img {
  width: 100%;
  height: auto;
}

.list h3.midashi-style {
  font-size: 1.5rem;
  font-weight: bolder;
  border-top: 4px solid #49e6ea;
  border-bottom: 1px dashed #49e6ea;
}

.list h3 span {
  display: inline-block;
  font-size: 0.9rem;
  margin-right: 10px;
  vertical-align: 0.2rem;
  color: #49e6ea;
}

.list .left__column p,
.list .right__column p {
  padding: 10px 0 0;
}


/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .list {
    padding: 0;
  }
  
  .list img {
    max-width: 100%;
    max-height: auto;
  }
  
  .list h3.midashi-style {
    font-size: 1.2rem;
  }
  
  .list h3 span {
    font-size: 0.8rem;
    vertical-align: 0.1rem;
  }

  .list .right__column {
    padding-bottom: 15px;
  }
}
/* responsive End */

/*============================================================================
  About Us Pages Setting
============================================================================*/
.kiyosawaimage {
  margin: 50px auto 0;
}

.kiyosawaimage img {
  max-width: 100%;
  max-height: auto;
}

.company__wrap {
  padding-bottom: 50px;
}

.company__wrap .midashi-style {
  font-size: 2.0rem;
  font-weight: bolder;
  position: relative;
  /*display: inline-block;*/
  text-align: center;
}

.company__wrap .midashi-style::before {
  content: '';
  position: absolute;
  bottom: -5px;
  display: inline-block;
  width: 50px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #49e6ea;
  border-radius: 2px;
}

.company__wrap tr > * {
  text-align: left;
  padding: 18px 14px;
  line-height: 1.6;
}

.enkaku ,
.csr ,
.jobs {
  margin-top: 50px;
}

.about-us table,
.enkaku table,
.jobs table {
  margin-top: 60px;
  width: 100%;
}

.about-us tr > * {
  border-bottom: 1px solid #cacaca;
}

.about-us tr:first-child {
  border-top: 1px solid #cacaca;
}
/* 偶数段落 */
.about-us tr:nth-child(even) > * {
  background-color: #fafafa;
}

.about-us th {
  width: 18%;
  vertical-align: middle;
}

.about-us .map i {
  margin-left: 5px;
}

.about-us .map a {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: bolder;
  background: #01345b;
  color: #ffffff;
  padding: 2px 8px 2px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about-us .map a:hover {
  background: #49e6ea;
}

.enkaku tr > * {
  border-bottom: 1px dashed #cacaca;
}

.enkaku th {
  width: 18%;
}

.csr .csr__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.csr .csr__wrap > div {
  margin: 0 10px 0 0;
  text-align: left;
}

.csr .csr__wrap .csr-image p {
  display: block;
  float: left;
  margin-right: 10px;
}

.csr .csr__wrap .csr-image p:last-child {
  margin-right: 0;
}

.csr .csr__wrap .csr-image p img {
  width: 250px;
}

.csr .csr__wrap .csr-text {
  width: 450px;
}

.csr .csr__wrap .csr-text em {
  font-style: normal;
  font-size: 1.4rem;
  font-weight: bolder;
  line-height: 1.4;
  color: #01345b;
  font-family: "游明朝","Yu Mincho","Hiragino Mincho Pro",serif;
}

.csr .csr__wrap .csr-text .photo-title {
  margin-top: 30px;
  padding-bottom: 6px;
  font-weight: bolder;
  border-bottom: 1px solid #cacaca;
}

.csr .csr__wrap .csr-text .photo-title::before {
  content: "\f0a8";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  color: #49e6ea;
}

.jobs tr > * {
  border-bottom: 1px solid #cacaca;
}

.jobs tr:first-child {
  border-top: 1px solid #cacaca;
}

.jobs th {
  width: 18%;
  vertical-align: middle;
}

.jobs ol {/*リスト数字*/
  /*padding-left: 20px;
  list-style: decimal;*/
}

.jobs ul {
  /*padding-left: 20px;
  list-style: disc;*/
}

.jobs p {
  margin-top: 30px;
  background: #fafafa;
  padding: 20px;
  font-size: 0.9rem;
}

.jobs p i {
  margin-right: 7px;
  color: #01345b;
}

.jobs p a {
  color: #01345b;
  text-decoration: underline;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .kiyosawaimage {
    max-width: 100%;
    margin: 20px auto 0;
  }

  .company__wrap section > .midashi-style {
    font-size: 1.3rem;
    padding: 16px 0;
  }
  
  .company__wrap .midashi-style::before {
    width: 30px;
    height: 4px;
  }

  .about-us,
  .enkaku,
  .jobs {
    max-width: 100%;
  }
  
  .enkaku ,
  .csr ,
  .jobs {
    margin-top: 50px;
  }
  
  .about-us table,
  .enkaku table,
  .jobs table {
    margin-top: 30px;
  }

  .about-us th {
    width: 25%;
  }

  .about-us tr > * {
    font-size: 0.9rem;
    padding: 10px;
    line-height: 1.6;
  }

  .enkaku tr > * {
    font-size: 0.9rem;
    padding: 10px;
    line-height: 1.6;
  }

  .enkaku th {
    width: 25%;
  }

  .csr .csr__wrap {
    margin-top: 30px;
    display: block;
  }

  .csr .csr__wrap > div {
    margin: 0;
  }
  
  .csr .csr__wrap .csr-image {
    width: 100%;
  }

  .csr .csr__wrap .csr-image p {
    display: block;
    width: 50%;
    float: left;
    margin-right: 0;
  }

  .csr .csr__wrap .csr-image p:last-child {
    margin-right: 0;
  }

  .csr .csr__wrap .csr-image p img {
    width: 100%;
    margin-bottom: 20px;
  }

  .csr .csr__wrap .csr-text .photo-title {
    margin-top: 15px;
  }

  .csr .csr__wrap .csr-text .photo-title::before {
    content: "\f0aa";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
  }

  .csr .csr__wrap .csr-text {
    width: 100%;
  }

  .csr .csr__wrap .csr-text em {
    font-style: normal;
    font-size: 1.1rem;
  }

  .jobs tr > * {
    font-size: 0.9rem;
    padding: 10px;
    line-height: 1.6;
  }
  
  .jobs th {
    width: 25%;
  }
  
  .jobs p {
    font-size: 0.9rem;
    padding: 12px 15px 12px 30px;
    text-indent: -7px;
    line-height: 1.6;
  }
}
/* responsive End */

/*============================================================================
  Contact Pages Setting
============================================================================*/
.contact .midashi-style {
  font-size: 1.8rem;
  font-weight: bolder;
  text-align: center;
  padding: 18px 0;
  border-top: 4px solid #49e6ea;
  border-bottom: 1px dashed #49e6ea;
}

.phone_wrap {
  text-align: center;
}

.phone_wrap .phone-number {
  margin: 30px auto 0;
  width: 380px;
}

.phone_wrap .phone-number img {
  max-width: 100%;
}

.phone_wrap .phone-text {
  margin-top: 10px;
}

.contact-column {
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 4px solid #49e6ea;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .contents-title .thx {
    padding: 8px 0 12px;
  }
  
  .contact-column {
    max-width: 100%;
  }
  
  .contact {
    width: 90%;
  }
  
  .contact .midashi-style {
    font-size: 1.2rem;
    padding: 16px 0;
  }

  .phone_wrap {
    font-size: 0.9rem;
  }
  
  .phone_wrap .phone-number {
    margin: 20px auto 0;
    width: 60%;
  }
  
  .phone_wrap .phone-number img {
    max-width: 100%;
  }
  
  .phone_wrap .phone-text {
    font-size: 0.8rem;
  }
}
/* responsive End */

/*============================================================================
  Sitemap Pages Setting
============================================================================*/
.sitemap__list {
}

.sitemap__list li {
  font-size: 1.3rem;
  line-height: 2.5;
}

.sitemap__list li a {
  transition: all 0.3s ease;
}

.sitemap__list li a:hover {
  color: #49e6ea;
}

.sitemap__list li a::before {
  content: "\f0a9";
  font-size: 1.2rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  padding-right: 10px;
  color: #ffcf43;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .contents-title .smp {
    padding-bottom: 8px;
  }
  
  .sitemap__list {
    width: 100%;
    margin: 0 auto;
  }

  .sitemap__list ul {
    display: block;
  }

  .sitemap__list li {
    margin: 0;
    font-size: 14px;
    line-height: 40px;
  }
  
  .sitemap__list li:last-child {
    border-bottom: none;
  }

  .sitemap__list li a {
    display: block;
    padding-left: 20px;
    width: 100%;
    height: 40px;
    line-height: 40px;
  }
  
  .sitemap__list li a:hover {
    background: #f7f5f7;
  }
}
/* responsive End */

/*============================================================================
  Privacy policy Pages Setting 
============================================================================*/
.privacy__policy {
  padding-bottom: 80px;
}

.privacy__policy .midashi-style {
  font-size: 1.6rem;
  font-weight: bolder;
  margin-top: 40px;
  padding: 18px 0 10px;
  border-bottom: 2px solid #01345b;
}
.privacy__policy .policy__text {
  margin: 20px 0 0;
  line-height: 1.8;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .privacy__policy {
    padding-bottom: 60px;
    font-size: 0.9rem;
  }
  
  .privacy__policy .policy__text {
    margin-top: 15px;
    line-height: 1.6;
  }
  
  .privacy__policy .midashi-style {
    font-size: 1.2rem;
    margin-top: 20px;
    padding: 16px 0;
  }
}
/* responsive End */

/*============================================================================
  Common Parts Setting
============================================================================*/
/* margin
----------------------------------------------------------------------------*/
.mgn_t10px {
  margin-top: 10px;
}

.mgn_t20px {
  margin-top: 20px;
}

.mgn_t30px {
  margin-top: 30px;
}

.mgn_t50px {
  margin-top: 50px;
}

.mgn_b30px {
  margin-bottom: 30px;
}

.mgn_b50px {
  margin-bottom: 50px;
}

.mgn_r10px {
  margin-right: 10px;
}

.mgn_l10px {
  margin-left: 10px;
}

.mgn_l20px {
  margin-left: 20px;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .mgn_t50px {
    margin-top: 30px;
  }
  
  .mgn_t30px {
    margin-top: 15px;
  }
  
  .mgn_t20px {
    margin-top: 15px;
  }
}
/* responsive End */

/* padding
----------------------------------------------------------------------------*/
.pdg_t10px {
  padding-top: 10px;
}

.pdg_t20px {
  padding-top: 20px;
}

.pdg_t30px {
  padding-top: 20px;
}

.pdg_b30px {
  padding-bottom: 30px;
}

.pdg_b50px {
  padding-bottom: 50px;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .pdg_b50px {
    padding-bottom: 30px;
  }
}
/* responsive End */

/* width
----------------------------------------------------------------------------*/
.w_480px {
  width: 480px;
}

/* responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .w_480px {
    width: 100%;
  }
}
/* responsive End */