@charset "utf-8";


/***********
grid
************/

.e-grid{
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  line-height: 1.7;
}
.e-grid-item{
  padding-left: 3%;
  margin-bottom: 50px;
}
.e-grid-item > h2:first-child,
.e-grid-item > h3:first-child,
.e-grid-item > h4:first-child ,
.e-grid-item > h5:first-child ,
.e-grid-item > h6:first-child {
  margin-top: 0 !important;
}

.e-grid-item1{  width: 10%;  }
.e-grid-item2{  width: 20%;  }
.e-grid-item3{  width: 30%;  }
.e-grid-item4{  width: 40%;  }
.e-grid-item5{  width: 50%;  }
.e-grid-item6{  width: 60%;  }
.e-grid-item7{  width: 70%;  }
.e-grid-item8{  width: 80%;  }
.e-grid-item9{  width: 90%;  }
.e-grid-item10{  width: 100%;  }

.e-grid-img {
  padding-bottom: 20px;
}
.e-grid-img img {
  margin-bottom: 0 !important;
}
.e-grid-img + h2,
.e-grid-img + h3,
.e-grid-img + h4,
.e-grid-img + h5,
.e-grid-img + h6 {
  margin-top: 0 !important;
}

@media screen and (max-width:834px) {

  .e-grid{
    display: block;
    margin-left: 0;
    margin-bottom:0px;
    font-size: 1.16rem;
  }
  .e-grid-item{
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
  }

}

/***********
gridList
************/

.e-gridList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  line-height: 1.7;
}
.e-gridList li{
  margin-bottom: 50px;
  padding-left: 3%;
}
.e-gridList-half li {
  width: 50%;
}
.e-gridList-trisect li {
  width: 33.3%;
}
.e-gridList-quarter li {
  width: 25%;
}

.e-gridList-img {
  padding-bottom: 20px;
}
.e-gridList-img img {
  margin-bottom: 0 !important;
}
.e-gridList-text {
}

.e-gridList-img + h2,
.e-gridList-img + h3,
.e-gridList-img + h4,
.e-gridList-img + h5,
.e-gridList-img + h6{
  margin-top: 0 !important
}

@media screen and (max-width:834px) {

  .e-gridList {
    display: flex;
    flex-wrap: wrap;
    margin-left: -3%;
  }
  .e-gridList li{
    width: 100%;
    margin-bottom: 30px;
    padding-left: 3%;
  }
  .e-gridList.e-gridList-half li,
  .e-gridList.e-gridList-trisect li,
  .e-gridList.e-gridList-quarter li{
    width: 100%;
  }
  .e-gridList.e-sp-half li {
    width: 50%;
  }
  .e-gridList.e-sp-trisect li {
    width: 33.3%;
  }
  .e-gridList.e-sp-quarter li {
    width: 25%;
  }

  .e-gridList-img {
    padding-bottom: 20px;
  }
  .e-gridList-img img {
    padding-bottom: 0 !important;
  }
  .e-gridList-text {
  }

}



/***********
box
************/

.e-box {
  padding: 40px 80px;
  background-color: #f0f0f0;
}

.e-box > *:first-child{
  margin-top: 0 !important;
}

@media screen and (max-width:834px) {

  .e-box {
    padding: 25px 5%;
    background-color: #f0f0f0;
  }
}

/***********
linkWrap
************/

.e-linkWrap {
  text-align: center;
  padding: 20px 0;
}

.e-linkWrap-half {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}
.e-linkWrap-half-item {
  padding: 5px 10px;
}

@media screen and (max-width:834px) {

  .e-linkWrap-half {
    display: block;
    padding: 20px 0;
  }
  .e-linkWrap-half-item {
    padding: 0 0 10px ;
  }
}


/***********
table
************/

.e-table {
  border-top: 1px solid #ccc;
}

.e-table th {
  border-bottom: 1px solid #ccc;
  font-size: 1.16rem;
  padding: 20px 3%;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  line-height: 1.8;
  background-color: #f0f0f0;
}

.e-table td {
  border-bottom: 1px solid #ccc;
  font-size: 1.16rem;
  padding: 20px 3%;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  line-height: 1.8;
}

/*cell size*/

.e-cell-quarter {
  width: 25%;
}

.e-cell-trisect {
  width: 33.3%;
}

.e-cell-half {
  width: 50%;
}

@media screen and (max-width:834px) {

  .e-table{
  }
  .e-table th{
    font-size: 1rem;
    padding: 8px 8px;
    line-height: 1.7;
  }
  .e-table td{
    font-size: 1rem;
    padding: 8px 8px;
    line-height: 1.7;
  }

  /*スマホ時、縦組みになる*/
  .e-table-sp,
  .e-table-sp thead,
  .e-table-sp tbody,
  .e-table-sp tr,
  .e-table-sp th,
  .e-table-sp td {
    display: block;
    width: 100% !important;
    border: none;
  }
  .e-table-sp th,
  .e-table-sp td {
    border: none;
    font-size: 1rem;
  }
  .e-table-sp thead th {
    text-align: center;
    padding: 5px 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ccc;
  }
  .e-table-sp tbody th {
    text-align: left;
    padding: 5px 8px;
    font-weight: bold;
  }
  .e-table-sp tbody td {
    padding: 8px 0px 15px 0;
    font-size: 0.93rem;
  }

}

/***********
googleMap
************/

.e-googleMap iframe{
  width: 100%;
  height: 600px;
}

/***********
youtube
************/

.e-youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.e-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/***********
width size & mauto added by esprit(230911)
************/
.e-wd10p{  width: 10%;  }
.e-wd20p{  width: 20%;  }
.e-wd30p{  width: 30%;  }
.e-wd40p{  width: 40%;  }
.e-wd50p{  width: 50%;  }
.e-wd60p{  width: 60%;  }
.e-wd70p{  width: 70%;  }
.e-wd80p{  width: 80%;  }
.e-wd90p{  width: 90%;  }
.e-wd100p{  width: 100%;  }

.e-mauto {
  margin-left: auto;
  margin-right: auto;
}


/***********
xxxxx
************/

/***********
xxxxx
************/
