@charset "UTF-8";
@import url("variables.css");

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

  *タイトル

================================================================================================================================== */
h2.wp-block-heading, h3.wp-block-heading, h4.wp-block-heading, h5.wp-block-heading, h6.wp-block-heading {
  position: relative;
  z-index: 1;
  margin: 50px auto 25px 0;
  line-height: 1.75;
}

h2.wp-block-heading + h3.wp-block-heading,
h3.wp-block-heading + h4.wp-block-heading,
h4.wp-block-heading + h5.wp-block-heading,
h5.wp-block-heading + h6.wp-block-heading {
  margin-top: 0;
}

h2.wp-block-heading {
  padding: 20px 30px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 150%;
}

h2.wp-block-heading:not(:first-child) {
  margin-top: 80px !important;
}

h3.wp-block-heading {
  padding: 15px 30px;
  border: 1px solid var(--line-color);
  font-size: 120%;
}

h3.wp-block-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 7px);
  height: calc(100% - 8px);
  background: #fafafa;
  transform: translate(-50%, -50%);
}

h4.wp-block-heading {
  position: relative;
  width: fit-content;
  padding: 10px 22px 10px 25px;
  background: #f9f9f9;
  border-left: 5px solid var(--main-color);
  font-size: 125%;
}

h5.wp-block-heading {
  color: var(--main-color);
  font-size: 120%;
}

h6.wp-block-heading {
  font-size: 110%;
}

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

  *ボタンコンテナ

================================================================================================================================== */
.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;
  display: inline-block;
  min-width: 250px;
  padding: 10px 60px 11px 50px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 300px;
  color: #ffffff;
  font-size: 105%;
  letter-spacing: 0.15em;
  text-align: center;
  vertical-align: bottom;
  transition: background 0.2s, color 0.2s;
}

.b-simple-button__link::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0 0 1px 2px;
  background: #ffffff;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  font-size: 10px;
  transform: translateY(-50%);
  transition: background 0.2s, color 0.2s;
}

.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%);
}

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

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

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

  *リスト（ul）

================================================================================================================================== */
/* --------------------------------------------------
リストスタイル
-------------------------------------------------- */
.b-list > .wp-block {
  margin: 0 !important;
}

.b-list--none {
  padding: 0;
}

.b-list--bg {
  padding: 25px;
  background: var(--bg-color);
}

.b-list--border {
  padding: 25px;
  border: 1px solid var(--main-color);
}

@media screen and (max-width: 768px) {
  .b-list--bg {
    padding: 20px;
  }

  .b-list--border {
    padding: 20px;
  }
}

/* --------------------------------------------------
表示形式
-------------------------------------------------- */
.b-list-disp--vertical {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.b-list-disp--horizontal {
  display: flex;
  flex-flow: wrap;
  gap: 10px 20px;
}

@media screen and (max-width: 768px) {
  .b-list-disp--vertical {
    gap: 20px;
  }

  .b-list-disp--horizontal {
    gap: 10px 20px;
  }
}

/* --------------------------------------------------
リストタイプ
-------------------------------------------------- */
.b-list-type--circle li {
  position: relative;
  padding: 0 0 0 30px;
  list-style-type: none;
}

.b-list-type--circle li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 10px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 50%;
}

.b-list-type--check li {
  position: relative;
  padding: 0 0 0 30px;
  list-style-type: none;
}

.b-list-type--check li::before {
  content: "\f14a";
  position: absolute;
  top: 1px;
  left: 7px;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: var(--main-color);
  font-size: 97%;
}

.b-list-type--number {
  counter-reset: number;
  gap: 15px 20px;
  padding: 25px 30px;
}

.b-list-type--number li {
  position: relative;
  padding: 8px 0 8px 55px;
  list-style: none;
}

.b-list-type--number li::before {
  content: counter(number);
  counter-increment: number;
  box-sizing: border-box;
  position: absolute;
  top: 5px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .b-list-type--circle li {
    padding: 0 0 0 25px;
  }

  .b-list-type--circle li::before {
    top: 12px;
    left: 10px;
    width: 5px;
    height: 5px;
  }

  .b-list-type--check li {
    padding: 0 0 0 30px;
  }

  .b-list-type--check li::before {
    top: 1px;
    left: 7px;
    font-size: 97%;
  }
}
