@charset "euc-jp";

.image-center {
    text-align: center;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    text-align: center;
}
.reverse {
    flex-direction: row-reverse;
}

.btn-ms {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.btn-ms a {
    text-decoration: none;
}

.tel {
    text-align: center;
}

.mail {
    text-align: center;
    border-left: 1px solid var(--complementary-color-grey-10);
    padding: 0 20px 0 80px;
}

h4 {
    font-weight: 700;
}

h4 + p {
    font-size: 200%;
}

.main-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-imagearea {
  width: 600px;
}
.main-imagearea img {
  width: 100%;
}
.box-note-youtube {
  border: solid 1px #2E2E2E;
  padding: 30px;
  margin-top: 70px;
}

@media (max-width: 640px) {
    .flex {
        gap: 20px;
        margin: 40px 10px;
        display: block;
    }

    .contents-image {
        margin: 30px 0 0 0;
    }

    .mail {
        text-align: center;
        border-top: 1px solid var(--complementary-color-grey-10);
        border-left: none;
        padding: 20px 0;
    }

    .main-area {
      flex-direction: column;
    }
    .main-imagearea {
      width: 95%;
      margin: 20px auto 0;
    }
}