@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 指数（正の整数のみ対応）
	*/
:root {
  --text-color: #0c0c0c;
  --main-color: #d84f2d;
  --sub-color: #e0f5ff;
  --accent-color: #ffff1f;
  --accent-color-2: #b50d23;
  --bg-color: #fff;
  --bg-sub-color: #ffe8d9;
  --link-color: var(--main-color);
  --border-color: #babbbc;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-bold: 700;
  --fw-black: 900;
  --site-width: 1920px;
  --content-width: 1236px;
  --site-inline-padding: 15px;
  --header-height: 67px;
  --header-inline-padding: 27px 24px;
  --banner-height: 75px;
  --transition-time: 0.5s;
  --transidion: var(--transition-time) ease;
  --min-viewport: 520;
  --max-viewport: 1025;
  --max-size: 80px;
  --min-size: 20px;
  /* a 傾き */
  --slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  /* b 切片 */
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  /* y = ax + b */
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);
  /* clamp( 最小サイズ , 可変サイズ , 最大サイズ) */
  --clamp-size: clamp(var(--min-size) / 16 * 1rem, var(--fluid-size), var(--max-size) / 16 * 1rem);
}
@media screen and (min-width: 1025px) {
  :root {
    --site-inline-padding: 20px;
  }
}
@media screen and (min-width: 1441px) {
  :root {
    --site-inline-padding: 0;
  }
}
@media screen and (min-width: 1241px) {
  :root {
    --header-height: 136px;
    --menu-fsz: 16px;
    --header-inline-padding: 13px 18px;
  }
}
@media screen and (min-width: 1025px) {
  :root {
    --banner-height: 95px;
  }
}

html,
body,
div,
span,
object,
iframe,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
sub,
sup,
var,
b,
i,
a,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-break: normal;
  line-break: strict;
  word-wrap: normal;
  word-break: normal;
  line-height: inherit;
}

textarea,
input[type=button],
input[type=text],
input[type=image],
input[type=submit] {
  -webkit-appearance: none;
  word-break: normal;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

* {
  outline: none;
}

body {
  font-size: 15px;
  word-break: break-all;
  -webkit-text-size-adjust: none;
}

* html body {
  font-size: small;
  font: x-small;
}

*:first-child + html body {
  font-size: small;
  font: x-small;
}

img {
  border: 0;
  vertical-align: bottom;
}

ul,
dl {
  text-indent: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

ol ul li {
  list-style: none;
}

address,
caption,
cite,
code,
dfn,
em,
var {
  font-style: normal;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

* html input,
* html textarea,
* html select {
  font-size: 100%;
}

*:first-child + html + input,
*:first-child html + textarea,
*:first-child + html select {
  font-size: 100%;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: inherit;
  font: 100%;
}

th,
td {
  text-align: left;
  vertical-align: top;
}

caption {
  text-align: left;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
}

* html pre,
* html code,
* html kbd,
* html samp,
* html tt {
  font-size: 108%;
  line-height: 100%;
}

*:first-child + html pre,
*:first-child html + code,
*:first-child html + kbd,
*:first-child + html + samp,
*:first-child + html tt {
  font-size: 108%;
  line-height: 100%;
}

input,
select,
textarea {
  font-size: 100%;
  font-family: Verdana, Helvetica, sans-serif;
  margin: 0;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  line-height: inherit;
}

figure {
  line-height: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  backface-visibility: hidden;
}

input,
textarea {
  border-radius: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

@media screen and (min-width: 1025px) {
  .br_sp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .br_pc {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .is-mobile {
    display: none !important;
  }
}

.ut_flex_row {
  display: flex;
  flex-wrap: wrap;
}

.ly_siteHeader {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid var(--bg-sub-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
@media screen and (min-width: 1241px) {
  .ly_siteHeader {
    border-bottom: 21px solid var(--bg-sub-color);
  }
}

.ly_siteHeader_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.5s ease;
  width: 100vw;
  max-width: 1750px;
  padding-inline: 20px;
  margin-inline: auto;
  position: relative;
  gap: 15px;
  padding-block: 6px 4px;
}
@media screen and (min-width: 1241px) {
  .ly_siteHeader_content {
    padding-block: 12px 0;
  }
}
.ly_siteHeader_content .el_siteHeader_logo {
  flex-shrink: 0;
  width: 130px;
}
@media screen and (min-width: 1241px) {
  .ly_siteHeader_content .el_siteHeader_logo {
    width: 312px;
  }
}
.ly_siteHeader_content .header_logo_image {
  margin-right: 20px;
}
.ly_siteHeader_content .bl_header_title {
  padding-inline: 10px;
}

@media screen and (min-width: 1025px) {
  .ly_siteHeader_nav {
    margin-left: auto;
  }
}

.ly_header_nav {
  margin-inline: auto;
  max-width: var(--site-width);
}
@media screen and (min-width: 1025px) {
  .ly_header_nav {
    display: flex;
    justify-content: space-around;
  }
}

.ly_fixed_header {
  margin-top: var(--header-height);
}
.ly_fixed_header .ly_siteHeader {
  position: fixed;
  top: 0;
  left: 0;
}
.ly_fixed_header.admin-bar {
  margin-top: calc(var(--header-height));
}
.ly_fixed_header.admin-bar .ly_siteHeader {
  top: 32px;
}

@media screen and (max-width: 1024px) {
  .ly_mainVisual {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.ly_content_header {
  margin-inline: auto;
  max-width: var(--site-width);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--content-header-height, 150px);
  padding: 20px;
}

.ly_siteMain {
  margin-inline: auto;
  width: 100%;
  background-color: var(--bg-color);
}

.ly_mainContent {
  max-width: var(--site-width);
  margin-inline: auto;
}

.ly_pageHeader {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--site-inline-padding);
  padding-block: 20px;
  background-color: var(--main-color);
  color: #fff;
  margin-top: 30px;
  min-height: 100px;
  background: linear-gradient(131deg, #007fe5 22%, var(--main-color) 22%);
}

.ly_article {
  margin-inline: auto;
}
.ly_article .bl_postThumbnail {
  margin-bottom: var(--article-mt);
}
.ly_article .bl_article_content {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--site-inline-padding);
}
.ly_article .bl_article_content > * + * {
  margin-top: var(--article-mt);
}
.ly_article .bl_article_content > * + h2,
.ly_article .bl_article_content > * + h3,
.ly_article .bl_article_content > * + h4,
.ly_article .bl_article_content > * + h5,
.ly_article .bl_article_content > * + h6 {
  margin-top: var(--artilce-heading-mt);
}

.ly_siteFooter {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 31px 40px;
}
@media screen and (min-width: 1025px) {
  .ly_siteFooter {
    padding-block: 78px 55px;
  }
}
.ly_siteFooter .bl_siteFooter {
  padding-inline: var(--site-inline-padding);
  max-width: var(--content-width);
  width: 100%;
}

.el_siteHeader_logo a {
  display: flex;
  position: relative;
  align-items: flex-end;
}

.bl_header_nav_wrapper {
  background-color: var(--global-menu-bg);
}
@media screen and (max-width: 1240px) {
  .bl_header_nav_wrapper {
    display: none;
  }
}

.bl_siteHeader_contacts {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1240px) {
  .bl_siteHeader_contacts {
    display: none;
  }
}
.bl_siteHeader_contacts .el_linkButton {
  font-size: 18px;
  box-shadow: 4px 4px 0 var(--text-color);
  border-radius: 8px;
  color: var(--text-color);
}
.bl_siteHeader_contacts .el_linkButton::before {
  content: "\e61d";
  font-family: "Material Symbols Outlined";
  color: var(--text-color);
  font-size: 30px;
  line-height: 1.3;
  flex-shrink: 0;
}
@media screen and (min-width: 1241px) {
  .bl_siteHeader_contacts .el_linkButton + .el_linkButton {
    margin-left: 15px;
  }
}
@media screen and (min-width: 1367px) {
  .bl_siteHeader_contacts .el_linkButton + .el_linkButton {
    margin-left: 25px;
  }
}
.bl_siteHeader_contacts .el_linkButton.for_request {
  background-color: var(--accent-color);
  width: clamp(140px, 1.6389rem + 11.1111vw, 178px);
  height: 63px;
}
.bl_siteHeader_contacts .el_linkButton.for_request::before {
  content: "\e873";
  font-size: 30px;
}
.bl_siteHeader_contacts .el_linkButton.for_contact {
  width: 208px;
  width: clamp(180px, 6.0102rem + 8.1871vw, 208px);
  height: 63px;
  background-color: #fff;
  border: 1px solid var(--main-color);
}
.bl_siteHeader_contacts .el_linkButton.for_contact::before {
  content: "\e158";
  font-size: 30px;
}

@media screen and (max-width: 1240px) {
  .ly_siteHeader_nav {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 0;
    background-color: #fff;
    color: var(--text-color);
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding-block: 70px 24px;
    padding-inline: 24px;
    transform: translateX(110%);
    transition: all var(--transition-time) ease;
  }
  .is_open .ly_siteHeader_nav {
    transform: translateX(0);
    visibility: visible;
    z-index: 9;
  }
}

@media screen and (max-width: 1240px) {
  .bl_siteHeader_nav {
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 30px;
    max-width: 480px;
    margin-inline: auto;
  }
  .bl_siteHeader_nav li {
    font-size: 18px;
  }
  .bl_siteHeader_nav li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px;
    padding-inline: 10px;
    font-weight: 500;
    height: 60px;
    line-height: 1.2;
    border-bottom: 1px solid #ccc;
  }
  .bl_siteHeader_nav .el_header_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 164px;
    height: 56px;
    padding: 10px;
    background-color: var(--main-color);
    color: #fff;
    margin-inline: auto;
  }
  .bl_siteHeader_nav .el_linkButton {
    color: #fff;
    height: 48px;
    max-width: 400px;
    width: 100%;
    margin-top: 20px;
    border-bottom: none;
    justify-content: center;
  }
  .bl_siteHeader_nav .el_linkButton.for_login {
    background-color: #4662a4;
    border-radius: 5px;
  }
  .bl_siteHeader_nav .el_linkButton.for_contact {
    background-color: var(--main-color);
    border-radius: 999px;
  }
}
@media screen and (min-width: 1241px) {
  .bl_siteHeader_nav {
    width: auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    margin-inline: auto;
  }
  .bl_siteHeader_nav a {
    transition: color 0.5s ease;
  }
  .bl_siteHeader_nav li.is_home_menu {
    display: none;
  }
  .bl_siteHeader_nav > li {
    width: auto;
    position: relative;
    font-size: var(--menu-fsz);
    font-weight: var(--fw-bold);
  }
  .bl_siteHeader_nav > li > a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    white-space: nowrap;
    height: 100%;
    position: relative;
    padding-inline: 15px;
    padding-inline: clamp(5px, -4.5313rem + 6.25vw, 15px);
    transition: opacity var(--transition-time);
  }
  .bl_siteHeader_nav > li > a:hover {
    opacity: 0.7;
  }
  .bl_siteHeader_nav .el_linkButton {
    color: #fff;
    height: 48px;
    max-width: 206px;
    max-width: clamp(150px, -74px + 17.5vw, 206px);
    width: 100vw;
  }
  .bl_siteHeader_nav .el_linkButton.for_login {
    background-color: #4662a4;
    border-radius: 5px;
  }
  .bl_siteHeader_nav .el_linkButton.for_contact {
    background-color: var(--main-color);
    border-radius: 999px;
  }
}

.el_siteHeader_mobile {
  gap: 15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1241px) {
  .el_siteHeader_mobile {
    display: none;
  }
}
.el_siteHeader_mobile .bl_ctaBuutons {
  grid-template-columns: 1fr;
  color: var(--text-color);
}
.el_siteHeader_mobile .el_linkButton {
  padding-left: 30px;
}
.el_siteHeader_mobile .el_linkButton::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 38px;
  height: 38px;
  position: absolute;
  left: 25px;
}

/* スライドメニューボタン */
.bl_menuToggleButton {
  z-index: 10;
  transition: all var(--transition-time) ease;
  right: 20px;
  top: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  /*ボタン内側*/
}
@media screen and (min-width: 1241px) {
  .bl_menuToggleButton {
    display: none;
  }
}
.is_open .bl_menuToggleButton {
  background-color: transparent;
}
.bl_menuToggleButton .openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 36px;
  height: 26px;
}
.bl_menuToggleButton .openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 2px;
  background: #333;
  width: 100%;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(1) {
  top: 0;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(2) {
  top: 11px;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(3) {
  top: 22px;
}
.bl_menuToggleButton.is_open .openbtn1 span {
  background: var(--text-color);
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-btn05-bar02 0.8s forwards;
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}

@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
body.is_open {
  overflow: hidden;
}

.global-menu-toggle {
  cursor: pointer;
}
@media screen and (min-width: 1241px) {
  .global-menu-toggle {
    display: none;
  }
}
.global-menu-toggle:before {
  content: "";
  background-image: url(../images/header/slide-menu-toggle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 20px;
  height: 20px;
  transition: transform var(--transition-time) ease;
}
.global-menu-toggle.is-open::before {
  transform: rotate(180deg);
}

.overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height));
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-time);
}
.is_open .overlay {
  z-index: 1;
  background-color: #000;
  opacity: 0.5;
  visibility: visible;
}

.bl_siteFooter {
  display: flex;
  justify-content: center;
}

.bl_siteFooter_content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin-inline: auto;
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 1024px) {
  .bl_siteFooter_content {
    justify-content: center;
  }
}

ul.bl_siteFooter_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 40px;
  flex-direction: column;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  ul.bl_siteFooter_menu {
    margin-top: 0;
    gap: 40px;
    flex-direction: row;
  }
}
ul.bl_siteFooter_menu a {
  transition: opacity var(--transidion);
}
@media (hover: hover) {
  ul.bl_siteFooter_menu a:hover {
    opacity: 0.7;
  }
}

.bl_siteFooter_tel {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  line-height: 1.2;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_tel {
    margin-top: -20px;
    text-align: right;
  }
}
.bl_siteFooter_tel span {
  font-size: 13px;
}

.bl_siteFooter_copyRight {
  font-size: 16px;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 30px;
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_copyRight {
    margin-top: 9px;
  }
}

.bl_fixedBanner {
  background-color: var(--main-color);
  height: var(--banner-height);
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  padding-inline: var(--site-inline-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transform: translateY(100px);
  transition: all var(--transidion);
  z-index: 10;
}
.bl_fixedBanner.is_show {
  visibility: visible;
  transform: translateY(0);
}
.bl_fixedBanner .bl_fixedBanner_buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1063px;
  margin-inline: auto;
  width: 100%;
  gap: 21px;
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .bl_fixedBanner_buttons {
    gap: 9px;
  }
}
.bl_fixedBanner .bl_ctaBuutons_button {
  min-height: 73px;
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .bl_ctaBuutons_button {
    min-height: 50px;
    font-size: 15px;
    letter-spacing: 0.04em;
    padding-inline: 5px;
  }
}
.bl_fixedBanner .bl_ctaBuutons_button.for_request .el_ctaButtons_subCopy {
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .bl_ctaBuutons_button.for_tel {
    gap: 5px;
  }
  .bl_fixedBanner .bl_ctaBuutons_button.for_tel::before {
    font-size: 24px;
  }
}
.bl_fixedBanner .bl_ctaBuutons_button .el_ctaButtons_tel {
  font-size: 26px;
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .bl_ctaBuutons_button .el_ctaButtons_tel {
    font-size: 15px;
    letter-spacing: 0.04em;
  }
}
.bl_fixedBanner .bl_ctaBuutons_button .el_ctaButtons_tel span {
  font-size: 12px;
}
.bl_fixedBanner .el_ctaButtons_subCopy {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .el_ctaButtons_subCopy {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .for_pc {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .bl_fixedBanner .for_sp {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .bl_fixedBanner .el_ctaButtons_request,
  .bl_fixedBanner .el_ctaButtons_contact {
    gap: 5px;
  }
  .bl_fixedBanner .el_ctaButtons_request::before,
  .bl_fixedBanner .el_ctaButtons_contact::before {
    font-size: 22px;
  }
}

a.el_floatingBanner {
  position: fixed;
  bottom: 90px;
  right: 0;
  cursor: pointer;
  z-index: 20;
  transition: opacity var(--transidion);
}
@media screen and (max-width: 1024px) {
  a.el_floatingBanner {
    display: none;
  }
}
@media (hover: hover) {
  a.el_floatingBanner:hover {
    opacity: 0.8;
  }
}

a.el_goTop {
  position: fixed;
  bottom: 20px;
  right: 15px;
  font-weight: var(--fw-bold);
  cursor: pointer;
  z-index: 20;
  transition: opacity var(--transidion);
}
@media (hover: hover) {
  a.el_goTop:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  a.el_goTop {
    display: none;
  }
}

.el_linkButton {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.bl_main > section {
  padding-inline: var(--site-inline-padding);
  padding-block: 0 80px;
}
@media screen and (min-width: 1025px) {
  .bl_main > section {
    padding-block: 0 200px;
  }
}
.bl_main > section .ly_sectionInner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  margin-block: 80px 0;
}
@media screen and (min-width: 1025px) {
  .bl_main > section .ly_sectionInner {
    margin-block: 200px 0;
  }
}
.bl_main > section.has_bg_color {
  background-color: var(--bg-sub-color);
  padding-top: 80px;
}
@media screen and (min-width: 1025px) {
  .bl_main > section.has_bg_color {
    padding-top: 105px;
  }
}
.bl_main > section.has_bg_color .ly_sectionInner {
  margin-top: 0;
}

.bl_main {
  overflow: hidden;
}

div.el_heading_full,
h2.el_heading_full {
  text-align: center;
  font-size: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: var(--fw-bold);
  color: #fff;
  background-color: var(--main-color);
  min-height: 90px;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 1025px) {
  div.el_heading_full,
  h2.el_heading_full {
    min-height: 240px;
  }
}
div.el_heading_full::after,
h2.el_heading_full::after {
  content: "";
  border-style: solid solid none;
  border-color: var(--main-color) transparent transparent;
  position: absolute;
  border-width: 25px 70px 0px;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  div.el_heading_full::after,
  h2.el_heading_full::after {
    border-width: 74px 190px 0px;
    bottom: -70px;
  }
}
@media screen and (min-width: 1025px) {
  div.el_heading_full,
  h2.el_heading_full {
    font-size: 70px;
  }
}

h2.el_heading_subtext {
  text-align: center;
  font-size: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-weight: var(--fw-bold);
}
h2.el_heading_subtext span {
  margin-top: 10px;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  h2.el_heading_subtext {
    font-size: 52px;
  }
  h2.el_heading_subtext span {
    margin-top: 15px;
    font-size: 24px;
  }
}

.bl_mv {
  height: auto;
  background-size: cover;
  background-image: url(../images/bg-mv-pc.jpg);
  max-height: 869px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .bl_mv {
    height: 100vh;
  }
}
@media screen and (min-width: 1921px) {
  .bl_mv {
    aspect-ratio: 1920/869;
  }
}
.bl_mv .bl_mv_inner {
  max-width: 100vw;
  position: relative;
  margin-inline: 30px;
  margin-inline: clamp(20px, -0.884px + 4.016vw, 30px);
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .bl_mv .bl_mv_inner {
    padding-bottom: 20px;
  }
}
.bl_mv .el_mv_image {
  position: absolute;
  bottom: 0;
  display: block;
  max-width: none;
  z-index: 1;
  width: clamp(300px, 76.86px + 41.322vw, 500px);
  right: -80px;
}
@media screen and (min-width: 1025px) {
  .bl_mv .el_mv_image {
    width: 795px;
    right: 0;
    right: clamp(-200px, -555.556px + 34.722vw, 0px);
  }
}
.bl_mv .bl_mv_content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_mv .bl_mv_content {
    margin-inline: clamp(0px, -339.231px + 24.231vw, 126px);
    width: 70%;
    max-width: none;
  }
}
.bl_mv .el_mv_copy {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .bl_mv .el_mv_copy {
    margin-top: 72px;
  }
}

.el_mv_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1035px;
  margin-top: 25px;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .el_mv_list {
    flex-direction: row;
    margin-top: 50px;
    -moz-column-gap: 23px;
         column-gap: 23px;
    row-gap: 40px;
  }
}
.el_mv_list li {
  width: 60%;
}
@media screen and (min-width: 1025px) {
  .el_mv_list li {
    width: 44%;
  }
  .el_mv_list li:nth-child(3) {
    margin-left: clamp(20px, -127.6px + 14.4vw, 74px);
  }
}

.el_mv_note {
  margin-top: 1em;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fafa08;
  font-weight: var(--fw-bold);
  position: relative;
  line-height: 1.2;
  padding-block: 10px;
  padding-inline: 2.027em;
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .el_mv_note {
    padding-block: 24px 22px;
    padding-inline: 75px 65px;
/*    font-size: clamp(24px, -11.043px + 2.826vw, 37px);*/
	font-size: clamp(22px, -5.353px + 2.206vw, 37px);
  }
}
.el_mv_note span {
  color: #ff0808;
}
.el_mv_note::before, .el_mv_note::after {
  content: "";
  background-image: url(../images/icon-key.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 46/60;
  height: 1.62162162em;
  position: absolute;
  top: 10px;
}
.el_mv_note::before {
  left: 7px;
}
@media screen and (min-width: 1025px) {
  .el_mv_note::before {
    left: 15px;
  }
}
.el_mv_note::after {
  right: 7px;
}
@media screen and (min-width: 1025px) {
  .el_mv_note::after {
    right: 15px;
  }
}

.bl_problem {
  padding-block: 0 !important;
}
.bl_problem h2.el_heading_full {
  flex-direction: row;
  align-items: baseline;
  font-size: 17px;
  padding-block: 30px;
  background-size: 100%;
  min-height: auto;
  background-image: url(../images/problem-heading-bg.png);
}
@media screen and (min-width: 1025px) {
  .bl_problem h2.el_heading_full {
    font-size: clamp(46px, 11.538px + 3.365vw, 60px);
    padding-block: 62px 40px;
  }
}
.bl_problem h2.el_heading_full span {
  font-size: 1.6em;
}
.bl_problem h2.el_heading_full::after {
  content: none;
}
.bl_problem .ly_sectionInner {
  position: relative;
  padding-block: 0 184px;
  --content-width: 1100px;
  margin-top: 50px !important;
}
@media screen and (min-width: 1025px) {
  .bl_problem .ly_sectionInner {
    margin-top: 130px !important;
  }
}
.bl_problem .el_problem_bg {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .bl_problem .el_problem_bg {
    width: clamp(100px, -67.355px + 30.992vw, 250px);
    right: 0px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_problem .el_problem_bg {
    left: -300px;
    left: clamp(-300px, 461.538px + -52.885vw, -80px);
    width: clamp(300px, -216.923px + 50.481vw, 510px);
  }
}
.bl_problem .bl_problem_items {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_problem .bl_problem_items {
    max-width: 1110px;
  }
}
.bl_problem .bl_problem_items li {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .bl_problem .bl_problem_items li:nth-child(2) {
    margin-left: 92px;
  }
  .bl_problem .bl_problem_items li:nth-child(3) {
    margin-left: 184px;
  }
  .bl_problem .bl_problem_items li:nth-child(4) {
    margin-left: 276px;
  }
}
.bl_problem .bl_problem_items li .el_problem_index {
  background-color: #f34f2a;
  color: #fff;
  border-radius: 100%;
  width: 4.40625em;
  height: 4.40625em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: var(--fw-bold);
  line-height: 1.3125;
  text-align: center;
  z-index: 2;
  font-size: 16px;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .bl_problem .bl_problem_items li .el_problem_index {
    font-size: clamp(24px, 11.882px + 1.183vw, 32px);
  }
}
.bl_problem .bl_problem_items li p {
  background-color: #fff5ee;
  color: #6a411e;
  font-weight: var(--fw-medium);
  line-height: 1.056;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  font-size: 18px;
  padding-block: 13px;
  padding-inline: 80px 20px;
  margin-left: -4em;
}
@media screen and (min-width: 1025px) {
  .bl_problem .bl_problem_items li p {
    margin-left: 0;
    padding-block: 1.11em;
    font-size: clamp(22px, 6px + 1.563vw, 36px);
    white-space: nowrap;
    padding-inline: 3.89em 2.78em;
    padding-left: clamp(110px, 64.556px + 4.438vw, 140px);
    flex-shrink: 0;
    margin-left: -100px;
  }
}
@media screen and (min-width: 1441px) {
  .bl_problem .bl_problem_items li p {
    padding-right: clamp(35px, -467.273px + 29.545vw, 100px);
    width: clamp(900px, 405px + 34.375vw, 1065px);
  }
}
.bl_problem .bl_problem_items li + li {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .bl_problem .bl_problem_items li + li {
    margin-top: 67px;
  }
}

.bl_about {
  padding-top: 0 !important;
  --content-width: 1388px;
}
.bl_about .el_heading_full {
  padding-top: 17px;
}
@media screen and (min-width: 1025px) {
  .bl_about .el_heading_full {
    padding-top: 70px;
  }
}
.bl_about .el_heading_full::after {
  --main-color: #fff;
  bottom: auto;
  top: 0;
}
.bl_about .ly_sectionInner {
  padding-top: 50px;
}
@media screen and (min-width: 1025px) {
  .bl_about .ly_sectionInner {
    padding-top: 78px;
  }
}
.bl_about .el_about_attraction {
  display: block;
  margin-inline: auto;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
  max-width: 720px;
}
@media screen and (min-width: 1025px) {
  .bl_about .el_about_attraction {
    max-width: none;
    margin-bottom: 170px;
  }
}
.bl_about .el_about_attraction::after {
  content: "";
  background-image: url(../images/delta-down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  aspect-ratio: 380/74;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  bottom: -67px;
  max-width: 180px;
}
@media screen and (min-width: 1025px) {
  .bl_about .el_about_attraction::after {
    max-width: 380px;
    bottom: -128px;
  }
}
.bl_about ul {
  display: grid;
  gap: 30px;
  max-width: 720px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_about ul {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 43px;
  }
}
.bl_about ul li {
  background-color: #fff;
  border-radius: 43px;
  padding-block: 18px 24px;
  padding-inline: 46px;
}
.bl_about ul li h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 25px;
  line-height: 1.09;
  gap: 8px;
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 1025px) {
  .bl_about ul li h3 {
    font-size: clamp(30px, 17.692px + 1.202vw, 35px);
  }
}
.bl_about ul li h3 span {
  font-size: 0.63em;
  font-weight: var(--fw-bold);
}
.bl_about ul li figure {
  text-align: center;
  margin-top: 24px;
}
.bl_about ul li p {
  text-align: center;
  font-weight: var(--fw-bold);
  line-height: 1.33;
  margin-top: 20px;
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_about ul li p {
    font-size: 18px;
  }
}

.bl_feature {
  --content-width: 1560px;
}
.bl_feature ol {
  margin-inline: auto;
  max-width: 1200px;
  font-weight: var(--fw-bold);
  margin-top: 55px;
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_feature ol {
    font-size: 22px;
    margin-top: 76px;
  }
}
.bl_feature ol li {
  list-style: none;
  display: flex;
  gap: 0.5em;
  line-height: 1.4;
}
.bl_feature ol li + li {
  margin-top: 10px;
}

.bl_step {
  --content-width: 1600px;
}
.bl_step h2 {
  font-size: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: var(--fw-bold);
  justify-content: center;
  color: var(--main-color);
}
@media screen and (min-width: 1025px) {
  .bl_step h2 {
    flex-direction: row;
    font-size: 70px;
    gap: 22px;
  }
}
.bl_step h2 span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  padding-inline: 30px;
  padding-block: 20px;
  white-space: nowrap;
  line-height: 1;
}
.bl_step .bl_steps {
  display: grid;
  gap: 50px;
  margin-top: 25px;
  max-width: 720px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps {
    max-width: none;
    margin-top: 121px;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.bl_step .bl_steps li {
  position: relative;
  list-style: none;
  border: 5px solid #dddddd;
  background-color: #fff;
  padding-block: 25px;
  padding-inline: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps li {
    margin-right: clamp(60px, -26.154px + 8.413vw, 95px);
  }
}
.bl_step .bl_steps li .el_step_label {
  font-weight: var(--fw-bold);
  background-color: var(--main-color);
  color: #fff;
  border-radius: 999px;
  line-height: 1;
  width: 100%;
  padding-block: 0.53em 0.5em;
  padding-inline: 20px;
  text-align: center;
  font-size: clamp(20px, -19.385px + 3.846vw, 36px);
}
.bl_step .bl_steps li h3 {
  font-weight: var(--fw-bold);
  margin-top: 21px;
  text-align: center;
  line-height: 1.2;
  font-size: 20px;
  font-size: clamp(20px, -4.615px + 2.404vw, 30px);
}
.bl_step .bl_steps li img {
  margin-top: 25px;
  display: block;
  margin-inline: auto;
}
.bl_step .bl_steps li .bl_step_text {
  font-weight: var(--fw-medium);
  font-size: clamp(16px, 11.077px + 0.481vw, 18px);
  line-height: 1.6;
  margin-top: 30px;
}
.bl_step .bl_steps li::before, .bl_step .bl_steps li::after {
  content: "";
  border-style: solid solid none;
  border-color: var(--bg-sub-color) transparent transparent;
  border-width: 45px 65px 0px;
  position: absolute;
  bottom: -45px;
  right: 50%;
  transform: translateX(50%);
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps li::before, .bl_step .bl_steps li::after {
    border-width: 67px 74px 0px;
    bottom: 50%;
    right: -72px;
    transform: translateX(50%) rotate(-90deg);
    transform-origin: bottom;
  }
}
.bl_step .bl_steps li::before {
  --bg-sub-color: #ddd;
}
.bl_step .bl_steps li::after {
  --bg-sub-color: #fff;
  bottom: -39px;
}
@media screen and (min-width: 1025px) {
  .bl_step .bl_steps li::after {
    bottom: 50%;
    right: -64px;
  }
}

.bl_voice {
  padding-block: 72px 85px;
}
@media screen and (min-width: 1025px) {
  .bl_voice {
    padding-block: 152px 175px;
  }
}
.bl_voice .bl_voice_items {
  margin-inline: auto;
  margin-top: 42px;
  max-width: 720px;
}
@media screen and (min-width: 1025px) {
  .bl_voice .bl_voice_items {
    max-width: 1117px;
    margin-top: 93px;
  }
}
.bl_voice .bl_voice_item {
  display: grid;
  background-color: #fff;
  border-radius: 50px;
  border: 2px solid var(--main-color);
  padding-block: 25px 25px;
  padding-inline: 22px;
  row-gap: 20px;
}
@media screen and (min-width: 1025px) {
  .bl_voice .bl_voice_item {
    grid-template-columns: 341px 1fr;
    gap: 33px;
    padding-block: 35px 35px;
    padding-inline: 29px;
  }
}
.bl_voice .bl_voice_item + .bl_voice_item {
  margin-top: 22px;
}
@media screen and (min-width: 1025px) {
  .bl_voice .bl_voice_item + .bl_voice_item {
    margin-top: 58px;
  }
}
.bl_voice .bl_voice_item figure {
  text-align: center;
}
.bl_voice .el_voiceItem_heading h3 {
  font-weight: var(--fw-bold);
  font-size: 22px;
  line-height: 1.36363636;
}
@media screen and (min-width: 1025px) {
  .bl_voice .el_voiceItem_heading h3 {
    font-size: 26px;
  }
}
.bl_voice .el_voiceItem_heading .el_voiceItem_meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  -moz-column-gap: 23px;
       column-gap: 23px;
  font-size: 22px;
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 1025px) {
  .bl_voice .el_voiceItem_heading .el_voiceItem_meta {
    margin-top: 15px;
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
}
.bl_voice .el_voiceItem_heading .el_voiceItem_meta li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--main-color);
}
.bl_voice .el_voiceItem_heading .el_voiceItem_label {
  color: #fff;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 29px;
  padding-inline: 9px;
}
.bl_voice .el_voiceItem_text {
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.94;
  margin-top: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .bl_voice .el_voiceItem_text {
    width: 100%;
    font-size: 16px;
    line-height: 1.94;
  }
}

.bl_faq {
  --content-width: 1327px;
}
.bl_faq .bl_faqItem {
  font-weight: var(--fw-medium);
  position: relative;
}
.bl_faq .bl_faqItem + .bl_faqItem {
  margin-top: 62px;
}
.bl_faq .bl_faqItem dt {
  background-color: #f4d8d0;
  font-size: 18px;
  line-height: 1.58;
  display: flex;
  align-items: center;
  padding-block: 20px 10px;
  gap: 20px;
  padding-inline: 20px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .bl_faq .bl_faqItem dt {
    min-height: 108px;
    font-size: 24px;
    line-height: 1.58;
    padding-block: 10px;
    gap: 80px;
    padding-inline: 74px;
  }
}
.bl_faq .bl_faqItem dt:before {
  --qa-icon-size: 47px;
  content: "";
  background-image: url(../images/icon-qa.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: var(--qa-icon-size);
  height: var(--qa-icon-size);
}
@media screen and (min-width: 1025px) {
  .bl_faq .bl_faqItem dt:before {
    --qa-icon-size: 68px;
    margin-top: 15px;
  }
}
.bl_faq .bl_faqItem dt::after {
  content: "";
  border-style: solid solid none;
  border-color: #f4d8d0 transparent transparent;
  border-width: 27px 32px 0px;
  position: absolute;
  bottom: -25px;
  left: 7px;
}
@media screen and (min-width: 1025px) {
  .bl_faq .bl_faqItem dt::after {
    border-width: 50px 72px 0px;
    bottom: -47px;
    left: 34px;
  }
}
.bl_faq .bl_faqItem dd {
  padding-block: 22px;
  padding-inline: 70px 20px;
  font-size: 16px;
  background-color: #f0f0f0;
}
@media screen and (min-width: 1025px) {
  .bl_faq .bl_faqItem dd {
    font-size: 20px;
    padding-block: 44px;
    padding-inline: 190px 30px;
  }
}

section.bl_form {
  padding-block: 0 59px;
  padding-inline: 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_form {
    padding-block: 0 99px;
  }
}
section.bl_form .bl_contact {
  max-width: var(--content-width);
  background-color: #fff;
  border: 5px solid #bf4200;
  border-radius: 50px;
  padding-block: 37px 50px;
  padding-inline: 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_form .bl_contact {
    padding-inline: 28px;
    padding-block: 55px 117px;
  }
}
section.bl_form .el_contact_note {
  text-align: center;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  section.bl_form .el_contact_note {
    font-size: 24px;
  }
}
section.bl_form .el_contact_note + .el_contact_note {
  margin-top: 10px;
}
section.bl_form form {
  margin-inline: auto;
  max-width: 800px;
  margin-top: 60px;
  color: #636d66;
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  section.bl_form form {
    font-size: 18px;
  }
}
section.bl_form .el_formItem {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  section.bl_form .el_formItem {
    grid-template-columns: 200px 1fr;
    gap: 40px;
  }
}
section.bl_form .el_formItem + .el_formItem {
  margin-top: 26px;
}
section.bl_form .el_formItem_label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #636d66;
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 1025px) {
  section.bl_form .el_formItem_label {
    justify-content: space-between;
  }
}
section.bl_form .el_formItem_label.is_require::after {
  content: "必須";
  display: grid;
  place-content: center;
  color: #fff;
  background-color: #cd1f1f;
  width: 2.93em;
  height: 2.93em;
  font-weight: var(--fw-bold);
  border-radius: 100%;
  font-size: 10px;
}
@media screen and (min-width: 1025px) {
  section.bl_form .el_formItem_label.is_require::after {
    font-size: 14px;
  }
}
section.bl_form .el_formItem_form {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
section.bl_form .el_formItem_form input[type=text],
section.bl_form .el_formItem_form input[type=email],
section.bl_form .el_formItem_form input[type=tel] {
  border-radius: 5px;
  border: 1px solid #cccccc;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding-block: 10px;
  padding-inline: 10px;
  width: 100%;
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  section.bl_form .el_formItem_form input[type=text],
  section.bl_form .el_formItem_form input[type=email],
  section.bl_form .el_formItem_form input[type=tel] {
    font-size: 20px;
  }
}
section.bl_form .el_formItem_form input[type=radio] {
  margin-right: 10px;
}
section.bl_form .el_formItem_form input[type=radio] + span {
  font-weight: var(--fw-bold);
  color: #636d66;
  cursor: pointer;
}
section.bl_form .el_formPolicy {
  margin-top: 54px;
  font-weight: var(--fw-bold);
  text-align: center;
  line-height: 1.4;
}
section.bl_form .el_formPolicy label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  margin-top: 10px;
}
section.bl_form .el_formPolicy label input {
  margin-right: 10px;
}
section.bl_form .el_formItem_button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cd1f1f;
  color: #fff;
  border-radius: 10px;
  max-width: 488px;
  width: 100%;
  min-height: 64px;
  padding: 8px 20px;
  margin-inline: auto;
  margin-top: 36px;
  box-shadow: 0 3px 6px #6fa48c;
  font-weight: var(--fw-bold);
  transition: all var(--transidion);
  font-size: 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_form .el_formItem_button {
    font-size: 32px;
  }
}
section.bl_form .el_formItem_button:hover {
  filter: brightness(1.1);
}
section.bl_form .el_formItem_button:active {
  box-shadow: none;
}

section.bl_company {
  padding-block: 51px 59px;
}
@media screen and (min-width: 1025px) {
  section.bl_company {
    padding-block: 99px 99px;
  }
}
section.bl_company > .ly_sectionInner {
  margin-top: 0;
}
section.bl_company .bl_comapny_info {
  max-width: var(--content-width);
  background-color: #fff;
  padding-inline: 28px;
  padding-block: 37px 77px;
  border-radius: 30px;
}
@media screen and (min-width: 1025px) {
  section.bl_company .bl_comapny_info {
    padding-block: 55px 140px;
  }
}
section.bl_company h2.el_heading_subtext {
  position: relative;
}
@media screen and (min-width: 1025px) {
  section.bl_company h2.el_heading_subtext {
    padding-bottom: 29px;
  }
}
section.bl_company table {
  max-width: 700px;
  margin-inline: auto;
  font-weight: var(--fw-bold);
  font-size: 15px;
  margin-top: 63px;
}
@media screen and (min-width: 1025px) {
  section.bl_company table {
    margin-top: 40px;
    font-size: 18px;
  }
}
section.bl_company table th,
section.bl_company table td {
  padding-inline: 0;
  padding-block: 15px;
}
@media screen and (min-width: 1025px) {
  section.bl_company table th,
  section.bl_company table td {
    padding-block: 18px;
  }
}
section.bl_company table th {
  width: 32%;
}
@media screen and (min-width: 1025px) {
  section.bl_company table th {
    width: 36%;
  }
}/*# sourceMappingURL=style.css.map */