<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("../../css/variables.css");

/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
h2.wp-block-heading:not(:first-child) {
  margin-top: 80px;
}

.wp-block-kevinbatdorf-code-block-pro {
  max-height: 400px;
  overflow: auto;
}

/* ==================================================================================================================================

  *ボタンコンテナ

================================================================================================================================== */
.b-button-wrapper {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  width: 100%;
}

.b-button-wrapper.align-left {
  justify-content: flex-start;
}

.b-button-wrapper.align-center {
  justify-content: center;
}

.b-button-wrapper.align-right {
  justify-content: flex-end;
}

/* ==================================================================================================================================

  *ボタン

================================================================================================================================== */
.b-simple-button__link {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 200px;
  padding: 10px 50px 10px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 300px;
  color: #ffffff;
  font-size: 110%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.b-simple-button__link:hover {
  background: #ffffff;
  color: var(--main-color);
}

.b-simple-button__link::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 12px;
  transform: translateY(-50%);
  transition: right 0.2s, color 0.2s;
}

.b-simple-button__link:hover::after {
  right: 12px;
  color: var(--main-color);
}

.b-simple-button__link--coming {
  pointer-events: none;
  overflow: hidden;
}

.b-simple-button__link--coming::before {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-size: 90%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 900px) {
  .b-simple-button--link {
    padding: 8px 45px;
    font-size: 105%;
  }

  .b-simple-button--link::before {
    font-size: 10px;
  }
}
</pre></body></html>