@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*----------------------------------------------------
  メイン
----------------------------------------------------*/
.main-wrap {
  padding: 2rem;
}
@media screen and (max-width: 767.98px) {
  .main-wrap {
    padding: 6.5rem 0 2rem;
  }
}
.main-wrap .container {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 1;
}
.main-wrap .container .text-area {
  font-weight: 700;
  width: 45%;
  align-self: center;
}
@media screen and (max-width: 991.98px) {
  .main-wrap .container .text-area {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .main-wrap .container .text-area {
    margin-left: 0;
    width: 65%;
    align-self: auto;
  }
}
@media screen and (max-width: 575.98px) {
  .main-wrap .container .text-area {
    width: auto;
  }
}
.main-wrap .image-canvas {
  position: absolute;
  max-width: 700px;
  width: 100%;
  height: 100%;
  z-index: 0;
  grid-area: stack;
  top: 0;
  left: 42%;
}
@media screen and (max-width: 1200px) {
  .main-wrap .image-canvas {
    left: 38%;
  }
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas {
    left: 0;
  }
}
.main-wrap .bg-wrap {
  position: absolute;
  left: 20%;
  top: 14%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
  transition: all 0.2s;
  animation-delay: 0.8s;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .bg-wrap {
    width: max(300px, 62vw);
    height: max(300px, 62vw);
    top: auto;
    bottom: 0;
    left: auto;
    left: 34%;
  }
}
.main-wrap .bg-wrap img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .bg-wrap img {
    background-position: center center;
  }
}
.main-wrap .dots-area {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.main-wrap .dots-area .dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  translate: -50% -50%;
  width: clamp(32px, var(--s, 2.4) * 1vw, 128px);
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .dots-area .dot {
    width: clamp(10px, var(--s, 2.4) * 1vw, 100px);
  }
}
.main-wrap .dots-area .dot-red {
  background: #C94A4A;
}
.main-wrap .dots-area .dot-blue {
  background: #0a68b8;
}
.main-wrap .dots-area .dot-01 {
  --x: 23%;
  --y: 17%;
  --s: 1;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .dots-area .dot-01 {
    --x: 12%;
    --y: 61%;
    --s: 5;
  }
}
.main-wrap .dots-area .dot-02 {
  animation-delay: 0.2s;
  --x:100%;
  --y: 29%;
  --s: 10;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .dots-area .dot-02 {
    --x: 24%;
    --y: 86%;
  }
}
.main-wrap .dots-area .dot-03 {
  animation-delay: 0.4s;
  --x: 15%;
  --y: 80%;
  --s: 3.2;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .dots-area .dot-03 {
    --x: 80%;
    --y: 46%;
  }
}

/*----------------------------------------------------
  コンテンツ
----------------------------------------------------*/
.contents-title {
  text-align: center;
}

.section-inner {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

/*-------- ご挨拶 --------*/
.president-name {
  display: block;
  margin-top: 3em;
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .president-name img {
    width: 220px;
  }
}

#greeting figure {
  text-align: center;
  margin-top: 3em;
  margin-bottom: 2rem;
}

#greeting figure img {
  width: 50%;
}
@media screen and (max-width: 767.98px) {
  #greeting figure img {
    width: 90%;
  }
}

#greeting figure figcaption {
  margin-top: 0.5em;
}

/*-------- 理念 --------*/
.txt-policy {
  text-align: center;
}
.txt-policy span {
  display: inline-block;
  color: #C94A4A;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 3.6rem;
  line-height: 1.4;
  padding: 0 1.5em;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .txt-policy span {
    font-size: 2.8rem;
  }
}
.txt-policy span::before, .txt-policy span::after {
  content: "";
  width: 1em;
  height: 0.4rem;
  background-color: #C94A4A;
  position: absolute;
  top: calc(50% - 0.2rem);
}
.txt-policy span::before {
  left: 0;
}
.txt-policy span::after {
  right: 0;
}

/*-------- 概要 --------*/
table.tbl-company {
  width: 100%;
}
table.tbl-company tr {
  border-bottom: 1px solid #AFA9A2;
}
table.tbl-company tr:first-child {
  border-top: 1px solid #AFA9A2;
}
table.tbl-company th, table.tbl-company td {
  padding: 1em 1.5em;
}
@media screen and (max-width: 767.98px) {
  table.tbl-company th, table.tbl-company td {
    padding: 0.8em 1em;
  }
}
table.tbl-company th {
  background-color: #FAF7F2;
}
table.tbl-company dl {
  display: flex;
  flex-wrap: wrap;
}
table.tbl-company dl dt {
  width: 8em;
}
table.tbl-company dl dd {
  flex: 1;
}

/*-------- グループ --------*/
table.tbl-group {
  width: 100%;
}
table.tbl-group tr {
  border-bottom: 1px solid #AFA9A2;
}
table.tbl-group tr:first-child {
  border-top: 1px solid #AFA9A2;
}
table.tbl-group th, table.tbl-group td {
  padding: 1em 1.5em;
}
@media screen and (max-width: 767.98px) {
  table.tbl-group th, table.tbl-group td {
    padding: 1em;
    display: block;
    float: left;
    width: 100%;
  }
}
table.tbl-group th {
  padding-bottom: 0;
}
table.tbl-group td {
  padding-top: 0.5em;
  word-break: break-all;
}

/*-------- アクセス --------*/
.access-map {
  position: relative;
  width: 100%;
  padding-top: 50%;
  height: 0;
  margin-bottom: 4rem;
}
@media screen and (max-width: 575.98px) {
  .access-map {
    padding-top: 80%;
  }
}
.access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.access-way {
  display: flex;
  margin: 0 -1.5rem;
  flex-wrap: wrap;
}
.access-way > div {
  width: 33.3333%;
  padding: 0 1.5rem;
}
@media screen and (max-width: 991.98px) {
  .access-way > div {
    width: 50%;
    margin-bottom: 3rem;
  }
  .access-way > div:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 575.98px) {
  .access-way > div {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.access-way > div .block {
  background-color: #FAF7F2;
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}
.access-way > div .block h3 {
  margin-bottom: 0.4em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.8rem;
  padding-left: 3.5rem;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .access-way > div .block h3 {
    font-size: 1.6rem;
  }
}
.access-way > div .block h3 img {
  position: absolute;
  top: 0;
  left: 0;
}
.access-way > div .block p {
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .access-way > div .block p {
    font-size: 1.4rem;
  }
}

.video-area {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
.video-area video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}/*# sourceMappingURL=company.css.map */