@charset "utf-8";

/*****************************************
*
* うりぼうについて
*
******************************************/

/*------------------------------------------*/
/* contents
/*------------------------------------------*/

.about-concept {
  position: relative;
  margin-top: 40px;
}

@media screen and (min-width: 768px), print {
  .about-concept {
    display: flex;
    align-items: center;
  }

  .about-concept .cont {
    width: 100%;
  }

  .about-concept.reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 834px), print {
  .about-concept {
    margin-top: 100px;
  }
}

/* 画像 --------------------------------*/
.about-concept figure img {
  width: 100%;
}

.about-concept figure {
  overflow: hidden;
  border-radius: 10px;
}

@media screen and (min-width: 768px), print {
  .about-concept figure {
    flex-shrink: 0;
    border-radius: 20px;
    width: calc(calc(500 / 1400) * 100vw);
    margin-right: calc(calc(60 / 1400) * 100vw);
  }

  .about-concept.reverse figure {
    margin-right: 0;
    margin-left: calc(calc(60 / 1400) * 100vw);
  }
}

@media screen and (min-width: 834px), print {
  .about-concept figure {
    width: calc(calc(460 / 1400) * 100vw);
    margin-right: calc(calc(100 / 1400) * 100vw);
  }

  .about-concept.reverse figure {
    margin-right: 0;
    margin-left: calc(calc(100 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .about-concept figure {
    width: 460px;
    margin-right: 100px;
  }

  .about-concept.reverse figure {
    margin-right: 0;
    margin-left: 100px;
  }
}

/* 見出し --------------------------------*/
.about-concept .heading {
  color: var(--color-green);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.1;
}

.about-concept .heading span {
  display: block;
}

@media screen and (max-width: 767px) {
  .about-concept .heading {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 768px), print {
  .about-concept .heading {
    font-size: calc(calc(38 / 1400) * 100vw);
    text-align: left;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .about-concept .heading {
    font-size: calc(calc(38 / 1400) * 100vw);
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    position: absolute;
    top: calc(calc(90 / 1400) * 100vw);
    right: calc(calc(90 / 1400) * 100vw);
    margin-bottom: 0;
  }

  .about-concept.reverse .heading {
    right: auto;
    left: calc(calc(90 / 1400) * 100vw);
  }

  .about-concept .heading span+span {
    padding-top: 1em;
  }
}

@media screen and (min-width: 1400px), print {
  .about-concept .heading {
    font-size: 2.4rem;
    top: 90px;
    right: 90px;
  }

  .about-concept.reverse .heading {
    right: auto;
    left: 90px;
  }
}

/* テキスト --------------------------------*/
.about-concept .text {
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2;
  margin-top: 20px;
}

@media screen and (max-width: 833px) {
  .about-concept .text br {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .about-concept .text {
    margin-top: 0;
  }
}

@media screen and (min-width: 834px), print {
  .about-concept .text {
    font-size: calc(calc(20 / 1400) * 100vw);
    line-height: 3;
  }

  .about-concept.reverse .text {
    margin-left: calc(calc(160 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .about-concept .text {
    font-size: 1.2rem;
  }

  .about-concept.reverse .text {
    margin-left: 160px;
  }
}

/*------------------------------------------*/
/* 表
/*------------------------------------------*/

.table-type-underline-responsive td:first-child {
  font-weight: bold;
}


/*------------------------------------------*/
/* 地図
/*------------------------------------------*/

.about-map {
  margin-top: 60px;
}

.about-map iframe {
  vertical-align: bottom;
}

@media screen and (min-width: 834px), print {
  .about-map {
    margin-top: 100px;
  }
}


.page-about footer {
  margin-top: 0;
}