@charset "utf-8";


/***********
separate
************/

.e-separate {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6em;
}

.e-separate .e-separate-item img {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.e-separate .e-separate-item > h2:first-child,
.e-separate .e-separate-item > h3:first-child,
.e-separate .e-separate-item > h4:first-child ,
.e-separate .e-separate-item > h5:first-child ,
.e-separate .e-separate-item > h6:first-child {
  margin-top: 0 !important;
}
.e-separate .e-separate-item.e-separate-half > p:first-child + h2 ,
.e-separate .e-separate-item.e-separate-half > p:first-child + h3 ,
.e-separate .e-separate-item.e-separate-half > p:first-child + h4 ,
.e-separate .e-separate-item.e-separate-half > p:first-child + h5 ,
.e-separate .e-separate-item.e-separate-half > p:first-child + h6{
  margin-top: 2rem !important;
}


.e-separate-large {
  width: 55%;
}
.e-separate-small {
  width: 40%;
}
.e-separate-xlarge {
  width: 60%;
}
.e-separate-xxlarge {
  width: 65%;
}
.e-separate-xsmall {
  width: 35%;
}
.e-separate-xxsmall {
  width: 30%;
}
.e-separate-half {
  width: 47.5%;
}
.e-separate.is-reverse {
  flex-direction: row-reverse;
}

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

  .e-separate {
    display: block;
    margin-bottom: 4em;
  }
  .e-separate-large,
  .e-separate-small,
  .e-separate-xlarge,
  .e-separate-xsmall,
  .e-separate-xxlarge,
  .e-separate-xxsmall,
  .e-separate-half {
    width: auto;
  }
  .e-separate-large:first-child,
  .e-separate-small:first-child,
  .e-separate-xlarge:first-child,
  .e-separate-xsmall:first-child,
  .e-separate-xxlarge:first-child,
  .e-separate-xxsmall:first-child,
  .e-separate-half:first-child {
    padding-bottom: 2em;
  }


  .e-separate.is-reverse {
    flex-direction: row-reverse;
  }
}


/***********
grid
************/

.e-grid{
  display: flex;
  flex-wrap: wrap;
  margin-left: -4%;
}
.e-grid + .e-grid {
}
.e-grid-item{
  padding-left: 4%;
  margin-bottom: 5em;
}
.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: 1.5em;
}
.e-grid-img img {
  margin-top: 0 !important;
  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: 0;
  }
  .e-grid-item{
    width: 100%;
    padding-left: 0;
    margin-bottom: 4em;
  }

}

/***********
gridList
************/

.e-gridList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
}
.e-gridList li{
  margin-bottom: 4em;
  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: 1.5em;
}
.e-gridList-img img {
  margin-bottom: 0 !important;
}

.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: 2em;
    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: 1.5em;
  }
  .e-gridList-img img {
    padding-bottom: 0 !important;
  }
  .e-gridList-text {
  }

}



/***********
box
************/

.e-box {
  background-color: #fff;
  padding: 3em 5%;
  margin: 2em 0;
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.1);
}

.e-box > *:first-child{
  margin-top: 0 !important;
}

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

  .e-box {
    padding: 2em 5%;
    border-radius: 10px;
  }
}

/***********
linkWrap
************/

.e-linkWrap {
  text-align: center;
  padding: 2em 0;
}

.e-linkWrap-half {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 2em 0;
}
.e-linkWrap-half-item {
  flex: 1;
  max-width: 40%;
  padding: 5px 10px;
}

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

  .e-linkWrap-half {
    display: block;
    padding: 20px 0;
  }
  .e-linkWrap-half-item {
    max-width: 100%;
    padding: 0 0 10px ;
  }
}


/***********
table
************/

.e-table {
  border: 1px solid #aaa;
  font-size: 1.24rem;
}

.e-table thead td {
  border: 1px solid #aaa;
  padding: 1em 0.8em;
  text-align: center;
  line-height: 1.8;
  background-color: #eee;
}
.e-table thead th{
  border: 1px solid #aaa;
  padding: 1em 1.5em;
  text-align: center;
  line-height: 1.8;
  background-color: #000;
  color: #fff;
}

.e-table tbody th {
  border: 1px solid #aaa;
  padding: 1em 1.5em;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
  background-color: #eee;
}

.e-table tbody td {
  border: 1px solid #aaa;
  padding: 1em 1.5em;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  line-height: 1.7;
  background-color: #fff;
}

/*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{
    font-size: 1rem;
  }

  .e-table thead td {
    padding: 0.8em;
  }
  .e-table thead th{
    padding: 0.8em;
  }
  .e-table tbody th {
    padding: 0.8em;
  }
  .e-table tbody td {
    padding: 0.8em;
  }

  /*スマホ時、縦組みになる*/
  .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 !important;
  }
  .e-table-sp th,
  .e-table-sp td {
    border: none;
    font-size: 1rem;
  }
  .e-table-sp thead th {
    text-align: center;
    padding: 0.8em 1em;
    margin-bottom: 0.8em;
    border-bottom: 1px solid #ddddff;
  }
  .e-table-sp tbody th {
    text-align: left;
    padding: 0.5em 1em;
    font-weight: bold;
    font-size: 1.16rem;
  }
  .e-table-sp tbody td {
    padding: 1em 0px 2em 0;
    font-size: 1rem;
    background-color: transparent;
  }

}

/***********
linkList
************/

.e-linkList {
  font-size: 1.24rem;
  line-height: 1.8;
}
.e-linkList li {
  padding-bottom: 0.2em;
}
.e-linkList a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  position: relative;
  padding-left: 1.2em;
}
.e-linkList a::before {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f054";
  position: absolute;
  left: 0;
  top: 0.4em;
  transform: scale(0.8);
}
.e-linkList a[target="_blank"]::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f08e";
  margin-left: 0.5em;
  transform: translateY(-0.2em);
}
body.is-pc .e-linkList a:hover {
  text-decoration: none;
}

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

  .e-linkList {
    font-size: 1.08rem;
  }

}

/***********
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%;
}

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
