@charset "UTF-8";

/*==================================================
共通
====================================================*/
.showa-koyu {
  --grey-color: #E2E6EA;
  --light-grey-color: #C5CFDB;
  --dark-grey-color: #373737;
  --light-grey-color2: #ACB0B4;
  --black-color: #000000;
  --white-color: #ffffff;
  --dark-blue-color: #003872;
  --light-blue-color: #1480FF;
}
html,
body {
  overflow-x: hidden;
}

.sp {
  display: none;
}
.pc{
  display: block;
}
/*==================================================
アニメーション
====================================================*/
@keyframes fuwa{
  0% {
      transform: translate(-2px, 5px);
    }

    100% {
      transform: translate(0, -5px);
    }
}
  @keyframes load {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
  }
/*==================================================
イントロ
====================================================*/
.l-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-top: 4vw;
  margin: auto;
  background-color: #fff;
}
.l-loading__circle {
  width: 30px;
  height: 30px;
  margin: 60px auto;
}
.l-loading__circle {
  position: relative;
  overflow: hidden;
  font-size: 10px;
  text-indent: -100%;
  background: linear-gradient(to right, #6ea9cb 10%, rgba(110, 169, 203, 0) 42%);
  border-radius: 50%;
  transform: translateZ(0);
  animation: load 1.4s infinite linear;
}
.l-loading__circle::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 80%;
  margin: auto;
  content: "";
  background: #fff;
  border-radius: 50%;
}
.l-loading__text {
  font-family: Lexend, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--dark-blue-color);
  font-size: 32px;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.02em;
}
#loading {
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

#loading.loaded {
  opacity: 0;
  pointer-events: none;
}
/*==================================================
header
====================================================*/
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: block;
  width: 100%;
}
header .header__inner{
  display: flex;
  justify-content: space-between;
}
header .header__left {
  height: 29px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 26px 0 26px 30px;
}
header .header__right{
  position: fixed;
  top: 0;
  right: 0;
  width: 81px;
  height: 81px;
  background: var(--dark-blue-color);
  z-index: 10;
}
header .header__logo__kobelco{
  width: 98px;
  height: auto;
  padding-right: 20px;
}
header .header__logo__showakoyu {
  width: 214px;
  height: auto;
  border-left: 1px solid #fff;
  padding-left: 20px;
}
#company header .header__logo__showakoyu {
  border-left: 1px solid #000;
}

header .header__right{
  cursor: pointer;
}

header button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

header button span{
  position: absolute;
  height: 2px;
  width: 50%;
  background: var(--white-color);
  display: inline-block;
  transition: all .4s;
  left: 20px;
}

header button span:nth-of-type(1){
  top: 27px;
}
header button span:nth-of-type(2) {
  top: 48px;
}
header .nav--wrapper{
  width: 100%;
  background: var(--dark-blue-color);
  height: 1000px;
  position: fixed;
  top: 0;
}

#header.resize{
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3);
  transition: .4s;
}

/* ハンバーガーメニュー展開時背景固定 */
html.is-fixed,
html.is-fixed body {
  height: 100%;
  overflow: hidden;
}

#nav__bg{
  width: 100%;
  height: 100vh;
  background: var(--dark-blue-color);
  mix-blend-mode: multiply;
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  opacity: 0.96;
}
#nav__bg.open{
  display: block;
}
nav .nav__inner {
  background: var(--white-color);
  width: 476px;
  padding: 68px 121px 46px 98px;
  position: fixed;
  top: -400%;
  right: 0;
  max-height: 622px;
  transition: all 1s ease-in-out;
  overflow: auto;
  /* -webkit-overflow-scrolling: touch; */
  /* overscroll-behavior: contain; */
}

nav .nav__inner.active{
  top: 0;
}

nav .nav__top {
  display: flex;
  justify-content: flex-start;
  width: 477px;
}
nav .nav__left {
  width: 50%;
}
nav .nav__right {
  width: 50%;
}
nav .nav__title {
  min-height: 124px;
  line-height: 1;
}
nav .nav__title span {
  display: block;
}
nav .nav__title span:first-child {
  font-size: 0.875rem;
}
nav .nav__title .mb-16{
  margin-bottom: 16px;
  display: block;
}

nav .nav__title span:nth-of-type(2) {
  font-size: 1.875rem;
  font-family: "Lexend", system-ui;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
nav .nav__title a {
  font-size: 0.875rem;
  color: var(--dark-blue-color);
  font-weight: bold;
}

nav .nav__title--service,
nav .nav__title--company{
  cursor: pointer;
}

nav .nav__title a:hover{
  color: var(--light-blue-color);
}

nav .nav__list li {
  margin-bottom: 30px;
  line-height: 1;
}
nav .nav__list li:hover::before {
  color: var(--light-blue-color);
}
nav .nav__list li a:hover {
  color: var(--light-blue-color);
}
nav .nav__list li:last-child{
  margin-bottom: 0;
}
nav .nav__list li::before{
  content: "-";
  margin-right: 4px;
}
nav .nav__bottom {
  margin-right: -70px;
}
nav .nav__bottom ul{
  display: flex;
  justify-content: space-between;
  width: 388px;
  font-size: 0.625rem;
  padding-top: 166px;
  margin: 0 0 0 auto;
}
nav .nav__bottom ul li:hover::before {
  color: var(--light-blue-color);
}
nav .nav__bottom ul a:hover {
  color: var(--light-blue-color);
}
nav .nav__bottom ul li::before{
  content: "-";
  margin-right: 4px;
}
/* ハンバーガーメニュー */
#drawer_toggle.open span {
  top: 38px;
  left: 19px;
  margin: 0;
  width: 50%;
}
#drawer_toggle.open span:first-child{
  transform: rotate(24deg);
}
#drawer_toggle.open span:last-child {
  transform: rotate(-24deg);
}

/*==================================================
footer
====================================================*/
footer .footer--inner {
  background: var(--grey-color);
  font-size: 14px;
  padding: 30px 86px 27px 0;
}
footer .footer--inner ul {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 0 auto;
}
footer .footer--inner ul li {
  margin-left: 40px;
}
footer .footer--inner ul li::before{
  content: "-";
  margin-right: 6px;
}

footer .footer--copy {
  font-size: 0.75rem;
  background: var(--dark-grey-color);
  text-align: center;
  color: var(--white-color);
  padding: 46px 0 35px;
  letter-spacing: 0.1em;
}

/*==================================================
コンテンツ
====================================================*/

body{
  height: 100%;
  min-height: 100vh;
  font-family: "Noto Sans JP", "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 2;
  color: #000;
  scroll-behavior: smooth;
}

/*==================================================
会社情報
====================================================*/
#company .mvarea{
  background: url(../img/company/mainvisual_pc.webp) no-repeat top right / contain;
}
#company .mvarea{
  width: 100%;
  min-width: auto;
  height: min(calc(700 / 1440 * 100vw),700px);
  position: relative;
}

#company .mvarea__inner {
  position: relative;
  height: 100%;
  max-width: min(calc(1040 / 1440 * 100vw), 1040px);
  margin: 0 auto;
}

#company .mvarea__title {
  position: absolute;
  bottom: min(calc(250 / 1440 * 100vw), 250px);
  left: calc(50vw - calc(786 / 1440 * 100vw));
}

#company .mvarea h1 span {
  display: block;
  color: var(--dark-blue-color);
}
#company .mvarea h1 span:first-child{
  font-size: 4.875rem;
  font-weight: 600;
  font-family: "Lexend", system-ui;
  line-height: 1;
  margin-bottom: calc(36 / 1440 * 100vw);
}
#company .title span:first-child {
  font-family: "Lexend", system-ui;
  color: var(--dark-blue-color);
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1;
}
#company .title span:last-child{
  font-weight: bold;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  color: var(--dark-blue-color);
  line-height: 1;
}
#company .sec01__inner{
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
#company .sec01__title {
  text-align: center;
  margin: 0 auto;
}
#company .title span {
  display: block;
}
#company .sec01__title span:first-child {
  letter-spacing: -0.02em;
  margin-bottom: 34px;
}
#company .sec01__message{
  padding-bottom: 252px;
}
#company .sec01__message__lead{
  font-size: 1.25rem;
  color: var(--dark-blue-color);
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 60px;
  line-height: 1;
}
#company .sec01__message__text{
  font-size: 1rem;
  line-height: 2.285;
  letter-spacing: 0.04rem;
  font-weight: 600;
}
#company .sec02 {
  background: var(--dark-blue-color);
  width: 100%;
}
#company .sec02 .title span:first-child {
  color: var(--white-color);
  margin-bottom: 30px;
}
#company .sec02 .title span:last-child {
  color: var(--white-color);
}
#company .sec02__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
#company .sec02__box{
  display: flex;
  justify-content: space-between;
  background-color: var(--dark-blue-color);
  position: relative;
}
#company .sec02__title{
  margin-bottom: calc(38 / 1440 * 100vw);
}
#company .sec02__img img{
  width: 708px;
  position: absolute;
  top: calc(-130 / 1440 * 100vw);
  left: 0;
}
#company .sec02__message{
  width: 505px;
  padding: 145px 106px 160px 0;
}
#company .sec02__message__text p{
  color: var(--white-color);
  font-size: 1rem;
  line-height: 2.285;
  letter-spacing: 0.01rem;
  text-align: justify;
  font-weight: 600;
}
#company #sec02__message--right{
  text-align: right;
}

@media screen and (max-width: 1440px) {
  #company .sec02__img img {
    width: calc(708 / 1440 * 100vw);
  }
  #company .sec02__message {
    width: min(calc(505 / 1440 * 100vw),505px);
    padding: calc(145 / 1440 * 100vw) calc(106 / 1440 * 100vw) calc(160 / 1440 * 100vw) 0;
  }
}
#company .sec03__inner {
  width: 100%;
  max-width: min(calc(1240 / 1440 * 100vw), 1240px);
  margin: 0 auto;
  padding: 120px 0;
}
#company .sec03__box--left{
  position: relative;
  z-index: 5;
}
#company .sec03__title h4 img {
  width: 292px;
}
#company .sec03__box{
  display: flex;
  width: min(calc(1240 / 1440 * 100vw), 1240px);
  justify-content: space-between;
  max-width: min(calc(1240 / 1440 * 100vw), 1240px);
  margin-left: min(calc(100 / 1440 * 100vw), 100px);
}
#company .sec03__box .sec03__title{
  width: min(calc(592 / 1440 * 100vw),592px);
}
#company .sec03__img{
  position: relative;
  width: 100%;
}
#company .sec03__img01{
  position: absolute;
  /* top: 70px; */
  top: 160px;
  left: min(calc(28 / 1440 * 100vw),28px);
}
#company .sec03__img01 img{
  width: 670px;
}
#company .sec03__img02 {
  position: absolute;
  /* bottom: -246px; */
  bottom: -241px;
  left: -140px;
  z-index: 1;
}
#company .sec03__img02 img {
  width: 503px;
}
#company .sec03__list {
  margin-top: min(calc(60 / 1440 * 100vw), 60px);
}
#company .sec03__list--item{
  display: flex;
  width: min(calc(592 / 1440 * 100vw), 592px);
  border-top: 0.8px solid var(--light-grey-color2);
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  box-sizing: border-box;
}
#company .sec03__list--item{
  font-size: 1rem;
  line-height: 1.8;
  min-height: 44px;
}
#company .sec03__list--item:last-child{
  border-bottom: 0.8px solid var(--light-grey-color2);
}
#company .sec03__list__lead{
  width: min(calc(116 / 1440 * 100vw), 116px);
  font-weight: 600;
}
#company .sec03__list__body .lh{
  line-height: 1.8;
}
#company .sec03__list__body .wh{
  white-space: nowrap;
}
#company .sec03__list__body .wh:first-child{
  padding-bottom: 10px;
}
#company .sec03__list__body .wh:nth-child(2) {
  padding-top: 10px;
}

#company .sec03__list__body p:nth-of-type(2){
  border-top: 0.8px solid var(--light-grey-color2);
  width: min(calc(476 / 1440 * 100vw), 476px);
}
#company .sec03 .title span:first-child{
  margin-bottom: min(calc(40 / 1440 * 100vw), 40px);
}

#company .sec03__list--t {
  display: inline-block;
  width: min(calc(120 / 1440 * 100vw), 120px);
}
#company .sec03__list__body {
  color: var(--black-color);
  width: min(calc(476 / 1440 * 100vw), 476px);
}
@media screen and (max-width: 1100px) {
#company .sec03__list--item {
    min-height: 44px;
    font-size: clamp(13px, calc(16 / 1100* 100vw), 16px);
  }
#company .sec03__list--item .sp{
  display: block;
}
}
#company .sec04 {
  background: var(--grey-color);
  padding: 128px 0;
  position: relative;
}
#company .sec04__inner {
  max-width: min(calc(1040 / 1440 * 100vw), 1040px);
  width: 100%;
  margin: 0 auto;
}
#company .sec04__bird img{
  width: 412px;
}
#company .sec04__bird{
  position: absolute;
  top: -182px;
  left: calc(50vw + min(calc(410 / 1440 * 100vw),410px));
  z-index: 2;
  transform-origin: center center;
  animation: fuwa 2.0s infinite ease-in-out alternate;
}
#company .sec04__wave--01 img {
  width: 180px;
}
#company .sec04__wave--01{
  position: absolute;
  top: 286px;
  left: calc(50vw + 384px);
  transform-origin: center center;
  animation: fuwa 1.5s infinite ease-in-out alternate;
}
#company .sec04__wave--02 img {
  width: 114px;
}
#company .sec04__wave--02 {
  position: absolute;
  top: 555px;
  left: calc(50vw - min(calc(700 / 1440 * 100vw),650px));
  transform-origin: center center;
  animation: fuwa 1.5s infinite ease-in-out alternate;
}
#company .sec04__wave--03 img {
  width: min(calc(477 / 1440 * 100vw), 477px);
}
#company .sec04__wave--03 {
  position: absolute;
  bottom: 77px;
  left: calc(50vw + 110px);
  transform-origin: center center;
  animation: fuwa 1.5s infinite ease-in-out alternate;
}
#company .sec04__boat img {
  width: min(calc(295 / 1440 * 100vw), 295px);
}
#company .sec04__boat {
  position: absolute;
  bottom: 140px;
  left: calc(50vw + 314px);
  transform-origin: center center;
  animation: fuwa 1.5s infinite ease-in-out alternate 0.2s;
}

#company .sec04__title {
  margin-bottom: 110px;
}
#company .sec04 .title span:first-child {
  margin-bottom: 40px;
}

#company .sec04__list dl {
  display: flex;
  justify-content: space-between;
  padding-bottom: 77px;
  position: relative;
  z-index: 1;
}
#company .sec04__list dl dt span {
  display: inline-block;
  vertical-align: baseline;
}
#company .sec04__list dl dt span:first-child{
  font-family: "Lexend", system-ui;
  color: var(--dark-blue-color);
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: 0.01em;
}
#company .sec04__list dl dt span:nth-child(2){
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 0.7;
  margin-left: calc(10 / 1440 * 100vw);
  margin-right: calc(10 / 1440 * 100vw);
}
#company .sec04__list dl dt span:last-child {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: 0.04em;
}
#company #sec04__list--small dt span:first-child{
  font-size: 2.4375rem;
}
#company #sec04__list--small dt span:nth-child(2){
  font-size: 1.375rem;
  margin-left: 0;
  margin-right: 0;
}
#company #sec04__list--small dt span:last-child {
  font-size: 1.375rem;
}
#company #sec04__list--small dt::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 7px;
  width: 16px;
  height: 16px;
  background: #0047A3;
  border-radius: 50%;
}
#company .sec04__list #sec04__list--2003 {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.9;
}
#company #sec04__list--small dd{
  padding-top: 9px;
}
#company .sec04__list dt {
  width: min(calc(380 / 1440 * 100vw), 380px);
  padding-left: min(calc(53 / 1440 * 100vw), 53px);
  position: relative;
}
#company .sec04__list dt::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 30px;
  height: 30px;
  background: var(--light-blue-color);
  border-radius: 50%;
}
#company .sec04__list dd {
  width: min(calc(590 / 1440 * 100vw), 590px);
  font-size: 1rem;
  line-height: 2.4285;
  padding-top: 28px;
}
#company .sec04__list ul {
  position: relative;
}
#company .sec04__list li{
  position: relative;
}
#company .sec04__list--lead {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1;
}
#company #sec04__list--1980{
  margin-top: 55px;
  margin-bottom: 16px;
  display: block;
}
#company .sec04__list--line {
  position: absolute;
  left: 13.5px;
  top: 8px;
  width: 3px;
  height: 100%;
  background: var(--white-color);
}
.dotted-line {
  position: absolute;
  left: 13.5px;
  top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dot {
  width: 3px;
  height: 3px;
  background-color: var(--black-color);
  border-radius: 50%;
  margin: 3.5px 0;
}
/* animation */
#company .sec04__list li dl {
  opacity: 0;
  transition: all 800ms 200ms;
  translate: 0 40px;
}
#company .sec04__list li.is-inview dl {
  opacity: 1;
  translate: 0 0;
}
/* /animation */
#company .sec05{
  background: var(--dark-blue-color);
  padding:87px 0 72px 0;
}
#company .sec05 .title{
  text-align: center;
  margin-bottom: 67px;
}
#company .sec05 .title span {
  color: var(--white-color);
}
#company .sec05 .title span:first-child {
  margin-bottom: 24px;
}
#company .sec05__inner {
  max-width: 1040px;
  width: min(calc(1032 / 1440 * 100vw),100vw);
  margin: 0 auto;
}

#company .sec05__map {
  margin: 0 auto;
  position: relative;
}
#company .sec05__map--tree{
  position: absolute;
  bottom: -36px;
  right: -36px;
}
#company .sec05__map--tree img{
  width: 80px;
  height: 80px;
}
#company .sec05__map--note{
  position: absolute;
  top: 100%;
  right: 50px;
  color: var(--white-color);
  font-size: 0.75rem;
  display: block;
  padding: 0.5em 0;
}
#company .sec05__map--img img{
  width: 100%;
}
#company .sec05__list{
  margin-top: 48px;
  color: var(--white-color);
  font-size: 1rem;
  letter-spacing: 0.08em;
}
#company .sec05__list li{
  margin-bottom: 8px;
}
#company .sec05__list dl {
  display: flex;
  width: calc(1032 / 1440 * 100vw);
  justify-content: flex-start;
  line-height: 1.714;
}
#company .sec05__list dd {
  font-weight: bold;
  width: 114px;
  margin-left: -0.5rem;
}
@media (hover: hover) {
  .sec05__map {
    transition: all 300ms;
  }

  .sec05__map:hover {
    opacity: 0.6;
  }
}

/*==================================================
SP
====================================================*/
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc{
    display: none;
  }
  /* イントロ */
  .l-loading__text {
    font-size: 1.375rem;
  }
  /* header */
  header .header__inner {
    height: calc(60 / 375 * 100vw);
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
  }
  #header.resize{
    background: rgba(255, 255, 255, 0.95);
  }

  header .header__left {
    display: block;
    padding: calc(9 / 375 * 100vw) 0 calc(10 / 375 * 100vw) calc(16 / 375 * 100vw);
  }
  header .header__logo__kobelco{
    width: calc(68 / 375 * 100vw);
    height: auto;
    margin-bottom: calc(8 / 375 * 100vw);
  }
  #company header .header__logo__showakoyu {
    border-left: none;
  }

  header .header__logo__showakoyu {
    width: calc(130 / 375 * 100vw);
    height: auto;
    border-left: none;
    padding-left: 0;
  }
  header .header__right{
  width: calc(60 / 375 * 100vw);
  height: calc(60 / 375 * 100vw);
  }
  header button span{
    width: calc(32 / 375 * 100vw);
    left: calc(14 / 375 * 100vw);
  }
  header button span:nth-of-type(1){
    top: calc(21 / 375 * 100vw);
  }
  header button span:nth-of-type(2) {
    top: calc(37 / 375 * 100vw);
  }
  header .nav--wrapper {
    width: 100%;
  }

  nav {
    padding: 0;
    height: 100vh;
    max-height: none;
    padding: 70px 0 0 28px;
    width: calc(351 / 375 * 100vw);
    box-sizing: border-box;
    position: fixed;
    right: 0;
    top: -400%;
    /* transition: all 0.6s; */
  }
  nav .nav__inner {
    width: calc(351 / 375 * 100vw);
    padding: 70px 0 45px 28px;
    overflow: auto;
    box-sizing: border-box;
    max-height: none;
    height: 100%;
  }

  nav .nav__top {
    display: block;
    width: auto;
  }
  nav .nav__left {
    width: 100%;
  }
  nav .nav__right {
    margin: 0;
    margin-bottom: 65px;
    width: 100%;
  }
  nav .nav__left {
    margin-bottom: 65px;
  }
  nav .nav__list li {
    font-size: 1.25rem;
  }
  nav .nav__title {
    min-height: auto;
  }
  nav .nav__title span:nth-of-type(2) {
    font-size: 2.375rem;
    margin-top: 18.5px;
    margin-bottom: 28.5px;
    line-height: 1.13;
    letter-spacing: normal;
  }
  nav .nav__bottom {
    margin: 0;
  }
  nav .nav__bottom ul {
    display: block;
    font-size: 0.75rem;
    padding: 0;
    width: auto;
  }
  nav .nav__bottom ul li{
    margin-bottom: 6px;
  }
    /* ハンバーガーメニュー */
    #drawer_toggle.open span {
      top: calc(30 / 375 * 100vw);
      left: calc(13 / 375 * 100vw);
      margin: 0;
      width: calc(32 / 375 * 100vw);
    }

  /* footer */
  footer .footer--inner {
    background: var(--light-grey-color);
    font-size: 0.75rem;
    padding: 25px 0;
  }

  footer .footer--inner ul {
    display: block;
  }
  footer .footer--inner ul li {
    margin-bottom: 6px;
  }
  footer .footer--copy {
    padding: 25px 0;
  }
    /*==================================================
  会社情報
  ====================================================*/
  #company .mvarea {
    background: url(../img/company/mainvisual_sp.png) no-repeat top right / contain;
  }
  #company .mvarea {
    height: calc(315 / 375 * 100vw);
  }
  #company .mvarea__inner{
    max-width: 100%;
  }
  #company .mvarea h1 span:first-child{
    font-size: 2.375rem;
    margin-bottom: calc(17 / 375 * 100vw);
  }
  #company .title span:last-child {
    font-size: 0.875rem;
  }
  #company .mvarea__title {
    bottom: calc(32 / 375 * 100vw);
    left: calc(23 / 375 * 100vw);
  }
  #company .title span:first-child {
    font-size: 1.875rem;
  }

  #company .sec01__title span:first-child {
    margin-bottom: calc(20 / 375 * 100vw);
    margin-top: calc(52 / 375 * 100vw);
    line-height: 1.2;
  }
  #company .sec01__message__inner{
    width: calc(328 / 375* 100vw);
    margin: 0 auto;
  }
  #company .sec01__message__lead{
    font-size: 1.125rem;
    margin-top: calc(40 / 375* 100vw);
    margin-bottom: calc(20 / 375* 100vw);
    line-height: 1.4;
  }
  #company .sec01__message{
    padding-bottom: calc(128 / 375* 100vw);
  }
  #company .sec02__box{
    display: block;
  }
  #company .sec02__img img{
    width: calc(351 / 375 * 100vw);
    top: calc(-50 / 375 * 100vw);
    position: relative;
  }
  #company .sec02__title{
    text-align: center;
    margin-bottom: calc(40 / 375 * 100vw);
  }
  #company .sec02__message{
    width: calc(328 / 375 * 100vw);
    padding: 0 calc(20 / 375 * 100vw) calc(44 / 375 * 100vw);
    margin: 0 auto;
  }
  #company .sec02 .title span:first-child{
    margin-bottom: calc(24 / 375 * 100vw);
  }
  #company .sec03 .title span:first-child{
    margin-bottom: calc(24 / 375 * 100vw);
  }
  #company .sec03__inner{
    width: calc(328 / 375 * 100vw);
    margin: 0 auto;
    padding-top: calc(60 / 375 * 100vw);
    padding-bottom: 0;
    max-width: 100%;
  }
  #company .sec03__list{
    margin-top: calc(45 / 375 * 100vw);
  }
  #company .sec03__box {
    display: block;
    width: calc(328 / 375 * 100vw);
    margin-left: 0;
  }
  #company .sec03__box .sec03__title{
    text-align: center;
    width: calc(328 / 375 * 100vw);
}
  #company .sec03__list--item{
    width: calc(328 / 375 * 100vw);
    display: block;
    font-size: 14px;
    padding: 0;
    line-height: 1.4825;
  }
  #company .sec03__list__lead{
    font-weight: bold;
    width: 100%;
    padding: calc(10 / 375 * 100vw) 0;
  }
  #company .sec03__list__body p{
    padding:0 0 calc(16 / 375 * 100vw) 0;
  }
  #company #syozai .sec03__list__body p:first-child {
    padding-bottom: calc(12 / 375 * 100vw);
  }
  #company #syozai .sec03__list__body p:nth-child(2) {
    padding-top: calc(12 / 375 * 100vw);
  }
  #company .sec03 .indent{
    margin-left: 0;
  }
  #company .sec03__img01{
    position: relative;
    right: 0;
    padding-top: calc(60 / 375 * 100vw);
  }
  #company .sec03__img01 img{
    width: calc(350 / 375 * 100vw);
  }
  #company .sec03__img02{
    position: relative;
    left: calc(-20 / 375 * 100vw);
    bottom: calc(64 / 375 * 100vw);
    top: auto;
  }
  #company .sec03__img02 img{
    width: calc(200 / 375 * 100vw);
  }
  #company .sec03__list__body p:nth-of-type(2){
    width: auto;
  }
  #company .sec03__list--t{
    width: 100%;
  }
  #company .sec03__list__body{
    width: 100%;
  }
  #company .sec03__list__body .lh{
    line-height: 1.4825;
  }
  #company .sec04{
    padding: calc(100 / 375 * 100vw) 0 calc(170 / 375 * 100vw);
    margin-top: calc(-133 / 375 * 100vw);
  }
  #company .sec04__inner{
    width: calc(351 / 375 * 100vw);
    max-width: 100%;
  }
  #company .sec04__title{
    text-align: center;
    margin-bottom: calc(45 / 375 * 100vw);
  }
  #company .sec04__list dl{
    display: block;
  }
  #company .sec04__list dl dt span:first-child{
    font-size: 1.875rem;
    letter-spacing: 0.04em;
  }
  #company .sec04__list dl dt span:nth-child(2){
    font-size: 1.375rem
  }
  #company .sec04__list dl dt span:last-child{
    font-size: 0.875rem;
  }
  #company .sec04__list--lead{
    font-size: 1.125rem;
  }
  #company .sec04 .title span:first-child{
    margin-bottom: calc(24 / 375 * 100vw);
  }
  #company .sec04__list--line{
    left: 8.5px;
  }
  #company .sec04__list dt{
    width: calc(280 / 375 * 100vw);
    padding-left: calc(34 / 375 * 100vw);
  }
  #company .sec04__list dt::after {
    width: 20px;
    height: 20px;
    top: 0;
  }
  #company #sec04__list--small dt::after {
    width: 15px;
    height: 15px;
    left: 3px;
  }
  #company .sec04__list dd{
    width: calc(280 / 375 * 100vw);
    margin-left: calc(34 / 375 * 100vw);
    padding-top: calc(12 / 375 * 100vw);
  }
  #company .sec04__list dl{
    padding-bottom: calc(50 / 375 * 100vw);
  }
  #company #sec04__list--small dt span:first-child{
    font-size: 1.625rem;
  }
  #company #sec04__list--small dt span:nth-child(2){
    font-size: 1.375rem;
  }
  #company #sec04__list--small dt span:last-child{
    font-size: 0.875rem;
  }
  #company #sec04__list--1980{
    margin-top: calc(18 / 375 * 100vw);
    margin-bottom: calc(14 / 375 * 100vw);
  }
  #company .sec04__list #sec04__list--2003{
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.72;
  }
  #company #sec04__list--small dd{
    padding-top: calc(12 / 375 * 100vw);
  }
  #company .sec04__list--body{
    text-align: justify;
    display: block;
    line-height: 2;
    font-weight: 600;
  }
  .dotted-line{
    left: 8.5px;
  }
  #company .sec04__wave--sp01 {
    transform-origin: center center;
    animation: fuwa 1.5s infinite ease-in-out alternate;
  }
  #company .sec04__wave--sp01 img {
    width: calc(94 / 375 * 100vw);
  }

  #company .sec04__wave--sp01 {
    position: absolute;
    top: calc(162 / 375 * 100vw);
    right: calc(-20 / 375 * 100vw);
  }
  #company .sec04__wave--sp02 img {
    width: calc(336 / 375 * 100vw);
  }

  #company .sec04__wave--sp02 {
    position: absolute;
    bottom: calc(27 / 375 * 100vw);
    right: calc(-2 / 375 * 100vw);
    transform-origin: center center;
    animation: fuwa 1.5s infinite ease-in-out alternate;
  }
  #company .sec04__boat--sp {
    transform-origin: center center;
    animation: fuwa 1.5s infinite ease-in-out alternate 0.2s;
  }
  #company .sec04__boat--sp img {
    width: calc(264 / 375 * 100vw);
  }

  #company .sec04__boat--sp {
    position: absolute;
    bottom: calc(47 / 375 * 100vw);
    right: calc(30 / 375 * 100vw);
  }

  #company .sec05{
    padding: calc(58 / 375 * 100vw) 0 calc(52 / 375 * 100vw) 0;
  }
  #company .sec05__inner {
    width: calc(328 / 375 * 100vw);
  }
  #company .sec05__map--img img{
    width: calc(328 / 375 * 100vw);
    margin: 0 auto;
  }
  #company .sec05 .title span:first-child{
    margin-bottom: calc(22 / 375 * 100vw);
  }
  #company .sec05 .title{
    margin-bottom: calc(45 / 375 * 100vw);
  }
  #company .sec05__map--tree img{
    width: calc(52 / 375 * 100vw);
    height: auto;
  }
  #company .sec05__map--tree{
    bottom: calc(-10 / 375 * 100vw);
    right: calc(-10 / 375 * 100vw);
  }
  #company .sec05__map--note{
    right: auto;
    left: 0;
  }
  #company .sec05__map{
    width: calc(328 / 375 * 100vw);
  }
  #company .sec05__list {
    margin-top: 55px;
  }
  #company .sec05__list dl{
    width: calc(328 / 375 * 100vw);
    margin: 0 auto;
  }
  #company .sec05__list dd {
    margin-left: -0.5rem;
  }
  #company .sec05__list dt {
    width: calc(240 / 375 * 100vw);
    letter-spacing: 0;
  }

}
