@charset "utf-8";

/*** CONTENTS ***/

.contents-title-bg{ background-color: #e5fbf7;}

.contents-title-inner{
  position: absolute;
  left: calc(100% - 60vw);
  margin: 0;
  padding: 2em;
  width: 80%;
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.contents-title{
  position: relative;
  margin: auto;
  display: block;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: var(--font-size-xxl);
}

.contents-title-sub-copy{
  margin-top: 1em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: var(--font-size-l);
}



@media screen and (max-width: 1000px) {

.contents-title-inner{
  position: absolute;
  left: inherit;
  right: 5%;
}

}/* End max 1000 */


@media screen and (max-width: 640px) {

.contents-title-inner{
  position: absolute;
  left: inherit;
  right: inherit;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 4rem);
  height: calc(100svh - 4rem);
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255,255,255,0);
  z-index: 100;
}

.contents-title{
  position: absolute;
  margin: auto;
  padding: 0.5em;
  display: flex;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: var(--font-size-xxl);
  background: rgba(255,255,255,0.8);
}

.contents-title-sub-copy{
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-top: 0;
  padding: 1.5em 3.5em 1.5em 1em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: var(--font-size-l);
  background: rgba(255,255,255,0.8);
}


}/* End max 640 */

