@charset "UTF-8";
/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */
/* !wrapper
---------------------------------------------------------- */
#wrapper {}
/* !header
---------------------------------------------------------- */
#header {
  width: 100%;
  /*font-family: vdl-v7mincho, sans-serif;*/
  /*overflow: hidden;*/
  background-color: #fff;
  z-index: 1001;
  font-weight: bold;
}
.home #header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
#headerIn {
  max-width: 1250px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
}
#headerLogo {
  box-sizing: border-box;
  float: left;
  padding-top: 18px;
}
.headerBox {
  float: right;
  height: 83px;
  box-sizing: border-box;
  position: relative;
}
.home .headerNav:before {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  width: 61.8vw;
  height: 83px;
  background: url('../img/common/headerBox.png')no-repeat left center;
  background-size: 100% 100%;
  z-index: -1;
}
/*.home .headerBox:before{
	position: absolute;
	left:-10px;
	top: 0;
	content: '';
	width: 100vw;
	height: 83px;
	background: url('../img/common/headerBox.png')no-repeat left center;
    background-size: 100% 100%;
    z-index: -1;
}
*/
.outLink {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 10px 0;
}
.outLink a {
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
  color: #fff;
  background: url('../img/common/recruit_icon.png')no-repeat left 13px center;
  background-color: rgba(236, 90, 36, 0.8);
  padding: 0 34px 0 50px;
  box-sizing: border-box;
  height: 32px;
  position: relative;
  font-weight: bold;
}
.outLink a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  content: '';
  width: 5px;
  height: 5px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(45deg);
}
.outLink a.email {
  background: url('../img/common/email_icon.png')no-repeat left 13px center;
  background-color: rgba(0, 113, 183, 0.8);
}
.outLink a.english {
  display: none; /*非表示*/
  background: url('../img/common/english_icon.png')no-repeat left 13px center;
  background-color: rgba(199, 199, 199, 0.3);
  color: #333;
}
.outLink a.schedule {
  background: url('../img/common/schedule_icon.png')no-repeat left 13px center;
  background-color: rgba(64,183,0,0.80);
}
.home .outLink a.english {
  background-color: rgba(255, 255, 255, 0.7);
}
.outLink a.english:before {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}
.outLink a:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
/*** タブレット 768x ~ 959px***/
@media screen and (max-width: 1400px) {
  #headerLogo {
    width: 21.68%;
  }
}
/*** タブレット 768x ~ 959px***/
@media screen and (max-width: 1090px) {
  #headerLogo {
    width: 18.68%;
  }
}
/* !btnMenu
---------------------------------------------------------- */
.btnMenu {
  display: none;
}
/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb {
  color: #fff;
  position: absolute;
  bottom: 15px;
  right: 12%;
  z-index: 9;
  font-weight: bold;
  font-family: vdl-v7mincho, sans-serif;
}
#breadcrumb ul li a {
  color: #fff;
}
#breadcrumb ul li:first-child a {
  text-transform: uppercase;
}
#breadcrumb ul li {
  display: inline-block;
  position: relative;
  padding-right: 20px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
#breadcrumb ul li:before {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  line-height: 1;
  z-index: 2;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(45deg);
}
#breadcrumb ul li:last-of-type {
  padding-right: 0;
}
#breadcrumb ul li:last-of-type:before {
  content: none;
}
#breadcrumb ul li a:hover {
  text-decoration: underline;
}
/*** タブレット 768x ~ 959px***/
@media screen and (max-width: 959px) {
  #breadcrumb {
    right: 2%;
  }
}
/* !gNavi
---------------------------------------------------------- */
#gNavi {}
#gNavi > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#gNavi > ul > li {
  padding: 0 20px;
  box-sizing: border-box;
}
.home #gNavi > ul > li > a {
  color: #fff;
}
#gNavi > ul > li > a {
  padding: 0 5px 8px;
  box-sizing: border-box;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
}
#gNavi > ul > li:last-child, #gNavi > ul li:last-child > a {
  padding-right: 0;
}
#gNavi > ul > li > a:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
#gNavi > ul > li > a:hover:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  background: #0071b7;
  width: 100%;
  height: 2px;
  content: '';
}
#gNavi > ul > li > a.active:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  background: #0071b7;
  width: 100%;
  height: 2px;
  content: '';
}
.home #gNavi > ul > li > a:hover:before {
  background: rgba(255, 255, 255, 1.0);
}
.home #gNavi > ul > li > a.active:after {
  background: rgba(255, 255, 255, 1.0);
}
@media screen and (max-width: 959px) {
  #gNavi > ul > li {
    padding: 0 10px;
  }
  #gNavi > ul > li > a {
    font-size: 1.2rem;
  }
}
/* !mainVisual
---------------------------------------------------------- */
#mainVisual {
  height: 885px;
  position: relative;
  /*overflow: hidden;*/
}
.sdgs_block {
  position: absolute;
  top: 100px;
  left: 40px;
  z-index: 100;
}
.sdgs_block img {
  width: 50%;
}
/*-------------*/
.ladies_block {
  position: absolute;
  top: 100px;
  left: 380px;
  z-index: 100;
}
.ladies_block img {
  width: 50%;
}
/*-------*/
.mainImg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.zoomslider {
  width: 100%;
  height: 100%;
}
.zs-bullets {
  display: none;
}
.mainImg li {
  width: 100%;
  height: 885px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mainBox {
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: absolute;
  top: 285px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 3.7rem;
  letter-spacing: 0.4em;
  /*font-weight: bold;*/
  line-height: 1;
}
.mainNumber {
  letter-spacing: 0.3em;
  padding-bottom: 30px;
}
.mainNumber span, .mainText span {
  display: inline;
  animation-name: fadeInLeft;
  -webkit-animation: fadeInLeft;
  animation-duration: 1.5s !important;
  -webkit-animation-duration: 1.5s !important;
  animation-fill-mode: both !important;
  -webkit-animation-fill-mode: both !important;
}
.mainText {
  padding-top: 30px;
}
.kv_status {
  position: relative;
  grid-area: status;
}
.kv_status:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
}
.kv_status_bar {
  position: relative;
  display: block;
  margin-right: 1.92308em;
  width: 0%;
  height: 1px;
  background: #fff;
  -webkit-animation: process 7.5s ease-in-out forwards;
  animation: process 7.5s ease-in-out forwards;
}
@-webkit-keyframes process {
  0% {
    width: 0%;
    opacity: 1
  }
  100% {
    width: 100%;
    opacity: 1
  }
}
@keyframes process {
  0% {
    width: 0%;
    opacity: 1
  }
  100% {
    width: 100%;
    opacity: 1
  }
}
@keyframes fadeInUpLeft {
  from {
    opacity: 0;
    -webkit-transform: translate(-1000px, 1000px); /* Safari */
    transform: translate(-1000px, 1000px); /* 标准语法 */
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 10px); /* Safari */
    transform: translate(0, 10px); /* 标准语法 */
  }
}
.mainItem {
  position: absolute;
  bottom: 155px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 1084px;
  z-index: 5;
  overflow: hidden;
}
.mainItem .mainInner {
  padding: 0 38px;
  box-sizing: border-box;
}
.mainItem .slick-list {
  transform: skew(-10deg) !important;
}
.mainItem ul li {
  float: left;
  width: 25%;
  box-sizing: border-box;
  padding: 0 5px 0 25px;
  transform: skew(10deg);
}
.mainItem ul li a {
  color: #fff;
  display: block;
  padding: 5px 0 0;
  box-sizing: border-box;
}
.mainItem ul li a:hover {
  transition: all 0.5s;
  text-decoration: none;
  color: #00235b;
}
.mainItem ul li a:hover .mainList:before, .mainItem ul li.slick-current a .mainList:before {
  background-color: rgba(255, 255, 255, 0.8);
}
.mainItem ul li.slick-current.tips01 dl dd {
  background: url(../img/top/tips01_sp.png)no-repeat top center;
  background-size: 79px auto;
  color: #00235b;
}
.mainItem ul li.slick-current.tips02 dl dd {
  background: url(../img/top/tips02_sp.png)no-repeat top center;
  background-size: 79px auto;
  color: #00235b;
}
.mainItem ul li.slick-current.tips03 dl dd {
  background: url(../img/top/tips03_sp.png)no-repeat top center;
  background-size: 79px auto;
  color: #00235b;
}
.mainItem ul li.slick-current.tips04 dl dd {
  background: url(../img/top/tips04_sp.png)no-repeat top center;
  background-size: 79px auto;
  color: #00235b;
}
.mainItem ul li.slick-current.tips05 dl dd {
  background: url(../img/top/tips05_sp.png)no-repeat top center;
  background-size: 87px auto;
  color: #00235b;
}
.mainItem ul li.slick-current.tips06 dl dd {
  background: url(../img/top/tips06_sp.png)no-repeat top center;
  background-size: 113px auto;
  color: #00235b;
}
.mainItem ul li.slick-current.tips07 dl dd {
  background: url(../img/top/tips07_sp.png)no-repeat top center;
  background-size: 131px auto;
  color: #00235b;
}
.mainItem ul li.slick-current.tips08 dl dd {
  background: url(../img/top/tips08_sp.png)no-repeat top center;
  background-size: 67px auto;
  color: #00235b;
}
.mainList {
  transform: skewX(-10deg);
  padding: 8px 14px 14px;
  box-sizing: border-box;
  position: relative;
  margin-left: -17px;
  min-height: 130px;
}
.mainList:after {
  position: absolute;
  top: -5px;
  left: -5px;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -6;
}
.mainList:before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 35, 91, 0.8);
  width: 100%;
  height: 100%;
  content: '';
  z-index: 4;
}
.mainMess {
  transform: skewX(10deg);
  position: relative;
  z-index: 10;
}
.mainMess dl {
  width: 100%;
}
.mainMess dl dd {
  padding-top: 60px;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.33;
  flex-wrap: wrap;
}
.mainMess dl dd span {
  display: block;
  width: 100%;
  font-size: 1.1rem;
}
.mainItem ul li.tips01 dl dd {
  background: url('../img/top/tips01.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips02 dl dd {
  background: url('../img/top/tips02.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips03 dl dd {
  background: url('../img/top/tips03.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips04 dl dd {
  background: url('../img/top/tips04.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips05 dl dd {
  background: url('../img/top/tips05.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips06 dl dd {
  background: url('../img/top/tips06.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips07 dl dd {
  background: url('../img/top/tips07.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips08 dl dd {
  background: url('../img/top/tips08.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips01 a:hover dl dd {
  background: url('../img/top/tips01_sp.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips02 a:hover dl dd {
  background: url('../img/top/tips02_sp.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips03 a:hover dl dd {
  background: url('../img/top/tips03_sp.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips04 a:hover dl dd {
  background: url('../img/top/tips04_sp.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips05 a:hover dl dd {
  background: url('../img/top/tips05_sp.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips06 a:hover dl dd {
  background: url('../img/top/tips06_sp.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips07 a:hover dl dd {
  background: url('../img/top/tips07_sp.png')no-repeat top center;
  background-size: auto 52px;
}
.mainItem ul li.tips08 a:hover dl dd {
  background: url('../img/top/tips08_sp.png')no-repeat top center;
  background-size: auto 52px;
}
.mainSerch {
  position: absolute;
  width: 100%;
  /*bottom: 0;*/
  bottom: -65px;
  left: 0;
  /*background-color: rgba(0, 89, 163, 0.8);*/
  background-color: #29a6dd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
  z-index: 1000;
}
.tabArea .tabInner {
  padding: 10px 10px 11px;
}
.mainLeft {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.07em;
  padding-left: 50px;
  background: url('../img/top/serch_icon.png')no-repeat left center;
  box-sizing: border-box;
}
.mainSerch .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.mainRight {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainRight a {
  display: inline-block;
  margin-left: 14px;
}
.mainTop {
  display: none;
  /*background-color: #13447a;*/
  background-color: #237eb5;
  width: 100%;
  padding: 25px 0 30px;
}
.mainTop ul {
  margin-left: -30px;
  width: calc(100% + 30px);
}
.mainTop ul li {
  float: left;
  padding-left: 30px;
  box-sizing: border-box;
  width: 33.33%;
}
.mainTop ul li a {
  color: #fff;
  display: block;
  font-size: 1.7rem;
  letter-spacing: 0.07em;
  border-bottom: 1px solid #fff;
  padding: 45px 0 19px 140px;
  box-sizing: border-box;
  background: url('../img/common/select01.png')no-repeat left center;
}
.mainTop ul li:nth-child(2) a {
  background: url('../img/common/select02.png')no-repeat left center;
}
.mainTop ul li:nth-child(3) a {
  background: url('../img/common/select03.png')no-repeat left center;
}
.mainTop ul li:nth-child(4) a {
  background: url('../img/common/select04.png')no-repeat left center;
}
.mainTop ul li:nth-child(5) a {
  background: url('../img/common/select05.png')no-repeat left center;
}
.mainTop ul li a:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
.mainRight.active .mainSpan .mainBlock {
  display: none;
}
.mainRight .mainSpan .mainNone {
  display: none;
}
.mainRight.active .mainSpan .mainNone {
  display: block;
}
.mainRight .mainBtn p:last-child {
  display: none;
}
.mainRight.active .mainBtn p:last-child {
  display: block;
}
.mainRight.active .mainBtn p:first-child {
  display: none;
}
#mainVisual .slick-arrow {
  width: 50px;
  height: 50px;
  margin-top: -26px;
  cursor: pointer;
}
#mainVisual .slick-prev {
  background: url('../img/top/prev_left.png') center center no-repeat;
  background-size: auto;
  left: -50px;
}
#mainVisual .slick-next {
  background: url('../img/top/prev_right.png') center center no-repeat;
  background-size: auto;
  right: -50px;
}
/* #mainVisual .slick-list {
    overflow: inherit;
} */
.scrollBtn {
  position: absolute;
  right: 12.7%;
  padding-bottom: 110px;
  bottom: 0;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  padding-right: 25px;
  border-right: 1px solid #fff;
  padding-top: 7px;
  z-index: 10;
}
.scrollBtn:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
/*** タブレット 768x ~ 959px***/
@media screen and (max-width: 959px) {
  .mainMess dl dd {
    font-size: 1.5rem;
  }
}
/* !contents
---------------------------------------------------------- */
.home #contents {
  padding-bottom: 115px;
}
#contents {
  padding-bottom: 0;
}
.inner {
  max-width: 1120px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
}
.inner_m {
  max-width: 1020px;
}
/* !footer
---------------------------------------------------------- */
#footer {
  background-color: #1d2433;
  padding: 55px 0 0;
}
#footer .inner {
  position: relative;
}
.footerLogo {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.footerLogo dl {
  display: table;
  width: 100%;
}
.footerLogo dl dt, .footerLogo dl dd {
  display: table-cell;
  vertical-align: top;
  color: #fff;
  font-size: 1.6rem;
}
.footerLogo dl dt {
  width: 43.63%;
  text-align: center;
}
.footerLogo dl dd {
  padding-left: 10px;
  box-sizing: border-box;
}
.footerLogo dl dd a {
  color: #fff;
}
.footerLogo_font {
  margin-bottom: 15px;
}
.footerLogo dl dd p:nth-child(2n) {
  padding-left: 75px;
  box-sizing: border-box;
}
#footer .footerIn {
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 50px;
  box-sizing: border-box;
}
.footerIn ul {
  padding: 0 30px;
  box-sizing: border-box;
}
.footerIn ul li {
  padding: 3px 0;
  box-sizing: border-box;
}
.footerIn ul li a {
  color: #fff;
  font-size: 1.5rem;
  display: inline-block;
}
.footerIn ul li a:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
.footerIn ul li:first-child a {
  font-size: 1.6rem;
}
.footerIn45 {
  margin-top: 45px;
}
.footerIn ul .footerInText a, .footerIn .footerInText li a {
  font-size: 1.6rem;
  margin-bottom: 0;
}
#copyright {
  text-align: center;
  color: #fff;
  background-color: #15325f;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  padding: 16px 0 15px;
  font-family: adelle, serif;
}
.noteBot {
  text-align: center;
  color: #808080;
  background-color: #fff;
  font-size: 1.3rem;
  padding: 24px 0 25px;
}
/*** タブレット 768x ~ 959px***/
@media screen and (max-width: 959px) {
  .footerIn ul {
    padding: 0 10px;
  }
  .footerIn ul li a {
    font-size: 1.3rem;
  }
}
/* !top__________Page
---------------------------------------------------------- */
.newsArea {
  /*padding: 56px 0 60px;*/
  padding: 121px 0 60px;
}
.newsMust {
  position: relative;
  margin-bottom: 65px;
}
.newsMust dl {
  display: table;
  width: 100%;
  border-bottom: 2px solid #bc272d;
}
.newsMust dl dt, .newsMust dl dd {
  display: table-cell;
  vertical-align: middle;
}
.newsMust dl dt {
  width: 200px;
}
.newsMust dl dt span {
  display: inline-block;
  margin-right: 20px;
}
.newsMust dl dd {
  padding-left: 15px;
  box-sizing: border-box;
}
.newsMust dl dd a {
  display: block;
  color: #333333;
  font-size: 1.6rem;
}
.newsMust dl dt p {
  display: inline-flex;
  align-items: center;
  color: #bc272d;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.7rem;
}
.newsBtn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
.newsItem {
  position: relative;
}
.newsItem.pick{
  margin-bottom: 90px;
}
.newsItem .newsBtn {
  top: 20px;
}
.newsItem h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #0848a5;
  letter-spacing: 0.3em;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 30px;
}
.newsItem h2:before {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  left: 0;
  background: #0848a5;
  width: 43px;
  height: 1px;
  content: '';
}
.newsItem dl {
  width: 100%;
  border-bottom: 1px solid #949494;
}
.newsItem dl dt, .newsItem dl dd {
  font-size: 1.7rem;
}
.newsItem dl dt {
  padding-left: 60px;
  box-sizing: border-box;
  float: left;
  padding-top: 22px;
  padding-bottom: 22px;
}
.newsItem dl dt span {
  display: inline-block;
  box-sizing: border-box;
  color: #fff;
  background-color: #0848a5;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 4px 12px 3px;
  margin-left: 14px;
}
.newsItem dl dd {
  overflow: hidden;
  padding-left: 10px;
  box-sizing: border-box;
  padding-top: 25px;
  padding-bottom: 25px;
}
.newsItem dl dd a {
  display: block;
}
.companyArea {
  background: url('../img/top/companyBg.png')no-repeat right 80px top;
  padding-top: 65px;
  box-sizing: border-box;
  height: 752px;
  position: relative;
}
.companyArea:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 357px;
  background-image: linear-gradient(to right, #29a6dd 80%, transparent 20%);
}
.companyArea:after {
  position: absolute;
  right: 0;
  bottom: 65px;
  background: url('../img/top/company.jpg')no-repeat center center;
  width: 56.89%;
  height: 447px;
  content: '';
}
.companyList {
  position: relative;
  max-width: 40.9%;
  padding-right: 40px;
  margin-top: 65px;
  box-sizing: border-box;
}
.company01 {
  font-size: 3rem;
  /*font-weight: bold;*/
  letter-spacing: 0.4em;
  /*color: #0848a5;*/
  color: #0071b7;
}
.company01 span {
  display: block;
  letter-spacing: 0;
  /*font-size: 6.4rem;*/
  font-size: 4.7rem;
  line-height: 1;
}
.company02 {
  margin: 70px 0 25px;
  /*color: #0848a5;*/
  color: #0071b7;
  font-size: 2.6rem;
  font-weight: 500;
  /*font-weight: bold;*/
  letter-spacing: 0.05em;
}
.company03 {
  color: #666;
  font-size: 1.7rem;
  font-weight: 500;
  /*font-weight: bold;*/
}
.company04 {
  color: #fff;
  font-size: 1.7rem;
  line-height: 2.13;
  margin: 100px 0 45px;
}
.companytable tr td {
  width: auto;
  vertical-align: top;
  padding-right: 10px;
}

.company_btn2 .btnstyle01 {
  text-align: center;
  width: 33%;/*←追加*/
}

.btnstyle01 {
  text-align: center;
}


.btnstyle01 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0848a5;
  font-weight: bold;
  font-size: 1.5rem;
  width: 100%;
  max-width: 200px;
  height: 66px;
  position: relative;
}
.btnstyle02 a {
  max-width: 300px;
}

.btnstyle01 a span {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 10;
  /*border: 1px solid #4d4d4d;*/
  border: 1px solid rgba(77, 77, 77, 0.68);
}
.btnstyle01 a span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0848a5;
  border-right: 1px solid #0848a5;
  transform: rotate(45deg);
  content: '';
}
.btnstyle01 a:after {
  position: absolute;
  top: 3px;
  left: 3px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  width: 100%;
  height: 100%;
  content: '';
}
.btnstyle01 a:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
.blueText {
  color: #29a6dd !important;
}
.greenText {
  color: #00a498 !important;
}
.btnstyle01 a.greenText span:before {
  border-top: 1px solid #00a498;
  border-right: 1px solid #00a498;
}
.btnstyle01.blue a {
  color: #fff;
}
.btnstyle01.blue a span {
  background-color: #1f99dd;
}
.btnstyle01.blue a span:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: '';
}
.btnstyle01.blue a:after {
  border: 1px solid #8fccee;
}
.btnstyle01.blues a:after {
  border: 1px solid #1f99dd;
}

.company_btn2 {
  width: 100%;
  display: inline-flex;
  text-align: center;
  justify-content: center;
}

.businessArea {
  margin: 75px 0 0;
}
.businessArea .company01 {
  text-align: center;
}
.business02 {
  text-align: center;
  /*color: #0848a5;*/
  color: #4d4d4d !important;
  font-size: 3.6rem;
  letter-spacing: 0.5em;
  padding: 50px 0 45px;
  box-sizing: border-box;
  font-weight: 400;
}
.businessList {
  background: url('../img/top/bussiness_tips.png')no-repeat left bottom;
  background-size: 100% auto;
  padding-top: 20px;
  box-sizing: border-box;
}
.businessItem {
  background-color: #d9f2ff;
  /*padding-bottom: 205px;*/
  text-align: center;
}
.businessItem img {
  width: 100%;
}
.businessBox {
  background: #fff;
  /*background: url('../img/top/bussiness_info.jpg')no-repeat center center;
	background-size: cover;*/
  padding: 45px 130px;
  width: 100%;
  /*max-width: 1168px;*/
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  /* margin-top: -315px;*/
  /*margin-top: -245px;*/
  text-align: center;
  z-index: 99;
  background: url("../img/top/bg.jpg")no-repeat center center;
  background-size: cover;
}
.businessSub {
  font-size: 3.2rem;
  letter-spacing: 0.4em;
  line-height: 1.78;
  margin-bottom: 40px;
  /*color: rgb(8, 72, 165);*/
  color: #fff;
  font-weight: 500;
}
.businessMon {
  font-size: 1.5rem;
  line-height: 2.18;
  max-width: 823px;
  margin: 0 auto 50px;
  /*margin-bottom: 50px;*/
  color: #fff;
  text-align: left;
  font-weight: 500;
}
.backImages {
  background: url('../img/top/product.png')no-repeat top center;
  padding-top: 70px;
}
.productArea {
  background-color: rgba(255, 255, 255, 0.4);
  /*background: url('../img/top/product01.png')no-repeat left center;*/
  height: 506px;
}
.productArea .inner {
  max-width: 1180px;
  position: relative;
}
.productItem {
  width: 100%;
  max-width: 50%;
  color: #fff;
  padding: 0 65px 0 80px;
  box-sizing: border-box;
}
.product01 {
  font-weight: bold;
  font-size: 1.7rem;
  letter-spacing: 0.3em;
  padding: 53px 0 28px;
  color: #0071b7;
}
.product02 {
  font-weight: 500;
  font-size: 3.0rem;
  letter-spacing: 0.2em;
  line-height: 1.8;
  padding-top: 81px;
  color: #0071b7;
}
.product03 {
  font-weight: bold;
  font-size: 2.3rem;
  padding: 34px 0 18px;
}
.product04 {
  font-size: 1.7rem;
  line-height: 1.705;
  padding-bottom: 20px;
  /*padding-top: 5px;*/
  padding-top: 20px;
  color: #666;
}
.productImg {
  position: absolute;
  right: 10px;
  top: 55px;
  max-width: 53.63%;
}
.productImg:before {
  position: absolute;
  right: -10px;
  top: 10px;
  background: url('../img/top/product_img01.png')no-repeat center center;
  background-size: cover;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
}
.contSectionTop {
  margin-top: 67px;
}
.contSectionTop02 {
  margin-top: 67px;
}
.contSectionTop .productImg:before {
  background: url('../img/top/product_img02.png')no-repeat center center;
  right: 10px;
}
.contSectionTop .productArea {
  /*background: url('../img/top/product02.png')no-repeat right bottom;*/
}
.contSectionTop .productImg {
  right: unset;
  left: 0;
}
.contSectionTop .productItem {
  float: right;
}
.recruitArea {
  position: relative;
  background: url('../img/top/recruit_tips.png')no-repeat left top;
  padding-top: 15px;
  margin-top: 85px;
  padding-bottom: 45px;
  background-size: auto 100%;
}
.recruitArea:before {
  position: absolute;
  right: 0;
  bottom: 0;
  background: url('../img/top/recruit_img.jpg')no-repeat left center;
  content: '';
  width: 60%;
  height: 500px;
  background-size: cover;
}
.recruitArea:after {
  position: absolute;
  left: 0;
  bottom: -45px;
  background: #e5f7fd;
  content: '';
  width: 100%;
  height: 25vw;
  z-index: -1;
}
.recruitArea .inner {
  max-width: 1190px;
}
.recruitItem {
  padding: 105px 0 0;
}
.recruitLeft {
  width: 100%;
  max-width: 380px;
  color: #fff;
  padding: 0 30px 0 55px;
  box-sizing: border-box;
}
.recruit01 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.4em;
  color: #1f99dd;
}
.recruit01 span {
  display: block;
  letter-spacing: 0;
  font-size: 6.4rem;
  line-height: 1;
}
.recruit02 {
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  color: #4d4d4d;
  padding: 35px 0 45px;
}
.contSection .btnstyle01 a:after {
  /*border: 1px solid rgba(255, 255, 255, 0.68);*/
  border: 1px solid rgba(77, 77, 77, 0.68);
}
.contSection .btnstyle01.blue a:after {
  border: 1px solid #83c8ed;
}
.font01 {
  margin-bottom: 110px;
}
.website {
  background: url('../img/business/icon.png')no-repeat left 20px center;
}
/*** タブレット 768x ~ 959px***/
@media screen and (max-width: 959px) {
  .company02 {
    margin: 30px 0;
    font-size: 2rem;
  }
  .product04 {
    font-size: 1.4rem;
    padding-bottom: 20px;
  }
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 769px) and (min-width: 768px) {
  #gNavi ul li {
    padding: 0 10px;
  }
  #gNavi ul li a {
    font-size: 1.2rem;
  }
  .mainBox {
    font-size: 3rem;
  }
  .mainMess p {
    font-size: 1.2rem;
  }
  .mainMess dl dd {
    font-size: 1.2rem;
  }
  .company04 {
    margin: 80px 0 45px;
  }
  .product02 {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
  .recruitArea:before {
    width: 50%;
  }
}
/* !top__________Page
---------------------------------------------------------- */
/* !company__________Page
---------------------------------------------------------- */
.PageArea {
  padding: 120px 0 0;
  font-family: vdl-v7mincho, sans-serif;
  font-weight: bold;
}
.PageItem ul {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
}
.PageItem ul li {
  flex: 1;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
.PageItem ul li:before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #cccccc;
  width: 1px;
  height: 100%;
  content: '';
}
.PageItem ul li:last-of-type:before {
  content: none;
}
.PageItem ul li a {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333333;
  padding: 0 20px 45px;
  box-sizing: border-box;
  background: url('../img/common/arrow_down.png')no-repeat center bottom;
}
.PageItem ul li a:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
.companyPageItem {
  padding-top: 70px;
  position: relative;
}
.companyPageItembg {
  /*background: url('../img/company/company_bg01.png')no-repeat  center 100px;*/
  background-size: 900px auto;
  padding-bottom: 60px;
  overflow: hidden;
}
.backPic {
  position: relative;
  z-index: 10;
  display: inline-block;
  top: 6px;
}
.backPic:before {
  position: absolute;
  top: 10px;
  left: 10px;
  background: url('../img/company/company_bg03.png')no-repeat 0 0;
  width: 300px;
  height: 100%;
  content: '';
  z-index: -1;
}
.backPic img {
  width: 75%;
  height: auto;
}
.companyPageList {
  margin: 45px 0 0;
}
.companyPageLeft {
  float: left;
  width: 55%;
}
.companyname {
  margin-top: 25px;
  /*text-align: center;*/
}
.companyname img {
  width: 180px;
}

.companyPageRight {
  overflow: hidden;
  padding-left: 80px;
  box-sizing: border-box;
}
.companybackPic {
  float: right;
  overflow: unset;
  width: 45%;
  padding-left: 7.27%;
  box-sizing: border-box;
}

.blueInfo {
  color: #0848a5;
  font-size: 2rem;
  line-height: 1.85;
}
.mb25 {
  margin-bottom: 25px;
}
.blackInfo {
  font-size: 1.7rem;
  line-height: 1.55;
}
.blackInfo02 {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 38px;
}

/*.blackInfo02 span {
  font-size: 1.6rem;
  display: inline-block;
  padding-left: 5px;
  box-sizing: border-box;
}*/

.companyname p span {
  margin-left: 20px;
}

.mt35 {
  margin-top: 15px;
}
.companyDlLeft {
  float: left;
  width: 42%;
  padding-left: 10px;
  box-sizing: border-box;
}
.companyDlRight {
  float: left;
  width: 58%;
  padding-left: 10px;
  box-sizing: border-box;
}
.companyPageItem02 {
  padding-top: 80px;
}
.companyPageList dl {
  display: table;
  width: 100%;
}
.companyPageList dl dt, .companyPageList dl dd {
  display: table-cell;
  font-size: 1.7rem;
  padding: 9px 15px;
  box-sizing: border-box;
  border-bottom: 3px solid #fff;
}
.companyPageList dl dt {
  width: 132px;
  background-color: #0848a5;
  color: #fff;
  font-weight: bold;
}
.companyPageList dl dd {
  background-color: #eaeaea;
  border-left: 4px solid #fff;
  box-sizing: border-box;
}
.companyPageList dl dd p {
  line-height: 1.81;
}
.mt60 {
  margin-top: 60px;
}
.companyPageItem03 {
  margin: 90px 0 0;
  padding: 50px 0 80px;
  background: url('../img/company/company_bg02.png')no-repeat center center;
}
.companyPageItem03.yakuinfull{
  padding: 50px 0 0px;
}
.companyPageImg {
  text-align: center;
  margin-top: 120px;
}
.companyPageItem04 {
  padding: 80px 0 0;
}
.formationRight {
  float: right;
  width: 50%;
}
.formationLeft {
  float: left;
  width: 50%;
}
.formationRight img, .formationLeft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.formationOvh {
  overflow: hidden;
  background: url('../img/common/teaser_h2.jpg')no-repeat 0 0;
  background-size: cover;
  padding: 10px 6.75% 10px 16.5%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  word-wrap: break-word;
  color: #fff;
}
.formationOvh02 {
  padding: 0 16.5% 0 6.75%;
}
.formationOvh h3 {
  letter-spacing: 0.1em;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.73;
}
.formationOvh p {
  font-size: 1.7rem;
  line-height: 1.7;
  margin: 25px 0;
}
.trackImg {
  background: url('../img/company/images06.jpg')no-repeat 0 0;
  background-size: 100% 100%;
  margin: 40px 15px;
  height: 542px;
  position: relative;
}
.trackBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 100%;
}
.trackBox h2 {
  letter-spacing: 0.4em;
  font-size: 4.2rem;
  margin-bottom: 50px;
  font-weight: bold;
}
/*** タブレット 768x ~ 959px***/
@media screen and (max-width: 1200px) {
  .PageItem ul li {
    width: 40%;
    padding: 0 10px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #cccccc;
  }
  .PageItem ul li:before {
    display: none;
  }
}
/*** タブレット 768x ~ 959px***/
@media screen and (max-width: 959px) {
  .companyPageRight {
    padding-left: 10px;
  }
  .companyPageList dl dd p {
    line-height: 1.6;
    font-size: 1.2rem;
  }
  .formationOvh {
    padding: 20px;
  }
  .formationOvh h3 {
    font-size: 2.4rem;
  }
  .formationOvh p {
    font-size: 1.4rem;
    margin: 15px 0;
  }
}
.companyyakuin {
  margin: 0 auto;
  margin-bottom: 200px;
}
.companyPageItem03.yakuinfull .companyyakuin {
  margin-bottom: 0;
}
.companyyakuin p {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
.yakuin_01 {
    width: 45%;
    float: left;
    /*border-right: thick solid #e2e2e2;*/
    padding-left: 50px;
}
.yakuin_02 {
    width: 45%;
    float: right;
    border-left: thick solid #e2e2e2;
    padding-left: 50px;
}
.yakuin_full{
    max-width: 500px;
    padding-left: 110px;
    width: 100%;
    margin: 0 auto;
}

.companyyakuin dl {
  width: 100%;
  display: table;
  margin-bottom: 15px;
}
.companyyakuin dl dt {
  width: 25%;
  display: table-cell;
}
.companyyakuin dl dd {
  width: 55%;
  display: table-cell;
}
.companyyakuin dl dd span {
  margin-left: 40px;
  font-size: 1.4rem;
}

.companyyakuin dl:nth-child(4)  dd span,
.companyyakuin dl:nth-child(7)  dd span {
  margin-left: 31px;
  font-size: 1.4rem;
}
.companyyakuin .yakusyoku{
	margin-left: -0em;
	font-size:100%;
}

/* !history__________Page
---------------------------------------------------------- */
.historicalWrap {
  padding: 65px 0;
}
.historicalItem {
  padding: 70px 0 0;
}
.historicalList {
  margin-top: 55px;
}
.historicalLeft {
  float: left;
  width: 60%;
}
.historicalRight {
  overflow: hidden;
  padding-left: 5%;
  box-sizing: border-box;
  text-align: center;
}
.historicalBox {
  padding-left: 65px;
  box-sizing: border-box;
  padding-bottom: 50px;
  position: relative;
}
.historicalBox:before {
  position: absolute;
  left: 0;
  top: 20px;
  width: 3px;
  height: 100%;
  background-color: #004ab5;
  content: '';
}
.historicalBox:after {
  position: absolute;
  left: -5px;
  top: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #004ab5;
  content: '';
}
.historicalBox:last-of-type:before {
  content: none;
}
.historicalBox h4 {
  color: #004ab5;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: vdl-v7mincho, sans-serif;
}
.historicalBox h4 span {
  font-weight: bold;
  font-size: 2.3rem;
}
.historicalBox h4 em {
  font-weight: bold;
  font-size: 3rem;
}
.historicalBox dl {
  display: table;
  width: 100%;
}
.historicalBox dl dt, .historicalBox dl dd {
  display: table-cell;
  line-height: 2.1;
  font-size: 1.7rem;
}
.historicalBox dl dt {
  width: 50px;
  font-weight: bold;
}
.historicalBox dl dd {
  padding-left: 5px;
  box-sizing: border-box;
}
.historicalRight ul li {
  margin-bottom: 30px;
}
.historicalRight ul li p {
  margin-top: 8px;
  font-size: 1.6rem;
}
.historicalItemBg {
  background-color: #e9fbff;
  padding-bottom: 30px;
}
/* !business__________Page
---------------------------------------------------------- */
.tradeWrap {
  background: url('../img/business/images_bg01.png')no-repeat top center;
  background-size: cover;
  padding: 190px 0 100px;
}
.tradeItem {}
.tradeItem ul {
  margin-left: -7.7%;
}
.tradeItem ul li {
  float: left;
  width: 50%;
  padding-left: 7.7%;
  box-sizing: border-box;
  margin-bottom: 150px;
}
.tradeImg {
  position: relative;
  z-index: 5;
}
.tradeImg span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: rgba(8, 72, 165, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tradeImg span img {
  width: 80px;
}
.tradeImg img {
  width: 100%;
}
.tradeImg:before {
  position: absolute;
  top: 8px;
  left: 8px;
  background: url('../img/business/tips.png')no-repeat 0 0;
  background-size: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: '';
}
.tradeList h2 {
  margin: 40px 0;
  text-align: center;
  font-size: 2.8rem;
  color: #0848a5;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.tradeList h3 {
  font-size: 1.5rem;
  line-height: 1.93;
  margin-bottom: 30px;
}
.btnstyle01.dark a span {
  background-color: #0848a5;
}
.btnstyle01.dark a {
  color: #fff;
}
.btnstyle01.dark a span:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.btnstyle01.dark a:after {
  border: 1px solid rgba(8, 72, 165, 0.68);
}
/* !tramper__________Page
---------------------------------------------------------- */
.tramperTop {
  padding: 50px 0 0;
}
.tramperTopImg {
  text-align: center;
  margin-bottom: 35px;
}
.tramperTop h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #0848a4;
  letter-spacing: 0.12em;
  margin-bottom: 25px;
}
.tramperTop h3 {
  font-size: 1.5rem;
  line-height: 1.933;
}
.tramperTop h2, .tramperTop h3 {
  padding: 0 100px;
  box-sizing: border-box;
}
.tramperItem {
  padding-top: 120px;
}
.tramperPic {
  text-align: center;
  margin: 50px 0;
}
.tramperPic img {
  width: 100%;
}
.tramperInner p {
  font-size: 1.7rem;
  line-height: 1.933;
}
.tramperInner p + p {
  margin-top: 20px;
}
.tramperList {
  background-color: #0848a4;
  padding: 40px 0 5px;
  margin-top: 80px;
}
.tramperList ul {
  margin-left: -55px;
}
.tramperList ul li {
  float: left;
  color: #fff;
  width: 50%;
  padding-left: 55px;
  box-sizing: border-box;
  margin-bottom: 45px;
  font-size: 1.7rem;
  line-height: 1.533;
}
.tramperInfo p:first-child {
  margin-bottom: 15px;
}
.tramperInfo img {
  width: 100%;
}
.tramperList h2 {
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}
.tramperbg01 {
  background-color: #0848a4;
  box-sizing: border-box;
  padding: 35px 45px;
  color: #fff;
  margin: 55px 0 40px;
}
.tramperpg40 {
  padding: 0 100px;
  box-sizing: border-box;
}
.tramperbg01 h3 {
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 25px;
}
.tramperCont {
  border: 2px solid #0848a4;
  box-sizing: border-box;
  padding: 35px 0 40px;
  text-align: center;
}
.tramperSub {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}
.tramperTel {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.tramperTxt {
  font-weight: bold;
  font-size: 1.8rem;
}
.tramperBtn {
  font-size: 1.6rem;
  margin: 0 20px;
}
.tramperBtn a {
  pointer-events: none;
  color: #0071b7;
  font-weight: bold;
  font-size: 3.1rem;
}
.tramperLinks {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  background: url('../img/common/email_icon.png')no-repeat left 30px center;
  background-color: #0071b7;
  padding: 0 33px 0 70px;
  box-sizing: border-box;
  height: 60px;
}
.tramperLinks:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
.tramperHong {
  background: url('../img/tramper/images08.jpg')no-repeat 0 0;
  background-size: cover;
  padding: 140px 10px 130px;
  box-sizing: border-box;
  font-family: vdl-v7mincho, sans-serif;
}
.tramperHong ul {
  margin-left: -15px;
}
.tramperHong ul li {
  float: left;
  width: 25%;
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.tramperHong ul li a {
  color: #fff;
  display: block;
  padding: 5px 0 0;
  box-sizing: border-box;
  font-weight: bold;
}
.tramperHong ul li.tips01 dl dd {
  background: url('../img/top/tips01.png')no-repeat top center;
  background-size: auto 52px;
}
.tramperHong ul li.tips02 dl dd {
  background: url('../img/top/tips02.png')no-repeat top center;
  background-size: auto 52px;
}
.tramperHong ul li.tips03 dl dd {
  background: url('../img/top/tips03.png')no-repeat top center;
  background-size: auto 52px;
}
.tramperHong ul li.tips04 dl dd {
  background: url('../img/top/tips04.png')no-repeat top center;
  background-size: auto 52px;
}
.tramperHong ul li.tips05 dl dd {
  background: url('../img/top/tips05.png')no-repeat top center;
  background-size: auto 52px;
}
.tramperHong ul li.tips06 dl dd {
  background: url('../img/top/tips06.png')no-repeat top center;
  background-size: auto 52px;
}
.tramperHong ul li.tips07 dl dd {
  background: url('../img/top/tips07.png')no-repeat top center;
  background-size: auto 52px;
}
.tramperHong ul li.tips08 dl dd {
  background: url('../img/top/tips08.png')no-repeat top center;
  background-size: auto 52px;
}
.tramperHong .mainList {
  padding: 11px 14px;
}
.tramperHong .mainMess dl dd {
  padding-top: 55px;
}
.tramperHong ul li a:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
/*** タブレット 768x ~ 959px***/
@media screen and (max-width: 959px) {
  .tramperHong ul li {
    width: 33.33%;
  }
  .tramperHong {
    padding: 160px 30px 140px;
  }
}
/* !coastal__________Page
---------------------------------------------------------- */
.coastalWrap {
  padding: 120px 0 0;
}
.coastalRight {
  float: right;
  width: 50%;
}
.coastalLeft {
  overflow: hidden;
}
.coastalLeft h2 {
  color: #0848a5;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.12em;
  line-height: 1.85;
}
.coastalLeft h3 {
  font-size: 1.5rem;
  line-height: 1.933;
  margin: 20px 0;
}
.coastalText .text01 {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.7;
}
.coastalText .text02 {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.7;
  padding-left: 25px;
  box-sizing: border-box;
  margin: 15px 0;
}
.coastalText .text02 a {
  display: inline-block;
  color: #ec5a24;
  text-decoration: underline;
}
.text03 {
  text-align: center;
}
.coastalList {
  padding: 100px 0 20px;
}
.coastalList p {
  padding: 35px 0 55px;
  font-size: 1.5rem;
  line-height: 1.933;
}
.coastalList ul {
  margin-left: -65px;
}
.coastalList ul li {
  float: left;
  width: 50%;
  padding-left: 65px;
  box-sizing: border-box;
}
.coastalList ul li img {
  width: 100%;
}
/* !mishima__________Page
---------------------------------------------------------- */
.mishimaItem {
  padding: 80px 0 0;
}
.mishimaBlue {
  color: #fff;
  background-color: #004ab5;
  padding: 45px 0;
  font-size: 1.7rem;
  line-height: 2.25;
  letter-spacing: 0.1em;
}
.mishimaBlue span {
  max-width: 1020px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  font-weight: bold;
  display: block;
}
.mishimaPic {
  text-align: center;
  margin: 80px 0 0;
}
.mishimaPic img {
  width: 100%;
}
.mishimaPic01 {
  text-align: center;
  margin: 80px 0 0;
}
.mishimaPic02 {
  text-align: center;
  margin: 20px 0 0;
}
.mishimaPic01 img {
  width: 100%;
}
.mishimaItemBg {
  padding: 70px 0;
  background-color: #e1f8ff;
}
.mishimaBox {
  padding-top: 130px;
}
.mishimaLeft {
  float: left;
  width: 47%;
  line-height: 1.933;
  font-size: 1.5rem;
  padding-bottom: 110px;
  box-sizing: border-box;
}
.mishimaRight {
  overflow: hidden;
  padding-left: 30px;
  box-sizing: border-box;
}
.mishimaRight img {
  width: 100%;
}
.mishimaList {
  position: relative;
  margin-top: 45px;
}
.mishimaList .btnstyle01 {
  position: absolute;
  bottom: 20px;
  left: 120px;
  width: 200px;
}
.mishimaInfo {
  line-height: 1.933;
  font-size: 1.7rem;
  margin: 25px 0 80px;
}
.mishimabg {
  background: url('../img/mishima/bg01.jpg')no-repeat 0 0;
  padding: 20px 0;
  background-size: cover;
  color: #fff;
}
.mishimabg02 {
  background: url('../img/mishima/bg02.jpg')no-repeat 0 0;
  background-size: cover;
}
.mishimaOvh {
  float: right;
  width: 45%;
}
.mishimaOvh ul {
  margin-left: -13px;
}
.mishimaOvh ul li {
  float: left;
  width: 50%;
  padding-left: 13px;
  box-sizing: border-box;
}
.mishimaOvh ul li:first-child {
  width: 100%;
  margin-bottom: 8px;
}
.mishimaOvh img {
  width: 100%;
}
.mishimabg .mishimaLeft {
  float: none;
  width: auto;
  overflow: hidden;
  line-height: 1.933;
  font-size: 1.5rem;
  padding: 35px 50px 10px 0;
  box-sizing: border-box;
}
.mishimabg h3 {
  font-size: 2.7rem;
  letter-spacing: 0.12em;
  line-height: 1.259;
  margin-bottom: 17px;
  font-weight: bold;
}
.mishimabg p {
  font-size: 1.7rem;
  line-height: 1.7;
  word-wrap: break-word;
  word-break: normal;
}
.mishimaDl {
  padding-top: 80px;
}
.mishimaDl ul {
  margin-left: -45px;
}
.mishimaDl ul li {
  float: left;
  width: 50%;
  padding-left: 45px;
  box-sizing: border-box;
  padding-bottom: 30px;
}
.mishimaDl dl {
  display: flex;
  width: 100%;
  flex-wrap: wrap-reverse;
}
.mishimaDl dl dt, .mishimaDl dl dd {
  display: block;
}
.mishimaDl dl dt {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.533;
  margin-top: 20px;
}
.mishimaDl dl dd {
  padding-left: 5px;
  box-sizing: border-box;
}
.dltext01 {
  color: #0848a5;
  font-weight: bold;
  letter-spacing: 0.12em;
  font-size: 2rem;
  margin-bottom: 15px;
}
.mishimaDl dl dd p img {
  width: 100%;
}
.mishimaDl dl dd p {
  position: relative;
}
.mishimaDl dl dd p:before {
  position: absolute;
  top: 3px;
  left: 3px;
  border: 2px solid rgba(8, 72, 165, 0.68);
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
}
.mishimaul {
  padding: 35px 0 0;
}
.mishimaul ul {
  margin-left: -30px;
}
.mishimaul ul li {
  float: left;
  width: 33.33%;
  padding-left: 30px;
  box-sizing: border-box;
}
.mishimaulImg img {
  width: 100%;
}
.mishimaulSub {
  color: #0848a5;
  font-weight: bold;
  letter-spacing: 0.12em;
  font-size: 2rem;
  margin: 25px 0 15px;
}
.mishimaulInfo {
  line-height: 1.533;
}
.font01 {
  margin: 37px 0 110px;
}
/* !ware__________Page
---------------------------------------------------------- */
.warehouseItem {
  padding: 40px 0 0;
}
.wareSub {
  color: #0848a5;
  font-weight: bold;
  letter-spacing: 0.12em;
  font-size: 2rem;
  margin-bottom: 35px;
}
.wareLeft {
  font-size: 1.7rem;
  line-height: 1.933;
  float: left;
  width: 46%;
}
.wareOvh {
  overflow: hidden;
  padding-left: 70px;
  box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 1.66;
}
.ship01 {
  width: 30%;
}
.ship02 {
  width: 40%;
}
.ship03 {
  width: 30%;
}
.wareOvh table {
  margin-top: 10px;
  width: 100%;
  max-width: 500px;
  text-align: center;
}
.wareOvh table tr:nth-child(odd) {
  background-color: #e1e1e1;
}
.wareOvh table tr td {
  border-right: 2px solid #fff;
  padding: 7px 0;
  font-size: 1.6rem;
  box-sizing: border-box;
}
.wareMess {
  font-size: 1.7rem;
  line-height: 1.933;
}
.wareMt65 {
  margin-top: 55px;
}
.wareMr {
  padding: 70px 20px 40px;
  box-sizing: border-box;
  text-align: center;
}
/* !safety__________Page
---------------------------------------------------------- */
.mishimasky {
  background-color: #209ad6;
}
.mishimaGreen {
  background-color: #008944;
}
.safetyList {
  overflow: hidden;
}
.safetyImg {
  float: right;
}
.safetyImg01 {
  /*padding-right: 70px;*/
  box-sizing: border-box;
}
.safetyList {
  margin-top: 110px;
  font-size: 1.5rem;
  line-height: 1.933;
}
.safetyList .safetySub {
  color: #008944;
  font-size: 2rem;
  letter-spacing: 0.12em;
  font-weight: bold;
  margin-bottom: 20px;
}
.safetyList .safetySub02 {
  color: #209ad6;
  font-size: 2rem;
  letter-spacing: 0.12em;
  font-weight: bold;
  margin-bottom: 20px;
}
.safetyText {
  line-height: 1.933;
}
.safetyText p {
  margin-top: 40px;
}
.safetyTop {
  margin-top: 100px;
  background-color: #e1f9ea;
  padding: 80px 0 50px !important;
}
#safety .mishimaItem {
  padding: 160px 0 0;
}
/* !directory__________Page
---------------------------------------------------------- */
.directoryItem {
  padding: 75px 0;
}
.directoryList h3 {
  color: #0848a5;
  font-size: 2rem;
  letter-spacing: 0.12em;
  font-weight: bold;
  margin-bottom: 20px;
}
.directoryList ul {
  margin-left: -60px;
}
.directoryList ul li {
  float: left;
  width: 50%;
  padding-left: 60px;
  box-sizing: border-box;
}
.directoryBox {
  position: relative;
  background-color: #c7c7c7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.directoryBox02 {
  background-color: #e8f5fc;
  display: flex;
  justify-content: center;
}
.directoryList {
  margin-top: 80px;
}
.directoryList01 {
  margin-top: 20px;
}
.width100 img {
  width: 90%;
}
.iframeBox {
  width: 100%;
  height: 270px;
}
.iframeBox iframe {
  width: 100%;
  height: 100%;
}
.directoryTxt {
  line-height: 1.933;
  margin-top: 17px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  padding-left: 100px;
  box-sizing: border-box;
}
.directoryTxt02 {
  padding-left: 0;
}
.directoryTxt span {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.directoryTel {
  font-size: 1.6rem;
  line-height: 1.933;
  font-weight: bold;
}
.directoryTel a {
  pointer-events: none;
  color: #333;
}
.height100 {
  height: 100%;
  object-fit: cover;
}
.directoryItem .mishimaDl ul {
  margin-left: -35px;
}
.directoryItem .mishimaDl ul li {
  padding-left: 35px;
  padding-bottom: 80px;
}
.directoryItem .mishimaDl dl dt {
  width: 272px;
}
.direTitle {
  color: #0848a5;
  font-weight: bold;
  letter-spacing: 0.12em;
  font-size: 2rem;
  line-height: 1.5;
}
.direSub {
  margin: 3px 0 0; /*3px 0 10px;*/
  font-weight: 500;
}
.direMess {
  font-size: 1.6rem;
  color: #636363;
  line-height: 1.5;
}
.direWeb {
  color: #1f99dd;
  line-height: 1.5;
  font-size: 1.6rem;
  margin-top: 14px;
  padding-left: 22px;
  box-sizing: border-box;
  background: url('../img/directory/icon.png')no-repeat left top 5px;
}
.direWeb a {
  color: #1f99dd;
  display: inline-block;
}
.direWeb a:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: underline;
}
.directoryItemBg {
  background-color: #f0fbff;
}
.regularBox {
  margin-top: 65px;
}
.regularBox ul {
  margin-left: -35px;
  display: flex;
  flex-wrap: wrap;
}
.regularBox ul li {
  /*float: left;*/
  width: 50%;
  padding-left: 35px;
  box-sizing: border-box;
  margin-bottom: 45px;
}
.regularBox ul li a {
  pointer-events: none;
  color: #333;
}
.direPhone {
  line-height: 1.8125;
  font-weight: bold;
}
.direadd {
  font-weight: 500;
  line-height: 1.933;
}
/* !customs__________Page
---------------------------------------------------------- */
.customsTop {
  margin: 100px 0 55px;
}
.customsTop ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.customsTop ul li {
  width: 50%;
  text-align: center;
}
.customsTop ul li p img {
  width: 100%;
}
.customsText {
  background-color: #004ab5;
  text-align: left;
  display: flex;
  align-items: center;
}
.customsText p {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.933;
  max-width: 550px;
  /*padding-left: 60px;*/
  margin: 0 auto;
  box-sizing: border-box;
}
.customsPic {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.933;
  margin-top: 45px;
}
.customsPic p {
  margin: 0 10px;
}
.customsItem {
  padding: 135px 0 0;
}
.customsList {
  margin-bottom: 40px;
}
.customsMess {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.933;
}
.customsSub {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.933;
  color: #0848a5;
}
.customsImg {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.7;
}
.mb20 {
  margin-bottom: 20px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb15 {
  margin-bottom: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt30 {
  padding-top: 30px;
}
.mt50 {
  margin-top: 50px;
}
.mt70 {
  margin-top: 70px;
}
.customsMax {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.customsItemBg {
  background-color: #e1f8ff;
  padding: 40px 0 30px;
}
.customsUl {
  margin-left: -25px;
  padding: 0 0 40px;
}
.customsUl li {
  float: left;
  width: 50%;
  padding-left: 25px;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.customsUl li p {
  background: url('../img/customs/images09.png')no-repeat 0 0;
  padding: 14px 10px 15px 90px;
  box-sizing: border-box;
  background-size: 100% 100%;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.533;
  position: relative;
  height: 58px;
  display: flex;
  align-items: center;
}
.customsUl li p span {
  position: absolute;
  top: 50%;
  left: 30px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: #2e318d;
  transform: translateY(-50%);
}
.customsUl li p.lastNone {
  background: 0;
  padding: 14px 10px 15px 30px;
}
#customs #links02 .customsSub, #customs #links03 .customsSub {
  color: #2e318d;
}
.customsBtn {
  margin: 20px 0 90px;
}
.customsBtn a {
  display: inline-block;
}
.customsBtn a:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
.customsOnly {
  margin-top: 10px;
  padding-bottom: 50px;
}
.customsOnly li {
  padding-left: 30px;
  box-sizing: border-box;
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 3px;
  line-height: 2.33;
}
.customsOnly li:before {
  position: absolute;
  top: 11px;
  left: 0;
  background-color: #2e318d;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 100%;
}
/* !container__________Page
---------------------------------------------------------- */
.containerTop {
  padding: 100px 0 0;
}
.containerTopPic img {
  width: 100%;
}
.containerBlue {
  background-color: #004ab5;
  color: #fff;
  line-height: 1.933;
  font-size: 1.7rem;
  padding: 38px 0 60px;
  font-weight: 500;
}
#roro .containerBlue {
  background-color: #e1f8ff;
  color: #333;
}
.contaTxt {
  font-size: 2rem;
  letter-spacing: 0.12em;
  margin-bottom: 38px;
  font-weight: bold;
}
.containerMax {
  max-width: 1015px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
}
.containerMax .btnstyle01 {
  padding: 80px 0 0;
}
.containerMax .btnstyle01 a:after {
  /* border: 1px solid rgba(255, 255, 255, 0.68); */
  border: 1px solid rgba(77, 77, 77, 0.68);
}
.containerItem {
  padding: 100px 0 0;
}
.contaList {
  margin-top: 35px;
}
.contaLeft {
  float: left;
  width: 45%;
}
.contaLeft .btnstyle01 {
  padding: 80px 0;
}
.contaLeft .btnstyle01 a:after {
  /* border: 1px solid rgba(255, 255, 255, 0.68); */
  border: 1px solid rgba(77, 77, 77, 0.68);
}
.contaRight {
  overflow: hidden;
  padding-left: 90px;
  box-sizing: border-box;
}
.contaStyle01 {
  line-height: 1.933;
  font-size: 1.7rem;
  font-weight: 500;
}
.contaStyle02 {
  line-height: 1.705;
  font-size: 1.7rem;
  font-weight: bold;
}
.contaMar01 {
  margin: 10px 0 15px;
}
.contaMar02 {
  padding: 40px 0 20px;
}
.contaLeft table {
  max-width: 385px;
  width: 200%;
  margin-bottom: 10px;
}
.contaLeft table tr th, .contaLeft table tr td {
  text-align: center;
  line-height: 1.933;
  font-size: 1.5rem;
  font-weight: 500;
  border: 1px solid #d6d6d6;
  box-sizing: border-box;
  padding: 4px 0;
}
.contaLeft table tr th {
  background-color: #e2e2e2;
}
.contaMar02 {
  margin-top: 15px;
}
.mt45 {
  margin-top: 45px;
}
.containerWhite {
  line-height: 1.933;
  font-size: 1.7rem;
  padding: 80px 0px;
  font-weight: 500;
}
.contaSub {
  font-size: 2rem;
  letter-spacing: 0.12em;
  margin-bottom: 25px;
  color: #0848a5;
  font-weight: bold;
}
.cor0 {
  color: #000;
  margin-bottom: 15px;
}
.containerInfo {
  letter-spacing: 0.12em;
  font-size: 2rem;
  font-weight: bold;
  color: #0848a5;
  margin-bottom: 20px;
}
.containertrant {
  line-height: 1.933;
  font-size: 1.5rem;
  padding: 35px 0 180px;
  font-weight: 500;
}
.playItem {
  background: url('../img/container/bg01.jpg')repeat-y left 0;
  background-size: 100% auto;
  padding: 45px 0;
}
.playInner {
  max-width: 915px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
}
.playInner h2 {
  color: #fff;
  font-size: 2.7rem;
  letter-spacing: 0.12em;
  margin-left: -50px;
  font-weight: bold;
}
.playList {
  margin-top: 35px;
}
.playInner h3 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.playList table {
  width: 100%;
}
.playList table tr {
  border-bottom: 2px solid #39b7ff;
  box-sizing: border-box;
}
.playList table tr th, .playList table tr td {
  line-height: 1.933;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  background-color: #fff;
  border-right: 2px solid #39b7ff;
  box-sizing: border-box;
  padding: 3px 0;
  width: 14.2857%;
}
.playList table tr th {
  background-color: #e2e2e2;
}
.playList table tr td span {
  color: #ff0000;
  font-weight: 500;
}
.playNote {
  line-height: 1.933;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: right;
  margin-top: 35px;
}
/* !top__________Page
---------------------------------------------------------- */
#roro .containerBlue {
  line-height: 2.11;
  font-size: 1.7rem;
  padding: 45px 0;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.roroBg {
  /*background: url('../img/roro/bg01.jpg')no-repeat 0 0;
	background-size: cover;*/
  background: #e1f8ff;
  padding: 27px 0;
}
.roroBg02 {
  background: #fff;
  /*background: url('../img/roro/bg02.jpg')no-repeat 0 0;
	background-size: cover;*/
  padding: 27px 0;
}
.mb50 {
  margin-bottom: 50px;
}
.roroStyle01 {
  color: #004ab5;
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.roroStyle02 {
  color: #333;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.70;
}
#roro .contaRight {
  padding-left: 40px;
}
#roro .contaLeft {
  width: 48%;
}
.contaLeftOvh {
  float: right;
  width: 48%;
}
.contaRightOvh {
  overflow: hidden;
  padding-right: 40px;
  box-sizing: border-box;
}
.roroListSt {
  display: flex;
  align-items: flex-end;
  margin-top: 25px;
  background: url('../img/roro/bg03.png')no-repeat right -70px top 35px;
}
.roroBox {
  width: 50%;
}
.roroSreh {
  border: 3px solid #e8e8e8;
  box-sizing: border-box;
  padding: 30px 40px 45px;
  border-radius: 10px;
}
.roroDl {}
.roroDl dt {
  font-weight: bold;
  line-height: 1.933;
  font-size: 1.5rem;
}
.roroDl dd {}
.roroDl dd ul {
  margin-left: -15px;
}
.roroDl dd ul li {
  float: left;
  width: 50%;
  padding-left: 15px;
  box-sizing: border-box;
  margin-top: 15px;
}
.roroDl dd ul li p {
  border: 2px solid #bfbfbf;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1.933;
  font-size: 1.5rem;
  box-sizing: border-box;
}
.roroDl dd ul li label {
  box-sizing: border-box;
  padding: 17px 10px 17px 15px;
  display: block;
}
.roroDl dd ul li label input[type=radio] {
  width: 22px;
  height: 22px;
  background: url('../img/common/bg_checkbox.png') center center no-repeat;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.roroDl dd ul li label input[type=radio]:checked {
  background: url('../img/common/bg_checkbox_checked.png') center center no-repeat;
  background-size: 100%;
}
.roroDl01 {
  position: relative;
  padding-bottom: 60px;
}
.roroDl01:before {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: auto;
  background: url('../img/common/arrow_down.png')no-repeat 0 0;
  width: 30px;
  height: 18px;
  content: '';
}
.roroArress {
  background-color: #e8e8e8;
  border-radius: 5px;
  padding: 20px 25px;
  box-sizing: border-box;
  margin-top: 20px;
}
.roroArress p.bor {
  border-bottom: 2px solid #d2d2d2;
}
.roroArress p {
  display: flex;
  align-items: center;
}
.roroArress p span {
  font-weight: bold;
  line-height: 2.47;
  font-size: 1.9rem;
  margin-right: 20px;
}
.rorotxt {
  font-weight: bold;
  line-height: 2.47;
  font-size: 1.9rem;
}
.roroBtn01 {
  padding-left: 40px;
  box-sizing: border-box;
}
.roroBtn01 a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  width: 100%;
  max-width: 447px;
  height: 80px;
  background-color: #004ab5;
  position: relative;
  border-radius: 5px;
}
.roroBtn01 a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  content: '';
}
.roroBtn01 a:hover {
  opacity: 0.8;
  transition: all 0.5s;
  text-decoration: none;
}
.contactText {
  font-weight: 500;
  line-height: 1.933;
  font-size: 1.7rem;
  margin: 45px 0;
}
.roroTabtn {
  background-color: #004ab5;
  color: #fff;
  font-weight: 500;
  line-height: 1.38;
  font-size: 2.2rem;
  padding: 25px 50px;
  box-sizing: border-box;
  position: relative;
}
.roroTabtn:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  content: '';
}
.tabBtn.active .roroTabtn:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  content: '';
}
.tabBox {
  display: none;
}
.contactArea {
  max-width: 800px;
  padding: 0 10px 120px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
}
.contactArea table, .contactArea table tbody, .contactArea table tr, .contactArea table th, .contactArea table td {
  width: 100% !important;
  display: block;
  box-sizing: border-box;
}
.contactArea .contactForm {
  padding: 40px 0 0;
}
.contactArea table {
  border: 1px solid #575757;
  border-top: 0;
}
.contactArea table th, .contactArea table td {
  padding: 17px 20px;
}
.contactArea table td {
  position: relative;
}
.contactArea table th {
  box-sizing: border-box;
  font-size: 1.7rem;
  font-weight: bold;
  vertical-align: top;
  background-color: #f1f1f1;
  position: relative;
  border-top: 1px solid #575757;
  border-bottom: 1px solid #575757;
}
.contactArea table th .arry {
  padding: 0;
  border-radius: 7px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 33px;
  color: #fff;
  background-color: #888888;
  text-align: center;
  font-size: 1.3rem;
  line-height: 33px;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.contactArea table th .must {
  padding: 0;
  border-radius: 7px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 33px;
  color: #fff;
  background-color: #ec2028;
  text-align: center;
  font-size: 1.3rem;
  line-height: 33px;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.contactArea input[type=text], .contactArea input[type=tel], .contactArea input[type=email] {
  border: 1px solid #575757;
  box-sizing: border-box;
  background: #fff;
  width: 100%;
  height: 50px;
  font-size: 1.4rem;
  padding: 0 15px;
}
.contactArea span.select {
  border: 1px solid #575757;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  color: #575757;
  font-weight: 500;
  font-size: 1.4rem;
  max-width: 390px;
  background-color: #fff;
  display: inline-block;
  position: relative;
}
/*
.contactArea span.select:before{
	position: absolute;
	right: 25px;
	top: 18px;
	background: url('../img/common/select_icon.png')no-repeat 0 0;
	width: 14px;
	height: 12px;
	content: '';
}
*/
.contactArea select {
  border: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  width: 100%;
  background: url('../img/common/select_icon.png')no-repeat;
  background-position: right 25px center;
}
.ounerRoro {
  position: absolute;
  right: 15px;
  top: 15px;
}
.ounerRoro a {
  display: inline-flex;
  width: 250px;
  height: 48px;
  background-color: #0071b7;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
}
.contactArea textarea {
  border: 1px solid #575757;
  box-sizing: border-box;
  background: #fff;
  width: 100%;
  height: 415px;
  font-size: 1.5rem;
  padding: 7px 15px;
  resize: none;
  overflow: hidden;
}
.note {
  margin-top: 10px;
  color: #575757;
  font-weight: 500;
  font-size: 1.4rem;
}
.note02 {
  margin: 10px 0;
  color: #000;
  font-weight: 500;
  font-size: 1.4rem;
}
.tablrUl {
  display: table;
  width: 100%;
}
.tablrUl dt, .tablrUl dd {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}
.tablrUl dt h3 {
  font-weight: bold;
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 15px;
}
.tablrUl_p {
  padding-left: 50px;
  box-sizing: border-box;
}
.tablrUl_p input {
  width: 250px !important;
  margin-left: 17px;
}
.mab15 {
  margin-bottom: 15px;
}
.style15 {
  margin-top: 15px !important;
}
.style5 {
  margin-top: 5px !important;
}
.textBox {
  overflow-y: scroll;
  height: 140px;
  padding: 20px;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  border: 1px solid #575757;
}
.textBox p + p {
  margin-top: 20px;
}
.contactArea .agreeBtn {
  margin-top: 10px;
  background-color: #e6e6e6;
  padding: 10px;
  box-sizing: border-box;
  color: #000;
  font-weight: 500;
  font-size: 1.4rem;
}
.contactArea .agreeBtn label {
  display: inline-block;
}
.contactArea .agreeBtn label input[type=checkbox] {
  width: 29px;
  height: 29px;
  background: url(../img/common/bg_checkbox02.png) center center no-repeat;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.contactArea .agreeBtn label input[type=checkbox]:checked {
  background: url(../img/common/bg_checkbox_checked02.png) center center no-repeat;
  background-size: 100%;
}
.contactArea .submitBtn {
  text-align: center;
  margin-top: 40px;
}
.contactArea .submitBtn span {
  position: relative;
  display: inline-block;
  background: #1f99dd;
}
.contactArea .submitBtn span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  content: '';
}
.contactArea .submitBtn span:after {
  position: absolute;
  top: 3px;
  left: 3px;
  border: 1px solid #1f99dd;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -2;
}
.contactArea .submitBtn input[type=submit] {
  box-sizing: border-box;
  width: 275px;
  height: 65px;
  border: 1px solid #1f99dd;
  display: inline-block;
  margin: 0 5px;
  font-size: 1.5rem;
  color: #fff;
  background: #1f99dd;
  cursor: pointer;
  transition: all 0.5s;
  /*text-align: left;*/
  font-weight: bold;
  /*padding-left: 50px;*/
  text-align: center;
}
.prevBox {
  padding: 90px 0 0;
  margin: 0 -50px;
  width: calc(100% + 100px);
}
.prevBox h2 {
  text-align: center;
  font-size: 1.7rem;
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}
.prevBox p {
  font-size: 1.5rem;
  padding: 0 20px;
  line-height: 1.8;
  box-sizing: border-box;
}
.roroTel {
  border: 2px solid #2e318d;
  box-sizing: border-box;
  padding: 15px 50px 35px;
  margin-top: 125px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.12em;
  font-size: 2rem;
}
.roroTel h2 {
  display: inline-block;
  border-bottom: 1px solid #2e318d;
  color: #2e318d;
  margin-bottom: 35px;
}
.roroTelItem {
  margin-left: -36px;
}
.roroTelItem li {
  float: left;
  width: 50%;
  padding-left: 36px;
  box-sizing: border-box;
}
.roroTelItem span {
  background-color: #2e318d;
  color: #fff;
  font-weight: bold;
  display: inline-flex;
  padding: 2px 2px;
  box-sizing: border-box;
  width: 90px;
  height: 35px;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
}
.roroTelItem a {
  color: #333;
  font-weight: bold;
  display: inline-block;
  font-size: 2.6rem;
}
.containerItemBg04 {
  position: relative;
  margin-top: 50px;
  padding-bottom: 140px;
}
.containerItemBg04:before {
  position: absolute;
  right: 0;
  top: 20px;
  background: url('../img/roro/bg04.png')no-repeat 0 0;
  width: 683px;
  height: 642px;
  z-index: -1;
  content: '';
}
.containerItemBg04:after {
  position: absolute;
  left: 0;
  bottom: -230px;
  background: url('../img/roro/bg05.png')no-repeat 0 0;
  width: 672px;
  height: 642px;
  content: '';
  z-index: -1;
}
.shipRight {
  float: right;
  width: 49.8%;
}
.shipOvh {
  overflow: hidden;
  padding-right: 60px;
  box-sizing: border-box;
}
.shipItem {
  padding: 100px 0 0;
}
.shipItem h3 {
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #2e318d;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.shipItem p {
  font-size: 1.7rem;
  line-height: 1.933;
  font-weight: 500;
}
.shipPdf {
  background-color: #e8e8e8;
  text-align: center;
  padding: 8px 20px;
  box-sizing: border-box;
  border-radius: 5px;
}
.shipPdf a {
  display: block;
  background: url('../img/roro/pdf.png')no-repeat left center;
  padding: 16px 20px;
  box-sizing: border-box;
  font-weight: bold;
  border-radius: 5px;
}
.shipul ul {
  margin-left: -20px;
  margin-top: 20px;
}
.shipul ul li {
  float: left;
  width: 33.33%;
  padding-left: 20px;
  box-sizing: border-box;
  text-align: center;
}
.shipul ul li span {
  display: block;
  font-weight: normal;
  margin-top: 12px;
  font-size: 1.7rem;
  line-height: 1.933;
}

.shipul .btnstyle01 {
  padding: 80px 0 0;
}

.shipul .btnstyle01 a {
  max-width: 600px;
}


.shipul .btnstyle01 a:after {
  /* border: 1px solid rgba(255, 255, 255, 0.68); */
  border: 1px solid rgba(77, 77, 77, 0.68);
}

.recordWrap {
  background-color: #e1f8ff;
  padding-bottom: 50px;
}
.recordItem {
  margin-top: 55px;
}
.recordBtn {
  background-color: #fff;
  padding: 20px 60px 20px 30px;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  position: relative;
}
.recordBtn em {
  font-weight: bold;
  font-size: 3.4rem;
  color: #2e318d;
  display: inline-block;
  margin-right: 13px;
  vertical-align: middle;
  line-height: 1.2;
}
.recordBtn span {
  font-weight: bold;
  font-size: 1.8rem;
  color: #004ab5;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.recordBtn:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #2e318d;
  border-right: 2px solid #2e318d;
  transform: rotate(135deg);
  content: '';
}
.recordBtn.active:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #2e318d;
  border-right: 2px solid #2e318d;
  transform: rotate(-45deg);
  content: '';
}
.recorArea {
  padding-bottom: 30px;
}
.recordList {
  padding: 50px 0 30px;
}
.recordLeft {
  float: left;
  width: 48.8%;
}
.recordOvh {
  overflow: hidden;
  box-sizing: border-box;
  padding: 50px 10px 10px 50px;
  font-size: 1.7rem;
  line-height: 1.933;
  font-weight: 500;
}
.tabBtn {
  cursor: pointer;
}
/* !contact__________Page
---------------------------------------------------------- */
.contactItem {
  padding: 60px 0 0;
}
.contactWebs {
  padding: 125px 0 0;
}
.appleBox ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.appleBox ul li {
  padding: 0 80px;
  box-sizing: border-box;
}
.appleBox ul li h3 {
  font-weight: bold;
  font-size: 2.3rem;
  color: #000;
  margin-bottom: 7px;
}
.appleBox ul li h4 {
  font-weight: bold;
  font-size: 3.1rem;
  color: #0071b7;
}
.appleBox ul li h4 a {
  font-weight: bold;
  font-size: 3.1rem;
  color: #0071b7;
}
.appleBox ul li p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8125;
  color: #000;
  margin-bottom: 20px;
}
.stepBox {
  margin: 55px 0 65px;
}
.stepBox ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stepBox ul li:nth-child(2) {
  margin: 0 20px;
}
.stepBox ul li {
  background-color: #e6e6e6;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8125;
  padding: 10px 0;
  font-weight: 500;
  flex: 1;
}
.stepBox ul li.active {
  background-color: #3b3b3b;
  color: #fff;
}
.width23 {
  width: 33.33% !important;
}
.blank_block {
  height: 295.3px;
}
.blank_block2 {
  height: 163.64px;
}
/*CONTACT FORM*/
.form_container {
  margin: 30px auto;
  max-width: 850px;
  padding: 20px 0;
}
.form_container .a_block {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid gray;
  border-right: 1px solid gray;
}
.form_container .a_block {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid gray;
  border-right: 1px solid gray;
}
.form_container .a_block > div {
  border-left: 1px solid gray;
  padding: 10px;
  width: 75%;
}
.form_container .a_block .label_block {
  background-color: rgba(0, 89, 163, 0.1);
  width: 25%;
}
.form_container span.msg {
  color: red;
}
.form_container .btn_send {
  display: flex;
  justify-content: center;
}
.form_container .btn_send input {
  box-sizing: border-box;
  width: 275px;
  height: 65px;
  border: 1px solid #1f99dd;
  display: inline-block;
  margin: 0 15px;
  font-size: 1.5rem;
  color: #fff;
  background: #1f99dd;
  cursor: pointer;
  transition: all 0.5s;
  text-align: left;
  font-weight: bold;
  text-align: center;
}
.contactArea .center {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
}
.directoryItem .mishimaDl ul {
  display: flex;
  flex-wrap: wrap;
}
.directoryItem .mishimaDl dl dt {
  width: 100%;
  max-width: 430px;
}
/**/
.posimg {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  width: 100%;
}
.posimg img {
  width: 100%;
}
.move01 {
  position: absolute;
  bottom: 38%;
  width: 6%;
  right: 0;
  animation: mymove01 30s linear infinite;
}
@keyframes mymove01 {
  0% {
    right: 0
  }
  49.99% {
    right: 65%;
    transform: rotateY(0)
  }
  50% {
    right: 65%;
    transform: rotateY(180deg)
  }
  100% {
    right: 0;
    transform: rotateY(180deg)
  }
}
/*.move02{*/
/*position: absolute;*/
/*bottom: 38%;*/
/*width: 6%;*/
/*right: 46%;*/
/*animation: mymove02 15s linear infinite;*/
/*}*/
/*@keyframes mymove02*/
/*{*/
/*from {right: 46%;}*/
/*to {right: 100%;}*/
/*}*/
.move03 {
  position: absolute;
  bottom: 16%;
  width: 14%;
  right: 24%;
  animation: mymove03 35s linear infinite;
}
@keyframes mymove03 {
  0% {
    right: 30%
  }
  24.99% {
    right: 0;
    transform: rotateY(0)
  }
  25% {
    right: 0;
    transform: rotateY(180deg)
  }
  76.99% {
    right: 56%;
    transform: rotateY(180deg)
  }
  77% {
    right: 56%;
    transform: rotateY(0)
  }
  100% {
    right: 30%;
  }
}
/**/
.businessItem .tradeItem {
  margin: 0 50px;
}
.businessItem .tradeItem ul {
  margin: 0 auto;
  /* margin-left: -7.7%; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.businessItem .tradeItem ul li {
  float: none;
  width: 23%;
  padding-left: 0;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.businessItem .tradeItem ul li .tradeList a {
  display: block;
  width: 100%;
}
.tradeImg {
  position: relative;
  z-index: 5;
  padding-bottom: 1px;
}
/*
.businessItem .tradeImg span{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 120px;
	height: 120px;
	background-color:rgba(8, 72, 165, 0.8);
}
*/
.businessItem .tradeImg span {
  position: absolute;
  top: 0;
  left: 5%;
  text-align: center;
  width: 20%;
  height: 30%;
  background-color: rgba(41, 166, 221, 0.8);
  border-radius: 0;
}
.businessItem .tradeImg span img {
  width: 80%;
}
.tradeImg img {
  width: 100%;
}
.tradeImg:before {
  position: absolute;
  top: 8px;
  left: 8px;
  background: url('../img/business/tips02.png')no-repeat 0 0;
  background-size: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: '';
}
.businessItem .tradeItem .tradeList h2 {
  margin: 40px 0;
  text-align: center;
  font-size: 2.2rem;
  color: #0848a5;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.businessItem .tradeItem .tradeList h2 span {
  display: block;
  padding-top: 5px;
  font-size: 1.3rem;
  color: #333;
}
.tradeList h3 {
  font-size: 1.5rem;
  line-height: 1.93;
  margin-bottom: 30px;
}
.btnstyle01.dark a span {
  background-color: #0848a5;
}
.btnstyle01.dark a {
  color: #fff;
}
.btnstyle01.dark a span:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.btnstyle01.dark a:after {
  border: 1px solid rgba(8, 72, 165, 0.68);
}
#gNavi > ul {
  position: relative;
}
#gNavi > ul li .inner_menu {
  display: none;
  position: absolute;
  left: 0;
  top: 31px;
  /*width: 100%;*/
  background: rgba(26, 26, 26, 0.75);
  z-index: 10;
}
#gNavi > ul li .inner_menu02 {
  position: absolute;
  left: 275px;
}
#gNavi > ul li .inner_menu li {
  /*display: inline-block;*/
  padding: 15px 15px 15px 30px;
}
#gNavi > ul li .inner_menu li a {
  color: #fff;
  font-size: 1.4rem;
}
.toyooka_box {
  background-color: #d9f2ff;
  text-align: center;
  padding-bottom: 80px;
}
.toyooka_box img {
  width: 907px;
  text-align: center;
}
.pc_hide {
  display: none;
}