body{
    background: #fff;
    color: #000;
    font-family: YakuHanJP_Noto, 'Noto Sans JP', sans-serif;
    margin: 0!important;
    font-size: 16px;
    /* overflow: hidden; */
}
section .container{
    max-width: 1080px;
    margin: auto;
}
@media (max-width: 768px){
    body{
        font-size: 14px;
    }
    .pc-only{
        display: none!important;
    }
}
@media (min-width: 769px){
    .sp-only{
        display: none!important;
    }
}

img{
    width: 100%;
}
.mb0{
    margin-bottom: 0!important;
}
.mt0{
    margin-top: 0!important;
}

a{
    border: none;
    color: #000;
    text-decoration: none;
}

iframe{
   width: 100%; 
}
.col:after, .row:after, .container:after{
    content: "";
    display: table;
    clear: both;
}

@media (min-width:769px){
    .col{
        float: left;
    }
    .col:not(:last-child){
        margin-right: 2%;
    }
    .span_12{
        width: 100%;
    }
    .span_10{
        width: 82.333333%;
    }
    .span_8{
        width: 65.666666%;
    }
    .span_6{
        width: 49%;
    }
    .span_7{
        width: 57.33333%;
    }
    .span_5{
        width: 40.66666%;
    }
    .span_4{
        width: 32.333333%;
    }
}
.main_contents section .container{
    padding: 0 10px;
}
.main_contents{
    /* margin-top: 5%;
    margin-bottom: 5%; */
}

/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
  }

  .nav {
    position: absolute;
    top: 20%;
    right: 2%;
    height: 60px;
    width: 60px;
  }
  
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #000;
    transition: 0.5s;
    position: absolute;
  }
  
  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 8px;
  }
  
  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 8px;
  }
  
  #drawer_input:checked ~ .drawer_open{
    position: fixed;
    right: 2%;
    top: 3%;
  }

  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
    background: #000;
  }
  
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
    background: #000;
  }
    
  /* メニューのデザイン*/
  .nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #fff;
    transition: .5s;
  }
  
  /* メニュー黒ポチを消す */
  .nav_list {
    list-style: none;
  }
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ .nav_content {
    left: 0;/* メニューを画面に入れる */
  }
  .nav_content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav_content .nav_list{
    width: 100%;
    padding: 0 10px;
  }
  .nav_content .nav_list li{
    border-bottom: 1px solid #000;
  }
  .nav_content .nav_list li a{
    display: block;
    width: 100%;
    padding: 0.8rem 0;
    font-size: 20px;
    text-align: center;
  }

  .nav_content .nav_list .btn_box{
    margin: 0;
    width: 100%;
    margin-top: 1rem;
  }
  .nav_content .nav_list .btn_box a{
    display: block;
    max-width: 230px;
    width: 100%;
    border: 1px solid #000;
    border-radius: 10000px;
    padding: 0.8rem;
    margin: auto;
    text-align: center;
  }

  .nav_content .nav_list .btn_box a:before{
    background: #000;
  }
  .nav_content .nav_list .btn_box a:after{
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .nav_content .nav_list .btn_box a:hover:before{
    background: #fff;
  }
  .nav_content .nav_list .btn_box a:hover:after{
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .nav_content .nav_list .btn_box a:hover{
    color: #fff;
  }

  header .header_container .contact_box p.btn_box .arrow span{
    background: #fff;
}
#company header .header_container .contact_box p.btn_box .arrow span:not(.txt){
    background: #fff;
}

div.global_nav_list{
    position: relative;
    color: #000;
    width: 130px;
    transition: 0.5s;
    cursor: pointer;
    text-align: center;
    z-index: 10;
}
div.global_nav_list > a{
    color: #000;
    display: block;
    width: 100%;
    transition: 0.5s;
    padding: 1px 0;
    font-size: 18px;
}
div.global_nav_list:hover > a{
    background: #fff;
    color: #000;
}
.global_nav_list .under_list{
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 150px;
    transition: 0.5s;
    height: 0;
    list-style: none;
    color: #000;
    padding-left: 0;
    margin: 0;
    visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
    opacity: 0;/*不透明度0*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
}
.global_nav_list:hover .under_list{
    visibility: visible;/*Gナビメニューにホバーしたら表示*/
    opacity: 1;/*不透明度1*/

}
.global_nav_list .under_list li{
    text-align: left;
    display: block;
}
.global_nav_list .under_list li:first-child a{
    border-bottom: 1px solid #000;
}
.global_nav_list .under_list li a{
    display: block;
    width: 100%;
    padding: 0.3rem 0.5rem;
    color: #000;
    background: #fff;
    transition: 0.5s;
}
.global_nav_list .under_list li a:hover{
    background: #CBCBCB;
    color: #fff;

}


header .logo_box{
    text-align: center;
    padding: 1em 0;
}
header .logo_box a{
    display: block;
    max-width: 90px;
    width: 100%;
    margin: auto;
    position: relative;
}
header .logo_box img{
    max-width: 120px;
    width: 100%;
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: 0.5s;
}
/* header .logo_box a:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: url(../img/colorbiz_bk.svg) no-repeat center center;
    transition: 0.2s;
    z-index: 0;
    opacity: 0;
} */
header .logo_box a:hover img{
    opacity: 0.5;
}
header .logo_box a:hover:after{
    opacity: 1;
}
.footer .logo_box img{
    max-width: 300px;
    width: 100%;
}
.footer .logo_box a{
    display: block;
    max-width: 300px;
    width: 100%;
    position: relative;
}
.footer .logo_box a:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width:300px;
    height: 300px;
    background: url(../img/colorbiz_bk.svg) no-repeat center center;
    opacity: 0;
    transition: 0.5s;
}
.footer .logo_box a:hover:before{
    opacity: 1;
}

@media (max-width: 768px){
    header .logo_box{
    padding: 2em 0;
    }
    header .logo_box img{
        max-width: 75px;
        width: 100%;
    }
    header .logo_box a:after{
        width: 75px;
        height: 75px;
    }
    .footer .logo_box a:before{
        width:150px;
        height: 150px;
    }
    .footer .logo_box a{
        max-width: 150px;
        width: 100%;
        margin: auto;
    }
    .footer .logo_box img{
        max-width: 150px;
        width: 100%;
    }
    .footer .logo_box{
        text-align: center;
    }
}

/*ボタンのCSS*/
p.btn_box .arrow{
    position: relative;
    overflow: hidden;
    transition: 0.8s;
}
p.btn_box .arrow span{
   position: absolute;
    display: block;
    width: 0;
    height: 0;
    background: #CBCBCB;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    transition: 0.5s;
    z-index: -1;
    border-radius: 50%;
}
#company p.btn_box .arrow span.txt{
    position: relative;
    z-index: 1;
    transform: translateX(0);
    background: transparent;
}
#company p.btn_box .arrow span:not(.txt){
    position: absolute;
    display: block;
    width: 105%;
    height: 105%;
    background: #CBCBCB;
    transform: translateX(-105%);
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 0;
}
#company p.btn_box .arrow:hover span:not(.txt){
    transform: translate(0%);
}
p.btn_box .arrow:before{
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 1px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: #fff;
    transition: 0.5s;
    z-index: 10;
}
p.btn_box .arrow:after{
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    top: 50%;
    right: 11%;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-135deg) translateY(70%);
    transition: 0.5s;
    z-index: 10;
}
/*ホバー時*/
p.btn_box .arrow:hover span{
     transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
}
p.btn_box .arrow:hover:after{
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    right: 9%
}
p.btn_box .arrow:hover:before{
    background: #000;
    right: 8%;
}


/*headerのCSS*/
body header{
    position: relative;
    display: block;
    
}
body#top header .header_container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    text-align: center;
    padding-bottom: 0.5rem;
}
body:not(#top) header .header_container{
    background: #E2E2E2;
    padding-bottom: 0.5rem;
}
body header .header_container .logo_box p{
    color: #fff;
    margin: 0 0 0.3em;
    font-size: 40px;
    text-align: center;
}
body header .header_container .logo_box p a{
    color: #fff;

}
body header .header_container .gloval_nav_box{
    display: flex;
    width: auto;
    justify-content: center;
}
body header .header_container .gloval_nav{
    display: flex;
    
}
body header .header_container .gloval_nav p{
    margin: 0;
    text-align: center;
}

body header .header_container .gloval_nav p a{
    width: 130px;
    display: block;
    color: #000;
    transition: 0.5s;
    font-size:18px;
    opacity: 1;
}
body header .header_container .gloval_nav p a:hover{
    color: #000;
    opacity: 0.5;
    background: #fff;
}



body header .header_container .contact_box{
    position: absolute;
    top: 50%;
    right: 3%;
    display: block;
    text-align: center;
    transform: translateY(-50%);
}
body header .header_container .contact_box p{
    display: block;
}
body header .header_container .contact_box p a{
    display: block;
    width: 170px;
    color: #fff;
    font-weight: bold;
    border: 1px solid #fff;
    border-radius: 1000px;
    padding: 0.5em;
}
body header .header_container .contact_box p a:hover{
    color: #000;
}

body .main_box .main_visual_box .main_visual_text_img{
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    text-align: center;
    
}
body .main_box .main_visual_box .main_visual_text_img img{
    max-width: 1000px;
    width: 50.9%;
    filter: drop-shadow(10px 10px 0px #000);
}

@media (max-width: 768px){
    body .main_box .main_visual_box .main_visual_text_img img{
        max-width: 1000px;
        width: 90%;
    }
}


body .main_box .main_visual_box .main_visual_movie img{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
body .main_box .main_visual_box .main_visual_movie{
    position: relative;
    overflow: hidden;
    height: 0;
    pointer-events: none;
    padding-top: 56%;
    position: relative;
    width: 100%;
}


@media (max-width: 768px){
    body .main_box .main_visual_box .main_visual_movie video{
        width: auto;
        max-height: 651px;
        height: auto;
    }
    body .main_box .main_visual_box .main_visual_movie{
        width: auto;
        height: 0;
        padding-top: 651px;
    }
}
@media (min-width: 1650px ){
    body .main_box .main_visual_box .main_visual_movie video{
        width: 100%;
        height: auto;
    }
}


body .main_box .main_visual_box{
    position: relative;
    pointer-events: none;
}

body .main_box .main_visual_box:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0%);
    width: 1px;
    height: 40px;
    /*background: #fff;*/
    border-right: 1px solid #000;
    animation-name: scroll;
    animation-timing-function:ease-in;
    animation-duration:2s;
    animation-iteration-count:infinite;
    z-index: 1;
}

body .main_box .main_visual_box:after{
    content: 'Scroll';
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translate(-50%,0%);
    /*background: #fff;*/
    color: #000;
    font-size: 12px;
    font-weight: normal;
}

@keyframes scroll{
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
  }

/*セクションのCSS*/
.main_content_box section .btn_box{
    text-align: center;
    width: 100%;
    margin: 0;
}
.main_content_box section .btn_box a{
    display: block;
    width: 280px;
    margin: auto;
    border: 1px solid #000;
    border-radius: 1000px;
    padding: 0.5em;
}

section p.btn_box .arrow span{
    background: #CBCBCB;
}

section p.btn_box .arrow:before{
    background: #000;
}
section p.btn_box .arrow:after{
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
}

section p.btn_box .arrow:hover{
    color: #fff;
    border: 1px solid #CBCBCB;
}

section p.btn_box .arrow:hover:after{
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
section p.btn_box .arrow:hover:before{
    background: #fff;
}

@media (max-width: 768px){
    .main_content_box section .btn_box a{
        width: 200px;
    }
}


.main_content_box section h2{
    font-size: 40px;
    /* padding-left: 4rem; */
}
.main_contents section h3{
    text-align: center;
}
.main_content_box section .container{
    position: relative;
    margin-bottom: 0;
}
.main_content_box section h2{
    font-weight: normal;
}


.main_content_box .section01{
    padding: 80px 10px 40px;
}


.main_content_box section .container .title_box{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    line-height: 1;
    transform: rotate(-90deg) translateX(-29%) translateY(-154%);
}
.main_content_box section .container .title_box .sub_ttl{
    font-size: 96px;
    margin: 0;
    position: relative;
}
/*.main_content_box section .container .title_box .sub_ttl:before{
    content: 'About';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 96px;
    color: #fff;
}*/

.main_content_box .section01 h2{
    font-size: 40px;
    /* padding-left: 4rem; */
    margin-top: 0rem;
    margin-bottom: 1.0rem;
    transition: 0.5s;
}
.main_content_box .section01 .container .row .span_12 .txt_box{
    /* padding-left: 4rem; */
    margin-bottom: 4rem;
}
.main_content_box .section01 .container .row .span_12 .txt_box .concept_ttl{
    margin-top: 0;
    font-size: 28px;
    margin-bottom: 0.9rem;
    font-weight: bold;
    font-family: serif;
}
.main_content_box .section01 .container .row .span_12 .txt_box .txt{
    margin-bottom: 3rem;
    width: 68%;
}

.main_content_box .section01 .container .row .span_12 .btn_box a{
    margin-left: 0;
}

.main_content_box .section01 .container .section01_img{
    position: absolute;
    top: 0;
    right: 0;
    max-width: 290px;
    width: 27%;
}

@media (max-width:1174px){
    .main_content_box section .container .title_box{
        transform: rotate(-90deg) translateX(-29%) translateY(-100%);
    
    }
    .main_content_box .section01 h2{
        padding-left: 8rem;
    }
    .main_content_box .section01 .container .row .span_12 .txt_box{
        padding-left: 8rem;
    }
}

@media (max-width: 768px){
    /*.main_content_box .section01{
        padding: 40px 10px 20px;
    }*/
    .main_content_box section .container{
        margin-bottom: 0;
    }
    .main_content_box section .container .title_box .sub_ttl{
        font-size: 40px;
    }
    
    .main_content_box .section01 h2{
        font-size: 24px;
    }
    .main_content_box .section01 .container .row .span_12 .txt_box .concept_ttl{
        font-size: 18px;
    }
    .main_content_box .section01 .container .row .span_12 .txt_box .txt{
        margin-bottom: 2rem;
        
    }
    .main_content_box .section01 h2{
        padding-left: 3rem;
    }
    .main_content_box .section01 .container .row .span_12 .txt_box{
        padding-left: 3rem;
        margin-bottom: 6%;
    }
}

@media (max-width: 480px){

    .main_content_box .section01 h2{
        padding-left: 3rem;
    }
    .main_content_box .section01 .container .row .span_12 .txt_box{
        padding-left: 3rem;
        margin-bottom: 10%;
    }
    .main_content_box .section01 .container .row .span_12 .txt_box .txt{
        width: 100%;
    }
    .main_content_box .section01 .container .section01_img{
        top: auto;
        bottom: 0;
        width: 24%;
    }
}


/*セクション2*/
.main_content_box .section02{
    padding: 40px 10px;
}
.main_content_box .section02 h2{
    margin-bottom: 0.8rem;
}

.main_content_box .section02 .container .row .span_12 .txt_box{
    /* padding-left: 4rem; */
}
.main_content_box .section02 .container .row .span_12 .btn__img{
    /* padding-left: 4rem; */
}


.main_content_box .section02 .container .row .span_12 .txt{
    margin-bottom: 1.5rem;
}

.main_content_box .section02 .container .title_box{
    transform: rotate(-90deg) translateX(-29%) translateY(-187%);
}
.main_content_box .section02 .container .musk__{
    position: relative;
}
.main_content_box .section02 .container .musk__ a{
    width: 100%;
    display: flex;
    height: 255px;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    position: relative;
}
.main_content_box .section02 .container .musk__:before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.1;
    transition: 0.5s;
}

.main_content_box .section02 .container .musk__.ippan{
    background: url(../img/img03.jpg) no-repeat center center / cover;
    margin-bottom: 2rem;
}
.main_content_box .section02 .container .musk__.houjin{
    background: url(../img/img04.jpg) no-repeat center center / cover;
}

.main_content_box .section02 .container .musk__:hover:before{
    opacity: 0.5;
}


@media (max-width:1174px){
    .main_content_box .section02 .container .title_box{
        transform: rotate(-90deg) translateX(-29%) translateY(-130%);
    }
    .main_content_box .section02 h2{
        padding-left: 7rem;
    }
    .main_content_box .section02 .container .row .span_12 .txt_box{
        padding-left: 7rem;
    }
    .main_content_box .section02 .container .row .span_12 .btn__img{
        padding-left: 7rem;
    }
}

@media (max-width: 768px){
    /*.main_content_box .section02{
        padding: 20px 10px;
    }*/
    .main_content_box .section02 .container .row .span_12 .txt_box{
        padding-left: 3rem;
    }
    .main_content_box .section02 .container .row .span_12 .btn__img{
        padding-left: 3rem;
    }
    .main_content_box .section02 h2{
        padding-left: 3rem;
    }
    .main_content_box .section02 h2{
        font-size: 24px;
    }
    .main_content_box .section02 .container .musk__ a{
        height: 115px;
        font-size: 20px;
    }
    .main_content_box .section02 .container .musk__.ippan{
        margin-bottom: 1rem;
    }

}

/*セクション3*/
.main_content_box .section03{
    padding: 40px 0px 0;
}

.main_content_box .section03 .row{
    padding: 0px 10px;
}

.main_content_box .section03 h2{
    margin-top: 1rem;
    padding-left: 0;
    text-align: center;
    font-weight: bold;
}
.main_content_box .section03 .table_box{
    max-width: 600px;
    margin: auto;
}

.main_content_box .section03 .container .title_box{
    transform: rotate(-90deg) translateX(-40%) translateY(-239%);
}

.main_content_box .section03 .container .row .span_12 .txt_box{
    /* padding-left: 4rem; */
}

.main_content_box .section03 .container .row .span_12 .txt_box table{
    width: 100%;
}
.main_content_box .section03 .container .row .span_12 .txt_box table tr td:first-child{
    width: 30%;
}
.main_content_box .section03 .container .row .span_12 .txt_box table tr:not(:last-child){
    margin-bottom: 3%;
}



.main_content_box .section03 .container .row .span_12 .txt_box .flex{
    display: flex;
}
.main_content_box .section03 .container .row .span_12 .txt_box .flex:first-child p{
    margin-top: 0;
}
.main_content_box .section03 .container .row .span_12 .txt_box .flex p{
    margin-bottom: 0;
}

.main_content_box .section03 .container .row .span_4 img{
    max-width: 320px;
}
@media (min-width:769px){
    

    .main_content_box .section03 .container .row .span_12 .txt_box .btn_box .arrow{
        margin-left: 0;
    }
    .main_content_box .section03 .container .row{
        margin-bottom: 4.5rem;
    }
}
.main_content_box .section03 .container .row .span_12 .txt_box .flex p:first-child{
    width: 30%;
}

.main_content_box .section03 .container .row .span_12 .txt_box .table_box{
    margin-bottom: 2rem;
}

@media (max-width:1174px){
    .main_content_box .section03 .container .title_box{
        transform: rotate(-90deg) translateX(-40%) translateY(-183%);
    }
    .main_content_box .section03 .container .row .span_12 .txt_box{
        padding-left: 0;
    }
    .main_content_box .section03{
    padding: 40px 10px 0;
}
}

@media (max-width: 768px){
    /*.main_content_box .section03{
        padding: 20px 0px;
    }*/
    .main_content_box .section03 h2{
        font-size: 24px;
        margin-top: 1rem;
    }
    .main_content_box .section03 .container .title_box{
        transform: rotate(-90deg) translateX(-35%) translateY(-164%);
    }
    .main_content_box .section03 .container .row .span_12 .txt_box .flex p:first-child{
        width: 30%;
    }
    .main_content_box .section03 .container .row .span_12 .txt_box .flex p:last-child{
        width: 70%;
    }
    .main_content_box .section03 .container .row .span_12 .txt_box{
        /* padding-left: 3rem; */
    }
    .main_content_box .section03 .container .row .span_12 .txt_box .table_box{
        margin-bottom: 1rem;
    }
    .main_content_box .section03 .container .row .span_12{
        margin-bottom: 5%;
    }
    .main_content_box .section03 .container .row .span_4{
        text-align: center;
    }
    .main_content_box .section03 .container .row .span_4 img{
        max-width: 160px;
    }
    .main_content_box .section03 .container .row{
        margin-bottom: 1rem;
    }
    .main_content_box .section03 .map_box iframe{
        height: 290px;
    }
}

/*セクション4*/
.main_content_box .section04{
    padding: 40px 10px 80px;
    /* background: #E2E2E2; */
}
.main_content_box .section04 h2{
    text-align: center;
    margin-top: 0;
    font-weight: bold;
}
.main_content_box .section04 p:first-child{
    text-align: center;
    margin-bottom: 1.3em;
}

.main_content_box .section04 .container .title_box{
    transform: rotate(-90deg) translateX(-35%) translateY(-200%);
}

/* .main_content_box .section04 .container .row .span_12 .btn_box a{
    margin-left: 0;
} */

.main_content_box .section04 .container .row{
    /* padding-left: 4rem;  */
}

.main_content_box .section04 .container .row .btn_box{
    margin-bottom: 5%;
}




@media (max-width:1174px){
    .main_content_box .section04 .container .title_box{
        transform: rotate(-90deg) translateX(-35%) translateY(-142%);
    }
    .main_content_box .section04 .container .row{
        /* padding-left: 7rem; */
    }
    .main_content_box .section04 h2{
        /* padding-left: 0; */
    }
}

@media (max-width: 768px){
    .main_content_box .section04 h2{
        font-size: 24px;
        margin-top: 1rem;
        /* padding-left: 3rem; */
    }
    .main_content_box .section04 .container .row{
        /* padding-left: 3rem; */
    }
}

/*footer*/
.footer{
    display: block;
    padding: 140px 10px;
    background: #CBCBCB;
}


.footer .footer_flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .logo,.footer .footer_nav,.footer .contact_sns_btn{
    width: 30%;
    color: #fff;
}


.footer .logo p{
    font-size: 96px;
    margin: 0;
}

.footer .footer_nav .footer_list{
    max-width: 200px;
    margin: auto;
}
.footer .footer_nav .footer_list a{
    color: #fff;
    transition: 0.5s;
}
.footer .footer_nav .footer_list a:hover{
    color: #000;
}

.footer .contact_sns_btn .contact_box .btn_box a{
    max-width: 200px;
    width: 100%;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 1000px;
    display: block;
    text-align: center;
    padding: 0.7rem;
    z-index: 1;
}
.footer .contact_sns_btn .contact_box .btn_box a:before{
    background: #fff;
}
.footer .contact_sns_btn .contact_box .btn_box a:after{
    border-color: #fff;
}
body .footer .contact_sns_btn .contact_box .btn_box a span{
    background: #fff;
}
body#company .footer .contact_sns_btn .contact_box .btn_box a span:not(.txt){
    background: #fff;
}
.footer .contact_sns_btn .contact_box .btn_box a:hover{
    color: #000;
}
.footer .contact_sns_btn .contact_box .btn_box a:hover:before{
    background: #000;
}
.footer .contact_sns_btn .contact_box .btn_box a:hover:after{
    border-color: #000;
}

.footer .contact_sns_btn .sns_box{
    display: flex;
}
.footer .contact_sns_btn .sns_box img{
    max-width: 30px;
    width: 100%;
    transition: 0.5s;
}
.footer .contact_sns_btn .sns_box a:not(:last-child){
    margin-right: 10px;
}
.footer .contact_sns_btn .sns_box a:hover img{
    opacity: 0.6;
}

@media (max-width: 768px){

    .footer .logo p{
        font-size: 40px;
        text-align: center;
    }

    .footer .footer_flex{
        display: block;
    }
    .footer{
        display: block;
        padding: 40px 10px;
        background: #CBCBCB;
    }
    .footer .logo,.footer .footer_nav,.footer .contact_sns_btn{
        width: 100%;
    }
    .footer .footer_nav .footer_list{
        max-width: none;
        margin: auto;
        text-align: center;
    }
    .footer .footer_nav .footer_list p{
        margin: 0;
        padding: 0.5rem;
        border-bottom: 1px solid #fff;
    }
    .footer .contact_sns_btn .contact_box p a{
        margin: auto;
    }
    .footer .contact_sns_btn .sns_box{
        justify-content: center;
        align-items: center;
    }
}

.top_button{
    position: fixed;
    bottom: 5%;
    right: 3%;
    width: 60px;
    height: 60px;
    transition: 0.5s;
    opacity: 0;
    pointer-events: inherit;
}
.top_button a{
    display: block;
    height: 100%;
    width: 100%;
    border: 1px solid #000;
    border-radius: 50%;
    overflow: hidden;
    font-size: 0;
    transition: 0.5s;
    position: relative;
}
.top_button a:before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-42%, -16%) rotate(-135deg);
    width: 13px;
    height: 13px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transition: 0.5s;
}
.top_button a:after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-21%, -50%);
    width: 1px;
    height: 0px;
    border-right: 1px solid #000;
    transition: 0.5s;
}
.top_button a:hover{
    height: 110%;
    width: 110%;
    transform: translate(-5%, -5%);
}
/* .top_button a:hover:before{
    transform: translate(-42%, -61%) rotate(-135deg);
}
.top_button a:hover:after{
    height: 20px;
} */
@media (max-width: 768px){
    .top_button{
        position: fixed;
        bottom: 3%;
        right: 4%;
        width: 40px;
        height: 40px;
        transition: 0.5s;
        opacity: 0;
        pointer-events: inherit;
    }
}
.main_box {
    position: relative;
    overflow: hidden;
    pointer-events: none;
}
.curcle_box img {
    opacity: 0.5;
}
.main_box .curcle_box{
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(50%) translateY(-8%);
    z-index: -1;
    width: 60%;
}

.main_content_box{
    position: relative;
    /* overflow: hidden; */
}
.main_content_box .curcle_box{
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%) translateY(-79%);
    z-index: -1;
    width: 60%;
}

.curcle_box img {
  display: block;
  margin: 0 auto;
  animation: spin 50s linear infinite; /* 20秒で1回転。数値を変えれば速さを調整可能 */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px){
    .main_content_box .curcle_box{
        position: absolute;
        top: 0;
        left: 0;
        transform: translateX(-50%) translateY(-118%);
        z-index: -1;
        width: 90%;
    }
    .main_box .curcle_box{
        position: absolute;
        top: 0;
        right: 0;
        transform: translateX(49%) translateY(-8%);
        z-index: -1;
        width: 90%;
    }
}
/*アニメーション*/
.main_content_box .ani{
    transition: 1.0s ease;
    opacity: 0;
    transform: translateY(10px);
}
.main_content_box .ani.move{
    opacity: 1;
    transform: translateY(0);
}

/*お問い合わせページ*/
body:not(#top) h2{
    text-align: center;
    font-size: 2.0rem;
}

.contact_section{
    padding: 80px 10px;
}

form table{
    width: 100%;
    max-width: 700px;
    margin: auto;
    display: block;
}
form table tbody{
    width: 100%;
    
    display: block;
}
form table tr{
    display: flex;
    align-items: center;
    width: 100%;
}

form table th{
    width: 30%;
    text-align: left;
    padding: 0 0.5rem 0 0;
}

form table td{
    width: 69%;
    text-align: left;
    padding: 0.5rem 0 ;
}
form table textarea{
    width: 99%;
    resize: vertical;
    min-width: 478px;
    min-height: 136px;
}
form table input[type="text"] , form table input[type="email"] , form table input[type="number"]{
    height: 1.5rem;
    padding: 0.2rem;
    width: 98%;
}
form table input[type="text"]::placeholder , form table input[type="email"]::placeholder , form table input[type="number"]::placeholder{
    color: #FF8D00;
    opacity: 0.5;
}

form button[type="button"] , form button[type="submit"]{
    max-width: 280px;
    width: 100%;
    display: block;
    margin: 0 auto;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    border-radius: 1000px;
    padding: 0.8rem;
    transition: 0.5s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
form button[type="button"]:after , form button[type="submit"]:after{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #CBCBCB;
    transform: translateX(-102%);
    transition: 0.5s;
    z-index: 0;
}
form th .label{
    display: flex;
    justify-content: space-between;
}
form .policy_box{
    max-width: 700px;
    margin: 0 auto 2rem;
}
form .policy_box label{
    font-size: 14px;
}
form .policy_box .policy_chk{
    text-align: center;
    margin-top: 1rem;
}
form .policy_box p{
    font-size: 14px;
    margin-bottom: 0;
}
form .policy_box p a{
    text-decoration: underline;
    color: #00e;
}
form .required{
    background: #ff8d00;
    color: #fff;
    padding: 0.2rem;
    margin-left: 1rem;
    font-size: 12px;
    border-radius: 3px;
}
form .policy_box label span:first-child{
    cursor: pointer;
    transition: 0.5s;
    opacity: 1;
}
form .policy_box label span:first-child:hover{
    opacity: 0.5;
}


@media (max-width: 768px){
    body:not(#top) h2{
        text-align: center;
        font-size: 1.5rem;
    }
    form .required{
        font-size: 10px;
    }

    form table tr{
        display: block;
        margin-bottom: 0.8rem;
    }

    form table th{
        width: 100%;
        display: block;
        margin-bottom: 0.4rem;
    }
    
    form table td{
        width: 100%;
        display: block;
        padding-top: 0;
    }

    form table textarea{
        width: 99%;
        resize: vertical;
        min-width: auto;
        min-height: auto;
    }
}
form td div p{
    color: #f00;
    margin: 0;
    font-size: 14px;
}

form #plicy_error .policy_error{
    color: #f00;
    display: none;
}
form #plicy_error .policy_error.error {
    display: block;
}

input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
} 
input[type="number"] { 
    -moz-appearance:textfield; 
  } 


  /*ポリシーページ*/
  @media(max-width: 768px){
    #policy .main_contents section .container .policy_box{
        padding: 1rem;
        height: 400px;
        overflow-y: scroll;
        border: 1px solid #000;
    }
  }
 


  /* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
position: fixed;
width: 100%;
height: 100%;
z-index: 999;
background:#CBCBCB;
text-align:center;
color:#fff;
top: 0;
height: 100vh;
width: 100vw;
}

/* Loading画像中央配置　*/
#splash_logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
display: none;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg{
width:52%;
}


@media (max-width: 768px){
    #splash_logo svg{
        width:90%;
    }
    #splash_logo {
        top: 43.4%;
    }
}

/*========= SVG操作手書き風にするためのCSS ===============*/

#mask .st0{
    fill:none;
    stroke:#fff;
    stroke-width:18;/*線の太さを指定する*/
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:10;
    stroke-dasharray: 1500; /* 線の間隔を指定する */
    stroke-dashoffset:1500; /* 線の位置を指定する */
}

#mask .st1{
    fill:none;
    stroke:#fff;
    stroke-width:7.5;/*線の太さを指定する*/
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:11;
    stroke-dasharray: 1500; /* 線の間隔を指定する */
    stroke-dashoffset:1500; /* 線の位置を指定する */
}
#mask .st2{
    fill:none;
    stroke:#fff;
    stroke-width:10;/*線の太さを指定する*/
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:10;
    stroke-dasharray: 1500; /* 線の間隔を指定する */
    stroke-dashoffset:1500; /* 線の位置を指定する */
}


@media (min-width:769px ){
    .row.reverse{
        display: flex;
        flex-direction: row-reverse;
    }
    .row.reverse .col:first-child{
        margin-right: 0;
    }
    .row.reverse .col:last-child{
        margin-right: 2%;
    }
    
}


.houjin_section01 .row.reverse{
    justify-content: center;
    align-items: center;
}
.houjin_section01 .row.reverse .span_6 img{
    max-width: 250px;
    margin: auto;
}

.ippan_section01 .container .span_12 p .hajimeta{
    font-weight: bold;
    color: #f00;
}
.ippan_section01 .container .span_12 p .bold{
    font-weight: bold;
}
.ippan_section01 .container .row .hajimari_ttl{
    text-align: center;
    font-size: 2.5rem;
    margin: 5rem 0 3.5rem;
}

.ippan_section01 .container .span_12{
    max-width: 500px;
    width: 100%;
    margin: 0 auto 5rem;
}

.ippan_section02 .container .span_12 a{
    display: block;
    max-width: 100px;
    margin: auto;
}

.ippan_section02 .container .span_12{
    text-align: center;
}

.ippan_section02 .container .span_12 .icon_box{
    max-width: 100px;
    max-height: 100px;
    margin: auto;
    position: relative;
    display: grid;
}
.ippan_section02 .container .span_12 .icon_box img{
    border-radius: 50%;
    position: relative;
    z-index: 3;
    transition: 0.5s;
}
.ippan_section02 .container .span_12 .icon_box:before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    transition: 0.5s;
}
.ippan_section02 .container .span_12 a:hover .icon_box:before{
    width: 107%;
    height: 107%;
}
.ippan_section02 .container .span_12 .icon_box:after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    background:  radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 130%),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
    radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%),
    radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
    radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    -webkit-gradient(linear, left top, left bottom, from(#6559ca), color-stop(30%, #bc318f), color-stop(50%, #e33f5f), color-stop(70%, #f77638), to(#fec66d));
    border-radius: 50%;
    z-index: 1;
    transition: 0.5s;
}
.ippan_section02 .container .span_12 a:hover .icon_box:after{
    width: 113%;
    height: 113%;
}

@media(max-width: 768px){
    .ippan_section01 .container .row .hajimari_ttl{
        font-size: 1.8rem;
        margin: 5rem 0 2.5rem;
    }
}

/* コンセプトページ */
.main_contents .contact_section01 .container .concept_ttl{
    font-size: 3.5rem;
    text-align: center;
}
.main_contents .contact_section01 .container .txt{
    text-align: center;
}
.main_contents .contact_section01 .container .row:not(:last-child){
    margin-bottom: 6%;
}
@media(max-width: 768px){
    .main_contents .contact_section01 .container .concept_ttl{
        font-size: 1.5rem;
        text-align: center;
    }
    .main_contents .contact_section01 .container .span_12.video_box video:not(:last-child){
        margin-bottom: 3%;
    }
}
.main_contents .contact_section01 .container .span_12.video_box{
    text-align: center;
}
.main_contents .contact_section01 .container .span_12.video_box video{
    width: 100%;
}
@media(min-width: 769px){
    .main_contents .contact_section01 .container .span_12.video_box video{
        float: left;
        width: 49%;
    }
    .main_contents .contact_section01 .container .span_12.video_box video:first-child{
        margin-right: 2%;
        margin-bottom: 3%;
    }
    .main_contents .contact_section01 .container .span_12.video_box video:nth-child(2){
        margin-bottom: 3%;
    }
}


/* 会社概要ページ追加 20240611 */
body:not(#top) .company_section01 .container h2{
    font-size: 2.8em;
}
body:not(#top) .company_section02 .container h2{
    font-size: 2.8em;
}
body:not(#top) .company_section01{
    margin-bottom: 5%;
}
.company_section01 .container .row table{
    width: 100%;
    border-top: 1px solid #000;
    border-collapse: collapse;
}
.company_section01 .container .row table{
    width: 100%;
    border-top: 1px solid #000;
    border-collapse: collapse;
}
.company_section01 .container .row table tr{
   border-bottom: 1px solid #000;
}
.company_section01 .container .row table td{
    padding: 1.2em 0;
    font-size: 18px;
 }
 .company_section01 .container .row table td:first-child{
    padding-left: 2em;
    width: 32%;
 }
 .company_section02{
    margin-bottom: 200px;
    position: relative;
}
 .company_section02 .container .col{
    position: relative;
}
.company_section02 .container .col:before{
    position: absolute;
    content: '';
    display: block;
    top: 5.6em;
    left: 0;
    width: 3px;
    height: 96%;
    background: #000;
}
.company_section02 .row{
    position: relative;
}
.company_section02 .row:before{
    position: absolute;
    content: '';
    display: block;
    bottom: -0.5em;
    left: 0;
    width: 1px;
    height: 45px;
    border-left: 3px dashed #000000;
}

 .company_section02 .container .col .inner_box{
    display: flex;
    align-items: center;
}
.company_section02 .container .col .inner_box:not(:last-child){
    margin-bottom: 5em;
}

.company_section02 .container .col .inner_box .year_box{
    padding-left: 50px;
    position: relative;
}
.company_section02 .container .col .inner_box .year_box:before{
    position: absolute;
    content: '';
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 3px;
    background: #000;
}
.company_section02 .container .col .inner_box .year_box p{
    font-size: 7em;
    /* font-weight: bold; */
    margin: 0;
    line-height: 0.8em;
}
.company_section02 .container .col .inner_box .txt_box{
    padding-left: 7%;
}
.company_section02 .container .col .inner_box .txt_box .title_box{
    position: relative;
}
.company_section02 .container .col .inner_box .txt_box .title_box:before{
    position: absolute;
    content: '';
    width: 150.15px;
    height: 41px;
    background: url(../img/redline_.png) no-repeat center center / cover;
    top: 1.4em;
    left: 0;
    z-index: 0;
    transform: rotate(5deg);
}
/* .company_section02 .container .col .inner_box .txt_box .title_box:after{
    position: absolute;
    content: '';
    width: 191.15px;
    height: 57px;
    background: #fff;
    top: 1em;
    left: 0;
    z-index: 0;
    transition: 0.2s ease-in;
    transition-delay: 0.5s;
}
.company_section02 .container .col .inner_box.move .txt_box .title_box:after{
    left: 200px;
} */
.company_section02 .container .col .inner_box .txt_box .title_box p{
    font-size: 2.17em;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0.8em;
    position: relative;
    z-index: 1;
}
.company_section02 .container .col .inner_box .txt_box .text_box{
    position: relative;
    z-index: 2;
    margin-top: 0.3em;
}
.company_section02 .container .col .inner_box .txt_box .text_box p{
    font-size: 1.2em;
    margin: 0;
}
@media(max-width:768px){
    .company_section01 .container .row table td:first-child{
        padding-left: 1em;
        width: 33%;
     }
    body:not(#top) .company_section01{
        margin-bottom: 15%;
    }
    body:not(#top) .company_section01 .container h2{
        font-size: 2em;
    }
    body:not(#top) .company_section02 .container h2{
        font-size: 2em;
    }
    .company_section02 .container .col .inner_box{
        display: block;
    }
    .company_section02 .container .col .inner_box .txt_box .title_box p{
        font-size: 1.5em;
        
    }
    .company_section02 .container .col .inner_box .year_box p{
        font-size: 4em;
        line-height: 1;
        margin-bottom: 0.2em;
    }
    .company_section02 .container .col:before{
        top: 1.95em;
        height: 98%;
    }
    .company_section02 .container .col .inner_box .txt_box .text_box p{
        font-size: 14px;
    }
    .company_section02 .container .col .inner_box:not(:last-child){
        margin-bottom: 2em;
    }
    .company_section02 .container .col .inner_box .txt_box .title_box:before{
        width: 90.15px;
        height: 23px;
        top: 0.8em;
    }
    .company_section02 .row:before{
        bottom: -1.95em;
    }
}
.main_contents section .btn_box{
    text-align: center;
    width: 100%;
    margin: 0;
}
.main_contents section .btn_box a{
    display: block;
    width: 280px;
    margin: auto;
    border: 1px solid #000;
    border-radius: 1000px;
    padding: 0.5em;
    background: #fff;
}
body:not(#top) .company_section03{
    padding-bottom: 5%;
}
body:not(#top) .company_section03 h2 {
    font-size: 2.8em;
    margin-bottom: 1.7em;
}
.company_section03 .container .row .span_12 p.txt{
    margin: 0;
    margin-bottom: 4em;
    text-align: center;
}
#company .main_contents{
    position: relative;
    margin-bottom: 0;
    /* background: rgba(255, 255, 255, 0.1); */
}
@media(max-width:768px){
    #company .main_contents{
        background: rgba(255, 255, 255, 0.5);
        margin: 0;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
#company .main_contents:before{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    padding-top: 80%;
    width: 47.8%;
    background: url(../img/company_bg01_3.png) no-repeat center center / cover;
    z-index: -3;
}
#company .main_contents:after{
    position: absolute;
    content: '';
    top: 80%;
    left: 0;
    transform: translateY(-50%);
    padding-top: 97%;
    width: 44.666%;
    background: url(../img/company_bg02_3.png) no-repeat center center / cover;
    z-index: -3;
}
@media (min-width: 1500px) {
    #company .main_contents:before{
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        height: 1200px;
        width: 717px;
        padding-top: 0;
        background: url(../img/company_bg01_3.png) no-repeat center center / cover;
        z-index: -3;
    }
    #company .main_contents:after{
        position: absolute;
        content: '';
        bottom: -20px;
        left: 0;
        height: 1460px;
        width: 670px;
        padding-top: 0;
        background: url(../img/company_bg02_3.png) no-repeat center center / cover;
        z-index: -3;
    }
}

@media(max-width:768px){
    .company_section02{
        margin-bottom: 80px;
    }
    body:not(#top) .company_section03 h2 {
        font-size: 2.0em;
    }
    #company .main_contents:before{
        top: 12%;
        padding-top: 165%;
        width: 98.8%;
    height: 0;
    }
    #company .main_contents:after{
        top: 78%;
        padding-top: 200%;
        width: 90.666%;
        height: 0;
    }
}
.main_contents .company_section01 .ani{
    transition: 1.0s ease;
    transition-delay: 0.5s;
}
.main_contents .ani{
    transition: 1.0s ease;
    opacity: 0;
    transform: translateY(10px);
}
.main_contents .ani.move{
    opacity: 1;
    transform: translateY(0);
}
.company_section03 .btn_inner{
    display: block;
}
.company_section03 .btn_inner p:first-child{
    margin-bottom: 20px;
}
.company_section03 .btn_inner p:last-child{
    pointer-events: none;
    opacity: 0.5;
}
#company section .container{
    max-width: 1110px;
}
@media (min-width:769px){
    .company_section03 .btn_inner p:first-child{
        margin-bottom: 0;
    }
    .company_section03 .btn_inner{
        display: flex;
        max-width: 650px;
        margin: auto;
    }
}

/* 追記　別府　20250729 */
@media (min-width:769px){
  a[href^="tel:"] {
    pointer-events: none;
    color: #000;
  } 
} 

.copyright_inner{
    text-align: center;
    padding: 2em 0;
    color: #000;
    background: #E2E2E2;
    border-top: 1px solid #000;
}