@charset "utf-8";

#sec-main-image {
  background: linear-gradient(180deg, #f7eeeb, #f4e4e4);
  height: 560px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 980px) {
  #sec-main-image {
    height: 50vw;
    width: auto;
  }
}

/* 画像 */

.main-image__image {
  border-bottom-left-radius: 60px;
  bottom: 0;
  left: 150px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.main-image__image img {
  height: auto;
  left: 50%;
  max-width: none;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

@media only screen and (max-width: 980px) {
  .main-image__image {
    border-bottom-left-radius: clamp(20px, calc(60px - 2vw), 60px);
    left: 10vw;
  }

  .main-image__image img {
    height: 100%;
    width: auto;
  }
}

/* タイトル */

.main-image__title {
  bottom: 0;
  left: 20px;
  position: absolute;
  z-index: 10;
}

@media only screen and (max-width: 980px) {
  .main-image__title img {
    left: 10vw;
    transform: scale(.6);
    transform-origin: bottom left;
  }
}