/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 全体設定 */
@media screen and (max-width: 768px) {
.sp-hide {
  display: none;
}
}
@media screen and (min-width: 769px) {
  .pc-hide {
  display: none;
}
}

/* フォントの指定 */
.shippori-mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.shippori-mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.shippori-mincho-bold {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.inner {
  max-width: 1100px;
  margin: auto;
}

section h2 {
  margin-bottom: 50px;
  font-size: 40px;
}


.kv {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 160px;
  background: url(../images/kv.jpg) no-repeat center;
  background-size: cover;
} 

.kv h1 {
  font-size: 66px;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .kv {
    padding: 80px 20px;
  }

  .kv h1 {
    font-size: 46px;
  }
}

.lead-text {
  padding: 120px 20px 140px;
  background: url(../images/lead-wave.png) no-repeat center;
  background-size: cover;
  text-align: center;
  font-size: 24px;
  line-height: 48px;
}

.lead-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "a b"
    "a b"
    "a c"
    "d c"
    "d e"
    "d e";
}

.lead-image-item:nth-of-type(1) {
  grid-area: a;
}

.lead-image-item:nth-of-type(2) {
  grid-area: b;
}

.lead-image-item:nth-of-type(3) {
  grid-area: c;
}

.lead-image-item:nth-of-type(4) {
  grid-area: d;
}

.lead-image-item:nth-of-type(5) {
  grid-area: e;
}

.lead-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .lead-text {
    padding: 80px 20px 100px;
    font-size: 16px;
    line-height: 36px;
  }

  .lead-image {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a a"
      "b b"
      "c c"
      "d d"
      "e e";
  }
}

.pickup {
  padding: 80px 20px 60px;
  background: url(../images/pickup-wave.png) no-repeat center;
  background-size: cover;
  background-color: #eee5d7;
}

.pickup-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
  list-style: none;
}

.pickup-list li {
  width: calc((100% - 60px) / 4);
}

.pickup-list img {
  width: 100%;
  margin-bottom: 30px;
}

.pickup-list .post-title {
  text-align: center;
  font-size: 18px;
}

.pickup .cta {
  display: flex;
  gap: 50px;
}

.pickup .cta li {
  list-style: none;
  flex: 1;
  text-align: center;
}

.cta-button {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 20px;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  display: inline-block;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid #fff;
  border-radius: 30px;
}

.cta-button.railway {
  background-color: #333352;
}

.cta-button.plane {
  background-color: #703152;
}

@media screen and (max-width: 768px) {
  .pickup-list li {
    width: calc((100% - 20px) / 2);
  }

  .pickup-list img {
    margin-bottom: 10px;
  }

  .pickup-list .post-title {
    font-size: 14px;
  }

  .pickup .cta {
    flex-direction: column;
    gap: 20px;
  }
}