:root {
  --main-color: #00809e;
}


.contents {
  margin-top: 0px;
  padding-top: 120px;
  /*background-color: gray;*/
  /*position: relative;*/
}
.content-wrapper-inner {
  width: 750px;
  margin: 0 auto;
  padding: 3em 4em;
  background-color: white;
  opacity: 0.9555;
  border-radius: 2px;
}
@media (max-width:750px){
  .contents {
    padding-top: 250px;
    /*background-color: gray;*/
    /*position: relative;*/
  }
  .content-wrapper-inner {
    padding: 3em 2em 1em 2em;
  }
}
.cover-image {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  /*background-color: red;*/
  /*z-index: -1000;*/
}
.cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
@media (max-width:750px){
  .cover-image {
    height: 82vh;
    position: absolute;
    transform: translateX(0%);
  }
}


.page-title {
  margin-bottom: 0;
  height: auto;
  padding: 2em;
}

.foreign h1 {
  width: 750px;
  font-size: 380%;
  text-align: left;
  margin: 0 auto;
  color: white;
  line-height: 1.3em;
  letter-spacing: 0em;
  word-spacing: 0.15em;
  font-family: "Noto Sans JP";
  text-shadow: 0px 0px 0.5em rgba(0, 0, 0, 0.8);
  padding-bottom: 0.5em;
}
h1 span {
  font-size: 80%;
  display: block;
}
@media (max-width:750px){
  .foreign h1 {
    width: auto;
    font-size: 250%;
    text-align: left;
    line-height: 1.25em;
    transform: translateY(-4em);
    padding-bottom: 2em;
  }
  h1 span {
    margin-top: 1em;
    line-height: 1.25em;
  }
}


/*** el ***/
h2 {
  font-size: 170%;
  line-height: 1.5em;
  color: white;
  padding: 0.35em 1em 0.4em 1em;
  background-color: var(--main-color);
  border-radius: 4px;
  margin-top: 2em;
}


h3 {
  font-size: 150%;
  line-height: 1.5em;
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
  padding: 0.45em 1em 0.5em 0.2em;

}

h4 {
  font-size: 135%;
  line-height: 1.75em;
  color: var(--main-color);
}

h5 {
  font-size: 120%;
  line-height: 1.75em;
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
}
h5::before {
  content: "";
  background-image: url(ico_arrow01_right.svg);
  background-repeat: no-repeat;
  background-position: left 0.25em;

  display: block;
  width: 1.2em;
  height: 1em;
  top: 0;
}
@media (max-width:750px){
  h5::before {
    background-size: 20px;

  }

}

p {
  padding: 0 0.15em;
  font-size: 120%;
  line-height: 1.75em;
  letter-spacing: 0.05em;
}

h2, h3, h4, h5, p {
  margin: 0;
  
}

.column {
  border: 1px solid var(--main-color);
  background-color: white;
  border-radius: 4px;
  padding: 1em 1.5em;
  width: 99%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  margin-bottom: 2em;
  /*font-weight: bold;*/
  color: var(--main-color);
}

h2 + p, h3 + p {
  margin-top: 1.5em;
}
p + p {
  margin-top: 0.5em;
}
p + h3 {
  margin-top: 1.5em;
}
h3 + h4, p + h4 {
  margin-top: 1.5em;
}
.column + h2 {
  margin-top: 3em;
}

p + h5 {
  margin-top: 1em;
}

 