* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  word-break: normal;
}
p {
  font-size: 14px;
  letter-spacing: 0;
}
body {
  margin: 0;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  min-width: 320px;
  color: #3E3B39;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  overflow-x: hidden;
}
ul,
ol {
  list-style-type: none;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}
a {
  text-decoration: none;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  color: #3E3B39;
}
a:hover {
  opacity: 0.8;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.inner_wrap{
  display: block;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 20px;
}
header,
main,
footer {
  width: 100%;
}
/*---header---*/
header{
  padding: 20px 0;
}
header .inner_wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .headerIcon{
  margin-block-start: 0.1em;
}
header .headerIcon a {
  color: #0068b5;
  font-size: large;
  font-weight: bold;
}
header .headerIcon img {
  width: 120px;
  height: auto;
}
/*headernav*/
header .headerNav ul{
  display: flex;
  align-items: center;
}
header .headerNav ul li {
  margin-right: 25px;
}
header .headerNav ul li:last-child {
  margin-right: 0;
}
header .headerNav ul li a:hover {
  color: #236BAC;
  opacity: 1.0;
}
header .headerNav a.outlink:after{
  display: inline-block;
  content: "";
  margin-left: 5px;
  width: 20px;
  height: 12px;
  background-image: url('../images/common/ico_outlink.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 17px 12px;
}

/*irNav*/
.irNav {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.irNav ul{
  display: flex;
  gap: 10px;
  position: absolute;
  top: -34px;
}
.irNav ul li a{
  display: flex;
  align-items: center;
  padding: 10px 30px 10px 50px;
  width: 100%;
  height: 100%;
  color: #FFF;
  font-weight: bold;
  line-height: 1.1em;
}
.irNav ul li.stock{
  background: url("../images/common/ico_link.png") no-repeat #236BAC right top /26px 26px;
}
.irNav ul li.stock a{
  background: url("../images/common/ico_stock.png") no-repeat 10px center /34px 34px;
}
.irNav ul li.profile{
  background: url("../images/common/ico_link.png") no-repeat #0098DB right top /26px 26px;
}
.irNav ul li.profile a{
  background: url("../images/common/ico_profile.png") no-repeat 10px center /34px 34px;
}

/*---main---*/
main {
  flex: 1;
  position: relative;
  z-index: 0;
  box-shadow: inset 0 -12px 10px -10px rgba(0, 0, 0, 0.3);
}
/*---footer---*/
footer{
  background-color: #666;
}
footer nav.inner_wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
footer nav ul{
  width: calc(100% - 230px);
  display: flex;
  flex-wrap: wrap;
}
footer nav ul li{
  margin-right: 20px;
}
footer nav ul li a{
  font-size: 13px;
  color: #fff;
  padding: 5px 0 5px 10px;
  display: block;
  background-image: url('../images/common/arrow_wh.png');
  background-repeat: no-repeat;
  background-position: left 9px;
  background-size: 7px;
}
footer .footerBox {
  background-color: #FFF;
  padding: 12px 65px 12px 0;
}
footer .footerBox .inner_wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

footer .footerBox .logo {
  color: #0068b5;
  font-size: large;
  font-weight: bold;
}
footer .footerBox .logo img{
  height: 30px;
  width: auto;
}
footer p#copyright{
  text-align: right;
  font-size: 10px;
}
footer a#back-to-top{
  position: fixed;
  padding: 10px 10px 5px;
  right: 20px;
  bottom: 0;
  width: 60px;
  height: 60px;
  background-color: #236BAC;
}
footer a#back-to-top span{
  display: block;
  padding-top: 18px;
  font-size: 10px;
  text-align: center;
  color: #FFF;
  background-image: url('../images/common/ico_totop.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 28px auto;
}
/*---button---*/
.btn {
  width: 250px;
  display: block;
  margin: 0 auto;
  border: 2px solid #236BAC;
  background-color: #236BAC;
  text-align: center;
  font-size: 16px;
  color: #FFF;
  border-radius: 5px;
  padding: 20px;
  transition: 0.5s;
}
.btn:hover {
  background-color: #FFF;
  color: #236BAC;
  opacity: 1;
  transition: 0.5s;
}
.btn_reverse {
  width: 250px;
  display: block;
  margin: 0 auto;
  border: 2px solid #236BAC;
  background-color: #FFF;
  text-align: center;
  font-size: 16px;
  color: #236BAC;
  border-radius: 5px;
  padding: 20px;
  transition: 0.5s;
}
.btn_reverse:hover{
  opacity: 1;
  transition: 0.5s;
  background-color: #236BAC;
  color: #FFF;
}
a.btn_footer {
  width: 250px;
  display: block;
  margin: 0 auto;
  border: 2px solid #FFF;
  text-align: center;
  font-size: 16px;
  color: #FFF;
  border-radius: 5px;
  padding: 20px;
  transition: 0.5s;
}
a.btn_footer:hover {
  background-color: #236BAC;
}
a.btn.contact,
a.btn_footer.contact {
  background-image: url('../images/common/ico_mail.png');
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 22px auto;
}
a.btn.contact:hover{
  background-image: url('../images/common/ico_mail_blue.png');
}
/*breadcrumb*/
nav.breadcrumb ul{
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;;
}
nav.breadcrumb ul li:after{
  content: ">";
  margin: 0 5px;
}
nav.breadcrumb ul li:last-child:after{
  content: "";
  margin: 0;
}
/*under2nd*/
/*---mainVisual under2ndlayer---*/
div.mainVisual2nd{
  margin: 0 auto 26px;
}
div.mainVisual2nd div.mainVisualimg{
  margin-right: -50%;
  width: 190px;
  height: 80px;
  background-image: url("../images/common/bg_vi.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 70px;
  z-index: 1;
  overflow: hidden;
}
div.mainVisual2nd div.mainVisualimg:before{
  content: "";
  position: absolute;
  background-color: #FFF;
  transform-origin: 500px center;
  transform: rotate(67deg);
  z-index: -1;
  width: 100vw;
  height: 460px;
}
div.mainVisual2nd div.mainvisualTxt{
  height: 130px;
  width: calc(100vw - 20px);
  margin-left: 20px;
  background: url("../images/common/bg_vc_2nd.png"), -moz-linear-gradient(left, transparent 200px, #0098DB 500px);
  background: url("../images/common/bg_vc_2nd.png"), -webkit-linear-gradient(left, transparent 200px, #0098DB 500px);
  background: url("../images/common/bg_vc_2nd.png"), linear-gradient(to right, transparent 200px, #0098DB 500px);
  background-repeat: no-repeat;
  background-position: bottom left;
  position: relative;
  z-index: 100;
}
div.mainVisual2nd h1{
  text-align: right;
  color: #FFF;
  font-size: 28px;
  height: inherit;
}
div.mainVisual2nd h1 span{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: inherit;
}
/*----mainContent----*/
div.mainContent{
  padding: 50px 0;
}
div.mainContent.inner_wrap{
  padding: 50px 20px;
}

div.mainContent h2{
  border-left: 5px solid #236BAC;
  padding-left: 10px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #236BAC;
}
div.mainContent h3{
  margin-bottom: 25px;
  font-size: 16px;
  color: #236BAC;
}
div.mainContent h4{
  margin-bottom: 25px;
  font-size: 16px;
}
.mainContent p{
  text-indent: 1em;
  margin-bottom: 20px;
}
.mainContent p:last-child{
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  /*---header---*/
  header{
    padding: 10px 0;
  }
  header .headerIcon img {
    width: 108px;
  }
  /*headernav*/
  .headerNav{
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    width: 100%;
    overflow-y: auto;
    background-color: rgba(60,60,60,0.9);
    height: 100%;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  .headerNav.active{
    transform: translateY(0%);
  }
  header .headerNav ul{
    margin-top: 71px;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.5);
    display: block;
  }
  header .headerNav ul li {
    margin-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    font-size: 20px;
  }
  header .headerNav ul li:last-child {
    margin-right: 0;
  }
  header .headerNav ul li a{
    display: block;
    padding: 25px 20px;
    color: #FFF;
  }
  header .headerNav ul li a:hover {
    color: #FFF;
    background-color: #236BAC;
  }

  header .headerNav a.outlink:after{
    background-image: url('../images/common/ico_outlink_wh.png');
  }
  .toggle{
    position: relative;
    display: block;
    z-index:99999;
    width: 55px;
    height: 53px;
    cursor: pointer;
  }
  .toggle span{
    display: block;
    position: absolute;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    width: 35px;
    border-bottom: solid 3px #236BAC;
    left: 10px;
  }
  .toggle span:nth-child(1){
    top: 17px;
  }
  .toggle span:nth-child(2){
    top: 25px;
  }
  .toggle span:nth-child(3){
    top: 33px;
  }
  .toggle p{
    padding-top: 25px;
  }
  .toggle.active span:nth-child(1){
    -webkit-transform: rotate(-45deg);
    -mod-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 25px;
    border-bottom: solid 3px #fff;
  }
  .toggle.active span:nth-child(2),
  .toggle.active span:nth-child(3){
    -webkit-transform: rotate(45deg);
    -mod-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 25px;
    border-bottom: solid 3px #fff;
  }
  /*irNav*/
  .irNav {
    justify-content: center;
  }
  .irNav ul{
    margin-top: 20px;
    position: static;
  }
  /*---footer---*/
  footer nav.inner_wrap{
    display: block;
  }
  footer nav ul{
    width: 100%;
    display: block;
  }
  footer nav ul li{
    margin-right: 0;
    border-bottom: 1px dotted rgba(255,255,255,0.5);
  }
  footer nav ul li a{
    padding: 15px 10px 15px 0;
    background-position: right 20px;
  }
  a.btn_footer {
    margin-top: 10px
  }
  /*---mainVisual under2ndlayer---*/
  div.mainVisual2nd div.mainVisualimg{
    margin-right: 0;
    width: 90px;
  }
  div.mainVisual2nd div.mainVisualimg:before{
    transform-origin: 544px top;
    width: 1000px;
  }
  div.mainVisual2nd div.mainvisualTxt{
    width: calc(100% - 20px);
    background-position: top left;
  }
  div.mainVisual2nd h1 span{
    padding: 0 20px 0 84px;
  }
}
@media screen and (max-width: 420px) {
  footer .footerBox {
    background-color: #FFF;
    padding: 11px 85px 3px 20px;
  }
  footer p#copyright {
    margin-top: 2px;
  }
}
