/*****************************************
*
* 事業内容
*
******************************************/


/*------------------------------------------*/
/* 作業フロー
/*------------------------------------------*/

.business-flow img {
  width: 100%;
}

.business-flow .scrollArea .inner {
  background: white;
}

@media screen and (max-width: 833px) {

  /*スクロールバーのstyle*/
  .business-flow .scrollArea::-webkit-scrollbar {
    width: 16px;
    height: 16px;
  }

  .business-flow .scrollArea::-webkit-scrollbar-track {
    background-color: #ccc;
  }

  .business-flow .scrollArea::-webkit-scrollbar-thumb {
    background-color: var(--color-light-blue);
    border-radius: 10px;
  }

  /*FireFoxのみ適用*/
  @-moz-document url-prefix() {
    .business-flow .scrollArea {
      scrollbar-width: thin;
      scrollbar-color: #7F00FF #ccc;
    }
  }

  .business-flow .scrollArea {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    overflow-y: hidden;
    overflow-x: scroll;
  }

  .business-flow .scrollArea .inner {
    border-radius: 20px 20px 0 0;
    width: 800px;
    padding: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .business-flow .scrollArea .inner {
    background: white;
    border-radius: 20px;
    width: 100%;
    padding: 40px;
  }
}


/*------------------------------------------*/
/* 共通
/*------------------------------------------*/

.business-submain {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

@media screen and (min-width: 834px), print {
  .business-submain {
    grid-template-columns: calc(calc(640 / 1400) * 100vw) 1fr;
    row-gap: 0;
    column-gap: calc(calc(80 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .business-submain {
    grid-template-columns: 640px 1fr;
    column-gap: 80px;
  }
}

/* 画像 --------------------------------*/
.business-submain figure img {
  width: 100%;
  border-radius: 20px;
}

@media screen and (max-width: 833px) {
  .business-submain figure {
    max-width: 640px;
    margin: 0 auto;
  }
}

/* 見出し --------------------------------*/
.business-submain .content {
  text-align: left;
}

.business-heading {
  line-height: 1.1;
}

.business-heading .en {
  font-family: var(--font-oswald);
  font-size: 5rem;
}

.business-in .business-heading .en {
  color: var(--color-green);
}

.business-storage .business-heading .en {
  color: var(--color-yellow);
}

.business-out .business-heading .en {
  color: var(--color-red);
}

.business-heading .jp {
  display: inline-block;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  padding: 2px 5px;
  margin-top: 20px;
}

.business-in .business-heading .jp {
  background: var(--color-green);
}

.business-storage .business-heading .jp {
  background: var(--color-yellow);
}

.business-out .business-heading .jp {
  background: var(--color-red);
}

@media screen and (min-width: 834px), print {
  .business-heading .en {
    font-size: 7rem;
  }

  .business-heading .jp {
    font-size: 1.4rem;
  }
}

/* キャッチコピー --------------------------------*/
.business-submain .catchcopy {
  font-weight: bold;
  line-height: 2;
  margin-top: 40px;
}

.business-submain .catchcopy+.catchcopy {
  margin-top: 10px;
}

@media screen and (min-width: 834px), print {
  .business-submain .catchcopy {
    margin-top: 60px;
  }

  .business-submain .catchcopy+.catchcopy {
    margin-top: 20px;
  }
}

/* コピー --------------------------------*/
.business-subcopy .text-en {
  margin-top: 1em;
}

/*------------------------------------------*/
/* 共通 写真
/*------------------------------------------*/

.business-photo {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
}

.business-photo figure img {
  width: 100%;
}

@media screen and (max-width: 833px) {
  .business-photo-wrap .business-photo+.business-photo {
    margin-top: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .business-photo-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: calc(calc(80 / 1400) * 100vw);
  }

  .business-photo {
    width: calc(calc(600 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .business-photo-wrap {
    column-gap: 80px;
  }

  .business-photo {
    width: 600px;
  }
}

/* 見出し --------------------------------*/
.business-photo .heading-wrap {
  display: flex;
  align-items: center;
  background: var(--color-main);
  padding: 10px;
}

.business-photo .heading-wrap .num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--color-main);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 0.1em;
  margin-right: 10px;
}

.business-photo .heading-wrap .heading {
  text-align: left;
  color: white;
}

.business-photo .heading-wrap .heading .jp {
  font-size: 1.1rem;
  font-weight: bold;
}

.business-photo .heading-wrap .heading .en {
  font-family: var(--font-oswald);
  font-size: 0.9rem;
}

@media screen and (min-width: 834px), print {
  .business-photo .heading-wrap {
    height: calc(calc(120 / 1400) * 100vw);
    padding: calc(calc(20 / 1400) * 100vw);
  }

  .business-photo .heading-wrap .num {
    width: calc(calc(80 / 1400) * 100vw);
    height: calc(calc(80 / 1400) * 100vw);
    font-size: calc(calc(48 / 1400) * 100vw);
    margin-right: calc(calc(20 / 1400) * 100vw);
  }

  .business-photo .heading-wrap .heading .jp {
    font-size: calc(calc(22 / 1400) * 100vw);
  }

  .business-photo .heading-wrap .heading .en {
    font-size: calc(calc(16 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .business-photo .heading-wrap {
    height: 120px;
    padding: 20px;
  }

  .business-photo .heading-wrap .num {
    width: 80px;
    height: 80px;
    font-size: 3rem;
    margin-right: 20px;
  }

  .business-photo .heading-wrap .heading .jp {
    font-size: 1.4rem;
  }

  .business-photo .heading-wrap .heading .en {
    font-size: 1rem;
  }
}


/*------------------------------------------*/
/* 共通 表
/*------------------------------------------*/

.business-flex {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}

@media screen and (min-width: 834px), print {
  .business-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
    column-gap: 40px;
  }
}


/*------------------------------------------*/
/* 搬入
/*------------------------------------------*/

/* box --------------------------------*/
.business-in__box {
  padding: 20px 0;
}

.business-in__box .inner {
  position: relative;
  display: inline-block;
  background: white;
  border: solid 2px var(--color-main);
  border-radius: 20px;
  color: var(--color-main);
  padding: 10px;
}

.business-in__box .jp {
  font-size: 1.1rem;
  font-weight: bold;
}

.business-in__box .en {
  font-size: 0.8rem;
}

@media screen and (max-width: 833px) {
  .business-in__box .inner {
    width: 100%;
  }
}

@media screen and (min-width: 834px), print {
  .business-in__box {
    padding: 100px 0;
  }

  .business-in__box .inner {
    padding: 20px 40px;
  }

  .business-in__box .jp {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .business-in__box .en {
    font-size: 1.1rem;
  }
}


/* 写真 --------------------------------*/
@media screen and (max-width: 833px) {
  .business-in .business-photo {
    --calc-business-photo: calc(calc(60 / 375) * 100vw);
    width: calc(100% - var(--calc-business-photo));
    margin-right: 60px;
  }
}

/* 矢印 --------------------------------*/

@media screen and (max-width: 833px) {
  .business-in__arrow-1 {
    display: inline-block;
    background: url('../img/business/business_line_sp_large.svg') no-repeat;
    background-size: 100%;
    aspect-ratio: 46/398;
    width: calc(calc(46 / 375) * 100vw);
    height: auto;
    position: absolute;
    top: calc(calc(400 / 375) * -100vw);
    right: 10px;
  }

  .business-in__arrow-2,
  .business-in__arrow-3 {
    display: inline-block;
    background: url('../img/business/business_line_sp.svg') no-repeat;
    background-size: 100%;
    aspect-ratio: 36/128;
    width: calc(calc(36 / 375) * 100vw);
    height: auto;
    position: absolute;
    right: 21px;
  }

  .business-in__arrow-2 {
    top: calc(calc(130 / 375) * -100vw);
  }

  .business-in__arrow-3 {
    bottom: calc(calc(130 / 375) * -100vw);
    transform: scaleY(-1);
  }
}

@media screen and (min-width: 834px), print {

  .business-in__arrow-1,
  .business-in__arrow-2,
  .business-in__arrow-3 {
    display: inline-block;
    background: url('../img/business/business_line_pc.svg') no-repeat;
    background-size: 100%;
    aspect-ratio: 24/96;
    width: 24px;
    height: auto;
    position: absolute;
  }

  .business-in__arrow-1,
  .business-in__arrow-2 {
    top: -100px;
  }

  .business-in__arrow-1 {
    left: 40px;
  }

  .business-in__arrow-2 {
    right: 40px;
  }

  .business-in__arrow-3 {
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    transform: scaleY(-1) translateX(-50%);
  }
}


/*------------------------------------------*/
/* 保管
/*------------------------------------------*/

/* 番号なしテキスト調整 --------------------------------*/
.business-storage .control .heading-wrap {
  padding-left: 20px;
}

@media screen and (min-width: 834px), print {
  .business-storage .control .heading-wrap {
    padding-left: 40px;
  }
}


/*------------------------------------------*/
/* 搬出
/*------------------------------------------*/

/* 5のテキスト調整 --------------------------------*/
.business-out .heading-wrap .heading.box .cont-min .jp {
  font-size: 0.6rem;
}

.business-out .heading-wrap .heading.box .cont-min .en {
  font-size: 0.6rem;
}

.business-out .heading-wrap .heading.box .cont-min span {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: white;
  color: var(--color-main);
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1;
  padding: 0 0 0 3px;
}

@media screen and (max-width: 833px) {
  .business-out .heading-wrap .heading.box .cont-min {
    margin-top: 0.5em;
  }
}

@media screen and (min-width: 834px), print {
  .business-out .heading-wrap .heading.box {
    display: grid;
    grid-template-columns: calc(calc(260 / 1400) * 100vw) 1fr;
    align-items: center;
  }

  .business-out .heading-wrap .heading.box .cont {
    transform: scaleY(1.2);
    transform-origin: left center;
  }

  .business-out .heading-wrap .heading.box .cont .jp {
    font-size: calc(calc(19 / 1400) * 100vw);
    letter-spacing: -0.05em;
  }

  .business-photo .heading-wrap .heading.box .cont .en {
    font-size: calc(calc(14 / 1400) * 100vw);
  }

  .business-out .heading-wrap .heading.box .cont .jp .spacing-lr {
    margin-left: -0.2em;
    margin-right: -0.3em;
  }

  .business-out .heading-wrap .heading.box .cont .jp .spacing-l {
    margin-left: -0.3em;
  }

  .business-out .heading-wrap .heading.box .cont-min .jp,
  .business-out .heading-wrap .heading.box .cont-min .en {
    font-size: calc(calc(12 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .business-out .heading-wrap .heading.box {
    grid-template-columns: 260px 1fr;
  }

  .business-out .heading-wrap .heading.box .cont .jp {
    font-size: 1.2rem;
    letter-spacing: -0.05em;
  }

  .business-photo .heading-wrap .heading.box .cont .en {
    font-size: 0.9rem;
  }

  .business-out .heading-wrap .heading.box .cont .jp .spacing-lr {
    margin-left: -0.2em;
    margin-right: -0.3em;
  }

  .business-out .heading-wrap .heading.box .cont .jp .spacing-l {
    margin-left: -0.3em;
  }

  .business-out .heading-wrap .heading.box .cont-min .jp,
  .business-out .heading-wrap .heading.box .cont-min .en {
    font-size: 0.8rem;
  }
}

/* 6a --------------------------------*/
.business-out .business-photo.images-6a {
  margin-top: 20px;
}

.business-out .business-photo.images-6a-2 {
  margin-top: 10px;
}

@media screen and (min-width: 834px), print {
  .business-out .business-photo.images-6a {
    margin-top: 80px;
  }

  .business-out .business-photo.images-6a-2 {
    margin-top: calc(calc(20 / 1400) * 100vw);
  }

  .business-out .business-photo.images-6a,
  .business-out .business-photo.images-6a-2 {
    width: calc(calc(840 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .business-out .business-photo.images-6a-2 {
    margin-top: 20px;
  }

  .business-out .business-photo.images-6a,
  .business-out .business-photo.images-6a-2 {
    width: 840px;
  }
}

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

.business-maps {
  position: relative;
}

/* 画像 --------------------------------*/
.business-maps figure img {
  width: 100%;
}

.business-maps .image-2 {
  position: relative;
  width: 100%;
  padding-top: 20px;
  margin: 0 auto;
}

.business-maps .image-2::before {
  content: '';
  display: inline-block;
  background: var(--color-gray);
  width: 2px;
  height: calc(calc(410 / 767) * 100vw);
  position: absolute;
  top: 10px;
  left: calc(calc(300 / 767) * 100vw);
}

@media screen and (min-width: 834px), print {
  .business-maps .image-1 {
    display: grid;
    grid-template-columns: calc(calc(640 / 1400) * 100vw) 1fr;
    column-gap: calc(calc(100 / 1400) * 100vw);
  }

  .business-maps .image-2 {
    width: calc(calc(640 / 1400) * 100vw);
    margin: 0 auto;
    padding-top: 40px;
  }

  .business-maps .image-2::before {
    height: calc(calc(410 / 1400) * 100vw);
    left: calc(calc(250 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .business-maps .image-1 {
    grid-template-columns: 640px 1fr;
    column-gap: 100px;
  }

  .business-maps .image-2 {
    width: 640px;
  }

  .business-maps .image-2::before {
    height: 410px;
    left: 250px;
  }
}


/* content --------------------------------*/

@media screen and (max-width: 833px) {
  .business-maps .content {
    margin-top: 30px;
  }
}

@media screen and (min-width: 834px), print {
  .business-maps .content {
    width: calc(calc(540 / 1400) * 100vw);
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media screen and (min-width: 1400px), print {
  .business-maps .content {
    width: 540px;
  }
}

/* group --------------------------------*/
.business-maps .content .group+.group {
  margin-top: 30px;
}

@media screen and (min-width: 834px), print {
  .business-maps .content .group+.group {
    margin-top: calc(calc(60 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .business-maps .content .group+.group {
    margin-top: 60px;
  }
}

/* 見出し --------------------------------*/
.business-maps .content .heading {
  position: relative;
  text-align: left;
  color: var(--color-main);
  font-weight: bold;
  padding-left: 60px;
  margin-bottom: 20px;
}

.business-maps .content .heading .jp {
  font-size: 1.1rem;
}

.business-maps .content .heading .en {
  font-size: 0.9rem;
}

.business-maps .content .heading::before {
  content: '';
  display: inline-block;
  background: var(--color-main);
  border-radius: 6px;
  aspect-ratio: 1/1;
  width: 50px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.business-maps .content .heading::after {
  content: '';
  display: inline-block;
  aspect-ratio: 50/25;
  width: 35px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
}

.business-maps .content .truck .heading::after {
  background: url('../img/business/business_maps_truck.svg') no-repeat;
  background-size: 100%;
}

.business-maps .content .ship .heading::after {
  background: url('../img/business/business_maps_ship.svg') no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 834px), print {
  .business-maps .content .heading {
    padding-left: calc(calc(90 / 1400) * 100vw);
    margin-bottom: calc(calc(40 / 1400) * 100vw);
  }

  .business-maps .content .heading .jp,
  .business-maps .content .heading .en {
    font-size: calc(calc(22 / 1400) * 100vw);
  }

  .business-maps .content .heading::before {
    width: calc(calc(70 / 1400) * 100vw);
  }

  .business-maps .content .heading::after {
    width: calc(calc(50 / 1400) * 100vw);
    left: calc(calc(10 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .business-maps .content .heading {
    padding-left: 90px;
    margin-bottom: 40px;
  }

  .business-maps .content .heading .jp,
  .business-maps .content .heading .en {
    font-size: 1.4rem;
  }

  .business-maps .content .heading::before {
    width: 70px;
  }

  .business-maps .content .heading::after {
    width: 50px;
    left: 10px;
  }
}

/* テキスト --------------------------------*/
.business-maps .content .text-en {
  margin-top: 1em;
}

@media screen and (min-width: 834px), print {

  .business-maps .content .text,
  .business-maps .content .text-en {
    font-size: calc(calc(18 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {

  .business-maps .content .text,
  .business-maps .content .text-en {
    font-size: 1.1rem;
  }
}


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


.mapWrap {
  width: 100%;
  margin: 0;
}

/* 表示エリア --------------------------------*/
.mapViewport {
  width: 100%;
  aspect-ratio: 640/700;
  /* 表示領域の比率（必要に応じて調整） */
  border: 1px solid #ccc;
  border: 0;
  overflow: hidden;
  /* はみ出した画像を隠す */
  position: relative;
  /* アイコン等の absolute 基準 */
  touch-action: none;
  /* スマホのスクロール/ピンチ挙動制御用 */
  background: var(--color-back);
}

/* 地図画像 --------------------------------*/
.mapImage {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  /* 左上起点 */
  transform-origin: 0 0;
}

/* アイコン --------------------------------*/
.mapIcon {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--color-main);
  border-radius: 6px;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
}

.business-maps .mapIcon::before {
  content: '';
  display: inline-block;
  background: url('../img/business/business_maps_truck.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 50/25;
  width: 35px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 834px), print {
  .mapIcon {
    width: 70px;
    height: 70px;
    top: 20px;
    left: 20px;
  }

  .business-maps .mapIcon::before {
    width: 50px;
  }
}

/* ズーム操作ボタン --------------------------------*/
.mapControls--overlay {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 30;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mapControls--overlay button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

/* ホバー/アクティブの軽い反応 */
.mapControls--overlay button:hover {
  background: rgba(255, 255, 255, 1);
}

.mapControls--overlay button:active {
  transform: translateY(1px);
}

/* キーボード操作時の見やすさ */
.mapControls--overlay button:focus-visible {
  outline: 2px solid rgba(10, 102, 168, .5);
  outline-offset: 2px;
}

@media screen and (min-width: 834px), print {
  .mapControls--overlay {
    right: 14px;
    bottom: 14px;
  }

  .mapControls--overlay button {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    font-size: 20px;
  }
}