@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 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
    background: none;
    color: #444;
    font-size: 180%;
    border-bottom: 2px solid var(--line-color);
    gap: 20px;
}
h2.wp-block-heading::before {
    display: block;
    flex-shrink: 0;
    content: "";
    background: url(../images/common/logo_mark.svg) top left / cover no-repeat;
    width: 60px;
    height: 38px;
}
h2.wp-block-heading::after {
    position: absolute;
    content: "";
    width: 10%;
    height: 2px;
    background: var(--sub-color02);
    left: 0;
    bottom: -2px;
}
h2.wp-block-heading:not(:first-child) {
  margin-top: 50px !important;
}

h3.wp-block-heading {
  padding: 15px 30px;
  /* border: 1px solid var(--main-color); */
  border: 1px solid var(--sub-color);
  font-size: 120%;
  border-radius: 7px;
  color: #fff;
}

h3.wp-block-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 5px);
  /* background: linear-gradient(-135deg, #aecc2a, #4baf31); */
  background: linear-gradient(-135deg, rgba(249, 203, 0, 0.9), rgba(234, 125, 36, 0.9));
  transform: translate(-50%, -50%);
border-radius: 4px;
}

h4.wp-block-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  padding: 10px 15px 10px 20px;
  background: #f9f9f9;
  font-size: 125%;
  border-radius: 5px;
}
h4.wp-block-heading::before {
    content: "";
    display: block;
    width: 7px;
    height: 1.2em;
    background: var(--main-color);
    border-radius: 300px;
}
h5.wp-block-heading {
  color: var(--sub-color02);
  font-size: 120%;
}

h6.wp-block-heading {
  font-size: 110%;
}
/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
    h2.wp-block-heading {
        font-size: 140%;
    }
    h2.wp-block-heading::before {
    width: 40px;
    height: 25px;
    }
}

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

  *ボタンコンテナ

================================================================================================================================== */
.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 45px 10px 35px;
  background: linear-gradient(135deg,#f9be00,#ea8b24);
  border-radius: 300px;
  color: #ffffff;
  border: 1px solid var(--sub-color);
  font-size: 105%;
  letter-spacing: 0.15em;
  text-align: center;
  vertical-align: bottom;
  transition: background 0.2s, color 0.2s;
    font-family: var(--jp-font);
    font-weight: 400!important;
    font-style: normal;
}
.wp-block-custom-button .b-simple-button__link {
    color: #fff;
    text-decoration: none;
}
.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;
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  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(--sub-color);
}

a.b-simple-button__link:hover::after {
  color: var(--sub-color);
}

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

  *リスト（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;
  border-radius: 10px;
}

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

@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;
font-family: var(--en-font);
    font-weight: 500;
    font-style: normal;
}

@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%;
  }
}
/* ==================================================================================================================================

  *その他

================================================================================================================================== */
mark {
    background: none;
    text-decoration: underline;
    text-decoration-color: rgb(255, 245, 157);
    text-decoration-skip-ink: none;
    text-decoration-thickness: 0.5em;
    text-underline-offset: -0.175em;
}