@charset "UTF-8";
/*--------------------------------------------------------------
共通でインポートモジュール
--------------------------------------------------------------*/
/*
レイアウト関係のmixin
*/
/**
 * clamp関数の文字列を返す
 *
 * @param {Number} $size-at-min-width - 最小画面幅での要素のサイズ (px|rem|emなど)
 * @param {Number} $size-at-max-width - 最大画面幅での要素のサイズ (px|rem|emなど)
 * @param {Number} $min-width [optional] - 最小画面幅 (デフォルト: $min-width-default)
 * @param {Number} $max-width [optional] - 最大画面幅 (デフォルト: $max-width-default)
 * @return {String} CSS clamp関数を含む計算式
 *
 * @description
 * 画面幅に応じて値が滑らかに変化するレスポンシブな値を生成します。
 * 例えば、フォントサイズやマージン、パディングなどの値を画面幅に応じて
 * 自動的に調整することができます。
 *
 * @example
 *   // フォントサイズを16pxから24pxまで可変させる
 *   font-size: clamp-calc(16px, 24px);
 *
 *   // マージンを2remから4remまで可変させる（画面幅768px～1200px）
 *   margin: clamp-calc(2rem, 4rem, 768px, 1200px);
 *
 * @note
 * - 引数の単位は一貫している必要はありません（px, rem等が混在可能）
 * - 内部で全ての値をpxに変換して計算を行います
 * - 返り値は入力された$size-at-min-widthと同じ単位で返されます
 * - 負の値（マイナスマージンなど）にも対応しています
 *
 * @implementation
 * 1. 入力値を全てpxに変換
 * 2. 線形の傾きを計算
 * 3. y軸との交点を計算
 * 4. 必要に応じて最小値と最大値を入れ替え
 * 5. 元の単位に変換して最終的なclamp関数を構築
 */
/**
	* 与えられた値をピクセル(px)単位に変換する関数
	*
	* @param {Number} $value - 変換したい値（rem または px）
	* @return {Number} 変換後のピクセル値
	*
	* @example
	*   convert-to-px(1.5rem)  // 24px ($base-font-size が 16px の場合)
	*   convert-to-px(20px)    // 20px (そのまま返される)
	*   convert-to-px(2em)     // 2em (非対応の単位はそのまま返される)
	*
	* @description
	* - rem単位の場合: $base-font-sizeを基準にしてpxに変換
	* - px単位の場合: 値をそのまま返す
	* - その他の単位: 変換せずそのまま返す
	*
	* @throws {Error} $base-font-size が定義されていない場合にエラー
	*/
/**
	* ピクセル(px)単位の値をrem単位に変換する関数
	*
	* @param {Number} $px-value - 変換したい値（px または rem）
	* @return {Number} 変換後のrem値
	*
	* @example
	*   convert-to-rem(16px)   // 1rem ($base-font-size が 16px の場合)
	*   convert-to-rem(24px)   // 1.5rem ($base-font-size が 16px の場合)
	*   convert-to-rem(1.5rem) // 1.5rem (そのまま返される)
	*   convert-to-rem(2em)    // 2em (非対応の単位はそのまま返される)
	*
	* @description
	* - px単位の場合: $base-font-sizeを基準にしてremに変換
	* - rem単位の場合: 値をそのまま返す
	* - その他の単位: 変換せずそのまま返す
	*
	* @note
	* - レスポンシブデザインに適したrem単位への変換に使用
	* - $base-font-size はグローバルで定義されている必要がある
	*
	* @throws {Error} $base-font-size が定義されていない場合にエラー
	*/
/*
	* 補助関数：小数点以下の指定した桁数で四捨五入する関数
	*/
/*
	* 補助関数：累乗を計算する関数
	* 引数：$number 底となる数
	*      $exponent 指数（正の整数のみ対応）
	*/
.wp-block-heading.is-style-orange-heading {
  background-color: #d16a06;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  padding-block: 0.24em;
  line-height: 1.75;
  font-weight: 600;
  font-size: 18px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wp-block-heading.is-style-orange-heading {
    font-size: 18px;
  }
}
.wp-block-heading.is-style-orange-heading.has-large-font-size {
  padding-block: 12px;
}

.wp-block-heading.is-style-black-heading {
  background-color: #000;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  padding-block: 0.24em;
  line-height: 1.75;
  font-weight: 600;
  font-size: 18px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wp-block-heading.is-style-black-heading {
    font-size: 18px;
  }
}
.wp-block-heading.is-style-black-heading.has-large-font-size {
  padding-block: 12px;
}
.wp-block-heading.is-style-black-heading {
  --wp--preset--font-size--small: 14px;
}
.wp-block-heading.is-style-black-heading.has-text-align-left {
  justify-content: flex-start;
}

.wp-block-heading.is-style-left-line {
  position: relative;
  padding-left: 13px;
  font-size: 16px;
}
.wp-block-heading.is-style-left-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #d16a06;
  transform: translateY(-50%);
}

/*ボタンブロック用のスタイル*/
.wp-block-button.is-style-orange-button {
  width: 100%;
}
.wp-block-button.is-style-orange-button .wp-block-button__link {
  background: linear-gradient(90deg, rgb(200, 0, 0) 0%, rgb(209, 106, 6) 100%);
  border-radius: 6px;
  position: relative;
  min-height: 60px;
  transition: color 0.3s ease, opacity 0.3s ease;
}
@media (hover: hover) {
  .wp-block-button.is-style-orange-button .wp-block-button__link:hover {
    color: #fff;
    opacity: 0.8;
  }
}
.wp-block-button.is-style-orange-button .wp-block-button__link img {
  margin-right: 10px;
}
.wp-block-button.is-style-orange-button .wp-block-button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-color: #fff;
  border-width: 1px;
  border-style: solid solid none none;
  transform: translateY(-50%) rotate(45deg);
}

.wp-block-button.is-style-orange-line {
  width: 100%;
}
.wp-block-button.is-style-orange-line .wp-block-button__link {
  min-height: 60px;
  border: 1px solid #d16a06;
  border-radius: 6px;
  background-color: #fff;
  color: #000;
  position: relative;
  transition: opacity 0.3s ease;
  font-size: 14px;
}
@media (hover: hover) {
  .wp-block-button.is-style-orange-line .wp-block-button__link:hover {
    opacity: 0.6;
  }
}
.wp-block-button.is-style-orange-line .wp-block-button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-color: #d16a06;
  border-width: 1px;
  border-style: solid solid none none;
  transform: translateY(-50%) rotate(45deg);
}
.wp-block-button.is-style-orange-line.is-style-download .wp-block-button__link {
  min-height: 45px;
}
.wp-block-button.is-style-orange-line.is-style-download .wp-block-button__link::after {
  border: none;
  transform: translateY(-50%);
  background-image: url(../../images/lp/icon-download.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 11px;
}

.wp-block-list.is-style-step-list {
  padding-left: 0;
  counter-reset: step;
}
.wp-block-list.is-style-step-list li {
  list-style: none;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #cccccc;
  padding-block: 6px;
  padding-inline: 75px 10px;
  counter-increment: step;
}
.wp-block-list.is-style-step-list li::before {
  content: "STEP " counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #848484;
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 100%;
  font-size: 11px;
}
.wp-block-list.is-style-step-list li::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 1px;
  height: 11px;
  background-color: #d16a06;
  border-width: 1px;
}
.wp-block-list.is-style-step-list li + li {
  margin-top: 11px;
}
.wp-block-list.is-style-step-list li:last-child {
  padding-inline: 10px;
  text-align: center;
  justify-content: center;
  font-weight: 600;
}
.wp-block-list.is-style-step-list li:last-child::after, .wp-block-list.is-style-step-list li:last-child::before {
  content: none;
}

@media screen and (max-width: 767px) {
  .is-style-accordion h2.wp-block-heading.is-style-black-heading {
    min-height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 10px 35px;
  }
  .is-style-accordion h2.wp-block-heading.is-style-black-heading::after, .is-style-accordion h2.wp-block-heading.is-style-black-heading::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 14px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  .is-style-accordion h2.wp-block-heading.is-style-black-heading::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .is-style-accordion .is_ac_close {
    display: none;
  }
  .is-style-accordion .wp-block-group {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s ease-out;
  }
  .is-style-accordion .wp-block-group .wp-block-group__inner-container {
    overflow: hidden;
  }
  .is-style-accordion.is-open .is_ac_open {
    display: none;
  }
  .is-style-accordion.is-open .is_ac_close {
    display: block;
  }
  .is-style-accordion.is-open h2.wp-block-heading.is-style-black-heading::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .is-style-accordion.is-open .wp-block-group {
    grid-template-rows: 1fr;
    padding-bottom: 20px;
  }
}
.is-style-accordion .is_ac_open,
.is-style-accordion .is_ac_close {
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .is-style-accordion .is_ac_open,
  .is-style-accordion .is_ac_close {
    display: none;
  }
}

.bl_lpContent {
  box-sizing: border-box;
  margin-inline: 10px;
}
.bl_lpContent > * + * {
  margin-top: 10px;
}
.bl_lpContent {
  margin-bottom: 20px;
}

.wp-block-columns.is-style-pointed-columns {
  margin-bottom: 0;
  margin-top: 12px;
  padding-bottom: 20px;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .wp-block-columns.is-style-pointed-columns {
    gap: 20px;
  }
}
.wp-block-columns.is-style-pointed-columns .wp-block-column {
  background-color: #f0f0f0;
  position: relative;
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .wp-block-columns.is-style-pointed-columns .wp-block-column {
    flex-direction: column;
  }
}
.wp-block-columns.is-style-pointed-columns .wp-block-column h3.wp-block-heading {
  border-bottom: 2px solid #c80000;
  background: linear-gradient(90deg, rgb(22, 22, 22) 0.11%, rgb(121, 121, 121) 100%);
  color: #fff;
  width: 140px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-style: italic;
  padding-block: 4px 12px;
  padding-inline: 12px 12px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  --wp--preset--font-size--small: 16px;
}
.wp-block-columns.is-style-pointed-columns .wp-block-column h3.wp-block-heading .sme-text-color.has-cyan-bluish-gray-color {
  font-weight: medium;
  font-size: 13px;
  line-height: 2;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  --wp--preset--font-size--small: 11px;
  --wp--preset--color--cyan-bluish-gray: #fff;
  opacity: 0.5;
}
.wp-block-columns.is-style-pointed-columns .wp-block-column h3.wp-block-heading .sme-text-color.has-cyan-bluish-gray-color span.sme-font-size.has-small-font-size {
  letter-spacing: 0.06em;
}
.wp-block-columns.is-style-pointed-columns .wp-block-column p {
  padding-inline: 10px;
  padding-block: 15px;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .wp-block-columns.is-style-pointed-columns .wp-block-column p {
    padding-inline: 20px;
  }
}
.wp-block-columns.is-style-pointed-columns .wp-block-column p.el_footNote {
  position: absolute;
  bottom: -1.7em;
  right: 0;
  font-size: 12px;
  padding: 0;
  color: #494949;
}

.is-style-orderSystem {
  gap: 0;
}
.is-style-orderSystem .wp-block-media-text {
  color: #fff;
  background: linear-gradient(-10deg, rgb(120, 120, 120) 0%, rgb(215, 215, 215) 45%, rgb(27, 27, 27) 80%);
  padding-block: 17px;
  padding-inline: 10px;
  grid-template-columns: 1fr !important;
  gap: 35px;
}
@media screen and (min-width: 768px) {
  .is-style-orderSystem .wp-block-media-text {
    grid-template-columns: 1fr 55% !important;
    padding-block: 17px;
    padding-inline: 55px 45px;
    gap: 36px;
    background: linear-gradient(-75deg, rgb(117, 117, 117) 0%, rgb(207, 207, 207) 20%, rgb(207, 207, 207) 45%, rgb(203, 203, 203) 46.16%, rgb(77, 77, 77) 80.09%, rgb(27, 27, 27) 95%);
  }
}
.is-style-orderSystem .wp-block-media-text .wp-block-media-text__content {
  padding-inline: 8px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .is-style-orderSystem .wp-block-media-text .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 1;
  }
}
.is-style-orderSystem .wp-block-media-text .wp-block-media-text__content .has-inline-color {
  padding-block: 3px;
  padding-inline: 2px;
}
@media screen and (max-width: 767px) {
  .is-style-orderSystem .wp-block-media-text figure.wp-block-media-text__media {
    grid-column: 1;
    grid-row: 2;
  }
}
.is-style-orderSystem + .wp-block-columns {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .is-style-orderSystem + .wp-block-columns {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

.is-style-patternList {
  background-color: #f0f0f0;
  padding-block: 20px;
  padding-inline: 20px;
  --wp--preset--font-size--small: 12px;
}
.is-style-patternList .wp-block-gallery {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 11px !important;
       column-gap: 11px !important;
  row-gap: 20px !important;
}
@media screen and (min-width: 768px) {
  .is-style-patternList .wp-block-gallery {
    gap: 15px;
    grid-template-columns: repeat(5, 1fr);
    -moz-column-gap: 15px !important;
         column-gap: 15px !important;
  }
}
.is-style-patternList .wp-block-gallery figure.wp-block-image {
  display: block;
  width: 100% !important;
}
.is-style-patternList .wp-block-gallery figure.wp-block-image::before {
  content: none;
}
.is-style-patternList .wp-block-gallery figure.wp-block-image img {
  height: auto !important;
}
.is-style-patternList .wp-block-gallery figure.wp-block-image figcaption {
  overflow: visible;
  font-size: 14px;
  line-height: 1.4;
  padding-top: 4px;
  color: #000;
  background: none;
  text-shadow: none;
  position: relative;
  padding-block: 5px 0;
  padding-inline: 0 !important;
  --wp--preset--font-size--small: 12px;
}

@media screen and (max-width: 767px) {
  .is-style-howToOrder {
    gap: 0;
  }
}
.is-style-howToOrder .wp-block-column > * + * {
  margin-top: 10px;
  gap: 10px;
}
.is-style-howToOrder .wp-block-column > * + .is-style-accordion,
.is-style-howToOrder .wp-block-column > * + h2 {
  margin-top: 20px;
}
.is-style-howToOrder .wp-block-column .wp-block-list.is-style-step-list {
  margin-bottom: 0 !important;
}
.is-style-howToOrder .wp-block-column .wp-block-group__inner-container > * + * {
  margin-top: 10px;
}
.is-style-howToOrder .wp-block-heading.is-style-left-line + p {
  padding-left: 13px;
}
.is-style-howToOrder p a {
  text-decoration: underline;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .is-style-howToOrder p a:hover {
    color: #d16a06;
  }
}

.wp-block-columns.is-style-firstTimer {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .wp-block-columns.is-style-firstTimer {
    grid-template-columns: 1fr 60% !important;
  }
}
.wp-block-columns.is-style-firstTimer .wp-block-column:first-child {
  background-color: #d16a06;
  color: #fff;
  display: flex;
  padding: 9px;
}
@media screen and (min-width: 768px) {
  .wp-block-columns.is-style-firstTimer .wp-block-column:first-child {
    padding: 20px;
  }
}
.wp-block-columns.is-style-firstTimer .wp-block-column:first-child {
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.wp-block-columns.is-style-firstTimer .wp-block-column:first-child p {
  display: flex;
  gap: 10px;
  align-items: center;
}
.wp-block-columns.is-style-firstTimer .wp-block-column:last-child {
  background-color: #f0f0f0;
  padding-block: 18px 14px;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.wp-block-columns.is-style-firstTimer .wp-block-column:last-child p {
  font-size: 12px;
}
.wp-block-columns.is-style-firstTimer .wp-block-column:last-child .wp-block-buttons {
  max-width: 295px;
  width: 100%;
}/*# sourceMappingURL=block-editor-style.css.map */