@charset "UTF-8";
@import url("grid.css");





img {
    max-width: 100%;
    height: auto;
    /*高さ自動*/
}

a {
    display: block;
    color: #000;
    text-decoration-line: none;
}

a:hover {
    color: #f4a460;
}

a img:hover {
    opacity: 0.8;
}

.underline {
    border-bottom: 3px solid #000;
    padding-bottom: 0.5rem;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.flex {
    display: flex;
    margin: 0 auto;
}

.mb20 {
    margin-bottom: 2.0rem
}

.mtb20 {
    margin: 2.0rem 0;
}

.plr20 {
    padding: 0 2rem;
}

@media screen and (min-width: 768px) {
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }


}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .plr20 {
        padding-bottom: 3rem;
    }
}

@media (min-width: 751px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}



/*ヘッダー
-------------------------------------*/
.head {
    display: flex;
    flex-direction: row;
    padding: 1rem 0 0 0;

}

.head h1 {
    padding: 1rem 0;
    text-align: center;
    max-width: 380px;
}

.head h1 p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6347;
    border-top: 1px #ff6347 solid;
    border-bottom: 1px #ff6347 solid;
    padding: 1rem 0;
    background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px, #f9f8f7 3px, #f9f8f7 7px);
}

.head-box {
    margin: 2rem auto;
    border-top: 2px dotted #666;
    border-bottom: 2px dotted #666;
    padding: 1rem;
    text-align: center;
}

.header_msg {
    margin-bottom: 1rem;
    letter-spacing: .5em;
    font-size: 1.8rem;
    color: #abcd03;
}

.head-bt {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.head-bt_tel,
.head-bt_mail,
.head-bt_line {
    padding: 0 .5rem;
}

@media (max-width : 560px) {

    header .container {
        /*        padding: 0;*/
    }

    h1 img {
        max-width: 60%;
    }

    .head-box {
        margin: 0 auto;
        padding: 1rem 0;
        border: none;
    }

    .header_msg {
        /*    margin-bottom: 1rem;*/
        letter-spacing: .03em;
        font-size: 1em;
        margin-top: .5rem;
    }

    .head h1,
    .head h1 p {
        margin-bottom: 0;
    }

    .head-bt_tel a,
    .head-bt_mail a,
    .head-bt_line a {
        padding: 0;
        /*        width: 33%;*/
    }

    .head-bt_tel,
    .head-bt_mail,
    .head-bt_line {
        padding: 0 2px;
    }

}


nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    margin-bottom: 1rem;
}

nav li {
    display: block;
    flex: 1 0 auto;
    font-size: 2.0rem;
}

nav li a {
    text-decoration: none;
    text-align: center;
}

nav a:hover {
    background-color: #f7f7f7;
}

nav a {
    padding: 1rem;
}

@media screen and (min-width: 768px) {

    /* PC時はMENUボタンを非表示 */
    #open,
    #close {
        display: none !important;
    }

    #navi {
        display: block !important;
    }

}

@media screen and (max-width: 768px) {
    .head {
        flex-direction: column;
        text-align: left;
        margin-bottom: 20px;
    }

    .head #open,
    #close {
        position: absolute;
        top: 28px;
        right: 12px;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        padding-top: 0;
        border-bottom: 1px solid #ccc;
        margin-bottom: 0;
        font-size: 1.5rem;
        text-align: center;
    }

    /* スマホ時はMENUボタンを表示 */
    #open,
    #close {
        display: block;
        width: 50px;
        border: none;
        position: absolute;
        top: 20px;
        right: 12px;
    }

    /* スマホ時はメニューを非表示 */
    #navi {
        display: none;
    }

    h3{
        font-size: 1.8rem;
    }

}


/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
}

.mainimg {
    position: relative;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
    animation: zoomUp 10s linear 0s 1 normal both;
}


@keyframes zoomUp {
    0% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1.2);
    }
}

//imgタグだと下に隙間ができるのでblockに。
.slide-img img {
    display: block;
}

.filter {
    background: #000;
}

.filter-img {
    display: block;
    opacity: .6;
}

.anime-text,
.anime-text_2 {
    text-align: center;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 2px 3px #808080;
    letter-spacing: 0.8rem;
    position: absolute;
    top: 40%;
    right: 0;
    bottom: 60%;
    left: 0;
    margin: auto;
    z-index: 9999;
}

.anime-text_2 {
    animation-duration: 1.5s;
    animation-name: slidein;
}

.c_y {
    color: dimgrey;
    text-shadow: none;
}

@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}

/* 1024px以下の表示 */
@media (max-width : 1024px) {

    .anime-text,
    .anime-text_2 {
        font-size: 3rem;
    }
}


/* 768px以下の表示 */
@media (max-width : 768px) {

    .anime-text,
    .anime-text_2 {
        font-size: 2rem;
        top: 50%;
    }

    .slide-img img {
        height: 60vh;
        object-fit: cover;
    }

    .s_02 {
        object-position: 25% 100%;
    }

    .s_04 {
        object-position: 80% 100%;
    }

    .filter img {
        height: 20vh;
        object-fit: cover;
        object-position: 20% 100%;
    }

}

/* 560px以下の表示 */
@media (max-width : 560px) {

    .anime-text,
    .anime-text_2 {
        font-size: 1.5rem;
    }


}


/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 5rem 0;
}

.main-ttl {
    color: #ff6347;
    text-align: center;
    font-weight: 700;
    padding: 0.25em;
    border-top: solid 2px #ff6347;
    border-bottom: solid 2px #ff6347;
    background: -webkit-repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px, #f9f8f7 3px, #f9f8f7 7px);
    background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px, #f9f8f7 3px, #f9f8f7 7px);
}

.main-area {
    margin-bottom: 5rem;
}

.pre_img {
    max-width: 315px;
    width: 40%;
    height: auto;
    float: right;
    margin: 0 0 .5em 1em;
}

a.goto_profile {
    display: inline-block;
    color: #ff6347;
}

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

.ml2 img {
    margin-left: 2%;
}

.area-ttl {
    color: #ff6347;
    /*文字色*/
    /*線の種類（点線）2px 線色*/
    border-bottom: double 5px #ff6347;
    margin: 4rem 0;
}

.btn-flat-border {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #ff6347;
    border: solid 2px #ff6347;
    border-radius: 3px;
    transition: .4s;
    width: 250px;
    text-align: center;
}



#movie_row .btn-flat-border {
    margin-top: 1em;
    width: 100%;
    max-width: 355px;
}

#movie_row iframe {
    width: 100%;
    max-width: 400px;
    height: 200px;
}

#movie_row .area-ttl{
    font-size: 2.3rem;
}

.btn-flat-border:hover {
    background: #ff6347;
    color: white;
}

@media (max-width : 1200px) {
    #movie_row {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    #movie_row .col {
        text-align: center;
        max-width: 360px;
        margin-left: 0;
        margin-right: 4%;
    }

    #movie_row .col h3 {
        text-align: left;
    }

}


@media (max-width : 850px) {

    #movie_row .col {
        max-width: none;
        margin: 0;
    }

    #movie_row iframe {
        max-width: 500px;
        height: 280px;
    }
}


@media (max-width : 768px) {
    .bnr-long {
        width: 250px;
    }

    main p,
    main h5 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    #movie_row .area-ttl{
    font-size: 1.8rem;
}
}

@media (max-width : 560px) {
    #movie_row iframe {
        max-width: 300px;
        height: 160px;
    }
}


/*　画像の拡大　*/

.zoomIn img {
    transform: scale(1);
    transition: .3s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img {
    /*hoverした時の変化*/
    transform: scale(1.2);
    /*拡大の値を変更したい場合はこの数値を変更*/
}

/*　画像のマスク　*/

.mask {
    display: block;
    line-height: 0;
    /*行の高さを0にする*/
    overflow: hidden;
    /*拡大してはみ出る要素を隠す*/
}

/*代表紹介*/
.int {
    padding-bottom: 3rem;
}

.int_cont_top {
    align-items: center;
    justify-content: space-around;
}

.int-ttl {
    margin-top: 5rem;
}

.int-name {
    font-size: 3rem;
}

.int_msg {
    display: inline-block;
    margin: 0 auto 2rem;
    text-align: center;
    /*    font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'Hiragino Mincho ProN', 'HGS明朝E', 'ＭＳ Ｐ明朝', serif;*/
    position: relative;
    padding: 1.5rem 2rem;
    font-size: 2.5rem;
}

.int_msg:before,
.int_msg:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    content: '';
    background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
    background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}

.int_msg:before {
    top: 0;
}

.int_msg:after {
    bottom: 0;
}

.int_pro_ttl {
    margin-top: 5rem;
    margin-bottom: 0rem;
    font-size: 2rem;
    /*    color: #ff6347;*/
    display: inline-block;
}

hr.int_hr {
    margin: .5rem auto 1rem;
    height: 1px;
    width: 8rem;
    border-top: 2px solid #ff6347;
}

.sns_cont{
    display: flex;
    align-items: center;
}

.sns_cont img{
    margin: 0 2rem 2rem 0;
}

/* 768px以下の表示 */
@media (max-width : 768px) {
    .sns_cont{
    justify-content:center;
}
    
    .sns_cont img{
    margin: 1rem 2rem 2rem;
}
    
    .int_cont_top {
        text-align: center;
    }

    .int-ttl {
        margin-top: 0;
        margin-bottom: 0;
    }

    .int-name {
        margin-bottom: 1rem;
    }

}



/* 560px以下の表示 */
@media (max-width : 560px) {
    .main-area {
        margin-bottom: 0.5rem;
    }
}


/*制度利用
-------------------------------------*/

.business_seido_h4 {
    margin-bottom: 0;
}

#seido .btn-flat-border{
    height: 4em;
    display: table-cell;
    vertical-align: middle;
}



/* 950px以下の表示 */
@media (max-width : 950px) {
    #seido .row{
        flex-direction: column;
        justify-content: center;
    }
    
    #seido .col{
        display: block;
        flex: 1 1 auto;
        margin-left: 0;
        max-width: 100%;
        width: 100%;
    }
     
    #seido .btn-flat-border {
    display: inline-block;
    width: 250px;
        height: auto;
        margin: 0 auto;
}
}


/*取扱業務
-------------------------------------*/
.area-box {
    background-image: linear-gradient(-45deg, #dfdfdf 25%, #f9f8f7 25%, #f9f8f7 50%, #dfdfdf 50%, #dfdfdf 75%, #f9f8f7 75%, #f9f8f7);
    border-radius: 30px;
    padding: 30px;
    margin: 0 0 40px;
}

.sub-ttl {
    padding: .25em 0 .5em .75em;
    border-left: 6px solid #a9a9a9;
    border-bottom: 1px solid #a9a9a9;
    margin-bottom: 30px;
}

.mess-box {
    padding: 0.2em 0.5em;
    margin: 2em 0;
    background: #ff6347;
    box-shadow: 0px 0px 0px 10px #ff6347;
    border: dashed 2px white;
}

.mess-box h4 {
    margin: 0;
    padding: 0;
    color: #fff;
}

/*LINE
-------------------------------------*/

#contact_line {
    text-align: center;
}

.step_row {
    margin-bottom: 1rem;
    align-items: center;
    max-width: 880px;
    margin: 0 auto 1rem;
    text-align: left;
}

.step_row img {
    margin-right: 2rem;
}

@media (max-width : 768px) {

    #contact_line img {
        margin-bottom: 1.5rem;
    }

    .step_row img {
        width: 100px;
        height: auto;
        margin-right: 0;
        margin: 0;
    }
}

/*Twitter
-------------------------------------*/
.tw_area {
	display: block;
	position: relative;
	background-color: #FFFFFF;
	border: 8px solid #1d9bf0;
	border-radius: 10px;
	margin: 0 1em 3em;
}

.tw_box {
	display: flex;
	max-width: 100%;
	justify-content: center;
	align-items: center;
	/*background-image: url("../img/m_tw_logo.png");
	background-position: left 1em bottom 1em;
	background-repeat: no-repeat;*/
}

.tw_item {
	text-align: center;
	padding: 10px;
}

.tw_item:first-child {
	flex-basis: 50%;
}

.tw_item:first-child img {
	padding-top: 1em;
	max-width: 100%;
}

/*.tw_item:first-child div:last-child img {
	max-width: 33%;
	margin-right: 3rem;
}*/

.tw_item .tw_box2 {
	display: flex;
	justify-content: center;
	padding: 0 2rem;
}

.tw_item .tw_box2 div {
	flex-basis: 48%;
	text-align: center;
}

.tw_item .tw_box2 div:last-child img {
	max-width: 70%;
}

.tw_item:last-child {
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	.tw_box {
		flex-direction: column;
		/*background-position: right 0 top 2em;*/
		background-image: none;
	}
	
	.tw_item:first-child div:last-child {
		/*text-align: center; */
		display: none;
	}
	
	.tw_item .tw_box2 {
		display: none;
	}
}


/*ブログ
-------------------------------------*/
ul.blog_ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.blog_ul li {
    margin: 1rem 0;
    width: 355px;
    height: 300px;
}

.blog_ul li a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog_ul img {
    width: 355px;
    height: 265px;
    object-fit: cover;
    object-position: 50% 0;
}

@media (max-width : 1120px) {
    ul.blog_ul {
    justify-content: flex-start;
    }
    
    .blog_ul li {
        margin-right: 2%;
        text-align: left;
    }
}

@media (max-width : 850px) {

.blog_ul li a {
    align-items: center;
}
    
}
    
@media (max-width : 560px) {
    ul.blog_ul {
    justify-content: center;
}
    
    .blog_ul li {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .blog_ul li a {
        margin-bottom: 1rem;
    }

    .pr1 {
        padding-left: 0;
    }
}


/*お問い合わせ
-------------------------------------*/
.con-tel {
    font-weight: bold;
    font-size: 6.0rem;
    text-align: center;
    color: #ff6347;
}

#formWrap {
    width: 90%;
    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;
}

/* 560px以下の表示 */
@media (max-width : 560px) {
    .con-tel {
        font-size: 3.0rem;
    }

    #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"],
    input[type="tel"],
    input[type="email"],
    textarea {
        width: 100%;
        padding: 5px;
        font-size: 110%;
        display: block;
    }

    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        display: block;
        width: 100%;
        height: 40px;
        margin-bottom: 0;
    }
}

/*フッター
-------------------------------------*/
footer {
    background-color: #f7f7f7;
    padding: 5rem 0;
}

footer h5 {
    border-bottom: 3px solid #ccc;
}

footer .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


@media (max-width : 768px) {
    
    .footer_sns {
        margin: 3rem 0;
    }
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #fff;
}

.copyright a {
    color: #000;
    text-decoration: none;
    display: inline-block;
}

@media (max-width : 768px) {
    .copyright {
        font-size: 1rem;
    }
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}

#pagetop a {
    display: block;
    background: #000;
    color: #fff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}

#pagetop a:hover {
    background: #666;
}
