@charset "utf-8";
body, html {
    font-family: Roboto,Arial,Helvetica,sans-serif;
}

.no-gutter > [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}
.bg-lightgreen {
    background-color: #e6ede9;
}
.jumbotron {
    background-image: url('../fujiimg/top.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
}
.heading {
    border-left: 6px solid #aaa;
    padding: 0 0 0 10px;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">"
}
.footer-copyright {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}
.map iframe {
    width: 100%;
    height: 450px;
}

/* 大デバイス（デスクトップ, 992px 未満）
============================================== */
@media screen and (max-width: 991.98px) {
    .footer-logo {
        width: 100%;
    }
} /* END */

/* 中デバイス（タブレット, 768px 未満）
============================================== */
@media screen and (max-width: 767.98px) {
    .gnav-item {
        display: block;
        width: 100%;
        border: none;
    }
    .gnav-item+ .gnav-item {
        border: none;
    }
    table th, table td {
        padding: 0.25rem !important;
    }
    table th:first-child {
        width: 25%;
    }
} /* END */

/* 小デバイス（縦向きモバイル, 576px 以上 デスクトップ, 992px 未満）
============================================== */
@media screen and (min-width: 576px) and (max-width: 991.98px) {
    #sec2  {
         height: 500px;
    } 
} /* END */

/* 小デバイス（縦向きモバイル, 576px 以上）
============================================== */
@media screen and (min-width: 576px) {
    #sec2 .message {
        position: absolute;
        left: 0;
    } 
} /* END */






/* ================CUSTOM CSS================= */
.topics dl {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.topics dt {
    padding-bottom: 5px;
}

.topics dd{
    margin-bottom : 20px;
}

@media screen and (min-width: 576px) {
    .topics dt {
        clear: left;
        float: left;
        width: 25%;
    }
    .topics dd {
        margin-left: 11%;
    }
}

/*------見出しカスタマイズ------*/
.head-h3 {
    margin:  0;                    /* デフォルトCSS打ち消し */
    font-size:  24px;              /* 文字サイズ指定 */
    position:  relative;           /* 位置調整 */
    font-weight:  normal;          /* 文字の太さ調整 */
    display:  inline-block;        /* インラインブロックにする */
    padding-top: 40px;             /* 余白指定 */
    padding-left: 40px;            /* 余白指定 */
    padding-bottom: 20px;          /* 余白指定 */
}

.head-h3:before {
    content:  '';                  /* 空白の要素を作る */
    background-color: #ffeaac;     /* 背景色指定 */
    display:  block;               /* ブロック要素にする */
    position:  absolute;           /* 位置調整 */
    left:  25px;                   /* 位置調整 */
    height: 50px;                  /* 高さ指定 */
    width: 50px;                   /* 幅指定 */
    border-radius:  50%;           /* 丸くする */
    top: 0;                        /* 位置調整 */
    z-index:  -1;                  /* 重なり調整 */
}

div .message p{
    margin:  0;                    /* デフォルトCSS打ち消し */
    line-height: 40px;             /* 行間調整 */
    padding-left: 30px;            /* 余白指定 */
    font-size:  16px;              /* 文字サイズ指定 */
}

div .policy-head h3 {
    position: relative;
    padding: 0.5em 1.0em;
}
div .policy-head h3 :after {
    content: "";
    display: block;
    height: 4px;
    background: -webkit-linear-gradient(to right, rgb(230, 90, 90), transparent);
    background: linear-gradient(to right, rgb(230, 90, 90), transparent);
}


/*------見出しカスタマイズ------*/

/*------TOPへカスタマイズ------*/
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}
#page-top a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 15px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background: #999;
}
/*------TOPへ------*/

/*------TOPテキストanimation-----*/
@-webkit-keyframes passing-bar{
    0% {
        left: 0;
        right: auto;
        width: 0;
    }
    50% {
        left: 0;
        right: auto;
        width: 100%;
    }
    51% {
        left: auto;
        right: 0;
        width: 100%;
    }
    100% {
        left: auto;
        right: 0;
        width: 0;
    }
}
@keyframes passing-bar{
    0% {
        left: 0;
        width: 0;
    }
    50% {
        left: 0;
        width: 100%;
    }
    51% {
        left: 0;
        width: 100%;
    }
    100% {
        left: 100%;
        width: 0;
    }
}
@-webkit-keyframes passing-txt{
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes passing-txt{
    0% { opacity:0; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.passing .passing-box {
    display: block;
    text-align: center;
}
.passing .passing-bar {
    position: relative;
    display: inline-block;

    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.passing .passing-bar:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;

    /* 任意の値 */
    opacity: 0.55;
    background-color: #ffffff;
}
.passing .passing-txt {
    opacity: 0;

    /* 後ほど解説 */
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    /* 任意の値 */
    font-size: 3.0rem;
    font-weight: bold;
    line-height: 1.5;

    text-shadow: 7px 7px 7px #4682b4;

    color: #191970;//非対応のブラウザでの文字色を設定
    background: -webkit-linear-gradient(0deg, #ACB6E5, #86FDE8);//背景色にグラデーションを指定
    -webkit-background-clip: text;//テキストでくり抜く
    -webkit-text-fill-color: transparent;//くり抜いた部分は背景を表示
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

.passing.move .passing-bar:before {
    -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
    animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing.move .passing-txt {
    -webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
    animation:passing-txt 0s ease .5s 1 normal forwards;
}



@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用　パソコン等*/
    .passing .passing-txt {
        font-size: 2.8rem;
    }
    
    a[href^="tel:"] {               /*電話番号リンク非選択*/
        pointer-events: none;
        color:#000000;
    }
}


@media screen and (max-width: 767px) { /*ウィンドウ幅が最大767pxまでの場合に適用　スマホ横*/
    .passing .passing-txt {
        font-size: 1.6rem;
    }
}


@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用　スマホ縦*/
    .passing .passing-txt {
        font-size: 1.0rem;
    }
}

/*------TOPテキストanimation-----*/

/*------お問い合わせフォーム　CSS-----*/
#formWrap {
    width:700px;
    margin:0 auto;
    color:#555;
    line-height:120%;
    font-size:100%;
}
table.formTable{
    width:100%;
    margin:0 auto;
    border-collapse:collapse;
}
table.formTable td,table.formTable th{
    border:1px solid #ccc;
    padding:10px;
}
table.formTable th{
    width:30%;
    font-weight:normal;
    background:#efefef;
    text-align:left;
}

@media screen and (max-width:572px) {
    #formWrap {
        width:95%;
        margin:0 auto;
    }
    table.formTable th, table.formTable td {
        width:auto;
        display:block;
    }
    table.formTable th {
        margin-top:5px;
        border-bottom:0;
    }
    input[type="text"], textarea {
        width:80%;
        padding:5px;
        font-size:110%;
        display:block;
    }
    input[type="submit"], input[type="reset"], input[type="button"] {
        display:block;
        width:100%;
        height:40px;
    }
}

/*------お問い合わせフォーム　CSS-----*/

/*------パンくずリスト　CSS-----*/

/* breadcrumb */

.breadcrumb {
    padding: 15px 0 5px 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;     /* スマホでスクロールを滑らかにする */
    overflow-x: auto;                      /* [必須]  */
}

.breadcrumb::-webkit-scrollbar {
    height: 5px;
}

.breadcrumb::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
}

.breadcrumb::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #999;
}

.breadcrumb ul {
    display: table; /* [必須]  */
}

.breadcrumb ul li {
    font-size: 8px;
    font-size: 0.8rem;
    display: table-cell;                  /* [必須]  */
    white-space: nowrap;                  /* [必須] テキストを改行させないように */
    vertical-align: middle;
    padding-right: 26px;
    position: relative;
}

.breadcrumb ul li:last-child {
    padding-right: 0;
}

.breadcrumb ul li:last-child:after {
    display: none;
}

.breadcrumb ul li:after {
    position: absolute;
    display: block;
    content: '';
    content: ">";
    top: 3px;
    right: 8px;
}

.breadcrumb ul li a:before {
    position: absolute;
    display: block;
    content: '';
    width: 50%;
    height: 1px;
    background-color: #111;
    bottom: -7px;
}

.breadcrumb ol li a,
.breadcrumb ol li span {
    position: relative;
    display: block;
    top: -4px;
}

.breadcrumb ul li span {
    background-color: #eee;
    border-radius: 4px;
    padding: 6px 8px;
}

/* スクロール設定解除 */

.breadcrumb.no-scroll ul {
    display: block;
}

.breadcrumb.no-scroll ul li {
    display: inline-block;
    margin-bottom: 12px;
    white-space: normal;
}

.breadcrumb.no-scroll ul li:after {
    top: -4px;
}

/* PC用リンクアニメーション */

@media print,screen and (min-width: 1024px) { /* 1024pxは適宜変更 */
    .breadcrumb ul li a:before {
        transform: scaleX(1);
        transition: transform 0.3s ease;
    }
    .breadcrumb ul li a:hover:before {
        transform: scaleX(0);
    }
}
/*------パンくずリスト　CSS-----*/

/*------サイトマップ　CSS-----*/

.sitemap-ul ul{
    list-style: none;
}

.sitemap-ul ul li{
    padding:20px 10px;
}

/*------サイトマップ　CSS-----*/

/*------table　CSS-----*/

.madiation table {
    padding 10px;
    border-spacing: 8px 0px;
}

.madiation td {
    padding 10px;
    margin 10px;
    border: 1px solid #dee2e6;
    border-spacing: 8px 0px;
}

/*------table　CSS-----*/

.center-position {
    margin:  auto;
    text-align: center;
}

.center-margin {
	width: 100%;
	margin:  auto;
}

.menu-button {
    padding:15px;
    display:inline-block;
    background:#708090;
    color:#fff;
    border-radius:5px;
    text-decoration:none;
    line-height:1;
}

.little-spacebox {
    padding:25px 0;
}

.margin-topspace p{
    margin-top:25px;
}

.text-white {
    color:#ffffff;
}

.indention p{
    margin:  0;                    /* デフォルトCSS打ち消し */
    line-height: 1.5;              /* 行間調整 */
}