/* /////////////////////////////////




reset.css




///////////////////////////////// */






/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    vertical-align:baseline;
    background:transparent;
}

html{
font-size:10px;
scroll-behavior: smooth;
}

body {
  /* プロジェクトによって変動 */
    background-color:#FFF;
    color: var(--text-color);
    line-height: 1.8;
    font-family: var(--font-jp);
    font-weight: 400;
    font-variant-numeric: tabular-nums;
  /* safari hover対策 */
    -webkit-font-smoothing: antialiased;
    font-size: 1.6rem;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}



h1{
    font-size: 4.8rem;
}

h2{
    font-size: 3.2rem;
}

h3{
    font-size: 2.4rem;
}

h4{
    font-size: 2.4rem;
}

h5{
    font-size: 2rem;
}



ul, ol {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    vertical-align:baseline;
    text-decoration: none;
    color: inherit;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
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;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

img {
    vertical-align: bottom;
    line-height: 1.0;
}

button {
    line-height: 1.0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-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;
}

select{
color:#333;
}


@media screen and (max-width:650px) {

    html{
  /* 1rem = 50pxと再定義 */
    font-size: 5px;
    }
    body{

    font-size: 2.8rem;
    }

    h1{

    font-size: 8rem;
    }
    h2{

    font-size:4rem;
    }

    h3{

    font-size: 3.6rem;
    }

    h4{
    font-size: 3.6rem;
    }
}






/* /////////////////////////////////




フォント・色




///////////////////////////////// */







:root {
    --text-color: #222222;
    --main-color: #3A34FF;
    --title-color: #C3C1FF;
    --background-color: #F7FBFF;
    --border-color: #DDDDDD;
    --accent-color: #FFFF00;
    --gradation-color: linear-gradient(90deg, #5800FF 0%, #5CE1E6 100%);
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-jp-02: 'Inter', sans-serif;
    --title-font: 'Roboto', sans-serif;
    --accent-font: 'DIN Alternate', sans-serif;
}


* {
    list-style: none;
}

body a {
    cursor: pointer;
    text-decoration: none;
}






/* /////////////////////////////////




コンテンツ幅




///////////////////////////////// */





.large_container {
    max-width: 1250px;
    width: 90%;
    margin: 0 auto;
}

.container {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
}

.mid_container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}



/* /////////////////////////////////




余白 / 改行




///////////////////////////////// */


.mt_20 {
    margin-top: 2rem;
}

.mt_40 {
    margin-top: 4rem;
}

.mt_60 {
    margin-top: 6rem;
}

.ptb_100 {
    padding: 10rem 0;
}

.br {
    display: inline-block;
}

/* /////////////////////////////////




ボタン・リンク




///////////////////////////////// */




.btn {
    height: 55px;
    width: 260px;
    background: var(--text-color);
    color: #fff;
    display: inline-block;
    border-radius: 999px;
    text-align: center;
    line-height: 3;
    transition: .5s;
    position: relative;
    border: 1px solid #000000;
    font-weight: 600;
    box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.15);
    box-sizing: border-box;
}

.btn::after {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 21px;
    top: 49%;
    color: #fff;
    transform: translateY(-50%);
    opacity: 0.7;
}

.btn_blue {
    background: var(--gradation-color);
    border: 1px solid #fff;
}


.btn:hover {
    background: rgba(34,34,34,0.8);
}

.btn_blue:hover {
    opacity: 0.7;
    background: var(--gradation-color);
}


.btn_wrap {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.link {
    padding: 0;
    border-bottom: 2px solid #DDDDDD;
    position: relative;
    padding: 0 1rem 1.8rem 1rem;
    font-weight: 500;
    color: var(--text-color);
    display: inline-flex;
    align-items: baseline;
}

.about_text_wrap .link a {
    display: flex;
    padding: 10px 35px 5px;
    position: relative;
}
.link::after {
    content: '';
    background: var(--gradation-color);
    width: 30%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: .5s;
}

.link .fa-solid, .fas {
    border: 1px solid #CCCCCC;
    padding: 9px;
    border-radius: 50%;
    margin-left: 5rem;
    transition: .5s;
	 pointer-events: none;
}

.link:hover::after {
    width: 100%;
}

.link i.fa-solid.fa-arrow-right {
    position: absolute;
    right: 25px;
}



/* /////////////////////////////////




コンテンツのタイトル




///////////////////////////////// */




.contents_title p {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
}

.contents_title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
}

.contents_title {
    position: relative;
}

.contents_title::before {
    content: '';
    background: var(--gradation-color);
    display: inline-block;
    width: 40px;
    height: 5px;
    border-radius: 6rem;
    position: absolute;
    bottom: -4rem;
    left: 0;
}

.contents_title::after{
    content: '';
    background: var(--gradation-color);
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    bottom: -4rem;
    left: 43px;
}






/* /////////////////////////////////




コンタクトエリア




///////////////////////////////// */






.contact_area {
    padding: 8rem 0;
    background: var(--gradation-color);
    position: relative;
    z-index: 0;
}

.contact_area::before {
    content: '';
    background-image: url(https://lp.digirise.ai/wp-content/themes/digirise/asset/image/mv_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: lighten;
    z-index: -1;
}

.contact_area .contents_title p {
    color: var(--accent-color);
}

.contact_area .contents_title h2 {
    color: #fff;
}

.contact_area .contents_title::after {
    background: #fff;
}

.contact_area .contents_title::before {
    background: #fff;
}

.contact_area .btn_wrap {
    justify-content: flex-start;
    margin-top: 3rem;
}

.contact_area .btn_wrap .btn {
    border: 1px solid #fff;
}

.contact_area_lead {
    font-weight: 500;
    font-size: 1.8rem;
    font-family: var(--font-jp-02);
    color: #fff;
    margin-top: 8rem;
}

.contact_area_inner {
    position: relative;
    max-width: 1250px;
    width: 100%;
}

/* .contact_area_inner::before {
    content: '';
    background: url(../image/book.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 300px;
    height: 300px;
    position: absolute;
    top: 0;
    right: 0;
}
 */


.book img {
    width: 100%;
}


.book {
    position: absolute;
    right: -4%;
    width: 50%;
    height: auto;
    top: 50%;
    z-index: 999;
    transform: translateY(-50%);
}

/* /////////////////////////////////




メインビジュアル




///////////////////////////////// */




.mv_bg {
    background: linear-gradient(90deg, #5800FF 0%, #4D14FF 20%,#0096FF 70%);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.mv_bg::before{
    content: '';
    background-image: url(https://lp.digirise.ai/wp-content/themes/digirise/asset/image/mv_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: lighten;
	 pointer-events: none;
}

.mv_inner h1 {
    color: #fff;
    font-size: 3.2rem;
    padding-top: 6rem;
}

.mv_inner {
    padding-top: 6rem;
}

.mv_lead_img {
    width: 80%;
    max-width: 680px;
    margin-top: 3rem;
}

.mv_lead_wrap {
    text-align: center;
}

.mv_head p {
    color: #fff;
    font-family: var(--font-jp-02);
    font-weight: 500;
    font-size: 1.8rem;
    margin-top: 3rem;
}

.mv .btn_wrap {
    margin-top: 4rem;
}

/* ツールチップ */

.btn_tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip-text {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -70px;
    display: inline-block;
    padding: 10px 15px;
    width: 205px;
    font-size: 11px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 3px;
    transition: 0.3s ease-in;
    box-sizing: border-box;
}

.btn_tooltip:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

.tooltip-text::before {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	margin-left: -7px;
	border: 7px solid transparent;
	border-top: 7px solid rgba(0,0,0,0.7);
}


.mv {
    position: relative;
}

.mv_number_list {
    position: relative;
}

.mv_number_list p:first-of-type {
    color: #fff;
    font-size: 12px;
}

.mv_number_list p {
    white-space: nowrap;
}

.number {
    color: var(--accent-color);
    font-weight: 700;
}

.number span {
    font-family: var(--accent-font);
    font-size: 6.4rem;
    line-height: 1;
}

.mv_number_list::before {
    content: '';
    display: inline-block;
    background-image: url(https://lp.digirise.ai/wp-content/themes/digirise/asset/image/wing.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 49px;
    height: 97px;
    position: absolute;
    left: -25%;
    top: 0;
}

.mv_number_list::after {
    content: '';
    display: inline-block;
    background-image: url(https://lp.digirise.ai/wp-content/themes/digirise/asset/image/wing02.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 49px;
    height: 97px;
    position: absolute;
    right: -26%;
    top: 0;
}

.mv_number_wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    right: -3%;
}

.mv_foot_img {
    display: flex;
    position: relative;
    flex-shrink: 0;
    width: 70%;
    bottom: -54px;

}


.mv_foot_lead_bg {
    background-image: url(https://lp.digirise.ai/wp-content/themes/digirise/asset/image/bg.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    text-align: center;
    position: relative;
    aspect-ratio: 1 / 1;
}

.mv_foot_lead_item::before {
    content: '';
    background: var(--accent-color);
    width: 2px;
    height: 90px;
    transform: rotate(-148deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.mv_foot_lead_bg p {
    color: #fff;
}

.small_text {
    font-size: 12px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
}

.small_text:first-of-type {
    top: 35px;
}

.small_text:last-of-type {
    bottom: 35px;
}

.mv_foot_number {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.mv_foot_number p {
    color: var(--accent-color);
    font-size: 10.4rem;
    font-weight: 700;
    font-family: var(--accent-font);
    line-height: 1;
    position: absolute;
}

.mv_foot_number p:first-of-type {
    top: 60px;
    left: 5vw;
}

.mv_foot_number p:last-of-type {
    bottom: 60px;
    right: 5vw;
}

.mv_foot {
    display: flex;
    justify-content: center;
    align-items: center;
	 margin-top: -40px;
}

.mv_foot_lead {
    flex-shrink: 0;
    width: 23%;
    position: relative;
    right: 9%;
    top: -104px;
}


.animal {
    width: 27%;
    position: absolute;
    bottom: -10%;
    right: 7%;
}

.annotation {
    color: #707070;
    font-size: 10px;
    position: absolute;
    width: 30%;
    bottom: 8px;
    left: -18%;
    text-align: left;
}

.mv_foot_img_sp {
    display: contents;
}

.animal_sp {
    display: none;
}

.annotation_sp {
    display: none;
}


@media screen and (max-width:1200px) {


.mv_number_wrap {
    right: -5%;
}

.mv_foot_lead {
    right: 7%;
    top: -50px;
}

.mv_foot_number p {
    font-size: 7.2rem;
}

.mv_foot_lead_item::before {
    height: 65px;
}

.mv_foot_number p:first-of-type {
    top: 51px;
    left: 6vw;
}
.mv_foot_number p:last-of-type {
    bottom: 51px;
    right: 6vw;
}

.mv_foot_lead {
    right: 6%;
    top: -57px;
}

.animal {
    right: 6%;
}

.mv_number_list::before {
    width: 45px;
    height: 77px;
    left: -28%;
}

.mv_number_list::after {
    width: 45px;
    height: 77px;
    right: -34%;
}

.number span {
    font-size: 5rem;
}

.annotation {
    width: 28%;
    bottom: -6px;
}



}










/* /////////////////////////////////




導入企業 / 提携先




///////////////////////////////// */




.partner {
    padding: 10rem 0;
}

.center {
    text-align: center;
}

.partner h2 {
    font-size: 2.4rem;
    position: relative;
    display: inline-block;
}

.partner h2::before {
    content: '';
    background: var(--gradation-color);
    display: inline-table;
    border-radius: 6rem;
    width: 40px;
    height: 5px;
    position: absolute;
    bottom: -4rem;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.partner h2::after {
    content: '';
    background: var(--gradation-color);
    display: inline-table;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    bottom: -4rem;
    right: 34%;
}




/* /////////////////////////////////

ループスライダー

///////////////////////////////// */


.scroll_infinity {
    margin-top: 6rem;
}

@keyframes slide1 {
    from {
        transform: translateX(100%);
    }
    to {
    transform: translateX(-100%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

.scroll_infinity_wrap {
    display: flex;
    position: relative;
    flex-flow: row nowrap;
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.scroll_infinity_list:first-of-type {
    animation: slide1 60s -30s linear infinite;
}

.scroll_infinity_list:last-of-type {
    animation: slide2 60s linear infinite;
}

.scroll_infinity_list {
    display: flex;
    align-items: center;
}


.scroll_infinity_list li {
    width: 160px;
    height: -webkit-fill-available;
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll_infinity_list li > img {
    width: auto;
    height: auto;
}




/* /////////////////////////////////

監修

///////////////////////////////// */




.partner_item_wrap {
    display: flex;
    background: var(--gradation-color);
    padding: 4rem;
    box-sizing: border-box;
    gap: 4rem;
    border-radius: 12px;
    align-items: center;
}

.partner_item_img {
    border-radius: 12px;
    width: 157px;
    height: 152px;
    overflow: hidden;
    flex-shrink: 0;
}

.partner_item_img img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: 0 -2px;
}


.partner_item_lead {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.partner_item_text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-jp-02);
    margin-top: 1.2rem;
}

.partner_item_text_wrap {
    flex: 1;
}

.yellow {
    color: var(--accent-color);
}











/* /////////////////////////////////




Case




///////////////////////////////// */






.case {
    background: var(--background-color);
}

.case_list_wrap {
    display: flex;
    gap: 5.5rem;
    margin-top: 10rem;
}

.case_list {
    text-align: center;
    width: calc( ( 100% - 11rem ) / 3 );
}

.case_list_img {
    position: relative;
}

.case_list_img img {
    width: 100%;
}

.case_list_img > div {
    position: absolute;
    left: 0;
    bottom: 15%;
}

.case_list_img p {
    text-align: left;
    color: var(--main-color);
    font-weight: 800;
    font-size: 1.8rem;
    background: rgba(255,255,255,0.85);
    padding: 4px 1.5rem;
    width: fit-content;
}

@media screen and (max-width:1100px) {

    .case_list_img p {
        font-size: 1.4rem;
    }

}

.case_list_img p:last-of-type {
    margin-top: 5px;
}

.company_name {
    color: var(--main-color);
    font-weight: 800;
    font-size: 1.8rem;
    margin-top: 2rem;
}

.company_neme .small  {
    font-size: 12px;
    font-weight: 400;
}





/* /////////////////////////////////

モーダル

///////////////////////////////// */



.modal {
    display: none;
    position: fixed;
    z-index: 8887;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 1s ease-in-out;
}

.modal-toggle {
    font-size: 1.6rem;
    border-bottom: 2px solid #DDDDDD;
    position: relative;
    padding: 0 1rem 1.8rem 1rem;
    font-weight: 500;
    color: var(--text-color);
    font-family: var(--font-jp);
    margin-top: 2rem;
}

i.fa-regular.fa-window-restore {
    border: 1px solid #CCCCCC;
    padding: 9px;
    border-radius: 50%;
    margin-left: 5rem;
    transition: .5s;
}

.modal-toggle::after {
    content: '';
    background: var(--gradation-color);
    width: 30%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: .5s;
}

.modal-toggle:hover::after {
    width: 100%;
}


.modal-toggle:hover i.fa-regular.fa-window-restore {
    border: 1px solid var(--text-color);
}


.modal-content {
    background: #FFF;
    padding: 5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 990px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: show 0.6s linear 0s;
    filter: drop-shadow(0px 2px 6px #777);
}

.modal-container{
    overflow-y: auto;
    max-height: 350px;
}

#modalOne .modal-container {
    max-height: 400px;
}

#modalTwo .modal-container {
    max-height: 500px;
}

#modalThree .modal-container {
    max-height: 400px;
}

.modal-top {
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
}

.modal-close {
    color: rgba(13,23,38,0.5);
    text-decoration: none;
    font-size: 1.8rem;
    line-height: 1;
    padding: 0 8px;
}

.modal-close:hover, .modal-close:focus {
    text-decoration: none;
    cursor: pointer;
}

@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}


/* /////////////////////////////////

モーダル１つ目

///////////////////////////////// */


.modal_item_wrap {
    display: flex;
    gap: 4rem;
}

.modal_item01 {
    width: 36%;
}

.modal_item02 {
    flex: 1;
}

.modal_item01 p {
    font-size: 14px;
}

.modal_item01_lead {
    font-weight: 700;
    margin-top: 10px;
}

.modal_item01 > div {
    margin-top: 10px;
}

.modal_item01 > div p {
    font-size: 12px;
}

.modal_item02_lead {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--main-color);
}

.modal_item02_text {
    margin-top: 1.6rem;
    font-size: 1.8rem;
    font-family: var(--font-jp-02);
    font-weight: 500;
}

.modal_list_bg {
    background: #F9F9F9;
    border-radius: 12px;
    padding: 3rem;
    margin-top: 1.6rem;
}

.modal_list_bg > div {
    display: flex;
    gap: 2rem;
}

.modal_list_bg > div p {
    font-size: 2.2rem;
    font-weight: 500;
}

.modal_list_bg .small {
    font-size: 10px;
    color: #707070;
    margin-top: 10px;
    text-align: right;
}

.modal_item01 img {
    width: 100%;
}

.modal_list_bg > div i.fa-solid.fa-check {
    line-height: 2;
}






/* /////////////////////////////////

モーダル2つ目

///////////////////////////////// */




.modalTwo_list {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.modalTwo_list li {
    width: calc( ( 100% - 8rem ) / 3 );
}

.modalTwo_list li img {
    width: 100%;
}

.modal_lead {
    font-size: 2.4rem;
    color: var(--main-color);
    font-weight: 700;
    text-align: center;
}





/* /////////////////////////////////

モーダル3つ目

///////////////////////////////// */




#modalThree ul {
    margin-top: 1.6rem;
}

#modalThree ul li {
    color: #707070;
    font-family: var(--font-jp-02);
    font-weight: 500;
    text-indent: -1em;
    padding-left: 1em;
}

.modalThree_lead {
    font-weight: 700;
    font-family: var(--font-jp-02);
    font-size: 1.8rem;
    margin-top: 1.6rem;
}




/* /////////////////////////////////




About




///////////////////////////////// */





.about_lead {
    margin-top: 7rem;
    font-size: 1.8rem;
    font-family: var(--font-jp-02);
    font-weight: 500;
}

.about_lead  .blue {
    color: var(--main-color);
    font-weight: 700;
}

.about_bg {
    margin-top: 8rem;
    background: var(--gradation-color);
    padding: 5.5rem 7.5rem 7.5rem;
    box-sizing: border-box;
    border-radius: 12px;
}

.about_wrap {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.about_text_title {
    font-size: 2.4rem;
    color: var(--main-color);
    font-weight: 500;
    border: 2px solid var(--main-color);
    padding: 2px 4rem 4px;
    width: fit-content;
    margin-bottom: 20px;
}

.about_text_wrap {
    width: 60%;
    padding: 6rem 0 6rem 6rem;
    align-items: center;
}

.about_text_wrap h3 {
    font-size: 4.6rem;
    background: -webkit-linear-gradient(0deg, #5800FF 0%, #5CE1E6 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
}

.about_text {
    margin-top: 2rem;
    font-size: 1.8rem;
}

.about_img_wrap {
    width: 40%;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.about_text_wrap .link {
    margin-top: 3.2rem;
}

.about_wrap:last-of-type  {
    margin-top: 2.5rem;
}

.about_wrap:last-of-type .about_img_wrap {
    background: #E7F3F2;
    text-align: right;
    position: relative;
}

.about_wrap:last-of-type .about_img_wrap .ai {
    height: 50px;
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.about_wrap:last-of-type .about_img_wrap .pc_img {
    width: 100%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
}


.plus {
    background: #fff;
    border-radius: 50%;
    padding: 20px;
    width: 80px;
    height: 80px;
    margin: 2.5rem auto 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.plus img {
    width: 100%;
}
.about_text_wrap i.fa-solid.fa-arrow-right {
    top: 7px;
}


@media screen and (max-width:1200px) {

    .about_text_title {
        font-size: 1.8rem;
    }

    .about_text_wrap h3 {
        font-size: 4rem;
    }
}




/* /////////////////////////////////

コース

///////////////////////////////// */




.course_lead h3 {
    width: fit-content;
    background: var(--gradation-color);
    font-size: 2.2rem;
    color: #fff;
    padding: 0 2rem;
    border-radius: 6px;
}

.course_lead p {
    font-size: 1.8rem;
    margin-top: 2.5rem;
}

.course_bg {
    max-width: 900px;
    width: 100%;
    padding: 6rem 12rem;
    margin: 8rem auto 0 auto;
    box-sizing: border-box;
    background: var(--background-color);
}

.course_img {
    position: relative;
    width: 30%;
    flex-shrink: 0;
}

.course_img  img{
    width: 100%;
}

.course_step_wrap {
    flex: 1;
}

.course_img::after {
    content: '';
    position: absolute;
    background: var(--main-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-block;
    bottom: -9px;
    left: 49%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.course_wrap {
    /* position: relative; */
    display: flex;
    align-items: center;
    gap: 3rem;
}

.course_wrap:not(:first-of-type) {
    margin-top: 8rem;
}

.line {
    width: 4px;
    height: 90px;
    background: var(--main-color);
    position: relative;
    left: 14.4%;
    top: 0;
    margin-bottom: -85px;
}


.course_wrap:last-of-type .course_img::after {
    content: none;
}

.step {
    color: var(--main-color);
}

.step_title {
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--main-color);
}

.step_wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.step_wrap .fa-check:before {
    flex-shrink: 0;
    vertical-align: sub;
}

.step_wrap p {
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.2;
    flex: 1;
}




/* /////////////////////////////////

コメント

///////////////////////////////// */






.comment_wrap {
    background: var(--gradation-color);
    border-radius: 12px;
    box-sizing: border-box;
    padding: 0 7rem 7rem 7rem;
}

.comment_bg {
    padding: 4rem;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0px 1px 12px 0px #00000026;
    border-radius: 12px;
}

.comment_lead {
    font-size: 3.2rem;
    font-weight: 700;
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.comment_introduction {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}

.comment_introduction_item {
    flex: 1;
}

.profession {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--font-jp-02);
}

.name {
    font-weight: 700;
    font-size: 4.6rem;
    background: -webkit-linear-gradient(0deg, #5800FF 0%, #5CE1E6 30%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-top: 5px;
}

.comment_introduction_text {
    margin-top: 2rem;
}

.comment_introduction_text p {
    font-size: 14px;
}

.person {
    width: 35%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.sns {
    margin-top: 2rem;
    display: flex;
    gap: 1.2rem;
}

.sns li {
    width: 40px;
    height: 40px;
    transition: .5s;
}

.sns li:hover {
    transform: scale(1.1);
}

.sns a {
    display: inline-block;
}

.sns li img {
    width: 100%;
}

.comment_text {
    margin-top: 2.4rem;
}

.catch h4 {
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 3.2rem;
    color: var(--main-color);
}

.catch {
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
}

.catch:before, .catch:after {
    border-top: 1px solid #DDDDDD;
    content: "";
    width: 100%;
}

.catch::before {
    margin-right: 2rem; /* 文字の右隣 */
}

.catch::after {
    margin-left: 2rem;
}

.comment_text p {
    font-size: 1.7rem;
    font-weight: 500;
}
.comment_text img {
    display: block;
    width: 40%;
    margin: 0 0 0 auto;
}
.comment_text--inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}





/* /////////////////////////////////




比較




///////////////////////////////// */




.comparison_lead .blue {
    color: var(--main-color);
    font-weight: 700;
}

.table_wrap {
    overflow-x: auto;
}


.comparison table {
    margin-top: 6rem;
    min-width: 1000px;
}


.comparison_lead {
    font-size: 1.8rem;
    font-family: var(--font-jp-02);
    font-weight: 500;
    margin-top: 7rem;
}

.table_title {
    background: #000000;
    color: #fff;
    text-align: center;
    border-radius: 6px 6px 0 0;
    padding: 2.5rem 2rem;
    box-sizing: border-box;
}

.table_title:last-of-type {
    background: var(--gradation-color);
}

.table_head {
    vertical-align: middle;
    background: #EEEEEE;
    padding: 2rem;
    text-align: left;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table_head .fa-regular, .far {
    font-size: 22px;
    flex-shrink: 0;
}

.table_head .tooltip {
    position: relative;
    cursor: pointer;
}

.table_head .tooltip .tooltip-text02 {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* top: -93px; */
    bottom: 169%;
    display: inline-block;
    padding: 10px 15px;
    width: 205px;
    font-size: 11px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 3px;
    transition: 0.3s ease-in;
    box-sizing: border-box;
    text-align: left;
    line-height: 1.4;
}

.table_head .tooltip:hover .tooltip-text02 {
    opacity: 1;
    visibility: visible;
}

.table_head .tooltip-text02::before {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	margin-left: -7px;
	border: 7px solid transparent;
	border-top: 7px solid rgba(0,0,0,0.7);
}

tr {
    display: flex;
}

th {
    width: calc(100% / 3);
    font-size: 2.2rem;
    font-weight: 500;
}

td {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    box-sizing: border-box;
    width: calc(100% / 3);

}

td img {
    width: 15%;
}

table{
	border-spacing: 0;
	border-collapse: separate;
}
table th,table td{
	border-top: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
}


table td {
    font-size: 1.4rem;
}

table tr:first-child th:first-child {
    border: none;
}

table th:last-child,table td:last-child{
	border-right: 1px solid #CCCCCC;
}
table tr:last-child th,table tr:last-child td{
	border-bottom: 1px solid #CCCCCC;
}
table tr:first-child :first-child{
	border-top-left-radius: 5px;
}
table tr:first-child :last-child{
	border-top-right-radius: 5px;
}
table tr:last-child :first-child{
	border-bottom-left-radius: 5px;
}
table tr:last-child :last-child{
	border-bottom-right-radius: 5px;
}





/* /////////////////////////////////




料金




///////////////////////////////// */



.price {
    background: var(--background-color);
}

.price_lead {
    margin-top: 7rem;
    font-size: 1.8rem;
    font-family: var(--font-jp-02);
    font-weight: 500;

}

.price_lead .blue {
    color: var(--main-color);
    font-weight: 700;
}

.price_lead .small {
    color: #707070;
    font-size: 1.4rem;
    display: inline-block;
}

.price_list_lead {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--main-color);
    border-radius: 2px;
    padding: 2px 15px;
    box-sizing: border-box;
    color: var(--main-color);
    display: inline-block;
}

.price_list {
    background: #fff;
    box-shadow: 0px 1px 12px 0px rgba(58,52,255,0.1);
    padding: 4rem;
    box-sizing: border-box;
    border-radius: 12px;
    text-align: center;
    width: calc( ( 100% - 11rem ) / 2 );
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cost {
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.7rem;
}

.cost .large {
    font-family: var(--accent-font);
    font-size: 13rem;
    padding: 0 5px;
}

.cost .gray {
    font-weight: 400;
    color: #707070;
    margin-left: 1rem;
}

.price_list_bg {
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    text-align: center;
    padding: 1.5rem 0 2rem;
    margin-top: 3rem;
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price_list_bg p {
    font-size: 1.8rem;
    font-weight: 700;
}

.price_list_bg p span {
    font-weight: 500;
}

.price_list .link {
    width: 80%;
    position: relative;
    padding-bottom: 0;
}
.price_list .link a {
    width: 100%;
    display: block;
    padding-top: 2rem;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.price_list .link .fa-solid, .fas {
    position: absolute;
    top: 62%;
    transform: translateY(-50%);
	 pointer-events: none;
}
.cancel_out {
    text-decoration: line-through;
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(58, 52, 255, 0.5);
}

.price_wrap .plus {
    box-shadow: 0px 1px 12px 0px rgba(58,52,255,0.1);
    margin: 0;
    align-self: center;
}

.price_wrap {
    display: flex;
    gap: 1.5rem;
    margin-top: 6rem;
}

.price_note {
    color: #707070;
    margin-top: 3rem;
    text-align: right;
}








/* /////////////////////////////////




よくある質問




///////////////////////////////// */





.question {
    background: #F9F9F9;
}



div.accordion {
    display: block;
    line-height: 50px;
    border: none;
    cursor: pointer;
    transition: 0.5s ease-in;
    position: relative;
    margin-bottom: 10px;
    border-bottom: 2px solid #DDDDDD;
    padding: 0 10px 10px 10px;

}

.q {
    font-family: var(--title-font);
    font-size: 2.4rem;
    font-weight: 500;
}

.accordion:hover {
    color: var(--main-color);
}

.q_text {
    font-size: 1.8rem;
    font-weight: 500;
}

.border {
    background: linear-gradient(90deg, #5800FF 0%, #5CE1E6 100%);;
    height: 2px;
    width: 50px;
    bottom: -2px;
    left: 0;
    position: absolute;
    transition: .5s;
}

.accordion:hover .border {
    width: 100%;
}

.accordion::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    display: inline-block;
    width: 33px;
    height: 33px;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    transform: translateY(-50%);
}

.accordion_head {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion.active {
    margin-bottom: 0;
}

div.panel {
    max-height:0;
    overflow: hidden;
    transition: 0.3s ease-out;
    display: flex;
    gap: 15px;
    padding: 10px 10px 0 10px;
}



.a {
    font-family: var(--title-font);
    font-size: 2.4rem;
    font-weight: 500;
}

.a_text {
    font-size: 1.8rem;
    font-weight: 500;
    padding-top: 3px;
}



.acco {
    position:relative;
    margin-top: 8rem;
}

div.accordion:hover{
    background-color: rgba(221,221,221,0.2);
}

div.accordion::after {
    content: '\2b';
    font: var(--fa-font-solid);
    font-size: 1.3rem;
    color: var(--text-color);
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
}


div.accordion.active::after {
    content: '\f068';
    color: var(--main-color);
}

div.accordion.active .border{
    width: 100%;
}



div.accordion.active  p {
    color: var(--main-color);
}













/* /////////////////////////////////




下層ページファーストビュー




///////////////////////////////// */








.low_page_bg  {
    background: linear-gradient(90deg, #5800FF 0%, #4D14FF 20%,#0096FF 70%);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 15rem 0 8rem 0;
}

.low_page_bg::before{
    content: '';
    background-image: url(https://lp.digirise.ai/wp-content/themes/digirise/asset/image/mv_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: lighten;
    pointer-events: none;
}

.text_wrap {
    padding: 6rem 0rem 6rem 6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text_wrap h1 {
    font-size: 4.9rem;
    background: -webkit-linear-gradient(0deg, #5800FF 0%, #5CE1E6 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
}

.low_page_title {
    font-size: 2.4rem;
    color: var(--main-color);
    font-weight: 500;
    border: 2px solid var(--main-color);
    padding: 2px 4rem 4px;
    width: fit-content;
    margin-bottom: 20px;
}

.low_page_text {
    margin-top: 2rem;
    font-size: 1.8rem;
}

.low_page_text span {
    font-weight: 700;
    color: var(--main-color);
}

.low_img_wrap {
    width: 45%;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.low_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.low_mv_wrap {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.low_page_bg02 .low_img_wrap img {
    object-position: right;
}








/* /////////////////////////////////




Workshop




///////////////////////////////// */






.workshop_lead {
    margin-top: 10rem;
    font-family: var(--font-jp-02);
    font-size: 1.8rem;
}


.workshop_wrap {
    margin-top: 6rem;
    display: flex;
    gap: 8rem;
}


.workshop_list {
    text-align: center;
    width: calc( ( 100% - 16rem ) / 3 );
}


.workshop_list img {
    border-radius: 12px;
    box-shadow: 7px 9px 26px 0px rgba(0,0,0,0.28);
    width: 100%;
}

.workshop_list p {
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
}








/* /////////////////////////////////




Training




///////////////////////////////// */







.training {
    padding-bottom: 10rem;
}

.training_lead {
    margin-top: 10rem;
    font-family: var(--font-jp-02);
    font-size: 1.8rem;
}


.training_wrap {
    margin-top: 6rem;
    display: flex;
    gap: 8rem;
}


.training_list {
    text-align: center;
    width: calc( ( 100% - 16rem ) / 3 );
}


.training_list img {
    border-radius: 12px;
    box-shadow: 7px 9px 26px 0px rgba(0,0,0,0.28);
    width: 100%;
}

.training_list p {
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
}




.person_introduction {
    background: var(--gradation-color);
    border-radius: 12px;
    margin-top: 10rem;
    padding: 4rem 0;
    box-sizing: border-box;
}

.person_introduction h3 {
    color: #fff;
    text-align: center;
    font-size: 3.2rem;
    max-width: 1100px;
    width: 90%;
    margin: auto;
}

.person_introduction h3 span {
    display: inline-block;
}


.person_introduction_list {
    background: #fff;
    box-shadow: 0px 1px 12px 0px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 4rem;
    box-sizing: border-box;
    display: flex;
    gap: 4rem;
}

.person_introduction_list img {
    width: 40%;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 12px;
}

.person_introduction_text {
    flex: 1;
}

.position {
    font-family: var(--font-jp-02);
    font-size: 1.8rem;
}

.person_introduction_list .name {
    background: -webkit-linear-gradient(0deg, #5800FF 0%, #5CE1E6 20%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.person_introduction_lead {
    font-weight: 700;
    font-size: 2.4rem;
    margin-top: 2rem;
}

.bold {
    font-weight: 700;
    margin-top: 2rem;
}

.person_introduction_foot {
    color: var(--accent-color);
    margin-top: 4rem;
    font-weight: 700;
    font-size: 3.2rem;
    text-align: center;
}

.person_introduction_foot span {
    display: inline-block;
}









/* /////////////////////////////////




Features



///////////////////////////////// */







.features {
    padding-top: 10rem;
}

.features_lead {
    font-family: var(--font-jp-02);
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 10rem;
}


.list p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
    margin-top: 2rem;
}

.list img {
    width: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.list {
    width: calc( ( 100% - 12rem ) / 3 );
}

.list_wrap {
    display: flex;
    gap: 6rem;
}







/* /////////////////////////////////




実現できることの事例




///////////////////////////////// */







.case_study {
    padding-bottom: 10rem;
}

.case_study_bg {
    background: var(--gradation-color);
    border-radius: 12px;
    padding: 6rem 0;
    box-sizing: border-box;
}

.case_study_lead {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    width: 90%;
}

.case_study_lead h3 {
    font-size: 3.2rem;
    color: var(--accent-color);
    font-weight: 700;
}

.case_study_lead h3 span {
    display: inline-block;
}

.case_study_lead p {
    margin-top: 2.4rem;
    font-size: 1.8rem;
    color: #fff;
}

.case_study_list_wrap {
    padding: 4rem 6rem;
    border-radius: 12px;
    box-sizing: border-box;
    background: #fff;
}

.border_wrap {
    border-bottom: 1px solid #fff;
    padding-bottom: 6rem;
}

.case_study_list_wrap  h4 {
    font-size: 3.2rem;
    font-weight: 700;
    background: -webkit-linear-gradient(0deg, #5800FF 0%, #5CE1E6 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.case_study_list {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.case_study_list:not(:first-of-type) {
    margin-top: 3rem;
}

.case_study_list i.fa-solid.fa-check {
    font-size: 3.2rem;
    flex-shrink: 0;
}

.case_study_list p {
    font-size: 1.8rem;
    margin-top: 10px;
}

.case_study_list .bold {
    font-weight: 700;
    font-size: 2.2rem;
    margin-top: 0;
}


.case_icon_wrap {
    margin-top: 4.5rem;
}

.case_icon_wrap h3 {
    color: var(--accent-color);
    font-size: 3.2rem;
    text-align: center;
    line-height: 1;
}

.case_icon_list_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4.5rem;
}


.case_icon_list {
    background: #fff;
    border-radius: 6px;
    text-align: center;
    height: 180px;
    width: calc( ( 100% - 10rem ) / 4 );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.case_icon_list.wideCard {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 30px 35px;
    gap: 35px;
}
.case_icon_list--header h4 {
    background: var(--gradation-color);
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 2px 45px 5px;
    border-radius: 9999px;
    font-size: 2.6rem;
}
.case_icon_list--bottom ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
	 gap: 20px;
	 flex-wrap: wrap;
}
.case_icon_list--bottom ul li {
    width: 280px;
}
.case_icon_list--bottom ul li.chatgpt img {
    width: 100%;
    object-fit: cover;
    height: 150px;
}
.case_icon_list--bottom ul li.aiworks img {
    width: 100%;
    object-fit: cover;
    height: 150px;
}
li.aiworks p {
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
}


@media screen and (max-width:1100px) {

    .case_icon_list_wrap {
        gap: 4rem;
        margin-top: 4.5rem;
    }


    .case_icon_list {
        width: calc( ( 100% - 8rem ) / 3 );
    }

}

.case_icon_list p {
    font-weight: 700;
    margin-top: 10px;
}

.case_icon_list p span {
    display: inline-block;
}

.case_icon_list img {
    width: 35%;
    height: auto;
    aspect-ratio: 1 / 1;
}










/* /////////////////////////////////




Contact




///////////////////////////////// */




.contact {
    padding: 14rem 0 10rem 0;
    background: #F9F9F9;
}


.contact_lead {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--font-jp-02);
}


.contact_foot {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--font-jp-02);
}

.contact_wrap {
    display: flex;
    gap: 8rem;
    margin-top: 10rem;
}


.contact_list_wrap {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #DDDDDD;
    padding: 4rem;
    box-sizing: border-box;
}

.contact_list {
    display: flex;
    gap: 1rem;
}

.contact_item {
    flex: 1;
    width: 460px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_list:not(:first-of-type) {
    margin-top: 2rem;
}

.contact_list p {
    font-size: 1.8rem;
    font-weight: 500;
}

.contact_list i.fa-solid.fa-check {
    font-size: 2.4rem;
    flex-shrink: 0;
}

.contact_list .fa-check:before {
    vertical-align: sub;
}


.contact_form_bg {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 5rem;
    box-sizing: border-box;
    width: 55%;
    height: 770px;
}

.contact_form {
    background: #EEEEEE;
    height: 100%;
}




@media screen and (max-width:1200px) {
    .contact_wrap {
        flex-direction: column;
    }

    .contact_form_bg {
        width: 100%;
    }

    .contact {
        padding-top: 20rem;
    }


}







/* /////////////////////////////////




Download




///////////////////////////////// */






.download {
    padding: 14rem 0 10rem 0;
    background: #F9F9F9;
}

.download_lead {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--font-jp-02);
}


.download_item {
    flex: 1;
}

.download_foot {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--font-jp-02);
}

.download_wrap {
    display: flex;
    gap: 8rem;
    margin-top: 10rem;
}


.download_form_bg {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 5rem;
    box-sizing: border-box;
    width: 55%;
    height: 770px;
}

.download_img_wrap {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #DDDDDD;
    margin-top: 5rem;
    padding: 4rem;
    box-sizing: border-box;
}

.download_img_wrap img {
    width: 100%;
}

.download_form {
    background: #EEEEEE;
    height: 100%;
}




@media screen and (max-width:1200px) {
    .download_wrap {
        flex-direction: column;
    }

    .download_form_bg {
        width: 100%;
    }

    .download {
        padding-top: 20rem;
    }

    .download_img_wrap {
        max-width: 700px;
        width: 100%;
    }


}























@media screen and (max-width:980px) {




.pc_none {
    display: inline-block;
}

/* /////////////////////////////////




コンタクトエリア





///////////////////////////////// */





.book {
    width: 50%;
    height: auto;
    top: -118px;
}


/* /////////////////////////////////




メインビジュアル




///////////////////////////////// */






.mv_foot {
    flex-direction: column;
	 margin-top: 0;
}

.mv_number_wrap {
    position: static;
    flex-direction: row;
    gap: 2rem;
    width: 90%;
    max-width: 650px;
    margin-top: 4rem;
}

.mv_inner h1 {
    padding-top: 8rem;
    width: 90%;
    margin: auto;
}

.mv .btn_wrap {
    gap: 2rem;
}

.mv_number_list {
    width: calc( ( 100% - 4rem ) / 3 );
}

.mv_number_list::before {
    left: -5px;
}

.mv_number_list::after {
    right: -5px;
}

.mv_number_list::before,
.mv_number_list::after {
    width: 35px;
    height: 70px;
}

.annotation {
    display: none;
}

.mv_foot_img_sp {
    display: flex;
    margin-top: 3rem;
    align-items: center;
}

.pc {
    bottom: 55px;
        transform: scale(1.2);
        z-index: 2;
        height: 100%;
}

.sp {
		bottom: -25px;
		right: -30px;
		z-index: 2;
		position: absolute;
		width: 95px;
}

.mv_foot_lead {
    width: 175px;
    top: -38px;
    right: 18px;
}

.mv_foot_number p:first-of-type {
    left: 50px;
}
.mv_foot_number p:last-of-type {
    right: 50px;
}

.animal {
    width: 25%;
    position: absolute;
    bottom: -5%;
    right: 76px;
}

.mv_foot_number p {
    font-size: 5rem;
}

.mv_foot_lead_item::before {
    height: 40px;
}

.annotation_sp {
    display: block;
    width: 40%;
    font-size: 10px;
    padding: 2rem 0 0 0;
    margin-left: 2rem;
}







/* /////////////////////////////////




導入企業 / 提携先




///////////////////////////////// */








.partner_item_wrap {
    max-width: 600px;
    width: 100%;
    margin: 6rem auto 0 auto;
    flex-direction: column;
}

.partner_item_img {
    width: 100%;
    height: 400px;
}

.partner_item_img img {
    width: 105%;
    height: 105%;
    object-position: -10px -18px;
}




/* /////////////////////////////////




Case




///////////////////////////////// */





.case_list_wrap {
    flex-direction: column;
    align-items: center;
}

.case_list {
    width: 100%;
    max-width: 500px;
}




/* /////////////////////////////////

モーダル１つ目

///////////////////////////////// */


.modal_item_wrap {
    flex-direction: column;
}

.modal_item01 {
    width: 100%;
}

.modal_item01 img {
    height: 300px;
    object-fit: cover;
    object-position: 0 29%;
}





/* /////////////////////////////////




About




///////////////////////////////// */




.about_bg {
    padding: 8rem 6rem;
}

.about_wrap {
    flex-direction: column-reverse;
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.about_img_wrap {
    width: 100%;
    clip-path: none;
    height: 300px;
}

.about_text_wrap {
    width: 90%;
    padding: 3rem 0 3rem 0;
    margin: auto;
}

.about_img_wrap img {
    width: 100%;
    height: 100%;
}

.about_wrap:last-of-type .about_img_wrap .pc_img {
    width: 50%;
}

.about_wrap:last-of-type .about_img_wrap .ai {
    height: 60px;
    right: auto;
    left: 0;
}








/* /////////////////////////////////

コース

///////////////////////////////// */



.course_bg {
    padding: 4rem;
}




/* /////////////////////////////////

コメント

///////////////////////////////// */






.comment_introduction {
    flex-direction: column;
    gap: 20px;
}

.person {
    width: 100%;
}




/* /////////////////////////////////




料金




///////////////////////////////// */







.price_wrap {
    flex-direction: column;
    align-items: center;
}


.price_list {
    max-width: 500px;
    width: 100%;
}





/* /////////////////////////////////




Question




///////////////////////////////// */



.accordion::before {
    width: 25px;
    height: 25px;
}

div.accordion::after {
    right: 18px;
}

.accordion_head {
    gap: 10px;
}










/* /////////////////////////////////




下層ページファーストビュー




///////////////////////////////// */





.text_wrap {
    padding: 3rem 0 3rem 3rem;
}

.low_page_title {
    font-size: 1.8rem;
}

.text_wrap h1 {
    font-size: 3.2rem;
}

.low_img_wrap {
    width: 40%;
}

.text_wrap {
    flex: 1;
}










/* /////////////////////////////////




Workshop




///////////////////////////////// */







.workshop_wrap {
    flex-direction: column;
    align-items: center;
}


.workshop_list {
    width: 100%;
    max-width: 500px;
}




/* /////////////////////////////////




Training




///////////////////////////////// */





.training_wrap {
    flex-direction: column;
    align-items: center;
}


.training_list {
    width: 100%;
    max-width: 500px;
}




.person_introduction_list {
    flex-direction: column;
}

.person_introduction_list img {
    width: 100%;
    aspect-ratio: 1 / 1;
}








/* /////////////////////////////////




Features



///////////////////////////////// */






.list_wrap {
    flex-direction: column;
    align-items: center;
}

.list {
    width: 100%;
    max-width: 500px;
}

.list img {
    object-fit: contain;
    aspect-ratio: auto;
}







/* /////////////////////////////////




実現できることの事例




///////////////////////////////// */





.case_icon_list {
    width: calc( ( 100% - 4rem ) / 2 );
    height: auto;
    aspect-ratio: 1 / 1;
}

.case_icon_list p {
    margin-top: 2rem;
    font-size: 1.8rem;
}



}



































@media screen and (max-width:650px) {



.sp_br {
    display: block;
}




/* /////////////////////////////////




ボタン




///////////////////////////////// */




.btn {
    font-size: 3.2rem;
}

.btn::after {
    top: 26px;
}





/* /////////////////////////////////




コンテンツのタイトル




///////////////////////////////// */




.contents_title p {
    font-size: 4rem;
}

.contents_title h2 {
    font-size: 3.6rem;
}

.contents_title::before {
    width: 30px;
    height: 3px;
    bottom: -4rem;
}

.contents_title::after{
    width: 3px;
    height: 3px;
    left: 33px;
}






/* /////////////////////////////////




コンタクトエリア




///////////////////////////////// */







.contact_area_lead {
    font-size: 3.2rem;
}


.contact_area .btn_wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.contact_area .btn_wrap .btn_tooltip {
    max-width: 300px;
    width: 100%;
    flex: auto;
}

.contact_area .btn_wrap .btn {
    max-width: 300px;
    width: 100%;
}

.book {
    width: 100%;
    top: auto;
    position: relative;
    left: 0;
    padding-top: 20px;
    transform: none;
}

/* /////////////////////////////////




メインビジュアル




///////////////////////////////// */




.mv_lead_wrap {
    width: 90%;
    margin: auto;
}

.mv_inner h1 {
    padding-top: 12rem;
    font-size: 4.8rem;
}

.mv_head p {
    font-size: 3.2rem;
}

.mv_number_wrap {
    width: 100%;
    max-width: 300px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.mv_number_list {
    width: calc( ( 100% - 3rem ) / 2 );
}

.mv_number_list::before, .mv_number_list::after {
    width: 26px;
}

.mv_number_list::before {
    left: 0;
}
.mv_number_list::after {
    right: 0;
}

.number span {
    font-size: 6.4rem;
}

.mv .btn_wrap {
    flex-direction: column;
    align-items: center;
}

.btn_tooltip {
    max-width: 260px;
    width: 80%;
}

.mv .btn_wrap .btn {
    max-width: 260px;
    width: 80%;
}

.mv .btn_wrap .btn_blue {
    width: 100%;
}


.animal {
    display: none;
}

.animal_sp {
    display: block;
    width: 47%;
    position: absolute;
    bottom: 2%;
    right: 3%;
}

.mv_foot_img_sp {
    flex-direction: column-reverse;
}

.mv_foot_img {
    width: 100%;
	bottom: 0;
}

.mv_foot_lead_bg {
    width: 175px;
}

.mv_foot_lead {
    top: auto;
    right: auto;
    width: 100%;
    max-width: 350px;
}

.mv_foot_number p {
    font-size: 10rem;
}

.annotation_sp {
    width: 90%;
    padding: 5rem 0 0 0;
    margin: auto;
}




/* /////////////////////////////////




導入企業 / 提携先




///////////////////////////////// */





.partner h2 {
    font-size: 3.6rem;
}

.partner h2::before {
    width: 30px;
    height: 3px;
}

.partner h2::after{
    width: 3px;
    height: 3px;
}


.partner_item_wrap {
    max-width: 400px;
    padding: 6rem;
}

.partner_item_img {
    width: 100%;
    height: 300px;
}

.partner_item_img img {
    object-position: 45% -14px;
}

.partner_item_lead {
    font-size: 3.6rem;
}

.partner_item_text {
    font-size: 2.8rem;
}



/* /////////////////////////////////

ループスライダー

///////////////////////////////// */



.scroll_infinity_wrap {
    height: 40px;
}






/* /////////////////////////////////




Case




///////////////////////////////// */



.case_list_img p {
    font-size: 3.2rem;
}

.company_name {
    font-size: 3.2rem;
}

.company_name span.small {
    font-size: 12px;
}

.modal-toggle {
    font-size: 3.2rem;
    padding: 0 2rem 2rem 2rem
}

.case_list {
    max-width: 400px;
}

.modal-close {
    font-size: 3.2rem;
    padding: 0;
}




/* /////////////////////////////////

モーダル１つ目

///////////////////////////////// */



.modal_item01 img {
    height: 150px;
}

.modal_item02_lead {
    font-size: 3.2rem;
}

.modal_item02_text {
    font-size: 2.8rem;
}

.modal_list_bg > div p {
    font-size: 2.8rem;
}

.modal_list_bg .small {
    text-align: left;
}




/* /////////////////////////////////

モーダル2つ目

///////////////////////////////// */


.modalTwo_list {
    gap: 4rem;
}

.modalTwo_list li {
    width: calc( ( 100% - 4rem ) / 2 );
}

.modal_lead {
    font-size: 3.2rem;
}




/* /////////////////////////////////

モーダル3つ目

///////////////////////////////// */




.modal_list_bg {
    margin-top: 2rem;
}

#modalThree ul {
    margin-top: 2rem;
}

.modalThree_lead {
    font-size: 2.8rem;
    margin-top: 2rem;
}






/* /////////////////////////////////




About




///////////////////////////////// */




.about_lead {
    font-size: 3.2rem;
}

.about_bg {
    padding: 6rem 4rem;
}

.about_wrap {
    max-width: 400px;
}

.about_img_wrap {
    width: 100%;
    height: 200px;
}

.about_text_title {
    font-size: 2.8rem;
    padding: 0px 2rem;
}

.about_text_wrap h3 {
    font-size: 3.2rem;
    margin-top: 10px;
}

.about_text_wrap {
    padding: 4rem 0 4rem 0;
}

.about_text {
    font-size: 2.8rem;
}


.about_wrap:last-of-type .about_img_wrap .pc_img {
    width: 50%;
}

.about_wrap:last-of-type .about_img_wrap .ai {
    height: auto;
    width: 60%;
    right: auto;
    left: 0;
}

.plus {
    width: 50px;
    height: 50px;
    padding: 5px;
}





/* /////////////////////////////////

コース

///////////////////////////////// */





.course_bg {
    width: 100%;
    max-width: 400px;
}


.course_lead h3 {
    font-size: 3.6rem;
}

.course_lead p {
    font-size: 3.2rem;
}

.step_title {
    font-size: 3.2rem;
}

.step_wrap p {
    font-size: 2.8rem;
}

.course_img::after {
    width: 10px;
    height: 10px;
}

.course_img {
    width: 100px;
    height: 100px;
}

.course_img::after{
    bottom: -4px;
    left: 48px;

}

.line {
    left: 47.5px;
    bottom: 0px;
    height: 45px;
    width: 2px;
    margin-bottom: -65px;
}




/* /////////////////////////////////

コメント

///////////////////////////////// */



.comment_wrap {
    padding: 0 3rem 3rem 3rem;
}


.profession {
    font-size: 2.8rem;
}

.name {
    font-size: 4.8rem;
}

.sns {
    margin-top: 4rem;
}

.sns li {
    width: 30px;
    height: 30px;
}

.catch h4 {
    font-size: 3.6rem;
}

.comment_text p {
    font-size: 2.8rem;
}

.comment_text img {
    width: 50%;
}








/* /////////////////////////////////




比較




///////////////////////////////// */




.comparison_lead {
    font-size: 3.2rem;
}


.table_head {
    font-size: 3.2rem;
}

.table_title {
    font-size: 3.2rem;
}

table td {
    font-size: 2.8rem;
}


.comparison table {
    min-width: 700px;
}







/* /////////////////////////////////




料金




///////////////////////////////// */




.price_lead {
    font-size: 3.2rem;
}

.price_lead .small {
    font-size: 2.4rem;
}

.price_list {
    max-width: 400px;
}

.price_list_lead {
    font-size: 3.6rem;
}

.cost {
    font-size: 3.2rem;
    line-height: 1.5;
}
.cost .large {
    font-size: 18rem;
}

.cancel_out {
    font-size: 3.6rem;
}

.price_list_bg p {
    font-size: 3.2rem;
}

.price_list .link {
    width: 70%;
}
.price_list .link .fa-solid, .fas {
    right: 0;
    top: 58%;
}
.price_note {
    font-size: 12px;
    text-align: left;

}


/* /////////////////////////////////




Question




///////////////////////////////// */







.accordion::before {
    font-size: 3.2rem;
}

.q {
    font-size: 3.2rem;
}

.a {
    font-size: 3.2rem;
}

.q_text {
    font-size: 2.8rem;
    line-height: 1.4;
    width: 83%;
}

.a_text {
    font-size: 2.8rem;
    line-height: 1.8;
    padding-top: 0px;
}

.accordion::before {
    height: 20px;
    width: 20px;
}

div.accordion::after {
    right: 16.5px;
}







/* /////////////////////////////////




下層ページファーストビュー




///////////////////////////////// */







.low_page_bg {
    padding-top: 20rem;
}

.low_mv_wrap {
    flex-direction: column-reverse;
    gap: 4rem;
    align-items: center;
}

.text_wrap {
    padding: 0 0 4rem 0;
    width: 90%;
}

.low_page_title {
    font-size: 2.8rem;
    padding: 0 4rem;
}
.text_wrap h1 {
    font-size: 6rem;
    margin-top: 0rem;
    margin-bottom: 1rem;
    line-height: 1.53;
}



.low_page_text {
    font-size: 2.8rem;
}

.low_img_wrap {
    clip-path: none;
    width: 100%;
    height: 200px;
}

.low_img_wrap img {
    object-position: bottom;
}

.low_page_bg02 .low_img_wrap img {
    object-position: top;
}












/* /////////////////////////////////




Workshop




///////////////////////////////// */












.workshop_wrap {
    gap: 10rem;
}

.workshop_list {
    max-width: 400px;
}


.workshop_lead {
    font-size: 3.2rem;
}

.workshop_list p {
    font-size: 3.6rem;
}






/* /////////////////////////////////




Training




///////////////////////////////// */









.training_wrap {
    gap: 10rem;
}

.training_list {
    max-width: 400px;
}


.training_lead {
    font-size: 3.2rem;
}

.training_list p {
    font-size: 3.6rem;
}




.person_introduction h3 {
    font-size: 3.6rem;
}

.position {
    font-size: 2.8rem;
}

.person_introduction_list .name {
    margin-top: 2rem;
}

.person_introduction_lead {
    font-size: 3.2rem;
}

.person_introduction_foot {
    font-size: 3.6rem;
}








/* /////////////////////////////////




Features



///////////////////////////////// */






.list_wrap {
    gap: 10rem;
}

.list {
    width: 100%;
    max-width: 350px;
}
.list img {
    object-fit: contain;
    aspect-ratio: auto;
    height: 250px;
}

.features_lead {
    font-size: 3.2rem;
}

.list p {
    font-size: 3.2rem;
}






/* /////////////////////////////////




実現できることの事例




///////////////////////////////// */




.case_study_lead h3 {
    font-size: 3.6rem;
}

.case_study_lead p {
    font-size: 2.8rem;
}

.case_study_list_wrap {
    padding: 4rem;
}

.case_study_list_wrap h4 {
    font-size: 3.6rem;
}

.case_icon_wrap h3 {
    font-size: 3.6rem;
}

.case_study_list .bold {
    font-size: 2.8rem;
}

.case_study_list p {
    font-size: 2.8rem;
}

.case_study_list i.fa-solid.fa-check {
    font-size: 14px;
}

.case_study_list .fa-check:before {
    vertical-align: sub;
}

.case_icon_list p {
    font-size: 2.8rem;
}



/* /////////////////////////////////




Contact




///////////////////////////////// */




.contact {
    padding-top: 22rem;
}


.contact_lead {
    font-size: 3.2rem;
}

.contact_foot {
    font-size: 3.2rem;
}

.contact_list p {
    font-size: 2.8rem;
}

.contact_list i.fa-solid.fa-check {
    font-size: 2.8rem;
    line-height: 1.4;
}

.contact_form_bg {
    padding: 4rem;
}





/* /////////////////////////////////




Download




///////////////////////////////// */





.download {
    padding-top: 22rem;
}



.download_lead {
    font-size: 3.2rem;
}

.download_foot {
    font-size: 3.2rem;
}

.download_form_bg {
    padding: 4rem;
}


}

/* ４０４ */
/* thanks */
.thanks__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 14rem 0 10rem 0;
	 gap: 40px;
}
.thanks__inner--text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}
.thanks__inner--btn {
    display: flex;
    justify-content: center;
}
img.notfoundPage {
    height: 200px;
    width: 100%;
}

/* contact */
/* contact */
.contact-content {
    padding: 60px 0;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-content--left {
    width: 460px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
aside#sideForm.contactSide {
    width: 560px;
    position: relative;
    top: 0;
    height: fit-content;
}
.contact-content--right {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    background: #FFF;
    z-index: 1;
    box-shadow: 0px 1px 20px 0px rgba(58, 52, 255, 0.10);
    border-radius: 8px;
}
.contact-content--left.semiar__right {
    padding: 0;
}
aside#sideForm form p label span:last-child textarea {
    background: #fff;
    width: 100%;
    padding: 5px 18px;
    height: 220px;
    border: none;
    box-sizing: border-box;
}
.downloadBook {
    display: flex;
    justify-content: center;
    border: solid 1px #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 5px 0;
}
/* form inner */
/* form */
aside#sideForm form {
    display: flex;
    flex-direction: column;
	 gap: 22px;
}
form.wpcf7-form.init p {
    position: relative;
}
aside#sideForm form p label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
aside#sideForm form p br {
    display: none;
}
aside#sideForm form p label span.formName {
    width: 80px;
    font-size: 1.4rem;
    line-height: 1.3;
}
aside#sideForm form p label span.wpcf7-form-control-wrap {
    width: calc(100% - 100px);
    position: relative;
}
aside#sideForm form p label span:last-child input, aside#sideForm form p label span:last-child select {
    background: #fff;
    height: 40px;
    width: 100%;
    padding: 3px 14px 4px;
    border: none;
	 box-sizing: border-box;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.wpcf7-not-valid, select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.wpcf7-not-valid, textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.wpcf7-not-valid {
    border: solid 2px #ff0000;
}
span.wpcf7-not-valid-tip {
    font-size: 1rem;
    position: absolute;
    bottom: -15px;
}
.wpcf7-response-output {
    display: none;
}

/* form button */
input.wpcf7-form-control.wpcf7-submit {
    background: var(--main-Gradient);
    color: #fff;
    font-size: 1rem;
    border: 1px solid #FFF;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    width: 260px;
    padding: 9px 0 12px;
    justify-content: center;
    border-radius: 9999px;
    margin: 0 auto;
}
input.wpcf7-form-control.wpcf7-submit {
    background: var(--gradation-color);
    color: #fff;
    font-size: 1.6rem;
    border: 1px solid #FFF;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    width: 260px;
    padding: 12px 0 14px;
    justify-content: center;
    border-radius: 9999px;
    margin: 10px auto 0;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}
input.wpcf7-form-control.wpcf7-submit:hover {
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
    opacity: 0.8;
}
.wpcf7-spinner {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
p.seminar__article--hosokuBottom {
    font-size: 0.7rem;
    color: #707070;
    text-align: center;
}
p.seminar__article--hosokuBottom a {
    text-decoration: underline;
}

/* 追加 */
a.footer_link.inner:after {
    content: none;
}

li.header__parent {
    position: inherit;
}
.header__parent--block {
    position: absolute;
    width: 100vw;
    left: 0;
    display: flex;
    justify-content: center;
    background: #fff;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
	 transition: .5s;
}
ul.header__child {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 30px 0 30px;
    align-items: flex-end;
}
ul.header__child li {
    height: 100%;
}
ul.header__child li h2 {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
li.header__child--serviceleft {
    margin: 0;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
}
li.header__child--serviceleft:after, li.header__child--serviceleft:before {
    content: none;
}
li.header__child--serviceleft:after {
    content: "";
    width: 1px;
    transform: none;
    height: 100%;
    top: 0;
    right: -85px;
    background: #ddd;
}
li.header__child--serviceleft img {
    width: 100%;
}
li.header__child--serviceleft h2 {
    font-size: 2rem;
    letter-spacing: 1.4px;
}
li.header__child--serviceright {
    width: 760px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
li.header__child--serviceright img {
    width: auto;
    height: 184px;
    filter: drop-shadow(0px 2px 12px #ddd);
}
li.header__child--serviceright h2 {
    font-size: 2rem;
    letter-spacing: 1.4px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    text-align: center;
}
li.header__child--serviceright h2 span {
    font-size: 1.3rem;
    color: #707070;
    font-weight: 500;
}
li.header__parent:hover .header__parent--block {
    opacity: 1;
    pointer-events: auto;
}
li.header__parent:hover span.btn {
    opacity: 0.8;
}
li.header__parent span.btn.btn_blue:after {
    content: '\f107';
    opacity: 0.6;
}
li.header__parent:hover span.btn:after {
    opacity: 1;
}
ul.header__child a.btn.btn_blue {
    width: 260px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
}
li.header__child--serviceright a.btn.btn_blue span {
    background: #fff;
    color: #561efd;
    font-size: 1.2rem;
    padding: 5px 7px 6px;
    line-height: 0.9;
    margin-right: 6px;
}
#banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    z-index: 1000;
    pointer-events: none;
    transition: .5s;
    border-radius: 5px;
    border: 1px solid #592BFB;
    background: #fff;
    box-shadow: 0px 1px 12px 0px rgba(58, 52, 255, 0.10);
    display: flex;
    flex-direction: column;
}
  #closeBtn {
    float: right;
    cursor: pointer;
    position: absolute;
    right: -4px;
    top: -50px;
    font-size: 3rem;
    padding: 2px 12px;
    transition: 0.3s;
	}
	#closeBtn:hover {
    opacity: 0.6;
	}
	#banner.visible {
    opacity: 1;
    pointer-events: auto;
	}
.banner__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.banner__inner--top {
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: 5px 5px 0px 0px;
    border: 1px solid #592BFB;
    background: #592BFB;
}
.banner__inner--top h2 {
    color: #fff;
    font-size: 1.9rem;
    letter-spacing: 1.9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    line-height: 1.4;
    font-weight: 700;
}
.banner__inner--top h2 span {
    font-weight: 300;
    font-size: 1.4rem;
}
.banner__inner--middle {
    display: flex;
    flex-direction: column;
    padding: 0px 20px 15px;
    align-items: center;
    margin-top: -7px;
}
.banner__inner--middle img {
    width: 100%;
    transform: translateX(10px);
    filter: drop-shadow(0px 2px 12px #ddd);
}
.banner__inner--middle .btn span {
    background: #fff;
    color: #561efd;
    font-size: 1.3rem;
    padding: 2px 7px 3px;
    line-height: 0.9;
    margin-right: 6px;
}
p.downloadannai {
    color: #592BFB;
    text-align: center;
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: #fff;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.45px;
    margin: -20px 0 6px;
    z-index: 1;
}
.download_img_wrap.manga {
    display: flex;
    justify-content: center;
    border: solid 1px #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    padding: 30px;
}
.mangabook__inner {
    position: relative;
    filter: drop-shadow(4px 8px 8px #ccc);
    max-width: 300px;
    box-sizing: border-box;
}
.mangabook__inner:before {
    content: "";
    height: calc(100% - 5px);
    left: 0;
    position: absolute;
    width: 100%;
    border-radius: 5px;
    background: linear-gradient(-90deg, #fff0, #ffffff1a 80%, #ffffff4d 95%, #fff6 96.5%, #cbcbcb14 98%, #6a6a6a1a);
    border-radius: 3px;
    top: 0;
    transition: 0.3s ease-in-out;
}

/* 追加 */
nav#breadcrumb a, nav#breadcrumb span {
    font-size: 1.4rem !important;
}
footer#footer li a, footer#footer p, footer#footer h2 {
    font-size: 1.4rem;
}
header#header a {
    font-size: 1.6rem;
}
button.modal-toggle i {
    padding: 12px;
    color: #aaa;
    font-size: 1.6rem;
    border: solid 1px #ddd;
    border-radius: 9999px;
    margin-left: 10px;
}
.about_text_wrap h3 {
    font-size: 4.2rem;
    font-weight: 700;
}
.modal_list_bg i {
    position: relative;
    top: 0;
    transform: translateY(18px);
    height: fit-content;
    border: none;
    padding: 0;
    color: var(--main-color);
	margin-left: 0;
}
.step_wrap i {
    position: relative;
    top: 0;
    height: fit-content;
    border: none;
    padding: 0;
    color: var(--main-color);
    margin-left: 0;
    transform: translateY(1px);
	right: 0;
}
.kinds__inner--top p, .fiveFunction__inner--text p {
    font-size: 1.6rem;
}
.contact_list i {
    position: relative;
    top: 0;
    height: fit-content;
    border: none;
    padding: 0;
    color: var(--main-color);
    margin-left: 0;
    transform: translateY(9px);
    right: 0;
}

@media screen and (max-width: 1100px) {
	ul.header__child {
		padding-left: 2%;
		padding-right: 2%;
	}
}

@media screen and (max-width:650px) {
/* thanks */
	.thanks__inner {
	 padding-top: 22rem;
	}
	.thanks__inner--text {
    padding-left: 4%;
    padding-right: 4%;
	}
	img.thanksImg {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* form */
	aside#sideForm.contactSide {
    width: 100%;
	}
	.contact_item {
    width: 100%;
	}
	.semiar__right {
    padding: 12px 20px;
	}
	aside#sideForm form p label {
    flex-direction: column;
    align-items: unset;
    gap: 6px;
	}
	aside#sideForm form p label span.formName {
    width: 100%;
    font-size: 2.8rem;
	}
	aside#sideForm form p label span.wpcf7-form-control-wrap {
    width: 100%;
	}
	aside#sideForm form p label span:last-child input, aside#sideForm form p label span:last-child select {
    height: 60px;
    line-height: 55px;
	}
	input.wpcf7-form-control.wpcf7-submit {
    font-size: 3rem;
	}
	/* ai works */
	.case_icon_list--header h4 {
    font-size: 3.8rem;
    line-height: 1.43;
    padding-top: 8px;
    padding-bottom: 10px;
	}
	/* 追加 */
	#banner {
    display: none;
	}
}


/* 20241124 */
ul.header__inner--bottomRightLink li span {
    font-size: 1.6rem;
}
.link i {
    margin: 0;
    transform: none;
    position: relative;
    top: 0;
}
.course_step_wrap .mt_20 {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
span#closeBtn {
    right: 0;
    float: none;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 50px;
    height: 50px;
    align-items: center;
    border-radius: 9999px;
    border: solid 1px #ddd;
    top: -55px;
}
span#closeBtn i {
    margin-left: 0;
    cursor: pointer;
    top: 0;
    transform: none;
    border: none;
    padding: 0;
    display: flex;
    position: relative;
    font-size: 2.5rem;
}
img.sp {
    height: auto;
    bottom: 0;
    position: absolute;
    right: 0;
}

/* 動画 */
.about_bgImg {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
    border-bottom: dotted 2px #fff;
    margin-bottom: 50px;
	gap: 20px;
}
.about_bgImg h3 {
    font-size: 2.6rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1.8px;
    position: relative;
}
.about_bgImg h3:before, .about_bgImg h3:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 25px;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
    content: "";
}
.about_bgImg h3:before {
    left: -35px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}
.about_bgImg h3:after {
    right: -35px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}
.about_bgImgImg {
    position: relative;
    cursor: pointer;
	max-width: 650px;
}
.about_bgImgImg i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 4.3rem;
    width: auto;
    height: auto;
    padding: 17px 19px 17px 19px;
    color: #fff;
    border-color: #fff;
    opacity: 0.6;
	transition: .5s;
}
.about_bgImgImg:hover i {
    opacity: 1;
}
.about_bgImgImg img {
    box-shadow: 0px 1px 12px 0px #00000026;
}

/* モーダル全体のスタイル */
.movieModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    align-items: center;
}

/* モーダル内のコンテンツ */
.movieModal-content {
  position: relative;
  margin: 5% auto;
  padding: 0;
  width: 80%;
  max-width: 800px;
}

/* 閉じるボタン */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* 動画サイズ調整 */
.movieModal video {
  width: 100%;
  height: auto;
  display: block;
}
.ModalClose {
    position: absolute;
    top: 0;
    z-index: 22;
    color: #fff;
    font-size: 2.8rem;
    right: 14px;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
/* （ここにモバイル用スタイルを記述） */
	footer#footer li a, footer#footer p, footer#footer h2 {
		font-size: 2.8rem;
	}
	header#header a, header#header span {
		font-size: 3.2rem;
	}
	nav#breadcrumb a, nav#breadcrumb span {
    font-size: 2.8rem !important;
	}
	.about_bgImgImg i {
    width: 56px;
	}
	.movieModal-content {
    width: 100%;
	}
}

/* top table */
section#trainingTable {
    position: relative;
    padding-bottom: 10rem;
}
.trainingTable__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}
ul.trainingTable__inner--list {
    display: flex;
    background: #F7FBFF;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px 55px;
	border-radius: 5px;
}
ul.trainingTable__inner--list li {
    width: 47%;
    display: flex;
    flex-direction: column;
    border: solid 1px #eee;
    border-radius: 5px;
    background: #fff;
	overflow: hidden;
}
.trainingTable__inner--listTop {
    background: var(--main-color);
    display: flex;
    flex-direction: column;
    padding: 15px 25px;
    align-items: center;
	gap: 12px;
}
.trainingTable__inner--listTop h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1.2px;
    font-size: 130%;
    height: 59px;
    padding: 0 10px;
}
.trainingTable__inner--listTop h4 span {
    line-height: 1.3;
}
p.trainingTable__inner--listTopTimes {
    display: block;
    background: rgb(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    width: 100%;
    text-align: center;
    border-radius: 3px;
    font-size: 90%;
    padding-bottom: 2px;
}
ul.trainingTable__inner--listBottom {
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 25px 25px;
    width: 100%;
	height: 100%;
}
ul.trainingTable__inner--listBottom li {
    border: none;
    width: 100%;
    padding-left: 25px;
    position: relative;
    overflow: auto;
}
ul.trainingTable__inner--listBottom li:before {
    content: '・';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}
.trainingTable__inner--listTop.tableRed {
    background: #FF3400;
}
.trainingTable__inner--listTop.tableBlack {
    background: var(--main-text);
}
.trainingTable__inner--listTop.tableblue {
    background: #009AFF;
}

a.Tabs__presentation-slider.lppage {
    background: var(--gradation-color);
	height: 100%;
}

a.tabs__item.lpstitle {
    font-size: 1.6rem;
    padding-bottom: 14px;
}
a.tabs__item.lpstitle.active {
    color: #fff;
    background: none;
    z-index: 1;
}
section#trainingTable nav.tabs__nav {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 4rem;
}
.tabs__item:first-child.active ~ .Tabs__presentation-slider.lppage {
  transform: translateX(0) scaleX(0.3333);
}
.tabs__item:nth-child(2).active ~ .Tabs__presentation-slider.lppage {
  transform: translateX(33.33%) scaleX(0.3333);
}
.tabs__item:nth-child(3).active ~ .Tabs__presentation-slider.lppage {
  transform: translateX(calc(33.33% * 2)) scaleX(0.3333);
}
.trainingTable__inner--listTop.tableGradient {
    background: var(--gradation-color);
}
	
@media screen and (max-width: 1100px) {
/* （ここに1100px以下を記述） */
	.trainingTable__inner {
    width: 90%;
	}
	ul.trainingTable__inner--list {
    padding: 30px 30px;
    gap: 40px 0;
	}
	.trainingTable__inner--listTop {
    padding: 15px 15px;
	}
	.trainingTable__inner--listTop h4 {
    font-size: 110%;
    height: 75px;
	}
}
@media screen and (max-width: 767px) {
/* （ここにモバイル用スタイルを記述） */
	ul.trainingTable__inner--list li {
    width: 100%;
	}
	.trainingTable__inner--listTop h4 {
    height: auto;
	}
	ul.trainingTable__inner--list {
    padding: 12px;
    gap: 20px;
	}
	section#trainingTable nav.tabs__nav {
		flex-direction: column;
	}
	a.tabs__item.lpstitle {
    font-size: 2.5rem;
    padding-bottom: 14px;
    width: 100%;
    max-width: none;
    padding-top: 12px;
	}
	a.tabs__item.lpstitle.active {
    background: var(--gradation-color);
	}
}