@charset "UTF-8";

/*message*/
#message {
  font-size: min(1.5rem, 4vw);
}

#message .heading {
  margin-bottom: 1.6rem;

  font-size: min(2.7rem, 6vw);
  text-align: center;
}

#message .textContent {
  line-height: 1.4;
}

#message .textContent .portlait-name {
  text-align: right;
}

#message .textContent .portlait-name span {
  margin-left: 1.6rem;

  font-size: min(2.7rem, 6vw);
  font-weight: 600;
}

/*philosophy*/
#philo p {
  text-align: center;
  line-height: 1.4;
}

#philo span {
  position: relative;
  z-index: 2;

  display: inline-block;
  font-size: 3rem;
  text-align: center;

  background: transparent;
}

#philo span::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: inline-block;
  width: 100%;
  background: transparent;
  box-shadow: 0px 0px 2.4em .8em #cef5ff96;
}

/*profile*/
#profile .dl-wrap {
  border-left: 4px solid red;
  border-image: linear-gradient(to bottom, #ACE9FF 0%, #6EBCFF 100%) 1;
}

#profile .dl-wrap>*+* {
  margin-block-start: .2rem;
}

#profile .dl-wrap dl {
  display: grid;
  grid-template-columns: 10.4rem 1fr;
  column-gap: 1.6rem;
  padding: 1.5em 0;
  padding-left: 10%;

  line-height: 1.4;

  background: #F8F8F8;
}

#profile .dl-wrap dt {
  font-weight: 600;
}

/*dl*/
#history .dl-wrap {
  padding: 1.6rem 3.2rem;

  border-left: 4px solid red;
  border-image: linear-gradient(to bottom, #ACE9FF 0%, #6EBCFF 100%) 1;
}

#history .dl-wrap dl {
  display: grid;
  grid-template-columns: 10.4rem 1fr;
  column-gap: 1.6rem;
}

#history .dl-wrap>*+* {
  margin-block-start: 2.4rem;
}

/*address*/
.addressContainer>*+* {
  margin-block-start: 8rem;
}

address {
  line-height: 1.4;
}

address h4 {
  padding-left: .4em;
  margin-bottom: 1.2rem;

  font-size: 1.7rem;
  border-left: 4px solid red;
  border-image: linear-gradient(to bottom, #ACE9FF 0%, #6EBCFF 100%) 1;
}

address p {
  margin-bottom: 0.8rem;
}

address iframe {
  width: 100%;
}

@media (max-width : 1080px) {}

@media (max-width : 599px) {
  #profile .dl-wrap dl {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    column-gap: 0;
    row-gap: .8rem;
    padding: 1em 1em;
  }

  address iframe {
    width: 100%;
    height: 30vh;
  }

  /*philosophy*/
  #philo span {
    font-size: min(4rem, 8vw);
  }

  #philo span::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: inline-block;
    width: 100%;
    background: transparent;
    box-shadow: 0px 0px 2.4em .8em transparent;
  }
}