@charset "utf-8";


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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    line-height: 1.6;
    color: #131b35;
    font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴシック', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 100%;
    text-decoration: none;
    margin: 0 auto;

}

* {
    float: none;
    position: static;
}

div {
    text-align: center;
}

img {
    width: 100%;
    max-width: 100%;
    vertical-align: top;
}

a {
    text-decoration: none;
    color: #404040;
    font-size: 1.2rem;
}

h1 {
    font-size: 3.4rem;
    font-weight: bold;
    color: #ff6600;
    text-align: center;
    position: relative;
    padding: 32px 0 0;
    margin-bottom: 20px;
}


h1::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 2px;
    display: inline-block;
    background-color: #ff6600;
    bottom: 5px;
    left: calc(50% - 50px)
}

.smaller3 {
    font-size: 3.0rem;
    line-height: 3.6rem;
    position: relative;

}

.smaller3::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 2px;
    display: inline-block;
    background-color: #ff6600;
    bottom: -4px;
    left: calc(50% - 50px)
}


h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6600;
    line-height: 1.2;
}

.smaller {
    font-size: 1.6rem;
}


h3 {
    font-size: 1.8rem;

}

p {
    font-size: 1.4rem;
}

address {
    font-size: 1.4em;
}

.center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

ul {
    display: flex;
    justify-content: space-around;
}

section {
    margin: 20px auto;
    padding-bottom: 30px;
    width: 94%;
}

li {
    text-align: center;
}


.kukan {
    margin-top: 80px;
}

header {
    height: 80px;
    background: white;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    transition: padding .2s;
}


  .logo{
    display: block;
    width: 140px;
    margin-left: 10px;
  }

  .logo img{
    height: 80px;
    object-fit: cover;
  }



.logo-letter,
.imasugu {
    display: none;
}


#header.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/*　下に下がる動き　*/

#header.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    width: 68px;
    height: 68px;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    z-index: 2;
    outline: none;
    background-color: transparent;
    border: none;
}

.menu-trigger span {
    position: absolute;
    left: 50%;
    width: 37px;
    height: 5px;
    border-radius: 9999px;
    background: rgb(1, 15, 85);
    transform: translate(-50%, -50%);
}

.menu-trigger span:nth-of-type(1) {
    top: 22px;
}

.menu-trigger span:nth-of-type(2) {
    top: 50%;
}

.menu-trigger p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: rgb(0, 7, 40);
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translate(-50%, -50%);

}

.menu-trigger.active span:nth-of-type(1) {
    top: 49%;
    transform: translate(-50%, -50%) rotate(-45deg);

}

.menu-trigger.active span:nth-of-type(2) {
    bottom: 49%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-trigger.active p {

    opacity: 0;
}


#global-nav-ham {
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, .95);
    padding: 90px 4% 0;
    position: fixed;
    top: 0;
    left: 100%;
    transform: translateX(-100%);
    z-index: -1;
}

#global-nav-ham.active {
    display: block;
    z-index: 1;

}

#global-nav-ham ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 0;
}

#global-nav-ham li {
    width: 25%;
}


#global-nav-ham p {
    font-size: 13px;
    text-align: center;
    padding: 0px 0 6px 0;
    margin-top: -10px;
    color: #051461;
    font-weight: bold;
    margin: 0 -8px;
}


.gn_icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 75px;
    height: 75px;
    background-position: center;
    vertical-align: top;
}

.gn_icon1 {
    background-image: url(../images/icon1.png);
    rotate: 90deg;
}

.gn_icon2 {
    background-image: url(../images/icon2.png);
}

.gn_icon3 {
    background-image: url(../images/icon3.png);
}

.gn_icon4 {
    background-image: url(../images/icon4.png);
}

.gn_icon5 {
    background-image: url(../images/icon5.png);
}

.gn_icon6 {
    background-image: url(../images/icon6.png);
}

.gn_icon7 {
    background-image: url(../images/icon7.png);
}

.gn_icon8 {
    background-image: url(../images/icon8.png);
}


.smaller4 {
    font-size: 10px !important;
    line-height: 1.2;
}


.mv {
    padding-top: 79px;
    padding-bottom: 0;
    vertical-align: top;
}


.slider-3 .slick-slide {
    margin: 0 24px;
    padding: 44px 0;
    position: relative;
}

.slider-3 .slick-slide .slide-img {
    width: 260px;
    height: 160px;
    transition: all 0.6s ease 0.4s;
    opacity: 0.8;
    box-shadow: 7px 7px 15px -5px #666;
    overflow: hidden;
}

.slider-3 .slick-slide.slick-current .slide-img {
    transform: scale(1.2);
    opacity: 1;
}

.slider-3 .slick-slide .slide-img img {
    display: block;
    width: 100%;
    height: 100%;
}

.slider-3 .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 10%;
    background-color: rgb(3, 14, 68);
    cursor: pointer;
    border: solid 2px rgb(230, 230, 230);
    outline: none;
    font-size: 0;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.slider-3 .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid rgb(230, 230, 230);
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 11px;
    transform: rotate(45deg);
}

.slider-3 .slick-next {
    right: 3%;
}

.slider-3 .slick-prev {
    left: 3%;
}

.slider-3 .slick-next::before {
    left: 10px;
}

.slider-3 .slick-prev::before {
    border-width: 0 0 3px 3px;
    right: 11px;
}

.slide_section {
    padding: 32px 0px 0px;
}

.slide_section2 {
    padding: 0px;
}

.slide_section2 ul.slick-dots{
    bottom: 20px!important;
}


/*==================================================
  順番にふわっ
  ===================================*/
.fuwa {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
    opacity: 0;
}


.point_inner {
    display: flex;
    justify-content: space-between;
    margin: 44px 6px;
}

.setsumei h2 {
    padding-bottom: 4px;
}

.setsumei {
    max-width: 60%;
    margin-top: -8px;
}


.setsumei p {
    line-height: 1.6;
    font-size: 11px;
    padding: 0 10px 0 10px;
}



.point_img {
    width: 35vw;
    height: 35vw;
    border-radius: 20px;
}

.point_img5{
object-fit: cover;}

.yasudasan {
    background: radial-gradient(circle, rgba(185, 185, 185, 1) 0%, rgba(124, 124, 124, 1) 100%);
}

.point1 {
    position: relative;
}

.point_icon {
    font-family: 'Roboto', sans-serif;
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    background-color: rgba(255, 102, 0, 0.92);
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    color: white;
    letter-spacing: -1px;
    text-align: center;
    padding-top: 13%;
}

.icon_hidari {
    top: -18px;
    left: -18px;


}

.icon_migi {
    top: -18px;
    right: -18px;
}


.point_icon::before {
    content: "point";
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0px;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);

}






.orange_button {
    color: white;
    background: rgb(207, 83, 0);
    background: linear-gradient(135deg, rgba(255, 102, 0, 1) 0%, rgba(255, 145, 87, 1) 100%, rgba(255, 102, 0, 1) 100%);
    border-radius: 9999px;
    border: none;
    display: block;
    margin: auto;
    width: 140px;
    padding: 8px 4px;
    max-width: 90%;
    cursor: pointer;
    transition: 2s;

}

.orange_button:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 1) 50%, rgba(255, 102, 0, 1) 100%);

}

.orange_button p {
    text-align: center;
}


.oubo_button {
    margin: 14px auto;
    width: fit-content;
    padding: 8px 32px 8px;
}

.oubo_button p {
    font-size: 18px;
    line-height: 21px;
    font-weight: bold;

}

.oubo_button .small {
    font-size: 10px;
    line-height: 13px;
    font-weight: normal;

}


.service {
    background-color: #dadfe2;
}

.caption_boxs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.caption_box {
    width: 49%;
    height: fit-content;
    position: relative;
    margin-top: 28px;
    border: 1px solid white;
    background-color: white;
    border-radius: 10px;
    box-shadow: 7px 7px 15px -5px #666;
}



.caption_box p {
    font-size: 11px;
    padding: 10px 4px;
    margin: 10px auto;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: grid;
    place-items: center center;

}

.caption_box img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.position1 {

    object-position: 50% 0%;

}

.caption_box button {
    margin: 16px auto;
}


.caption p {
    font-weight: bold;
    font-size: 16px !important;
    background-color: #03113d;
    color: white;
    text-align: center;
    height: 60px;
    padding: 0 !important;
    margin: 0;

}

.caption_4 p {
    font-size: 14px !important;
    line-height: normal;
    padding: 10px !important;
}


.yoyaku_wrap {
    display: flex;
    justify-content: space-around;
    margin: 28px auto 122px;
    gap: 1%;
}





.step_icon {
    font-family: 'Roboto', sans-serif;
    position: relative;
    font-size: 28px !important;
    font-weight: bold;
    background-color: #ff6600;
    opacity: 0.9;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    color: white;
    letter-spacing: -1px;
    text-align: center;
    padding-top: 12%;
    text-align: center;
    margin: 0 auto;

}

.step_icon::before {
    content: "step";
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0px;
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translateX(-50%);

}


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

.yoyaku_wrap p {
    font-size: 12px;
    text-align: center;
}


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

.kyosan_banner li {
    margin: auto;
    width: 40%;

}

.kyosan_banner img{
    height: 30vw;
    object-fit: cover;
}

.kyosan_banner2 img{
    object-fit: contain;
}


.recruit img {
    width: 80%;
    margin: 16px;
    border-radius: 12px;
}

.recruit_detail {
    margin: 8px 30px 20px;
}

.recruit_detail p {
    text-align: left;
}


.access h2 {
    margin: 14px 0 6px;
}



.access_bgd {
    padding: 20px 0px;
}


iframe {
    width: 98%;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: auto;
}

.access img {
    background-color: white;
    border-radius: 15px;
    margin-top: 20px;
}

.access div {
    margin: 20px 18px;
}







.footer-nav ul {
    margin: 15px 8px;

}

.footer-nav li {
    width: 25%;
    height: 30px;
    line-height: 30px;
}

.smaller_2 {
    line-height: 15px !important;
    text-align: center;
}

.smaller_2 a {
    font-size: 9px;
    letter-spacing: -0.5px;
}


.line {
    width: 1px;
    background-color: #03113d;
}

.hr01 {
    margin: 36px 10px;
    border: 0;
    height: 1px;
    width: 90%;
    background-color: #ccc;
}



/* ボタン全体 */
.flowbtn8 {
    border-radius: 30%;
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    font-size: 30px;
    text-decoration: none;
    color: #fff !important;
}

/* アイコンをど真ん中に */
.flowbtn8 i {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Twitter */
.flowbtn8.fl_tw2 {
    border: solid 1px #55acee;
    background: #55acee;
}

/* Instagram */
.flowbtn8.insta_btn2 {
    font-size: 35px;
    border: solid 1px #c6529a;
    background: #c6529a;
}

/* YouTube */
.flowbtn8.fl_yu2 {
    font-size: 28px;
    border: solid 1px #fc0d1c;
    background: #fc0d1c;
}

/* LINE */
.flowbtn8.fl_li2 {
    border: solid 1px #00c300;
    color: white;
    font-size: 35px;
    background: #00c300;
}

/* ulタグの内側余白を０にする */
ul.snsbtniti {
    padding: 0 !important;
}

/* ボタン全体の位置 */
.snsbtniti {
    width: 84%;
    display: flex;
    justify-content: space-around;
    margin: auto;
}

/* ボタン同士の余白 */
.snsbtniti li {
    text-align: center !important;
}



.copy {
    font-size: 1.1rem;
    margin: 36px auto 42px;
}



.guide {
    padding: 20px 0 40px;
}

.guide h2 {
    margin-bottom: 13px;
}

.guide img {
    height: 200px;
    object-fit: cover;
}

table {
    margin: 20px auto;
    border-collapse: collapse;
}

.table_setsubi {
    padding: 2px 5px;
    background: #FCFCFC;
    color: #131B35;
}

.rental {
    background-color: #e9e9e9;
    padding: 40px 0 40px;
    margin-top: 20px;
}

.rentalitems {
    width: 85%;
    margin: 12px auto;
    text-align: center;
    display: block;
}


.liststyle {
    margin: 12px auto;
    display: block;
    list-style: disc;
    padding-left: 1em;
    display: inline-block;

}

.liststyle li {
    text-align: left;
    font-size: 1.2rem;
}



.fee {
    padding: 36px 0 10px;

}

.table_fee {
    width: 95%;
}

.table_fee th,
.table_fee td {
    height: 28px;
    border-top: 1px solid #696969;
    border-left: 1px solid #696969;
    text-align: center;
    vertical-align: middle;
}

.table_fee th {
    padding: 8px 5%;
    background: #03113D;
    color: #FFFFFF;
    font-weight: normal;
}

.table_fee tr:nth-child(even) th {
    background: #FFFFFF;
}

.table_fee td {
    padding: 10px 3%;
    background: #FCFCFC;
    color: #131B35;
}

.table_fee th:last-child,
.table_fee td:last-child {
    border-right: 1px solid #696969;
}

.table_fee tr:last-child th,
.table_fee tr:last-child td {
    border-bottom: 1px solid #696969;
}

.center_left {
    margin: 14px auto;
    text-align: center;
    display: block;
    width: 84%;
}

.center_left p {
    text-align: left;
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.4;
}


.member {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 20px auto;
}

.member i {
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.member_right {
    width: 75%;
}

.member h3 {
    font-size: 1.4rem;
    font-weight: bolder;
}

.member p {
    font-size: 1rem;
    line-height: 1.4;
}


.cancel_1 {
    border-spacing: 0;
    border-collapse: collapse;
    width: 95%;

}

.cancel_1 th,
.cancel_1 td {
    padding: 7px 2%;
    border-top: 1px solid #949494;
    border-left: 1px solid #949494;
    text-align: center;
    vertical-align: middle;
}

.cancel_1 th {
    background: #03113D;
    color: #FFFFFF;
    padding: 16px 0px;
}

.cancel_1 tr:nth-child(2) th {
    background: #dad4d4;
    color: #000000;
}

.cancel_1 tr:nth-child(3) th {
    background: #dad4d4;
    color: #000000;
}


.cancel_1 td {
    background: #FFFFFF;
    color: #03041F;
}

.cancel_1 th:last-child,
.cancel_1 td:last-child {
    border-right: 1px solid #949494;
}

.cancel_1 tr:last-child th,
.cancel_1 tr:last-child td {
    border-bottom: 1px solid #949494;
}

.cancel_1 td {
    width: 25%;
}



.cancel_2 td {
    width: calc(100%/3);
}

.bankinfo {
    width: 80%;
    margin: 0 auto;

}

.red {
    color: rgb(252, 38, 38);
}


.green{
    color: #63c635;
}

.orange{
    color: #ff6600;
    
}

.kotira{
    font-size: 14px;
    text-decoration: underline;
    color: #ff6600;
    font-weight: bold;
}

.school {
    margin-bottom: 50px;
}

.school div {
    margin-bottom: 30px;
}

.school h2 {
    margin: 48px 0 22px;
}

.schoolde p{
    margin-bottom: 12px;
    }
    

.schoolbold{
    font-weight: 600;
    text-align: center;
    padding-top: 8px;
    color: #404040;
}

.coervera{
    text-decoration: underline;
    color: blue;
}

.coervera:hover {
    font-weight: bold;
  }


.school img {
    width: 70%;
}

.margintb{
    margin: 10px 0;
}


.kaisha {
    margin: 16px auto 40px;
}

.kaisha th,
.kaisha td {
    text-align: center;
    font-size: 1.4rem;
    display: block;
    padding: 2px;

}

.kaisha th {
    font-weight: bold;
}

.kaisha td {
    padding-bottom: 24px;
}



.mv_underconstructions {
    background-image: url(../images/service1.jpg);
    background-size: 100vw;
    background-repeat: no-repeat;
    margin-top: 80px;
    align-items: center;
    z-index: 0;
    position: relative;
}

.mv_underconstructions::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background: inherit;
    filter: brightness(60%) grayscale(90%);
    z-index: -1;
}


.mv_underconstructions div {
    padding-bottom: 80px;
}

.mv_underconstructions h2 {
    color: #fff;
    font-size: 4.4rem;
    position: static;
    text-shadow: 0 2px 2px #666;
    text-align: center;
    font-family: 'Zen Maru Gothic', serif;
    margin-bottom: 10px;
}

.mv_underconstructions p {
    color: #fff;
    font-size: 1.8rem;
    text-shadow: 0 2px 2px #666;
    text-align: center;
    font-family: 'M PLUS 2', sans-serif;
}

.error404 {
    margin: 60px auto;
    padding-top: 60px;
}