@media screen and (max-width:450px){
    html {
        -webkit-font-smoothing: antialiased;
        font-size: 62.5%;
    }
    
    body {
        font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック','ＭＳ Ｐゴシック', 'sans-serif', 'UD Digi Kyokasho NK-B', 'Playball', 'Lobster';
        font-size: 1.6rem;
        line-height: 1.5;
        margin: 0;
    }
    
    a {
        color: #000;
        text-decoration: none
    }
    
    a:hover {
        color:#ff6500ff;
        text-decoration: none;
        opacity: 0.6;
        transition-duration: 0.3s;
    }
    
    a img:hover{
        opacity: 0.8;
        transition-duration: 0.3s;
        transform: translateY(-3px);
    }
    
    ul {
        font-size: 0;
        padding: 0;
    }
    
    ul li {
        font-size: 16px;
        display: inline-block;
    }
    
    /* /////////////////////////////
    ヘッダー
    ///////////////////////////// */
    h1{
        font-size: 0.5rem;
        display: block;
        font-family: "游ゴシック";
        text-align: left;
        width: 90%;
        margin: 5px auto 10px;
    }
    
    h1 a{
        margin: 0 1%;
    }
    
    #header{
        text-align: center;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto 5px;
        position: relative;
        padding: 0 0 15px;
    }

    #header .fact-logo{
        display: block;
        width:60px;
        margin: 0 0 0 5px;
    }

    #header .fact-logo img{
        width: 90%;
    }
    
    #header .logo{
        width: 40%;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top:10px;
    }
    
    /* /////////////////////////////
    ナビゲーション
    ///////////////////////////// */
    
    nav{
        display: none;
    }
    
    #nav-drawer {
        z-index: 99999;
        color: #646464;
        display: block;
    }
    
    .nav-unshown {
        display: none;
    }
    
    
    #nav-open {
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        right: 10px;
        top: 35px;
    }
    
    #nav-open p {
        margin: 5rem auto 0;
        font-weight: bold;
        font-size: 1.5rem;
        font-family:'UD Digi Kyokasho NK-B';
    }
    
    #nav-open p.close {
        display: none
    }
    
    #nav-open span,
    #nav-open span:before,
    #nav-open span:after {
        content: '';
        display: block;
        height: 2px;
        width: 30px;
        border-radius: 3px;
        background: #646464;
        transition: 0.5s;
        position: absolute;
    }
    
    #nav-open span {
        top: 25px;
        background-color: #E93400;
    }
    
    #nav-open span:before {
        top: 10px;
        background-color: #009B03;
    }
    
    #nav-open span:after {
        bottom: 10px;
        background-color: #0B3EFF;
    }
    
    .nav-unshown:checked ~ #nav-open span {
        background: rgba(255, 255, 255, 0);
    }
    
    .nav-unshown:checked ~ #nav-open span::before {
        top: 0;
        transform: rotate(45deg);
    }
    
    .nav-unshown:checked ~ #nav-open span::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    
    .nav-unshown:checked ~ #nav-open p.menu {
        display: none;
        transition: 0.5s;
    }
    
    .nav-unshown:checked ~ #nav-open p.close {
        display: block;
        transition: 0.5s;
    }
    
    
    
    #nav-close {
        display: none;
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        transition: .3s ease-in-out;
    }
    
    #nav-content {
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9995;
        width: 100%;
        max-width: 100%;
        height: 90%;
        background: #fff;
        padding: 2% 0 0;
        transition: .5s ease-in-out;
        -webkit-transform: translateY(-105%);
        transform: translateY(-105%);
    }
    
    #nav-input:checked ~ #nav-close {
        display: block;
        opacity: 1;
    }
    
    #nav-input:checked ~ #nav-content {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
    }
    
    #nav-content .logo-menu{
        width: 40%;
        display: block;
        margin: 0 auto ;
        padding: 3% 0 0;
    }
    
    #nav-content .logo-menu img{
        width: 100%;
        display: block
    }
    
    
    #nav-content .text{
        display: inline-block;
        width: 100%;
        vertical-align: top;
        text-align: center;
    }

    #nav-content ul{
        width: 90%;
        margin: 0 auto;
    }
    
    #nav-content li{
        text-align: left;
        display: table;
        width: 100%;
        border-bottom: dashed #aaa 1px;
        margin: 4% 0 0;
    }

    #nav-content li a{
        font-size: 1.5rem;
        line-height: 2;
        display: table-cell;
        width: 90%;
        padding: 0 0 0 3%;
    }
    
    #nav-content li::after {
        content:"";
        background-image: url(../../../../images/arrow-s.png);
        background-size: 4px;
        background-position: center;
        background-repeat: no-repeat;
        width: 1px;
        height: 2px;
        display: table-cell;
        margin: 0 3% 0 0;
        vertical-align: middle;
    }

    #nav-content .info img{
        width: 80%;
        margin: 15px 0 0;
    }

    #nav-content .info .tel{
        width: 50%;
    }
    
    /* /////////////////////////////
    トップ画像
    ///////////////////////////// */
    
    #top-image{
        background-position: center;
        background-size: cover;
        height: auto;
        padding: 0;
        width: 100%;
        height: 350px;
        background-repeat: no-repeat;
        margin: 0;
    }
    
    /* /////////////////////////////
    パンくずリスト
    ///////////////////////////// */
    
    .breadcrumb {
        margin: 15px auto ;
        padding: 0;
        list-style: none;
        text-align: right;
        font-family: "sans-serif";
        width: 90%
    }
      
    .breadcrumb li {
        display: inline;
        list-style: none;
          font-size:1em;
          font-weight: bold
    }
      
    .breadcrumb li:after {
        font-family: "Font Awesome 5 Free";
          content: "\f061";
          font-weight: bold;
          padding: 0 0.2em;
          color: #555;
    }
      
    .breadcrumb li:last-child:after {content: '';}
    
    /* /////////////////////////////
    エリア
    ///////////////////////////// */
    
    #area h2{
        letter-spacing: 1px;
        font-size: 2rem;
    }
    
    #area h2 img{
        width: 4rem;
        vertical-align: -1rem;
    }
    
    #area .area{
        width: 90%;
    }
    
    #area .area .cloud{
        right: 0%;
        top:-5%;
    }
    
    #area .area h3{
        font-size: 1.8rem;
    }
    
    #area .area span{
        font-size: 1.5rem;
    }
    
    #area .area p{
        margin: 0 auto 2%;
        font-size: 1.3rem;
    }
    
    /* /////////////////////////////
    インフォメーション
    ///////////////////////////// */
    
    #info{
        width: 80%;
        margin: 10% auto;
    }
    
    #info a img{
        width: 80%;
        display: inline-block;
        border: solid 1px #aaa;
    } 
    
    #info li{
        width: 100%;
        vertical-align: middle;
    }
    
    #info li.right img{
        margin: 4% 0;
    }
    
    
    /* /////////////////////////////
    会社情報
    ///////////////////////////// */
    
    .info{
        width: 100%;
        margin: 0 auto;
        padding: 2% 0 3%;
        text-align: center;
        position: relative;
    }
    
    .info h2{
        font-family: 'UD Digi Kyokasho NK-B';
        margin: 0 auto 1%;
        padding: 10px 0;
        color: #000;
        font-size: 2rem;
        letter-spacing: 2px;
        display: block;
        width: 70%;
        border-top: double 5px #0B3EFF;
        border-bottom: double 5px #0B3EFF;
    }
    .info h2 span{
        color: #E93400;
        font-size: 2.5rem;
    }
    
    .info h2 img{
        width: 2.5rem;
        vertical-align: -.5rem;
    }
    
    
    .info .flag-1{
        position: absolute;
        left: 0%;
        top: 10px;
        width: 30%;
    }
    
    .info .flag-2{
        position: absolute;
        right: 0%;
        top: 10px;
        width: 30%;
    }

    .info .logo:last-child{
        border-top: solid 1px #aaa;
    }
    
    .info .logo img{
        width: 50%;
        max-width: 300px;
    }
    
    .info .logo .soleil{
        width: 40%;
    }

    .info .logo p{
        font-size: 1.2rem;
        font-weight: normal;
    }

    .info .logo p .sp{
        display: block;
    }
    
    .info a:hover img{
        transition-duration: 0.3s;
        transform: translateY(-3px);
        opacity: 0.6;
    }
    
    .info ul{
        width: 90%;
        text-align: center;
        margin: 1% auto 10%;
        display: block;
    }
    
    .info li{
        vertical-align: top;
        width: 100%;
    }
    
    .info .gmap{
        position: relative;
    }
    
    .info .gmap span a{
        right: 0%;
        font-size: 1.2rem;
    }
    
    
    .info iframe{
        width: 100%;
        height: 300px;
    }
    
    .info .f-acces h3{
        font-size: 1.7rem;
    }
    
    .info .f-acces h3::before{
        width: 30%;
    }
    
    .info .f-acces h3 img{
        width: 2rem;
        margin: 0 10px 0 0;
    }
    
    .info .point{
        font-size: 1.4rem;
        width: 95%;
        font-family: "游ゴシック";
    }
    
    .info .point:nth-child(odd){
        margin: 0 0 0 1%;
    }
    
    .info .point .arrow img{
        width: 40%;
    }
    
    .info .point .pin{
        display: table-cell;
        width: 10%;
        vertical-align: 10px;
    }
    
    .info .point .pin img{
        width: 40%;
    }
    
    .info .a-link a{
        font-size: 1.4rem;
        margin: 5% 0 0;
    }
    
    /* /////////////////////////////
    フッター
    ///////////////////////////// */
    
    .footer{
        width: 95%;
    }
    
    .footer .left{
        width: 100%;
    }
    
    .footer .left ul{
        width: 100%;
    }

    .footer .left li{
        width: 49%;
    }

    .footer .left li a{
        font-size: 1.5rem;
        font-family: "游ゴシック";
    }
    
    .footer .right{
        width: 80%;
    }
    
    .footer .right .time{
        width: 100%;
        margin: 2% 0;
    }
    
    .footer .right .tel{
        display: none;
    }
    
    .footer .right .logo{
        width: 70%;
    }
    
    .footer .right p{
        font-size: 1.4rem;
    }
    
    /* /////////////////////////////
    コピーライティング
    ///////////////////////////// */
    .copyright{
        font-size: 1.3rem;
        margin: 0 0 20%;
    }
    
    /* /////////////////////////////
    固定
    ///////////////////////////// */
    .fixed{
        display: block;
        transition: 0.5s;
        opacity: 0;
    }
    
    .fixed ul{
        margin: 0 auto;
        font-size: 0;
        bottom: 0;
        position: fixed;
        z-index: 9999;
        width: 100%;
        text-align: center;
        max-width: 480px;
        display: block;
    }
    
    .fixed li{
        width: 25%;
        display: inline-block;
        height: 50px;
    }
    
    .fixed .go-top{
        text-align: right
    }
    
    .fixed img{
        bottom: 0;
        width: 100%;
    }
    #footer .name span{
        display: block;
        font-size:1.5em
    }
    
    @import url("fa.min.css");
    
}