@charset "UTF-8";

/*====================================
	Reset
====================================*/
abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{text-decoration:none}ins,mark{background-color:#ff9;color:#000}mark{font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;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}
div, a, li, span, textarea, input{ -webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
input[type="text"], input[type="password"],textarea,button{ outline: none; vertical-align:middle;}
input[type="text"], input[type="password"],textarea{border: 1px solid #ccc;}

/*====================================
	font
====================================*/
html{
	font-size: 62.5%;
}
body, textarea, input, select, label{
	color: #000;
	font-size: 16px;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
    /* font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; */
    font-family: 'Noto Sans JP', sans-serif;
}
body {
    background: url(../img/cont_bg.png) no-repeat top;
    background-size: cover;
    background-attachment: fixed;
}

/*====================================
	base
====================================*/
a{
	color: #000;
    text-decoration: none;
    transition: all .2s;
}
a:hover {
    opacity: .7;
}
img {
    vertical-align: middle;
    object-fit: cover;
    max-width: 100%;
}
table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
}
ul {
    list-style: none;
}
p {
    letter-spacing: 0.05em;
}

.sp{
    display: none;
}

.bg_wrap {
    /* background: url(../img/fv_bg.png) no-repeat top;
    background-size: cover;
    background-attachment: fixed; */
}


.wrap {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media only screen and (max-width: 1200px){
    .wrap {
        padding-left: 25px;
        padding-right: 25px;
    }
}
section:not(#fv):not(#cmp) {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* ttl */
.ttl {
    margin-bottom: 30px;
    text-align: center;
}
    .ttl p {
        position: relative;
        font-size: 30px;
        line-height: 1.6;
        letter-spacing: 0.03em;
        font-family: "oswald", sans-serif;
        font-weight: 500;
        font-style: normal;
        color: #0092D1;
        margin-bottom: 10px;
    }
    .ttl p::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 14px;
        height: 2px;
        background-color: #37D592;
    }
    .ttl h2 {
        font-size: 40px;
        line-height: 1.5;
        letter-spacing: 0;
        font-weight: 700;
    }

/* btn */
.btn {
    width: 450px;
    margin: 0 auto;
    text-align: center;
}
    .btn a {
        position: relative;
        display: block;
        padding: 24px;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1.5;
        color: #fff;
        /* border: 2px solid #F94F4D; */
        width: 100%;
        /* transition: transform 0.3s ease; */
        overflow: hidden;
        background: #37D592;
    }
    /* .btn a:hover {
        color: #fff;
    } */
    /* .btn a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #F94F4D;
        z-index: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
        z-index: 0;
    } */
    /* .btn a:hover::before {
        transform: scaleX(1);
    } */
        /* .btn a span {
            position: relative;
            z-index: 1;
        } */
        .btn a img {
            position: relative;
            z-index: 1;
            display: inline-block;
            margin-left: 15px;
            transform: translateY(-2px);
            transition: opacity 0.3s ease;
        }
        .btn a:hover img {
            content: url("../img/icon_arrow_w.png");
        }

/* iframe */
.ifm {
    width: 100%;
    height: 2500px;
    overflow: hidden;
    padding-bottom: 57%;
    position: relative;
}
    .ifm iframe {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
    }
    .ifm iframe .p-request .m-form td:last-of-type {
        min-width: initial !important;
    }

/* pagetop */
#pagetop {
    position: fixed;
    z-index: 10;
    bottom: 3.5rem;
    right: 4rem;
    width: 14rem;
    height: 20rem;
    cursor: pointer;
}
    #pagetop img {
        width: 100%;
    }

/*====================================
	header
====================================*/
header {
    z-index: 9999;
    width: 100%;
    transition: all .2s; 
    background-color: #fff;
}
header.scrolled {
    position: fixed;
    /* background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px); */
}

header #header_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 70px;
    padding-left: 70px;
    transition: all .2s; 
}
    header #header_area h1 {
        width: auto;
    }
        header #header_area h1 img {
            display: inline-block;
            width: 260px;
            max-width: 100%;
        }
    header #header_area .logo {
        display: none;
    }
    header #header_area .btn {
        display: none;
    }
    header #header_area nav {
        display: block;
    }
        header #header_area nav ul {
            display: flex;
            align-items: center;
            box-sizing: border-box;
            position: relative;
        }
        header #header_area nav li {
            display: block;
            text-align: left;
            margin-left: 50px;
        }
            header #header_area nav li a {
                position: relative;
                width: 100%;
                display: block;
                font-size: 18px;
                font-weight: 700;
                line-height: 1.2;
                letter-spacing: 0;
                color: #0092D1;
            }
            /* header #header_area nav li a:not(.contact)::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -17px;
                height: 1px;
                width: 0;
                background-color: #0092D1;
                transition: width 0.3s ease;
            }
            header #header_area nav li a:not(.contact):hover::after {
                width: 100%;
            } */

            header #header_area nav li a.contact {
                background: #37D592;
                padding: 15px 35px;
                font-size: 20px;
                font-weight: 900;
                letter-spacing: 0.05em;
                line-height: 1.2;
                color: #fff;
            }
            header #header_area nav li a.contact:hover {
                opacity: .8;
            }
            header #header_area nav li a.contact img {
                display: inline-block;
                margin-left: 15px;
                transform: translateY(-2px);
            }
        
        
    .nav-button_area {
        display: none;
    }

/*====================================
	fv
====================================*/
#fv {
    padding-top: 50px;
}

#fv .fv_area {
    position: relative;
    overflow: hidden;
}
    #fv .fv_area .fv_txt.sp {
        display: none;
    }
    #fv .fv_area .fv_txt {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
        #fv .fv_area .fv_txt .txt1 {
            margin-bottom: 25px;
            width: 85%;
        }
        #fv .fv_area .fv_txt .txt2 {
            margin-bottom: 35px;
            width: auto;
            width: 85%;
        }
        #fv .fv_area .fv_txt .txt3 {
            width: 85%;
        }
        #fv .fv_area .fv_txt .bar {
            margin-bottom: 40px;
            width: 85%;
        }

        #fv .fv_area .btn {
            text-align: center;
            margin-top: 50px;
            display: block;
        }
        #fv .fv_area.sp .btn {
            display: none;
        }

/*====================================
	cmp
====================================*/
#cmp {
    padding-bottom: 50px;
}
#cmp .cmp_area {
    position: relative;
    padding-top: 25px;
    padding-bottom: 7px;
    display: flex;
    width: 100vw;
    height: 110px;
    overflow: hidden;
}
#cmp .cmp_area.second {
    padding-top: 7px;
    padding-bottom: 25px;
}

@keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  @keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }
  @keyframes loop3 {
    0% {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(100%);
    }
  }
  
  @keyframes loop4 {
    0% {
      transform: translateX(-200%);
    }
    to {
      transform: translateX(0);
    }
  }

.cmp_area img:first-child {
    animation: loop 200s -100s linear infinite;
  }
  
  .cmp_area img:last-child {
    animation: loop2 200s linear infinite;
  }
  .cmp_area.second img:first-child {
    animation: loop3 200s -100s linear infinite;
  }
  
  .cmp_area.second img:last-child {
    animation: loop4 200s linear infinite;
  }


.marquee-wrapper {
    overflow: hidden;
    background-color: #fff;

}
.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  height: 60px;
  margin-bottom: 20px;
}
.marquee.top {
    margin-top: 20px;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  align-items: center;
}
.marquee img {
  margin: 0 30px;
  height: 50px;
  width: auto;
}
.marquee img.keyence {
    height: 40px;
}

.marquee.top .marquee-track {
  animation: scroll-left 2000s linear infinite;
}

.marquee.bottom .marquee-track {
  animation: scroll-right 2000s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/*====================================
	about
====================================*/
#about {
    width: 100%;
}
    #about .btn {
        margin-bottom: 100px;
    }
    #about .box {
        padding: 50px 100px;
        position: relative;
        background-color: #fff;
    }
        #about .box .txt {
            margin-bottom: 40px;
        }
            #about .box .txt p {
                font-size: 18px;
                font-weight: 700;
                color: #252854;
            }


/*====================================
	program
====================================*/
#program {
    width: 100%;
    position: relative;
}
#program .ttl p {
    color: #fff;
}
#program .ttl p::after {
    background-color: #fff;
}
#program .ttl h2 {
    color: #fff;
}
    #program .bg_prog {
        /* background: url(../img/bg_program.png) no-repeat center;
        background-size: cover;
        background-position: center 30%;
        background-attachment: fixed; */
    }
        #program .prog {
            position: relative;
            margin-bottom: 80px;
            padding: 50px 100px;
            background-color: #fff;
        }
            #program .prog .time_area {
                margin-bottom: 40px;
                text-align: center;
            }
                #program .prog .time_area .time {
                    font-family: 'Oswald';
                    font-style: normal;
                    font-weight: 500;
                    font-size: 40px;
                    line-height: 1.6;
                    text-align: center;
                    letter-spacing: 0.1em;
                    background: linear-gradient(91.18deg, #0092D1 49.77%, #37D592 109.65%);
                    background-clip: text;
                    text-fill-color: transparent;
                    color: transparent;
                    display: inline-block;
                }
            #program .prog .ttl_area {
                padding: 28px 70px 28px 130px;
                /* padding: 0 70px 0 130px; */
                background: linear-gradient(91.18deg, #0092D1 49.77%, #37D592 109.65%);
                /* height: 140px; */
                display: flex;
                align-items: center;
                /* position: absolute;
                width: calc(100% - 70px);
                left: -30px; */
                position: relative;
                width: calc(100% + 130px);
                left: -130px;
            }
            #program .prog .ttl_area::before {
                content: '';
                position: absolute;
                left: 0;
                top: -15px;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 0 15px 30px;
                border-color: transparent transparent #005E87 transparent;
            }
                #program .prog .ttl_area h3 {
                    font-size: 30px;
                    font-weight: 700;
                    line-height: 1.3;
                    letter-spacing: 0;
                    color: #fff;
                }
            #program .prog .info_area {
                display: flex;
                justify-content: space-between;
                padding-top: 30px;
                /* padding-top: 170px; */
            }
                #program .prog .info_area .txt_area {
                    width: 65%;
                }
                    #program .prog .info_area .txt_area p {
                        font-size: 18px;
                        font-weight: 700;
                        color: #252854;
                    }
                #program .prog .info_area .pic_area {
                    width: 32%;
                }
                #program .prog .info_area .pic_area .pic {
                    width: 100%;
                }
                    #program .prog  .info_area .pic_area .pic img {
                        max-width: 100%;
                        width: auto;
                        display: block;
                        margin: 0 auto;
                    }
                #program .prog .info_area .pic_area .info {
                    width: 100%;
                    margin-top: -60px;
                    position: relative;
                    z-index: 2;
                }
                    #program .prog .info_area .pic_area .info .info_item {
                        width: 100%;
                        display: block;
                        padding: 30px 20px;
                        background-color: #0092D1;
                    }
                        #program .prog .info_area .pic_area .info .info_item p {
                            text-align: left;
                            color: #fff;
                        }
                        #program .prog .info_area .pic_area .info .info_item p.name {
                            font-size: 26px;
                            font-weight: 700;
                            line-height: 1.2;
                            letter-spacing: 0;
                            margin-bottom: 5px;
                        }
                        #program .prog .info_area .pic_area .info .info_item p.company {
                            font-size: 16px;
                            font-weight: 400;
                            line-height: 1.5;
                            letter-spacing: 0;
                            margin-bottom: 10px;
                        }
                        #program .prog .info_area .pic_area .info .info_item a {
                            font-size: 14px;
                            font-weight: 500;
                            line-height: 1.3;
                            letter-spacing: 0;
                            margin-bottom: 5px;
                            display: block;
                            text-align: left;
                            color: #fff;
                            display: inline-block;
                            position: relative;
                        }
                        #program .prog .info_area .pic_area .info .info_item a::after {
                            content: '';
                            position: absolute;
                            left: 0;
                            bottom: -10px;
                            width: 100%;
                            height: 1px;
                            background-color: #fff;
                        }
                        #program .prog .info_area .pic_area .info .info_item a:hover {
                            opacity: 1;
                        }
                        #program .prog .info_area .pic_area .info .info_item a:hover::after {
                            content: none;
                        }
                        #program .prog .info_area .pic_area .info .info_item a + img {
                            margin-left: 20px;
                            transform: translateY(-1px);
                        }
            
/* modal */
#program .modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
#program .modal .wrap {
    position: relative;
}
    #program .modal .modal-content {
        position: relative;
        max-height: 80vh;
        background: #fff;
        width: 100%;
        background: url(../img/modal_bg.png) no-repeat center;
        background-size: cover;
        color: #fff;
        padding-bottom: 130px;
    }

    #program .modal .close {
        position: absolute;
        top: 30px;
        right: 30px;
        background: none;
        border: none;
        cursor: pointer;
    }
        #program .modal .close img {
            display: block;
        }

    #program .modal .btn {
        width: calc(100% - 200px);
        margin-bottom: 0;
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translate(-50%);        
    }
        #program .modal .btn a {
            background-color: #fff;
            color: #37D592;
            font-size: 27px;
            line-height: 1.5;
            letter-spacing: 0;
            height: 80px;
            line-height: 80px;
            padding: 0;
        }

    #program .modal .profile {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 50px 100px 0px 100px;
        max-height: calc(80vh - 130px);
        overflow-y: auto;
    }
        #program .modal .profile .text {
            width: 68%;
            text-align: left;
        }
            #program .modal .profile .text .msg {
                font-size: 18px;
                font-weight: 700;
                line-height: 1.8;
                letter-spacing: 0;
                margin: 30px 0;
                color: #fff;
            }
            #program .modal .profile .text .block {
                border-bottom: 1px solid #fff;
            }
                #program .modal .profile .text .block .kana {
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 1.2;
                    letter-spacing: 0;
                    margin-bottom: 5px;
                }
                #program .modal .profile .text .block .name {
                    font-size: 40px;
                    font-weight: 700;
                    line-height: 1.2;
                    letter-spacing: 0;
                    margin-bottom: 20px;
                }
                #program .modal .profile .text .block .cmp {
                    font-size: 20px;
                    font-weight: 700;
                    line-height: 1.2;
                    letter-spacing: 0;
                    margin-bottom: 10px;
                }
        #program .modal .profile .image {
            width: 28%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
            #program .modal .profile .image .logo {
                width: 100%;
            }
                #program .modal .profile .image .logo img {
                    width: auto;
                    max-width: 100%;
                    display: block;
                    margin-left: auto;
                }
            #program .modal .profile .image .pic {
                width:100%;
            }
                #program .modal .profile .image .pic img {
                    width: auto;
                    max-width: 100%;
                    display: block;
                    margin: 0 auto;
                }



/*====================================
	gaiyou
====================================*/
#gaiyou {
    width: 100%;
    position: relative;
}
#gaiyou .ttl p {
    color: #fff;
}
#gaiyou .ttl p::after {
    background-color: #fff;
}
#gaiyou .ttl h2 {
    color: #fff;
}
#gaiyou .gaiyou_wrap {
    max-width: 1000px;
    margin: 0 auto 50px;
}
#gaiyou table {
    border-collapse: separate;
    border-spacing: 35px 0;
}
    #gaiyou table th,
    #gaiyou table td {
        box-sizing: border-box;
        border-bottom: 1px solid #fff;
        font-size: 18px;
        line-height: 1.8;
        letter-spacing: 0;
        text-align: left;
        color: #fff;
    }
    #gaiyou table tr:last-child th,
    #gaiyou table tr:last-child td {
        border-bottom: none;
    }
    #gaiyou table th {
        width: 21%;
        position: relative;
        padding: 25px 0;
        text-align: center;
    }
    #gaiyou table td {
        width: 76%;
        padding: 25px 0;
    }
        #gaiyou table td ul {
            margin: 0;
        }
            #gaiyou table td li {
                position: relative;
                padding-left: 1em;
                word-break: break-all;
            }
            #gaiyou table td li::before {
                content: "・";
                position: absolute;
                left: 0;
                top: 0;
            }


/*====================================
	contact
====================================*/
#contact {
    width: 100%;
    position: relative;
    background-color: #fff;
}
#contact .ttl {
    margin-bottom: 50px;
}
#contact .contact_wrap {
    max-width: 1000px;
    margin: 0 auto 50px;
}


/*====================================
	privacy
====================================*/
#privacy {
    width: 100%;
    position: relative;
}
#privacy .ttl {
    margin-bottom: 50px;
}
#privacy .ttl p {
    color: #fff;
}
#privacy .ttl p::after {
    background-color: #fff;
}
#privacy .ttl h2 {
    color: #fff;
}
#privacy .wrap {
    max-width: 1000px;
}
#privacy .stage_area{
    padding-bottom: 80px;
}
#privacy .stage_area + .stage_area {
    padding-top: 80px;
    border-top: 1px solid #fff;
}
#privacy .stage_area ul {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
    #privacy .stage_area ul li {
        text-align: center;
    }
        #privacy .stage_area ul li a {
            color: #fff;
            font-size: 18px;
            line-height: 1.5;
            letter-spacing: 0;
            font-weight: 700;
            display: inline-block;
            /* padding-bottom: 10px;
            transition: all .4s; 
            border-bottom: 1px solid transparent; */
        }
        /* #privacy .stage_area ul li a:hover {
            border-bottom-color: #fff;
        } */
#privacy .stage_area + .stage_area ul {
    gap: 100px;
}
        #privacy .stage_area + .stage_area li a {
            font-size: 16px;
            display: block;
        }
        #privacy .stage_area ul li span {
            display: block;
            margin-bottom: 5px;
            font-size: 16px;
            color: #fff;
        }


/*====================================
	thanks
====================================*/
#thanks {
    width: 100%;
}
    #thanks .box {
        padding: 50px 100px;
        position: relative;
        background-color: #fff;
    }
        #thanks .box .txt {
            margin-bottom: 40px;
        }
            #thanks .box .txt p {
                font-size: 18px;
                font-weight: 700;
                line-height: 1.8;
                letter-spacing: 0;
                color: #252854;
                word-break: break-word;
            }

/*====================================
	footer
====================================*/
footer{
    width: 100%;
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
    footer a,
    footer p {
        font-size: 12px;
        line-height: 1.2;
        letter-spacing: 0;
        color: #fff;
    }
    footer a {
        text-decoration: underline;
    }


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

/*====================================
	header
====================================*/
header #header_area {
    padding-left: 25px;
    padding-right: 25px;
}
        header #header_area h1 img {
            width: 200px;
        }
        header #header_area nav li {
            margin-left: 40px;
        }
            header #header_area nav li a.contact {
                padding: 15px 20px;
            }

}


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

/*====================================
	about
====================================*/
#about .box {
    padding: 30px;
}


/*====================================
	program
====================================*/
 #program .prog {
    margin-bottom: 50px;
    padding: 50px 50px;
}
#program .prog .ttl_area {
    /* padding: 0 70px 0 70px;
    width: calc(100% - 30px);
    left: -20px; */
    padding: 28px 50px 28px 70px;
    width: calc(100% + 70px);
    left: -70px;
}
#program .prog .ttl_area h3 {
    font-size: 24px;
}
#program .prog .ttl_area::before {
    top: -10px;
    border-width: 0 0 10px 20px;
}

/* modal */
#program .modal {
    padding-left: 25px;
    padding-right: 25px;
}
#program .modal .wrap {
    padding-left: 0;
    padding-right: 0;
}
#program .modal .modal-content {
    padding-bottom: 110px;
}
#program .modal .btn {
    width: calc(100% - 60px);
    bottom: 30px;  
}
#program .modal .profile {
    padding: 30px 30px 0 30px;
}

/*====================================
	thanks
====================================*/
    #thanks .box {
        padding: 30px;
    }


}




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

/*====================================
	font
====================================*/
body, textarea, input, select, label{
	font-size: 14px;
}

/*====================================
	base
====================================*/

.sp{
    display: block;
}
.pc{
    display: none;
}

html.is-fixed body {
    height: 100%;
    overflow: hidden;
}

.wrap {
    padding-left: 20px;
    padding-right: 20px;
}

section:not(#fv):not(#cmp) {
    padding-top: 25px;
    padding-bottom: 25px;
}

/* ttl */
.ttl {
    margin-bottom: 30px;
}
    .ttl p {
        font-size: 18px;
    }
    .ttl h2 {
        font-size: 26px;
    }


/* btn */
.btn {
    /* width: 80%; */
    width: 300px;
    padding-bottom: 20px;
}
    .btn a {
        padding: 20px;
        font-size: 20px;
    }


/* pagetop */
#pagetop {
    bottom: 3rem;
    right: 1.5rem;
    width: 5rem;
    height: 5rem;
}



/*====================================
	header
====================================*/
header #header_area {
    padding: 15px 20px;
}
header #header_area nav {
    display: none;
}
header #header_area.sp-mode nav {
    display: flex;
}

header #header_area.sp-mode {
    margin: 0;
    padding: 40px 25px;
    height: 100vh;
    max-height: 100dvh;
    background-color: #fff;
    display: block;
}
header.scrolled #header_area.sp-mode {
    padding-top: 20px;
    padding-bottom: 20px;
}
    header #header_area.sp-mode .logo {
        display: block;
        margin: 50px auto;
        width: 250px;
    }
    header #header_area.sp-mode .btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding-bottom: 0;
        z-index: 99999;
    }
    /* header #header_area.sp-mode .btn::before {
        content: '';
        position: absolute;
        top: -180px;
        left: 50%;
        transform: translateX(-50%);
        background: url(../img/privacy_logo.png) no-repeat center;
        background-size: 100%;
        width: 250px;
        height: 105px;
        max-width: 100%;
    }
        header #header_area.sp-mode .btn a {
            background-color: #F94F4D;
            color: #fff;
        } */
        header #header_area.sp-mode nav ul {
            flex-direction: column;
            width: 100%;
        }
        header #header_area.sp-mode nav li {
            width: 100%;
            margin: 0 auto 50px;
            text-align: center;
        }
        header #header_area nav li a.contact {
            width: 80%;
            margin: 50px auto 0;
        }

        

header #header_area.sp-mode {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
        header #header_area.sp-mode h1 {
            position: absolute;
            top: 15px;
            left: 20px;
        }
            header #header_area h1 img {
                width: 150px;
            }
        header #header_area.sp-mode .sp-mode-wrap {
            width: 100%;
        }

header .nav-button {
    display: block;
    cursor: pointer;
}

/*メニューボタンのエフェクト*/
.nav-button_area {
    display: block;
    z-index: 3;
    position: fixed;
    right: 25px;
    top: 20px;
    transition: all .2s; 
}
.nav-button_area.scrolled {
    top: 20px;
}
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .nav-button {
	width: 40px;
    height: 35px;
    margin: 0 auto;
    position: relative;
  }
	.nav-button.active {
		height: 100px;
	}
	  .nav-button span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: #000;
		border-radius: 2.5px;
	  }
	  .nav-button.bar_black span {
		background-color: #000;
	  }
	  .nav-button span:nth-of-type(1) {
		top: 0;
	  }
	  .nav-button span:nth-of-type(2) {
		  top: 10px;
	  }
	  .nav-button span:nth-of-type(3) {
		  top: 20px;
	  }
	  .nav-button.active span:nth-of-type(1) {
		  transform: translateY(20px) rotate(-45deg);
	  }
	  .nav-button.active span:nth-of-type(2) {
		opacity: 0;
	  }
	  .nav-button.active span:nth-of-type(3) {
		  transform: translateY(0) rotate(45deg);
	  }



/*====================================
	fv
====================================*/
#fv {
    padding-top: 20px;
}

#fv .fv_area .fv_txt.sp {
    display: flex;
}
#fv .fv_area .fv_txt.pc {
    display: none;
}
#fv .fv_area .fv_txt img {
    /* max-width: 100%; */
    width: auto;
}
    #fv .fv_area .btn {
        margin-top: 30px;
        width: 80%;
    }
        #fv .fv_area .btn img {
            width: 100%;
        }
    #fv .fv_area.sp .btn {
        display: block;
    }
    #fv .fv_area.pc .btn {
        display: none;
    }


/*====================================
	about
====================================*/
#about .btn {
    margin-bottom: 50px;
}
#about .box {
    padding: 20px;
}
    #about .box .txt p {
        font-size: 16px;
    }

/*====================================
	cmp
====================================*/
#cmp {
    padding-bottom: 25px;
}
#cmp .cmp_area {
    height: 50px;
    padding-top: 10px;
    padding-bottom: 2px;
}
#cmp .cmp_area.second {
    padding-top: 2px;
    padding-bottom: 10px;
}

.marquee {
  /* margin-bottom: 20px; */
  margin-bottom: 10px;
  height: 50px;
}
.marquee.top {
    margin-top: 10px;
}
.marquee img {
  margin: 0 20px;
  height: 50px;
  /* width: 80%; */
}

/*====================================
	program
====================================*/
        #program .prog {
            margin-bottom: 40px;
            padding: 20px;
        }
            #program .prog .time_area {
                margin-bottom: 20px;
            }
                #program .prog .time_area .time {
                    font-size: 20px;
                }
            #program .prog .ttl_area {
                padding: 15px 40px 15px 40px;
                width: calc(100% + 40px);
                left: -40px;
            }
                #program .prog .ttl_area h3 {
                    font-size: 20px;
                }
            #program .prog .info_area {
                padding-top: 20px;
                flex-direction: column;
            }
                #program .prog .info_area .txt_area {
                    width: 100%;
                    margin-bottom: 20px;
                }
                    #program .prog .info_area .txt_area p {
                        font-size: 16px;
                    }
                #program .prog .info_area .pic_area {
                    width: 80%;
                    margin: 0 auto;
                }
                #program .prog .info_area .pic_area .info {
                    margin-top: -30px;
                }
                    #program .prog .info_area .pic_area .info .info_item {
                        padding: 15px;
                    }

                        #program .prog .info_area .pic_area .info .info_item p.name {
                            font-size: 18px;

                        }
                        #program .prog .info_area .pic_area .info .info_item p.company {
                            font-size: 14px;
                        }
                        #program .prog .info_area .pic_area .info .info_item a {
                            font-size: 14px;
                        }
                        #program .prog .info_area .pic_area .info .info_item a + img {
                            margin-left: 10px;
                            transform: translateY(-1px);
                        }

/* modal */
#program .modal {
    padding-left: 20px;
    padding-right: 20px;
}
#program .modal .modal-content {
    /* padding-bottom: 70px; */
}
    #program .modal .close {
        top: 15px;
        right: 15px;
    }

    #program .modal .btn {
        width: 100%;
        padding-bottom: 0;
        position: absolute;
        bottom: 0;     
    }
        #program .modal .btn a {
            font-size: 18px;
            height: 60px;
            line-height: 60px;
        }

    #program .modal .profile {
        padding: 20px 20px 50px;
        max-height: 80vh;
    }
        #program .modal .profile .text {
            width: 100%;
            margin-bottom: 40px;
        }
            #program .modal .profile .text .msg {
                font-size: 16px;
                line-height: 1.6;
                margin: 20px 0;
            }
                #program .modal .profile .text .block .kana {
                    font-size: 16px;
                }
                #program .modal .profile .text .block .name {
                    font-size: 24px;
                }
                #program .modal .profile .text .block .cmp {
                    font-size: 16px;
                }
        #program .modal .profile .image {
            width: 100%;
        }
            #program .modal .profile .image .logo {
                width: 80%;
                margin-bottom: 30px;
            }
            #program .modal .profile .image .pic {
                width: 80%;
                margin: 0 auto;
            }
                #program .modal .profile .image .pic img {
                    width: 100%;
                }

 



/*====================================
	gaiyou
====================================*/
#gaiyou .gaiyou_wrap {
    margin: 0 auto 40px;
}
#gaiyou table {
    border-spacing: 20px 0;
}
#gaiyou table tr {
    display: block;
    width: 100%;
}
    #gaiyou table th,
    #gaiyou table td {
        display: block;
        width: 100%;
        font-size: 16px;
    }
    #gaiyou table th {
        text-align: left;
        border-bottom: none;
        padding-top: 15px;
        padding-bottom: 0;
    }
    #gaiyou table td {
        padding: 15px 0;;
    }


/*====================================
	contact
====================================*/
#contact .ttl {
    margin-bottom: 30px;
}

#contact .contact_wrap {
    margin: 0 auto 40px;
}


/*====================================
	privacy
====================================*/
#privacy .ttl {
    margin-bottom: 30px;
}
#privacy .stage_area{
    padding-bottom: 50px;
}
#privacy .stage_area + .stage_area {
    padding-top: 50px;
}
#privacy .stage_area ul {
    flex-direction: column;
    gap: 20px;
}
    #privacy .stage_area ul li a {
       font-size: 14px;
    }
#privacy .stage_area + .stage_area ul {
    gap: 30px;
}

/*====================================
	thanks
====================================*/
    #thanks .box {
        padding: 20px;
    }
        #about .box .txt {
            margin-bottom: 30px;
        }
            #about .box .txt p {
                font-size: 16px;
                line-height: 1.6;
            }


/*====================================
	footer
====================================*/
footer{
    height: 50px;
}

}