body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  outline: none !important;
}
html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6, p{
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

ol, ul,li {
  list-style: none;
}

fieldset, img {
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}
a{
  color: #000000;
}
a:focus {
  outline: none;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

a {
  text-decoration: none;
  cursor: pointer;
}

body * {
  box-sizing: border-box;
}


/* フォント */
@font-face {
  font-family: "NotoSerifCJKjp_m";
  src: url("../fonts/NotoSerifCJKjp-Medium.woff") format("woff");
}
@font-face {
  font-family: "arial";
  src: url("../fonts/arial.woff") format("woff");
}
@font-face {
  font-family: "arialBold";
  src: url("../fonts/arialBold.woff") format("woff");
}
body{
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
}
b, strong, .bold{
  font-weight: 700;
}
.mont{
  font-family: montserrat, sans-serif;
}
.mont_b{
  font-family: montserrat, sans-serif;
  font-weight: 700;
}
.arial{
  font-family: "arial";
}
.arialBold{
  font-family: "arialBold";
}

h1{
  font-size: 48px;
}
h2{
  font-size: 35px;
}
h3{
  font-size: 25px;
}
h4{
  font-size: 20px;
}
h5{
  font-size: 14px;
}
p{
  font-size: 15px;
}
.f60{
  font-size: 60px;
}
.f48{
  font-size: 48px;
}
.f42{
  font-size: 42px;
}
.f30{
  font-size: 30px;
}
.f18{
  font-size: 18px;
}
.f14{
  font-size: 14px;
}
.f12{
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  h3{
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  .f60{
    font-size: 42px;
  }
  .f48{
    font-size: 38px;
  }
  .f42{
    font-size: 32px;
  }
  .f18{
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
  h3{
    font-size: 16px;
  }
  h4 {
    font-size: 15px;
  }
  .f60{
    font-size: 34px;
  }
  .f42{
    font-size: 24px;
  }
  .f30{
    font-size: 24px;
  }
  .f18{
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  h2{
    font-size: 24px;
  }
  h3 {
    font-size: 13px;
  }
  h5 {
    font-size: 12px;
  }
  p {
    font-size: 12px;
  }
  .f60 {
    font-size: 28px;
  }
  .f48 {
    font-size: 28px;
  }
  .f18 {
    font-size: 13px;
  }
}





.c_white{
  color: #fff;
}
.c_black{
  color: #000;
}
.c_blue{
  color: #0e448d;
}
.bc_white{
  background-color: #fff;
}
.bc_blue {
  background-color: #0e448d;
}
.bc_header{
  background: rgba(0, 0, 0, 0.25);
}

/* ----------- btn ------------ */
.btn{
  width: 120px;
  border: 1px solid #000;
  padding: 10px;
  text-align: center;
  display: block;
}
.opa{
  transition: 0.3s;
}
.opa:hover{
  opacity: 0.7;
}
.opa_drk, .opa_wht{
  position: relative;
  padding-bottom: 2px;
}
.opa_drk:hover:after, .opa_wht:hover:after {
  transform: scaleX(1);
}
.opa_drk:after, .opa_wht:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform .3s ease;
  height: 1px;
  width: 100%;
}
.opa_drk:after {
  background: #000;
}
.opa_wht:after {
  background: #fff;
}

.hov_red{
  transition: .1s;
  padding-bottom: 0px;
  border-bottom: 1px solid;
}
.hov_red:hover{
  color: #E21C35;
}

.workBtn{
  width: 250px;
  padding: 20px 0;
  text-align: center;
  border: 1px solid #000;
  display: block;
  transition: .3s;
}
.workBtn:hover{
  background: #000;
  color: #fff;
}
@media (max-width: 1024px){
  .workBtn{
    padding: 15px 0;
  }
}
/* ----------- 改行＆表示切り替えレスポンシブ ------------ */
.on1280{
  display: none;
}
.on1024{
  display: none;
}
.on768{
  display: none;
}
.on480{
  display: none;
}
@media (max-width: 1280px){
  .off1280{
    display: none;
  }
  .on1280{
    display: block;
  }
}
@media (max-width: 1024px){
  .off1024{
    display: none;
  }
  .on1024{
    display: block;
  }
}
@media (max-width: 768px){
  .off768{
    display: none;
  }
  .on768{
    display: block;
  }
}
@media (max-width: 480px){
  .off480{
    display: none;
  }
  .on480{
    display: block;
  }
}

/* --------------------- common ------------------- */
.w90{
  width: 90%;
  margin: auto;
}
.breadcrumb{
  margin-top: 15px;
}
.slash{
  margin: 0 5px;
}
.pl {
  padding-left: 4%;
}
.pr{
  padding-right: 4%;
}
.pt90{
  padding-top: 90px;
}
.plHalf{
  padding-left: 2%;
}
.prHalf{
  padding-right: 2%
}
@media (max-width: 768px){
  .breadcrumb{
    font-size: 14px;
  }
  .pt90{
    padding-top: 50px;
  }

}
@media (max-width: 480px){
  .breadcrumb{
    font-size: 12px;
  }
}

/* --------------------- header ------------------- */

header{
  display: flex;
  align-items: center;
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 10;
  justify-content: space-between;
}
header .left_box{
  margin-left: 30px;
}
header .left_box .logo_img{
  margin: auto;
}
header .center_box {
  max-width: 100px;
  width: 10%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
header .center_box ul {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
header .right_box{
  display: flex;
  align-items: center;
  margin-right: 87px;
  margin-top: 8px;
}
header .right_box a:hover{
  color: #fff;
}
header .iconBtnBox {
  display: flex;
  align-items: center;
  margin-right: 0;
}
header .iconBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 60px;
  background: #0e448d;
  margin-right: 10px;
}
header .iconBtn img{
  display: block;
  max-width: 18px;
}
header .iconBtn.snsIcon img{
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(229deg) brightness(100%) contrast(200%);
  max-width: 28px;
}
@media screen and (max-width: 1280px) {
  header .left_box{
    margin-left: 10%;
  }
}
@media screen and (max-width: 1024px) {
  header .left_box{
    margin-left: 1%;
  }
}
@media screen and (max-width: 768px) {
  header .left_box{
    display: none;
  }
  header .center_box{
    margin-left: 15px;
    position: relative;
    left: 0;
    transform: unset;
  }
  header .iconBtnBox{
    margin-right: 70px;
  }
  header .iconBtn.snsIcon img{
    max-width: 24px;
  }
}
@media screen and (max-width: 480px) {
  header .iconBtn{
    width: 40px;
    height: 40px;
    margin-right: 6px;
  }
  header .iconBtn.snsIcon img{
    max-width: 20px;
  }
}


/* -------------------- ハンバーガーメニュー -------------------- */
nav.header-nav {
  display: block;
  position: fixed;
  top: 0;
  right: -55%;
  width: 55%;
  bottom: 0;
  background: #0e448d;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
  padding: 0 7%;
  padding-top: 100px;
}
.open nav {
  right: 0;
  opacity: 1;
}
nav.inner {
  padding: 25px;
}
nav.inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav.inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav.inner ul li a:hover {
  background: #e4e4e4;
}
nav.header-nav .logoImg{
  max-width: 100px;
  width: 25%;
  margin-bottom: 100px;
}
/*============ toggle_btn =============*/
.toggle_btn {
  display: block;
  width: 60px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
  position: fixed;
  right: 15px;
  top: 20px;
}
.open .toggle_btn{
  position: fixed;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #0e448d;
  border-radius: 4px;
  transition: all .5s;
  box-shadow: 0 1px #fff;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
  width: 60px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
  width: 40px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
  width: 20px;
}
.open .toggle_btn span {
  background-color: #e7d217;
  box-shadow: unset;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
  width: 60px;
}
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}


#navArea .innerBox {
  display: flex;
}
#navArea .innerBox .inner{
  width: 50%;
}
#navArea .innerBox .inner a {
  display: block;
  font-size: 24px;
  position: relative;
  line-height: 1;
}
#navArea .innerBox .inner a span{
  font-size: 60%;
  position: absolute;
  top: 115%;
  left: 0;
}
#navArea .innerBox .inner li{
  margin-bottom: 60px;
}
nav .lowBox{

}
nav .lowBox .telTxt{
  position: relative;
  font-size: 27px;
  padding-left: 30px;
  margin-bottom: 25px;
  display: block;
  margin-top: 40px;
}
nav .lowBox .telTxt::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../img/common/icon_tel.png);
  width: 16px;
  height: 16px;
}
nav .lowBox .innerBox{
  display: flex;
  align-items: center;
}
nav .lowBox .innerBox .contactBox{
  padding: 10px 30px;
  text-align: center;
  border: 1px solid #fff;
}
nav .lowBox .innerBox .snsBox{

}
nav .lowBox .innerBox .snsBox .snsLink{
  max-height: 25px;
  width: 25px;
  margin-left: 20px;
}
nav .lowBox .innerBox .snsBox .snsLink img{
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(229deg) brightness(100%) contrast(200%);
  height: 100%;
  width: auto;
}

@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 767px) {
  .toggle_btn {
    width: 50px;
    top: 14px;
  }
  .toggle_btn span:nth-child(1) {
    width: 50px;
  }
  .toggle_btn span:nth-child(2) {
    width: 30px;
  }
  .toggle_btn span:nth-child(3) {
    width: 10px;
  }
  .open .toggle_btn span:nth-child(1),
  .open .toggle_btn span:nth-child(3){
    width: 40px;
  }
  nav.header-nav{
    padding: 0 5%;
    padding-top: 50px;
  }
  nav.header-nav .logoImg {
    width: 50%;
    margin-bottom: 30px;
  }
  #navArea .innerBox .inner a {
    font-size: 18px;
  }
  #navArea .innerBox .inner li {
    margin-bottom: 35px;
  }
  nav .lowBox .telTxt{
    margin-top: 30px;
  }
  nav .lowBox .telTxt{
    font-size: 24px;
    margin-bottom: 15px;
  }
  nav .lowBox .innerBox .snsBox .snsLink{
    margin-left: 12px;
  }
  nav .lowBox .innerBox .contactBox{
    padding: 8px 20px;
  }
}
@media screen and (max-width: 480px) {
  header .iconBtnBox {
    margin-right: 50px;
  }
  .toggle_btn {
    top: 12px !important;
    right: 10px;
    width: 40px;
  }
  nav.header-nav{
    width: 70%;
    right: -70%;
  }
  nav.header-nav .logoImg {
    width: 35%;
  }
  .toggle_btn span:nth-child(1) {
    width: 45px;
  }
  nav .lowBox .telTxt {
    font-size: 18px;
  }
}


/* --------------------- footer ------------------- */
.footerContact{
  margin-bottom: 6%;
}
.footerContact .content_box{
  text-align: center;
  margin-top: 5%;
}
.footerContact .content_box h5{
  line-height: 1.4
}
.telNum{
  position: relative;
  padding-left: 60px;
  margin: 30px 0;
  display: inline-block;
}
.telNum::before{
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../img/common/icon_tel_bk.png);
  width: 30px;
  height: 30px;
}
.contactBtn{
  display: block;
  text-align: center;
  width: 375px;
  border: 1px solid #000;
  padding: 24px 0;
  margin: auto;
}

footer.w90{
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #000;
  padding-top: 6%;
  padding-right: 11%;
  margin-bottom: 8%;
}
footer .leftBox{

}
footer .leftBox .imgBox{
  max-width: 60px;
  width: 100%;
}
footer .leftBox .coName{
  font-size: 16px;
  margin-bottom: 20%;
  margin-top: 8px;
}
footer .leftBox .f12{
  line-height: 1.5;
}
footer .rightBox {
  display: flex;
  min-width: 400px;
  justify-content: space-between;
}
footer .rightBox li{
  margin-bottom: 15px;
}
footer .rightBox .btn{
  margin-bottom: 20px;
}

.snsBox{
  display: flex;
}
.snsImg{
  display: block;
}
.snsImg img{
  max-width: 25px;
}
footer .snsImg{
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .telNum{
    padding-left: 50px;
    margin: 10px 0;
  }
  .contactBtn {
    width: 280px;
    padding: 14px 0;
  }
  footer.w90{
    padding-right: 0%;
  }
}
@media screen and (max-width: 768px) {
  footer .rightBox{
    justify-content: flex-end;
    min-width: unset;
  }
  footer .rightBox .innerBox{
    margin-left: 10%;
  }
  footer .rightBox .btn {
    margin-bottom: 10px;
    width: 100px;
    padding: 5px;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .telNum {
    padding-left: 25px;
  }
  .telNum::before{
    width: 18px;
    height: 18px;
  }
  .contactBtn {
    width: 180px;
    padding: 10px 0;
    font-size: 13px;
  }
  footer.w90{
    flex-direction: column;
  }
  footer .leftBox {
    width: 100%;
    margin: 0;
    order: 2;
    margin-top: 20px;
  }
  footer .leftBox .imgBox{
    margin: auto;
  }
  footer .leftBox .coName{
    margin-bottom: 5%;
    text-align: center;
  }
  footer .rightBox{
    width: 100%;
    justify-content: space-between;
    order: 1;
  }
  footer .rightBox .innerBox{
    margin: 0;
  }
  footer .leftBox .f12 {
    text-align: center;
  }
}
/* --------------------- lowPage common ------------------- */
header .left_box.lowPage{
  margin: 0;
  background: #0e448d;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .left_box.lowPage .logo_img{
  width: 80%;
  display: block;
  margin: auto 10%;
}
@media screen and (max-width: 768px) {
  header .left_box.lowPage {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 480px){
  header .left_box.lowPage {
    width: 60px;
    height: 50px;
  }
}
/* --------------------- low_mian_visual ------------------- */
.lowPageWrap .mv{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10% 0 5%;
}
.lowPageWrap .mv .txtBox{
  text-align: center;
}
.lowPageWrap .mv h2{
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .lowPageWrap .mv{
    padding: 110px 0 60px;
  }
}
@media screen and (max-width: 768px){
  .lowPageWrap .mv {
    padding: 100px 0 20px;
  }
}

.lowPageWrap .section {
  display: flex;
  justify-content: space-between;
}
.lowPageWrap .section .ttlBox {
  width: 265px;
}
.lowPageWrap .section .contentArea {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .lowPageWrap .section .ttlBox {
    width: 205px;
  }
}
@media screen and (max-width: 768px) {
  .lowPageWrap .section {
    display: block;
  }
  .lowPageWrap .section .ttlBox {
    width: 100%;
    margin-bottom: 30px;
  }
  .lowPageWrap .section .contentArea {
    width: 100%;
  }
  .lowPageWrap .section .ttlBox h3 {
    font-size: 24px;
  }
}



/* add */
.ec-headerNav .ec-headerNav__itemIcon.snsIcon{
  margin: auto;
}
.snsIcon:before{
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(229deg) brightness(100%) contrast(200%);
}
.cratWrap.ec-cartNavi{
  background: #0e448d;
}
.cratWrap.ec-cartNavi .ec-cartNavi__price{
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .right_box{
    margin: 0 10px 0 auto;
  }
  .cratWrap.ec-cartNavi{
    width: 45px;
    height: 45px;
    border-radius: 50px;
    position: relative;
  }
  .cratWrap.ec-cartNavi .snsIcon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 480px) {
  .cratWrap.ec-cartNavi{
    width: 40px;
    height: 40px;
}
