@charset "UTF-8";
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* コピペ用
@include media(375px, min) {
数値での指定可能
}
@include media(spM) {
minかmaxを略した場合はmin-widthで展開
}
@include media(spM,max) {
}
*/
/*----------------------------------------------------
会社概要
-----------------------------------------------------*/
/*--- ヘッダ -------------------*/
.subpageVisual {
  background: url(/common/img/company/about-sv-sp.jpg) no-repeat top right/auto 220px;
  height: 220px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .subpageVisual {
    background: url(/common/img/company/about-sv-tab.jpg) no-repeat top right/auto 300px;
    height: 300px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .subpageVisual {
    background: url(/common/img/company/about-sv-pc.jpg) no-repeat top right/auto 300px;
    height: 300px;
    margin-bottom: 60px;
  }
}

/*--- コンテンツ枠 -------------------*/
@media screen and (min-width: 1025px) {
  .main {
    width: 1100px;
    margin: auto;
    position: relative;
  }
}

/*--- 地域メニュー枠 -------------------*/
@media screen and (min-width: 1025px) {
  .location {
    position: relative;
  }
}

/*--- 地域メニュー -------------------*/
/* スクロール後の固定位置にあるボタンのスタイル */
.location-menu {
  --menu-right-space: 10px;
  border: 3px solid #000;
  border-right: none;
  border-radius: 15px 0 0 15px;
  margin: 0 0 0 var(--menu-right-space);
  padding: var(--menu-right-space);
}
@media screen and (min-width: 768px) {
  .location-menu {
    --menu-right-space: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .location-menu {
    width: 260px;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
  }
}
.location-menu .location-menu__header {
  display: flex;
  align-items: center;
  flex-wrap: norap;
  justify-content: space-between;
  flex-direction: row;
}
@media screen and (min-width: 1025px) {
  .location-menu .location-menu__header {
    display: none;
  }
}
.location-menu .location-menu__header .location-menu__title {
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px dashed #000;
  padding: 0 1em 0.5em 0;
  margin: 0 0 0.5em 0;
}
.location-menu .location-menu__header .location-menu__button {
  display: none;
  cursor: pointer;
  border: 1.5px solid #000;
  border-radius: 15px;
  padding: 0.5em 0.8em;
  margin: 0 0 0.5em 0;
  font-size: 10px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.location-menu .location-menu__list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1em;
  padding: 10px 0;
}
@media screen and (min-width: 1025px) {
  .location-menu .location-menu__list {
    display: block;
    position: absolute;
    left: 0;
  }
}
.location-menu .location-menu__item {
  font-size: 14px;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .location-menu .location-menu__item {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    width: 260px;
  }
}
.location-menu .location-menu__link {
  display: block;
}
@media screen and (max-width: 1024px) {
  .location-menu .location-menu__link::before {
    content: "";
    display: inline-block;
    --icon-size: 12px;
    width: var(--icon-size);
    height: var(--icon-size);
    background-color: #EF8F00;
    border-radius: 3px;
    margin-right: 0.3em;
  }
}
@media screen and (min-width: 1025px) {
  .location-menu .location-menu__link {
    background: #fff;
    display: block;
    font-size: 1.25em;
    text-align: center;
    line-height: 1;
    text-decoration: none;
    padding: 1em 3em 1em 0.5em;
    border: 3px solid #000;
    border-radius: 10px;
    transition: all 0.2s ease-in;
    position: relative;
    margin: 0;
    width: 100%;
  }
  .location-menu .location-menu__link:before, .location-menu .location-menu__link:after {
    content: "";
    position: absolute;
    transition: all 0.2s ease-in;
  }
  .location-menu .location-menu__link:before {
    width: 10px;
    height: 10px;
    right: 20px;
    top: 51%;
    transform: translateY(-40%) rotate(45deg);
    border-top: 2.5px solid #000;
  }
  .location-menu .location-menu__link:after {
    width: 24px;
    height: 2.5px;
    right: 18px;
    top: 53%;
    transform: translateY(-40%);
    background: #000;
  }
  .location-menu .location-menu__link:hover {
    background: #ff0 !important;
  }
  .location-menu .location-menu__link:hover:before {
    right: 12px;
  }
  .location-menu .location-menu__link:hover:after {
    right: 10px;
    width: 32px;
  }
  .location-menu .location-menu__link span {
    background: linear-gradient(transparent 50%, rgba(255, 255, 0, 0.5) 0%);
  }
}
.location-menu.js-scroll-fix {
  position: fixed;
  /* メニューが開いているときの地域メニューのスタイル */
}
@media screen and (max-width: 1024px) {
  .location-menu.js-scroll-fix {
    right: 0;
    bottom: 10px;
    width: 65px;
    height: 65px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .location-menu.js-scroll-fix {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .location-menu.js-scroll-fix:not(.js-menu-open) {
    cursor: pointer;
    z-index: 998;
    background: #FFF url(/common/img/company/location-menu.png) no-repeat center top/100% auto;
    overflow: hidden;
  }
  .location-menu.js-scroll-fix:not(.js-menu-open) .location-menu__title {
    position: absolute;
    margin: 0;
    padding: 0;
    background-color: #FFF;
    border: none;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 19px;
    line-height: 19px;
    font-size: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .location-menu.js-scroll-fix:not(.js-menu-open) .location-menu__title {
    height: 28px;
    line-height: 28px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .location-menu.js-scroll-fix .location-menu__list {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .location-menu.js-scroll-fix {
    top: 0;
  }
}
.location-menu.js-scroll-fix.js-menu-open {
  width: calc(100% - var(--menu-right-space));
  height: auto;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 998;
}
.location-menu.js-scroll-fix.js-menu-open #locationMenuBtn {
  display: block;
}
.location-menu.js-scroll-fix.js-menu-open .location-menu__list {
  display: inline-flex;
}

/*--- 地域リスト -------------------*/
.location-lists {
  --space: 45px;
  margin: 0 auto var(--space);
  width: 87%;
  min-width: 300px;
}
@media screen and (min-width: 768px) {
  .location-lists {
    --space: 65px;
  }
}
@media screen and (min-width: 768px) {
  .location-lists {
    width: 90%;
  }
}
@media screen and (min-width: 1025px) {
  .location-lists {
    width: 730px;
    margin-left: 370px;
  }
}
.location-lists .location-lists__item {
  padding-top: var(--space);
}
.location-lists .location-lists__title {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .location-lists .location-lists__title {
    font-size: 30px;
  }
}
.location-lists .location-lists__table {
  width: 100%;
  border-spacing: 0;
}
.location-lists .location-lists__table th,
.location-lists .location-lists__table td {
  text-align: left;
  font-weight: normal;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .location-lists .location-lists__table {
    margin: 10px 0;
  }
  .location-lists .location-lists__table tr,
  .location-lists .location-lists__table th,
  .location-lists .location-lists__table td {
    display: block;
  }
  .location-lists .location-lists__table th {
    background-color: #F2F2F2;
    padding: 0.3em;
  }
  .location-lists .location-lists__table td {
    border-bottom: 1px dotted #000;
    padding: 0.3em 0.3em 0.6em;
  }
}
@media screen and (min-width: 768px) {
  .location-lists .location-lists__table table {
    border-spacing: 0;
    border-collapse: collapse;
  }
  .location-lists .location-lists__table td,
  .location-lists .location-lists__table th {
    border-bottom: 1px dashed #000;
    padding: 1em 0.5em;
  }
  .location-lists .location-lists__table th {
    white-space: nowrap;
    width: 1%;
    vertical-align: top;
    padding-right: 2em;
  }
}
@media screen and (min-width: 768px) {
  .location-lists .location-lists__img-map-wrapper,
  .location-lists .location-lists__map-wrapper {
    margin-top: 10px;
  }
}
.location-lists .location-lists__img-map-wrapper .location-lists__img,
.location-lists .location-lists__map-wrapper .location-lists__img {
  position: relative;
  overflow: hidden;
  padding-top: 70%;
  height: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .location-lists .location-lists__img-map-wrapper .location-lists__img,
  .location-lists .location-lists__map-wrapper .location-lists__img {
    padding-top: 77%;
  }
}
.location-lists .location-lists__img-map-wrapper .location-lists__img img,
.location-lists .location-lists__map-wrapper .location-lists__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.location-lists .location-lists__img-map-wrapper .location-lists__map,
.location-lists .location-lists__map-wrapper .location-lists__map {
  position: relative;
  overflow: hidden;
  padding-top: 70%;
  height: 0;
}
@media screen and (min-width: 1025px) {
  .location-lists .location-lists__img-map-wrapper .location-lists__map,
  .location-lists .location-lists__map-wrapper .location-lists__map {
    padding-top: 77%;
  }
}
.location-lists .location-lists__img-map-wrapper .location-lists__map iframe,
.location-lists .location-lists__map-wrapper .location-lists__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .location-lists .location-lists__img-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .location-lists .location-lists__map-wrapper .location-lists__map {
    padding-top: 40%;
  }
}

/*--- ドキュメント系 -------------------*/
.sp-none__tab-none__pc-inlineB {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .sp-none__tab-none__pc-inlineB {
    display: inline-block !important;
  }
}

.dot li {
  position: relative;
  padding: 0 0 0.2em 1em;
}
.dot li::before {
  content: ".";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}/*# sourceMappingURL=company_about.css.map */