@charset "utf-8";

*{
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Meiryo','メイリオ',sans-serif
}
a{
  color: #000;
  text-decoration: none;
}
li{
  list-style-type: none;
}
.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

input[type="text"],input[type="number"],input[type="email"],textarea,select,input[type="tel"]{
    border-radius: 5px;
    border: 1px solid #b4b3b3;
    font-size: 15px;
    padding: 0px 10px;
    font-family: 'Sawarabi Gothic' ,'Lucida Grande','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',Meiryo,メイリオ,sans-serif;
    height: 35px;
font-display:swap;
}
input[type="radio"],input[type="checkbox"]{
    display: none;
}
.selectWrap{
    position: relative;
    display: inline-block;
}
.selectWrap::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
    z-index: 10;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 40px;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 10px;
  border: 1px solid #b4b3b3;
  border-radius: 5px;
}
select::-ms-expand {
    display: none;
}
.radio, .checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 ;
  padding: 6px 10px 6px 30px;
  border-radius: 8px;
  vertical-align: middle;
  cursor: pointer;
        /* font-weight: bold; */
}

.radio:hoover, .checkbox:hoover,
.wpcf7-list-item-label:hover{
    border-color: #266fbb;
}
.radio:hover:after, .checkbox:hover:after ,
.wpcf7-list-item-label:hover::after{
  border-color: #266fbb;
}
.radio:after, .checkbox:after,
.wpcf7-list-item-label::after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 0px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 6px;
  content: '';
}
.radio:after, .wpcf7-list-item-label::after{
    border-radius: 12px;
    background: #fff;
}
.radio:before ,
.wpcf7-list-item-label::before{
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 4px;
  display: block;
  margin-top: -7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #266fbb;
  content: '';
  opacity: 0;
  z-index: 1;
}
input[type=radio]:checked + .radio:before ,
input[type=radio]:checked + .wpcf7-list-item-label::before,
input[type=checkbox]:checked + .wpcf7-list-item-label::before{
  opacity: 1;
}

.checkbox:before, .wpcf7-list-item-label::before {
  -webkit-transition: opacity 0.2s linear;
      transition: opacity 0.2s linear;
      position: absolute;
      top: 53%;
      left: 4px;
      display: block;
      margin-top: -7px;
      width: 9px;
      height: 9px;
      border-right: 3px solid #266fbb;
      border-bottom: 3px solid #266fbb;
      content: '';
      opacity: 0;
      -webkit-transform: rotate(
  45deg
  );
      -ms-transform: rotate(45deg);
      transform: rotate(
  45deg
  );
}
input[type="checkbox"]:checked + .checkbox:before,
input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
  z-index: 100;
}
input[type=file]{
    /*padding: 6px 10px 6px 30px;*/
    display: none;
}
.wpcf7-list-item-label{
  position: relative;
  padding-left: 1.7em;
}
/*****************
320pxvar
******************/
img{
  max-width: 100%;
}
#header{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1vw 3vw;
  max-width: 900px;
  margin: auto;
}

#logo{
order: 2;
}
  #logo img{
    width: 100px;
  }
  #header .line{
  order: 3;
}
  #header .line .open-time{
    display: none;
  }
  #header .line img{
    height: 40px;
  }


#gloval-nav{
  background: #e7eff3;
}
  #gloval-nav ul{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin: auto;
  }
  #gloval-nav li{
    width: calc(100vw / 4);
    padding: 0;
    height: 60px;
  }
    #gloval-nav li a{
      display: flex      ;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      align-content: center;
      height: 100%;
      width: 100%;
    }
      #gloval-nav li span{
        display: block;
        color: #0f2584;
        font-size: 12px;
        line-height: 1.5em;
        font-weight: 400;
        width: 100%;
      }


#footer{
  background: #14488e;
  color: #fff;
  padding: 5vw;
}
  #footer .logo{
    width: 200px;
    margin-bottom: .5em;
  }
  #footer .bold{
    font-weight: bold;
    font-size: 1.3em;
  }
  #footer .small{
    font-size: .7em;
  }
  #footer .conpany-info{
    line-height: 1.8em;
  }
  #footer p{
    margin: 2vw 0;
  }
  #footer .map{
    width: 400px;
    max-width: 100%;
  }
.copyright{
  padding: 1vw 5vw;
  clear: both;
  display: block;
}






/************************************************************************************
bigger than 440
*************************************************************************************/
@media screen and (min-width: 440px) {

}




/************************************************************************************
bigger than 560
*************************************************************************************/
@media screen and (min-width: 560px) {

}



/************************************************************************************
bigger than 640
*************************************************************************************/
@media screen and (min-width: 640px) {


}

/************************************************************************************
bigger than 760
*************************************************************************************/
@media screen and (min-width: 767px) {
  #header{
    padding: 10px 30px;
  }
    #header .line{
          text-align: center;
}
    #header #logo img {
      width: 120px;
    }
      #header .line .open-time{
        display: block;
        font-size: .8em;
        line-height: 1.5em;
      }
      #gloval-nav li{
        font-weight: normal;
        font-size: 1.2em;
        height: 70px;
      }

      #gloval-nav a span{
        font-size: 11px;
        font-weight: bold;
        margin-top: .4em;
      }
      #footer{
        padding: 50px 0;
      }
      #footer .flex{
        width: 750px;
        margin: auto;

      }
  #footer .conpany-info {
        line-height: 1.8em;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
        #footer .map {
          width: 300px;
      }

    #footer p {
      margin: 10px 0;
    }
    }


/************************************************************************************
bigger than 1000
*************************************************************************************/
@media screen and (min-width: 1280px) {
  #header{
    padding: 10px calc(50vw - 480px);
  }
  #header #logo img {
    width: 130px;
  }
  #gloval-nav ul {
    width: 1000px;
    margin: auto;
  }

  #footer{
    padding: 40px calc(50% - 480px) !important;
  }
  #footer .flex {
    margin: auto;
    font-size: 14px;
  }
  #footer .map {
    width: 350px;
  }
  #footer p {
    margin: 10px 0;
  }
  #footer .logo{
    margin: 0;
  }
  #footer .flex {
    width: 900px;
  }
  #footer .map {
    width: 400px;
  }
}

/************************************************************************************
smaller than 1000
*************************************************************************************/
@media screen and (max-width: 760px) {


}
