html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
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;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: rgba(0, 0, 0, 0)
}

body {
    line-height: 1
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block
}

ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none
}

a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: rgba(0, 0, 0, 0);
    text-decoration: none
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold
}

del {
    text-decoration: line-through
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

input,
select {
    vertical-align: middle
}

* {
    box-sizing: border-box;
    position: relative
}

html {
    font-size: 10px;
    position: relative;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    min-height: 100%
}

body {
    font-family: "Inter", "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-feature-settings: "palt";
    word-break: auto-phrase;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #1b1b1b;
    min-height: 100%
}

@media screen and (min-width: 1024px) {
    body {
        font-size: 1.6rem
    }
}

body.el_black {
    background-color: #111;
    color: #fff
}

button {
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none;
    cursor: pointer
}

input {
    appearance: none;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 16px;
    color: inherit;
    font-family: inherit;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border: none;
    border-radius: 0
}

input:focus {
    border: none;
    box-shadow: none;
    outline: none
}

input::placeholder {
    color: #ccc
}

textarea {
    appearance: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100px;
    font-size: 16px;
    color: inherit;
    font-family: inherit;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border: none;
    border-radius: 0
}

textarea:focus {
    border: none;
    box-shadow: none;
    outline: none
}

input,
select,
textarea {
    font-family: "Inter", "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif
}

a {
    color: #1b1b1b
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-weight: normal
}

img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
    line-height: 1
}

sub {
    font-size: .6em;
    vertical-align: sub
}

:root {
    scrollbar-gutter: stable
}

:root:has(:modal) {
    overflow: clip
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
    display: none !important
}

dialog {
    position: fixed;
    inset: 0;
    overscroll-behavior-block: contain;
    transition-duration: 300ms;
    transition-property: display, overlay, opacity;
    transition-timing-function: ease-out;
    transition-behavior: allow-discrete
}

dialog::backdrop {
    background-color: oklch(from black l c h/50%);
    backdrop-filter: blur(4px);
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: inherit
}

@starting-style {

    dialog:modal,
    dialog:modal::backdrop {
        opacity: 0
    }
}

dialog:not(:modal),
dialog:not(:modal)::backdrop {
    opacity: 0
}

.bl_modal {
    width: 100%;
    --_max-width: 102.4rem;
    --_gutter: 2rem;
    position: fixed;
    inset: 0;
    overscroll-behavior-block: contain;
    max-inline-size: calc(min(var(--_max-width), 100%) - var(--_gutter)*2);
    max-block-size: calc(100% - var(--_gutter)*2);
    margin: revert;
    padding: 1.5rem;
    border: unset;
    border-radius: .6rem;
    box-shadow: 0 4px 6px oklch(from black l c h/0.1);
    background-color: #111;
    color: #333;
    outline: none;
    transition-duration: 300ms;
    transition-property: display, overlay, opacity;
    transition-timing-function: ease-in-out;
    transition-behavior: allow-discrete;
    
    /* ここから中央揃えのために榎本追記 */
    display: flex;
    justify-content: center;
    align-items: center;


}

.bl_modal::backdrop {
    background-color: oklch(from black l c h/0.5);
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: inherit
}

.bl_modal:not(:modal),
.bl_modal:not(:modal)::backdrop {
    opacity: 0;
    display: none
}

.bl_modal_inner_button_wrap {
    margin-top: 1.5rem;
    display: grid;
    place-content: center
}

.bl_modal_inner_button {
    background-color: #fff;
    color: #111;
    text-align: center;
    font-weight: 700;
    padding: .5rem 3rem;
    border-radius: .3rem
}

.ly_inner {
    width: 100%;
    max-width: 134rem;
    padding: 0 2rem;
    margin-left: auto;
    margin-right: auto
}

.bl_allWrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.bl_main {
    flex: 1;
    margin-top: 5rem
}

.bl_hdr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 0 0 0 2rem;
    min-height: 5rem;
    z-index: 999
}

.el_black .bl_hdr {
    background-color: #111
}

.bl_hdr.el_border {
    border-bottom: 1px solid #ddd
}

.bl_hdr_inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    min-height: 5rem
}

.bl_hdr_inner_logo_link {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    min-height: 5rem
}

.bl_hdr_inner_logo_link img {
    display: block;
    line-height: 1;
    width: 100%;
    max-width: 17.4rem
}

.bl_hdr_inner_btnWrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 1px
}

.bl_hdr_inner_btn {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background: #1b1b1b;
    color: #fff;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 9.2rem;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700
}

.el_black .bl_hdr_inner_btn {
    background: #fff;
    color: #1b1b1b
}

.bl_table_wrap+.bl_table_wrap {
    margin-top: 6rem
}

.bl_table_wrap_ttl {
    margin-bottom: 1rem
}

.bl_tableDefault {
    width: 100%
}

.bl_tableDefault th {
    background-color: #cddae7;
    padding: 1rem;
    min-width: 10rem;
    text-align: left;
    font-weight: 400
}

.bl_tableDefault td {
    background-color: hsla(0, 0%, 100%, .6);
    padding: 1rem
}

.bl_tableDefault tr:first-child th {
    border-right: 1px solid #cfd9e5
}

.bl_tableDefault tr:nth-child(n+2) th {
    border-top: 1px solid #cfd9e5;
    border-right: 1px solid #cfd9e5
}

.bl_tableDefault tr:nth-child(n+2) td {
    border-top: 1px solid #cfd9e5
}

.bl_tableDefault p {
    margin-bottom: 1.5rem
}

.bl_tableDefault h4 {
    margin-bottom: 1.5rem
}

.bl_tableDefault ul {
    list-style: disc;
    padding-left: 1em
}

.bl_tableDefault ul li+li {
    margin-top: .5em
}

.bl_tableDefault.el_vertical th {
    display: block;
    min-width: 100%;
    padding: 1rem 2rem
}

.bl_tableDefault.el_vertical td {
    display: block;
    min-width: 100%;
    padding: 1rem 2rem;
    padding-bottom: 1.5rem
}

.bl_tableDefault.el_vertical tr:first-child th {
    border-right: none
}

.bl_tableDefault.el_vertical tr:first-child td {
    border-top: 1px solid #cfd9e5
}

.bl_tableDefault.el_vertical tr:nth-child(n+2) th {
    border-top: 1px solid #cfd9e5;
    border-right: none
}

.bl_tableDefault.el_vertical tr:nth-child(n+2) td {
    border-top: 1px solid #cfd9e5
}

.bl_tableDefault.el_inTab th {
    display: block;
    min-width: 100%;
    padding: 1rem 2rem
}

.bl_tableDefault.el_inTab td {
    display: block;
    min-width: 100%;
    background: #fff;
    padding: 1rem 2rem;
    padding-bottom: 2.5rem
}

.bl_tableDefault.el_inTab tr:first-child th {
    border-right: none
}

.bl_tableDefault.el_inTab tr:first-child td {
    border-top: 1px solid #f1f5f3
}

.bl_tableDefault.el_inTab tr:nth-child(n+2) th {
    border-top: 1px solid #f1f5f3;
    border-right: none
}

.bl_tableDefault.el_inTab tr:nth-child(n+2) td {
    border-top: 1px solid #f1f5f3
}

.bl_tableDefault_innerItem+.bl_tableDefault_innerItem {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: #ddd 1px solid
}

.bl_lowPage_content * {
    margin-top: 0
}

.bl_lowPage_content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem
}

.bl_lowPage_content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem
}

.bl_lowPage_content h4 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem
}

.bl_lowPage_content p {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

.bl_lowPage_content img {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: .9rem
}

.bl_mv {
    background-color: #fff;
    border-bottom: 1px solid #ddd
}

.bl_mv_txtWrap {
    padding: 4rem 2rem
}

.bl_mv_txtWrap_ttl img {
    display: block;
    line-height: 1;
    width: 80vw;
    max-width: 42rem
}

.bl_mv_txtWrap_txt {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 2rem
}

.bl_mv02 {
    position: relative
}

.bl_mv02_txtWrap {
    padding: 4rem 2rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 99
}

.bl_mv02_txtWrap_ttl img {
    display: block;
    line-height: 1;
    width: 60vw;
    max-width: 42rem
}

.bl_mv02_txtWrap_txt {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 1.5rem
}

.bl_mv02_slide_item {
    position: relative;
    width: 100%;
    height: 67vw
}

.bl_mv02_slide_item img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover
}

.dots-wrap {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%)
}

.dots-wrap li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #fff;
    border-radius: 9999px;
    cursor: pointer
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #000
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: rgba(0, 0, 0, 0)
}

.bl_btn {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background: #1b1b1b;
    border: 1px solid #1b1b1b;
    color: #fff;
    border-radius: 3px;
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 28rem;
    padding: 1.5rem 2rem
}

.bl_btn.el_exlink::after {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: url("../img/common/icon_exlink.svg") no-repeat center center/contain;
    margin-left: 1rem;
    display: block;
    line-height: 1
}

.bl_btn.el_center {
    margin-left: auto;
    margin-right: auto
}

.bl_btn.el_right {
    margin-left: auto
}

.el_black .bl_btn {
    background: #fff;
    border: 1px solid #fff;
    color: #1b1b1b
}

.el_black .bl_btn.el_exlink::after {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: url("../img/common/icon_exlink_bk.svg") no-repeat center center/contain;
    margin-left: 1rem;
    display: block;
    line-height: 1
}

.bl_section {
    margin-top: 8rem
}

.bl_section+.bl_section .bl_section_txtWrap {
    padding-top: 8rem;
    border-top: 1px solid #ddd
}

.bl_section_txtWrap {
    margin-bottom: 4rem
}

.bl_section_ttl {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative
}

.bl_section_ttl::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    display: block;
    background-color: #1b1b1b;
    position: absolute;
    top: 1.5rem;
    left: 0;
    transform: translateY(-50%)
}

.el_black .bl_section_ttl::before {
    background-color: #fff
}

.bl_section_txt {
    padding-left: 2rem
}

.bl_section_col {
    display: flex;
    flex-direction: column;
    gap: 3rem
}

.bl_section_col_img {
    position: relative;
    padding-top: 100%
}

.bl_section_col_img img {
    display: block;
    line-height: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover
}

.bl_section_col_img.el_contain img {
    object-fit: contain
}

.bl_section_col_img.el_border {
    border: #ddd 1px solid
}

.bl_section_col_img.el_border img {
    padding: 2rem
}

.bl_section_col_txt {
    flex: 1
}

.bl_section_imgChange img {
    width: 100%;
    display: block;
    line-height: 1
}

.bl_section_imgChange img+img {
    margin-top: .1rem
}

.bl_section_imgChange+.bl_section_imgChange {
    margin-top: 2rem
}

.bl_section_col_txt_ttl {
    margin-bottom: 2rem
}

.bl_section_col_txt_ttl .el_main {
    display: block;
    line-height: 1.5;
    font-size: 2.4rem
}

.bl_section_col_txt_ttl .el_sub {
    display: block;
    line-height: 1.5;
    font-size: 1.6rem;
    letter-spacing: 0
}

.bl_section_btnWrap {
    margin-top: 4rem
}

.bl_section_card_img img {
    display: block;
    width: 100%;
    line-height: 1
}

.bl_section_card_txtWrap {
    padding: 2rem;
    background-color: #eff3f8
}

.el_black .bl_section_card_txtWrap {
    background-color: #000
}

.bl_section_card_txtWrap_ttl {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem
}

*+.bl_section_card_txtWrap_btn {
    margin-top: 2rem
}

.bl_section_movie {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9
}

.bl_section_movie img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover
}

.bl_section_movie .bl_section_movie_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background: #1b1b1b;
    border: 1px solid #1b1b1b;
    color: #fff;
    border-radius: 3px;
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem
}

.bl_section_movie .bl_section_movie_btn.el_icon {
    padding: 1.5rem
}

.bl_section_movie .bl_section_movie_btn.el_icon img {
    display: block;
    width: 2rem;
    height: auto
}

.bl_section_movie .bl_section_movie_btn.el_icon img:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .3s ease-out;
    opacity: 0
}

.bl_section_movie .bl_section_movie_btn.el_white {
    background: #fff;
    border: 1px solid #fff;
    color: #1b1b1b
}

.el_black .bl_section_movie .bl_section_movie_btn {
    background: #fff;
    border: 1px solid #fff;
    color: #1b1b1b
}

.bl_section_movie:hover .bl_section_movie_btn.el_icon img:nth-child(2) {
    opacity: 1
}

.el_black .bl_section_movie:hover .bl_section_movie_btn {
    background: #1b1b1b;
    border: 1px solid #1b1b1b;
    color: #fff
}

*+.bl_section_movie {
    margin-top: 3rem
}

.bl_ftr {
    margin-top: 8rem
}

.bl_ftr_form {
    padding: 8rem 0;
    border-top: #ddd 1px solid
}

.bl_ftr_bottom {
    background-color: #eff3f8;
    padding: 6rem 2rem 3rem
}

.el_black .bl_ftr_bottom {
    background-color: #000
}

.bl_ftr_bottom_col {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 4rem
}

.bl_ftr_bottom_col_nav_item_link {
    display: inline-block;
    line-height: 1;
    font-size: 1.2rem
}

.bl_ftr_bottom_col_logo_item {
    text-align: left
}

.bl_ftr_bottom_col_logo_item img {
    display: inline-block;
    width: 100%;
    max-width: 16rem
}

.bl_ftr_bottom_col_logo_item_link {
    display: inline-block;
    line-height: 1
}

.bl_ftr_bottom_col_logo_copyright {
    display: block;
    font-size: 1rem;
    line-height: 1;
    color: #666;
    margin-top: 1.5rem
}

.bl_list {
    list-style: disc;
    margin-left: 1em
}

.bl_list_item+.bl_list_item {
    margin-top: 1rem
}

.bl_youtube {
    display: block;
    width: 100%;
    aspect-ratio: 16/9
}

.bl_youtube iframe {
    width: 100%;
    height: 100%
}

.bl_ttl_only {
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5
}

.bl_ttl_only.el_align_center {
    text-align: center
}

.el_colorMain .bl_ttl_only {
    color: #fff
}

.bl_ttl_h2 {
    margin-bottom: 4rem
}

.bl_ttl_h2_sub {
    display: block;
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    color: #0075c2
}

.el_gradient .bl_ttl_h2_sub {
    color: #fff;
    opacity: .8
}

.el_align_center .bl_ttl_h2_sub {
    text-align: center
}

.bl_ttl_h2_main {
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: .5rem
}

.el_gradient .bl_ttl_h2_main {
    color: #fff
}

.el_align_center .bl_ttl_h2_main {
    text-align: center
}

.bl_ttl_h3 {
    margin-bottom: 2rem
}

.bl_ttl_h3_sub {
    display: inline-block;
    background-color: #0075c2;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    font-style: italic;
    font-weight: 500;
    padding: .5rem 1rem;
    margin-bottom: 1rem
}

.bl_ttl_h3_main {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 1rem;
    border-bottom: 1px #80c2e2 solid
}

.bl_txtDefault.el_align_center {
    text-align: center
}

.bl_txtDefault+.bl_txtDefault {
    margin-top: 1rem
}

.bl_txtDefault a {
    display: inline-block;
    color: #0075c2;
    text-decoration: underline
}

.bl_form_wrap {
    margin-top: 4rem;
    background-color: #eff3f8;
    border-radius: .6rem;
    padding: 2rem
}

.bl_form_wrap.el_black {
    background-color: #000
}

.bl_form_wrap .bl_form_inner {
    width: 100%;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto
}

.bl_form_wrap .el-step {
    margin: 0 auto;
    margin-bottom: 3rem
}

.bl_form_wrap .el-step-inner {
    display: flex;
    justify-content: space-between;
    position: relative
}

.bl_form_wrap .el-step-inner::after {
    content: "";
    height: 3px;
    background-color: #b1c1cb;
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    z-index: 1;
    width: calc(100% - 44px)
}

.bl_form_wrap .el-step-item {
    display: flex;
    flex-direction: column;
    align-items: center
}

.bl_form_wrap .el-step-item__num,
.bl_form_wrap .el-step-item__text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6em
}

.bl_form_wrap .el-step-item__num {
    color: #1b1b1b
}

.bl_form_wrap.el_black .el-step-item__num {
    color: #fff
}

.bl_form_wrap .el-step-item.is-active .el-step-item__num {
    color: #1b1b1b
}

.bl_form_wrap.el_black .el-step-item.is-active .el-step-item__num {
    color: #fff
}

.bl_form_wrap .el-step-item__circle {
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    border: 1px solid;
    border-color: #eff3f8;
    background-color: #b1c1cb;
    position: relative;
    z-index: 2
}

.bl_form_wrap .el-step-item.is-active .el-step-item__circle {
    background-color: #1b1b1b
}

.bl_form_wrap.el_black .el-step-item__circle {
    border-color: #000;
    background-color: #b1c1cb
}

.bl_form_wrap.el_black .el-step-item.is-active .el-step-item__circle {
    background-color: #fff
}

.bl_form_wrap .el-paragraph {
    margin: 0 auto 2rem
}

.bl_form_wrap .el-heading-lv2 {
    border-top: 1px solid #b1c1cb;
    position: relative;
    padding-top: 1.4rem;
    margin: 6rem auto 2.4rem
}

.bl_form_wrap .el-heading-lv2::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    height: 3px;
    background-color: #1b1b1b;
    width: 200px
}

.bl_form_wrap .el-heading-lv2 h2 {
    font-weight: 500;
    line-height: 150%;
    color: #1b1b1b;
    font-size: 2rem
}

.bl_form_wrap.el_black .el-heading-lv2 {
    border-color: #666
}

.bl_form_wrap.el_black .el-heading-lv2::before {
    background-color: #fff
}

.bl_form_wrap.el_black .el-heading-lv2 h2 {
    color: #fff
}

.bl_form_wrap .el-form-layout {
    margin: 0 auto 1.2rem
}

.bl_form_wrap .el-form-layout-item {
    border-bottom: 1px dashed #b1c1cb;
    display: flex;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    gap: 4px;
    flex-direction: column
}

.bl_form_wrap .el-form-layout-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
}

.bl_form_wrap .el-form-layout__heading {
    color: #1b1b1b;
    line-height: 200%;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 100%;
    margin-bottom: .4rem
}

.bl_form_wrap.el_black .el-form-layout__heading {
    color: #fff
}

.bl_form_wrap .el-form-layout__heading span:not(.el-form-layout__heading--required) {
    margin-right: .4rem;
    display: inline-block;
    vertical-align: middle
}

.bl_form_wrap .el-form-layout__heading--required {
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    line-height: 160%;
    font-size: 1rem;
    color: #fff;
    background-color: #ec5200;
    padding: .2rem .5rem;
    border-radius: 5px;
    margin: 0 .6rem .1rem .6rem
}

.bl_form_wrap .el-form-layout__text {
    width: 100%
}

.bl_form_wrap .el-textarea {
    margin: 0 auto 1.6rem
}

.bl_form_wrap .el-textarea textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    min-height: 14.7rem;
    padding: 1.1rem 1.2rem;
    resize: vertical;
    vertical-align: top;
    border: 1px solid #b1c1cb;
    border-radius: 3px;
    background-color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1b1b1b
}

.bl_form_wrap .el-textarea textarea:focus-visible {
    border: 1px solid #0075c2
}

.bl_form_wrap .el-textarea textarea::placeholder {
    color: #aaa
}

.bl_form_wrap .el-input-text input {
    border: 1px solid #b1c1cb;
    border-radius: 3px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 200%;
    padding: 1.1rem 1.2rem;
    color: #1b1b1b;
    width: 100%;
    background-color: #fff
}

.bl_form_wrap .el-input-text input:focus-visible {
    border: 1px solid #0075c2
}

.bl_form_wrap .el-input-text input::placeholder {
    color: #aaa
}

.bl_form_wrap .el-paragraph a {
    color: #1b1b1b;
    display: inline-block;
    text-decoration: underline
}

.bl_form_wrap.el_black .el-paragraph a {
    color: #fff
}

.bl_form_wrap button {
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none
}

.bl_form_wrap .el-color-box {
    background-color: #cfd9e5;
    margin: 0 auto 3.2rem
}

.bl_form_wrap .el-color-box:has(.el-submit-btn) {
    margin: 4rem auto 0;
    padding: 2rem 1.3rem 2rem 1.4rem
}

.bl_form_wrap.el_black .el-color-box {
    background-color: #666
}

.bl_form_wrap .el-submit-btn__inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

.bl_form_wrap .el-submit-btn button {
    display: block;
    width: 100%;
    padding: 1.2rem 2.2rem;
    position: relative;
    color: #fff;
    overflow: hidden;
    background-color: #1b1b1b;
    cursor: pointer
}

.bl_form_wrap .el-submit-btn button span {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 200%
}

.bl_form_wrap .el-submit-btn button.submit-btn {
    color: #fff;
    background-color: #1b1b1b
}

.bl_form_wrap .el-form-layout__text>*:first-child {
    margin-top: 0 !important
}

.bl_form_wrap .el-form-layout__text>*:last-child {
    margin-bottom: 0 !important
}

.bl_form_wrap .el-form-layout-item>*:first-child {
    margin-top: 0 !important
}

.bl_caption {
    font-size: 1.2rem
}

.el_mt10 {
    margin-top: 1rem
}

.el_mt20 {
    margin-top: 2rem
}

.el_mt30 {
    margin-top: 3rem
}

.el_mt40 {
    margin-top: 4rem
}

.el_mt50 {
    margin-top: 5rem
}

.el_mt60 {
    margin-top: 6rem
}

.el_mt70 {
    margin-top: 7rem
}

.el_mt80 {
    margin-top: 8rem
}

@media screen and (min-width: 768px) {
    .bl_hdr {
        padding-left: 3rem;
        min-height: 7rem
    }

    .bl_hdr_inner_logo_link {
        min-height: 7rem
    }

    .bl_hdr_inner_logo_link img {
        max-width: 26.4rem
    }

    .ly_inner {
        padding: 0 3rem
    }

    .bl_main {
        margin-top: 7rem
    }

    .bl_mv {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .bl_mv_txtWrap {
        flex: 1;
        padding: 4rem 3rem 4rem 6rem
    }

    .bl_mv_txtWrap_ttl img {
        width: 100%
    }

    .bl_mv_txtWrap_txt {
        font-size: 2rem;
        margin-top: 2.5rem
    }

    .bl_mv_slide {
        width: 55.555555556%
    }

    .bl_section_col {
        display: flex;
        flex-direction: row;
        gap: 2.8rem
    }

    .bl_section_col .bl_section_col_item {
        flex: 1
    }

    .bl_section_col.el_col_2 {
        flex-wrap: wrap
    }

    .bl_section_col.el_col_2 .bl_section_col_item {
        flex: inherit;
        width: calc(50% - 1.4rem)
    }

    .bl_section_col.el_col_3 {
        flex-wrap: wrap
    }

    .bl_section_col.el_col_3 .bl_section_col_item {
        flex: inherit;
        width: calc(33.333% - 1.866666667rem)
    }

    .bl_section_imgChange img {
        position: relative;
        transition: opacity .3s ease-out;
        z-index: 2
    }

    .bl_section_imgChange img+img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1
    }

    .bl_section_imgChange:hover img:first-child {
        opacity: 0
    }

    .bl_section_card {
        display: flex;
        flex-direction: column;
        height: 100%
    }

    .bl_section_card_txtWrap {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        padding: 3rem
    }

    .bl_section_card_txtWrap_ttl {
        font-size: 2rem
    }

    *+.bl_section_card_txtWrap_btn {
        margin-top: 3rem
    }

    .bl_section_ttl {
        font-size: 2.8rem;
        padding-left: 3rem;
        margin-bottom: 1.5rem
    }

    .bl_section_ttl::before {
        width: 1.6rem;
        height: 1.6rem;
        top: 2.1rem
    }

    .bl_section_txt {
        padding-left: 3rem
    }

    .bl_section_btnWrap {
        margin-top: 6rem
    }

    .bl_ftr_bottom {
        padding: 6rem 3rem 4rem
    }

    .bl_ftr_bottom_col_logo_item img {
        max-width: 20rem
    }

    .bl_ftr_bottom_col_logo_copyright {
        margin-top: 3rem
    }

    .bl_hdr_inner_btn {
        padding: 1.4rem 3rem;
        font-size: 1.4rem;
        width: 14.6rem;
        transition: .3s ease-out;
        transition-property: background, border, color
    }

    .bl_hdr_inner_btn.hover {
        background: #fff;
        color: #1b1b1b;
        opacity: 1
    }

    .el_black .bl_hdr_inner_btn.hover {
        background: #1b1b1b;
        color: #fff
    }

    .bl_btn {
        font-size: 1.8rem;
        transition: .3s ease-out;
        transition-property: background, border, color
    }

    .bl_btn.el_exlink::after {
        transition: background .3s ease-out
    }

    .bl_btn.hover {
        background: #fff;
        border: 1px solid #1b1b1b;
        color: #1b1b1b;
        opacity: 1
    }

    .bl_btn.hover.el_exlink::after {
        background: url("../img/common/icon_exlink_bk.svg") no-repeat center center/contain
    }

    .el_black .bl_btn.hover {
        background: #1b1b1b;
        border: 1px solid #fff;
        color: #fff;
        opacity: 1
    }

    .el_black .bl_btn.hover.el_exlink::after {
        background: url("../img/common/icon_exlink.svg") no-repeat center center/contain
    }

    .bl_section_movie .bl_section_movie_btn {
        font-size: 1.8rem;
        transition: .3s ease-out;
        transition-property: background, border, color
    }

    .bl_section_movie .bl_section_movie_btn.hover {
        background: #fff;
        border: 1px solid #1b1b1b;
        color: #1b1b1b;
        opacity: 1
    }

    .el_black .bl_section_movie .bl_section_movie_btn.hover {
        background: #1b1b1b;
        border: 1px solid #fff;
        color: #fff;
        opacity: 1
    }

    .bl_mv02_slide_item {
        height: 56vw;
        max-height: 70rem
    }

    .dots-wrap {
        bottom: 3rem
    }

    .bl_mv02_txtWrap {
        padding-left: 6rem;
        top: 50%;
        left: 5%
    }

    .bl_mv02_txtWrap_ttl img {
        width: 100%
    }

    .bl_mv02_txtWrap_txt {
        font-size: 2rem;
        margin-top: 2.5rem
    }

    .bl_form_wrap {
        margin-top: 6rem;
        padding: 6rem
    }

    .bl_form_wrap .el-heading-lv2 h2 {
        font-size: 2.4rem
    }

    .bl_form_wrap .bl_form_wrap .el-form-layout__heading {
        font-size: 1.6rem
    }

    .bl_section_movie .bl_section_movie_btn.el_icon {
        padding: 3rem
    }

    .bl_section_movie .bl_section_movie_btn.el_icon img {
        width: 3rem
    }
}

.bl_temp01_mv {
    position: relative;
    width: 100%;
    height: calc(100vh - 5rem);
    min-height: 60rem
}

.bl_temp01_mv_txtWrap {
    position: relative;
    z-index: 2;
    padding-top: 6rem
}

.bl_temp01_mv_bg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover
}

.bl_temp01_mv_txtWrap_ttl {
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 700
}

.bl_temp01_mv_txtWrap_txt {
    margin-top: 2rem
}

.bl_temp01_mv_txtWrap_btn_wrap {
    display: flex;
    margin-top: 4rem
}

.bl_temp01_mv_txtBottom {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding-bottom: 4rem
}

.bl_temp01_corporate_txt {
    padding: 4rem 0
}

.bl_temp01_feature_list {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem
}

.bl_temp01_feature_list_item {
    background-color: #444;
    border-radius: .6rem;
    padding: 1.5rem;
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.bl_temp01_feature_list_item_txt_ttl {
    font-size: 1.6rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: hsla(0, 0%, 100%, .5) 1px solid;
    margin-bottom: 1rem
}

.bl_temp01_feature_list_item_txt {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.bl_temp01_feature_list_item_img img {
    border-radius: .3rem;
    overflow: hidden
}

.bl_temp01_feature_list_item_img .el_zoom {
    position: relative
}

.bl_temp01_feature_list_item_img .el_zoom .bl_icon_zoom {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: block;
    padding: .5rem;
    background-color: #fff;
    line-height: 1;
    border-radius: .3rem 0 0 0
}

.bl_temp01_feature_list_item_img .el_zoom .bl_icon_zoom img {
    display: block;
    width: 4rem!important;
    height: auto!important;
}

.bl_youtube {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: .3rem;
    overflow: hidden
}

.bl_youtube iframe {
    width: 100%;
    height: 100%
}

.bl_temp01_anchor_list {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem
}

.bl_temp01_anchor_list_item {
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
    border-radius: .6rem;
    width: calc(33.333% - 0.6666666667rem);
    padding: 1rem;
    transition: opacity .3s ease
}

.bl_temp01_anchor_list_item.hover {
    opacity: .6
}

.bl_temp01_anchor_list_item.el_big {
    transform: scale(1.05);
    border: #145be5 3px solid;
}

.bl_temp01_anchor_list_item_inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.bl_temp01_anchor_list_item_txt {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.bl_temp01_anchor_list_item_txt_ttl {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5
}

.bl_temp01_anchor_list_item_txt_p {
    font-size: 1.2rem;
    margin-top: 1rem
}

.bl_temp01_anchor_list_item_img {
    margin-top: 1.5rem;
    text-align: center
}

.bl_temp01_anchor_list_item_img img {
    display: inline-block;
    width: 8rem!important;
    height: auto
}

.bl_temp01_anchor_list_item_arrow {
    margin-top: 1.5rem;
    padding-top: 1rem;
    text-align: center;
    border-top: rgba(0, 0, 0, .5) 1px solid
}

.bl_temp01_anchor_list_item_arrow img {
    display: inline-block;
    width: 2.4rem;
    height: auto
}

.bl_temp01_example_list {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem .2rem;
    align-items: flex-start;
    justify-content: center
}

.bl_temp01_example_list_item {
    width: calc(50% - .1rem)
}

.bl_temp01_example_list_item.el_txtIn {
    position: relative
}

.bl_temp01_example_list_item.el_txtIn .bl_temp01_example_list_item_txt {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, .7)
}

.bl_temp01_example_list_item_txt {
    background-color: #444;
    padding: .5rem 1rem
}

.bl_temp01_example_list_item_txt_ttl {
    font-size: 1.6rem;
    font-weight: 700
}

.bl_temp01_variations_list {
    margin-top: 4rem
}

.bl_temp01_variations_list_item {
    border-radius: .6rem;
    background-color: #444;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem
}

.bl_temp01_variations_list_item_img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: .3rem;
    overflow: hidden
}

.bl_temp01_variations_list_item_txt_main_subTtl {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    background-color: #f1f1f1;
    color: #111;
    padding: .3rem 1rem;
    border-radius: .3rem;
    margin-bottom: 1rem
}

.bl_temp01_variations_list_item_txt_main_ttl {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: hsla(0, 0%, 100%, .5) 1px solid
}

.bl_temp01_variations_list_item_txt_sub {
    margin-top: 3rem
}

.bl_temp01_variations_list_item_txt_sub_item+.bl_temp01_variations_list_item_txt_sub_item {
    margin-top: 3rem
}

.bl_temp01_variations_list_item_txt_sub_item_ttl {
    font-size: 1.6rem;
    font-weight: 700;
    border-left: hsla(0, 0%, 100%, .5) 3px solid;
    padding-left: 1rem;
    margin-bottom: 2rem
}

.bl_temp01_variations_list_item_txt_sub_item_col {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.bl_temp01_variations_list_item_txt_sub_item_list_item {
    padding-left: 1.3rem;
    position: relative
}

.bl_temp01_variations_list_item_txt_sub_item_list_item::before {
    content: "";
    display: block;
    width: .3rem;
    height: .3rem;
    background-color: hsla(0, 0%, 100%, .5);
    position: absolute;
    left: 0;
    top: .9rem
}

.bl_temp01_variations_list_item_txt_sub_item_list_item+.bl_temp01_variations_list_item_txt_sub_item_list_item {
    margin-top: 1rem
}

.bl_temp01_variations_list_item_txt_sub_item_list_img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: .3rem;
    overflow: hidden
}

.bl_temp01_variations_list_item_txt_sub_btnWrap {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.bl_temp01_free_content {
    margin-top: 4rem
}

.bl_temp01_free_content_p {
    text-align: center;
    margin-bottom: 1.5rem
}

.bl_temp01_free_content_img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: .6rem;
    overflow: hidden
}

.bl_temp01_flow_list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center
}

.bl_temp01_flow_list_item {
    border-radius: .6rem;
    background-color: #444;
    padding: 1.5rem;
    position: relative
}

.bl_temp01_flow_list_item:not(:last-child)::after {
    content: "";
    width: 4rem;
    height: 4rem;
    background: url("../img/common/icon_arrow_right.svg") no-repeat center center/contain;
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%) rotate(90deg)
}

.bl_temp01_flow_list_item_step {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f1f1f1;
    color: #111;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    gap: .3rem;
    padding: .5rem 1rem;
    border-radius: .6rem 0 .6rem 0
}

.bl_temp01_flow_list_item_step span {
    font-weight: 700;
    line-height: 1
}

.bl_temp01_flow_list_item_step .bl_temp01_flow_list_item_step_txt {
    font-size: 1.2rem;
    padding-bottom: .1rem
}

.bl_temp01_flow_list_item_step .bl_temp01_flow_list_item_step_num {
    font-size: 1.8rem
}

.bl_temp01_flow_list_item_img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: .3rem;
    overflow: hidden
}

.bl_temp01_flow_list_item_txt {
    margin-top: 1.5rem
}

.bl_temp01_flow_list_item_txt_ttl {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: hsla(0, 0%, 100%, .5) 1px solid
}

.bl_temp01_download_list {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem
}

.bl_temp01_download_list_item {
    background-color: #444;
    border-radius: .6rem;
    padding: 1rem;
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: opacity .3s ease
}

.bl_temp01_download_list_item.hover {
    opacity: .6
}

.bl_temp01_download_list_item_img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: .3rem
}

.bl_temp01_download_list_item_txt_ttl {
    display: flex;
    align-items: center;
    gap: .4rem
}

.bl_temp01_download_list_item_txt_ttl span {
    display: block
}

.bl_temp01_download_list_item_txt_ttl .el_txt {
    color: #f1f1f1;
    font-weight: 700;
    flex: 1
}

.bl_temp01_download_list_item_txt_ttl .el_icon {
    width: 2rem
}

.bl_temp01_download_list_item_txt_ttl .el_icon img {
    display: block;
    width: 100%;
    height: auto
}

.bl_temp01_section {
    padding: 6rem 0
}

.bl_temp01_ttl_h2 {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: center
}

.bl_temp01_ttl_h4 {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem
}

.bl_temp01_btn {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 1.2rem 2.2rem;
    color: #fff;
    font-size: 1.6rem;
    line-height: 150%;
    text-decoration: none;
    transition: box-shadow .3s ease, color .3s ease, border-color .3s ease;
    overflow: hidden;
    position: relative;
    min-width: 24rem;
    background: linear-gradient(90deg, #10334a 0%, rgba(16, 51, 74, 0.7) 100%);
    border: 1px solid rgba(241, 244, 245, .4705882353);
    box-shadow: 3px 3px 11px 2px rgba(255, 64, 121, .25)
}

.bl_temp01_btn.el_download {
    border: 1px solid rgba(231, 239, 255, .4705882353);
    box-shadow: 3px 3px 11px 2px rgba(0, 87, 255, .3)
}

.bl_temp01_btn.el_download::before {
    background: linear-gradient(270deg, #1655e2 23.5%, #0136bb 100%)
}

.bl_temp01_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity .3s ease;
    background: linear-gradient(270deg, #da3d7a 23.5%, #c70e38 100%)
}

.bl_temp01_btn span {
    position: relative;
    text-align: center
}

.bl_temp01_btn.hover {
    box-shadow: none !important;
    color: #fff !important
}

.bl_temp01_btn.hover::before {
    opacity: 0
}

.bl_temp01_table_wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 4rem
}

.bl_temp01_table {
    width: 100%
}

.bl_temp01_table th {
    background-color: #111;
    padding: 1rem;
    min-width: 10rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd
}

.bl_temp01_table th:first-child {
    border-left: 1px solid #ddd
}

.bl_temp01_table th.el_align_center {
    text-align: center
}

.bl_temp01_table th.el_vertical_middle {
    vertical-align: middle
}

.bl_temp01_table td {
    background-color: #111;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd
}

.bl_temp01_table td:first-child {
    border-left: 1px solid #ddd
}

.bl_temp01_table td.el_align_center {
    text-align: center
}

.bl_temp01_table td.el_vertical_middle {
    vertical-align: middle
}

.bl_temp01_table tr:first-child th {
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd
}

.bl_temp01_table thead th {
    background-color: #f1f1f1;
    color: #111
}

.bl_temp01_table p {
    margin-bottom: 1.5rem
}

.bl_temp01_table h4 {
    margin-bottom: 1.5rem
}

.bl_temp01_table ul {
    list-style: disc;
    padding-left: 1em
}

.bl_temp01_table ul li+li {
    margin-top: .5em
}

.bl_temp01_table.el_vertical th {
    display: block;
    min-width: 100%;
    padding: 1rem 2rem
}

.bl_temp01_table.el_vertical td {
    display: block;
    min-width: 100%;
    padding: 1rem 2rem;
    padding-bottom: 1.5rem
}

.bl_temp01_table.el_vertical tr:first-child th {
    border-right: none
}

.bl_temp01_table.el_vertical tr:first-child td {
    border-top: 1px solid #cfd9e5
}

.bl_temp01_table.el_vertical tr:nth-child(n+2) th {
    border-top: 1px solid #cfd9e5;
    border-right: none
}

.bl_temp01_table.el_vertical tr:nth-child(n+2) td {
    border-top: 1px solid #cfd9e5
}

@media screen and (min-width: 768px) {
    .bl_temp01_mv {
        height: calc(100vh - 7rem);
        min-height: 65rem
    }

    .bl_temp01_mv_txtWrap {
        padding-top: 8rem
    }

    .bl_temp01_mv_txtWrap_ttl {
        font-size: 4.2rem
    }

    .bl_temp01_mv_txtWrap_btn_wrap {
        margin-top: 6rem
    }

    .bl_temp01_corporate {
        display: flex
    }

    .bl_temp01_corporate_img {
        width: 50%
    }

    .bl_temp01_corporate_txt {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .bl_temp01_section {
        padding: 8rem 0
    }

    .bl_temp01_ttl_h2 {
        font-size: 3.2rem
    }

    .bl_temp01_ttl_h4 {
        font-size: 1.8rem
    }

    .bl_temp01_feature_list {
        margin-top: 6rem;
        gap: 3rem;
        justify-content: center
    }

    .bl_temp01_feature_list_item {
        padding: 2.4rem;
        width: calc(33.333% - 2rem);
        gap: 1.5rem
    }

    .bl_temp01_feature_list_item_txt_ttl {
        font-size: 1.8rem;
        text-align: center;
        padding-bottom: 1.6rem;
        margin-bottom: 1.6rem
    }

    .bl_temp01_feature_list_item_txt_p {
        text-align: center;
        font-size: 1.4rem
    }

    .bl_temp01_anchor_list {
        margin-top: 6rem;
        gap: 2rem;
        flex-wrap: nowrap
    }

    .bl_temp01_anchor_list_item {
        width: 100%;
        padding: 2.4rem
    }

    .bl_temp01_anchor_list_item.el_big {
        transform: scale(1.08);
        border: #145be5 6px solid
    }

    .bl_temp01_anchor_list_item_txt_ttl {
        font-size: 1.8rem;
        text-align: center
    }

    .bl_temp01_anchor_list_item_txt_p {
        font-size: 1.4rem;
        text-align: center
    }

    .bl_temp01_anchor_list_item_img {
        margin-top: 2rem
    }

    .bl_temp01_anchor_list_item_img img {
        width: 4.8rem
    }

    .bl_temp01_anchor_list_item_arrow {
        margin-top: 2rem;
        padding-top: 1.5rem
    }

    .bl_temp01_example_list {
        margin-top: 6rem;
        flex-wrap: nowrap
    }

    .bl_temp01_example_list_item {
        width: 100%
    }

    .bl_temp01_variations_list {
        margin-top: 6rem
    }

    .bl_temp01_variations_list_item {
        flex-direction: row-reverse;
        padding: 6rem;
        min-height: calc(100vh - 10rem);
        align-items: center;
        gap: 4.8rem
    }

    .bl_temp01_variations_list_item_txt {
        flex: 1
    }

    .bl_temp01_variations_list_item_img {
        width: 40%
    }

    .bl_temp01_variations_list_item_txt_sub_item_col {
        flex-direction: row;
        gap: 3rem
    }

    .bl_temp01_variations_list_item_txt_sub_item_list_img {
        width: 30%
    }

    .bl_temp01_variations_list_item_txt_main_subTtl {
        font-size: 1.8rem
    }

    .bl_temp01_variations_list_item_txt_main_ttl {
        font-size: 2.4rem
    }

    .bl_temp01_variations_list_item_txt_sub_item_ttl {
        font-size: 1.8rem
    }

    .bl_temp01_variations_list_item_txt_sub {
        margin-top: 4rem
    }

    .bl_temp01_variations_list_item_txt_sub_btnWrap {
        margin-top: 6rem
    }

    .bl_temp01_free_content {
        margin-top: 6rem
    }

    .bl_temp01_free_content_p {
        margin-bottom: 2rem
    }

    .bl_temp01_flow_list {
        margin-top: 6rem;
        flex-direction: row;
        flex-wrap: nowrap
    }

    .bl_temp01_flow_list_item {
        padding: 2rem
    }

    .bl_temp01_flow_list_item:not(:last-child)::after {
        width: 4rem;
        height: 4rem;
        bottom: inherit;
        left: inherit;
        top: 50%;
        right: -4rem;
        transform: translateY(-50%) rotate(0)
    }

    .bl_temp01_flow_list_item_txt_ttl {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem
    }

    .bl_temp01_download_list {
        margin-top: 6rem;
        gap: 3rem
    }

    .bl_temp01_download_list_item {
        padding: 1.5rem;
        width: calc(20% - 2.4rem);
        gap: 1.5rem
    }

    .bl_temp01_feature_list_item_img img {
        border-radius: .3rem;
        overflow: hidden
    }

    .bl_temp01_feature_list_item_img .el_zoom .bl_icon_zoom {
        padding: 1rem
    }

    .bl_temp01_feature_list_item_img .el_zoom .bl_icon_zoom img {
        width: 2.4rem
    }
    /* ▼ 2025年10月3日 榎本が製品選択ボックスの高さを調整するために追記 */
    .el-select-synergy.drill-down select {
       height: 40px;
    }

}

/*# sourceMappingURL=main.css.map */