@charset "utf-8";

*{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

html,body{
    font-family: "Arial","MS ゴシック",sans-serif;
    font-size: 14px;
    margin: 0px;
    padding: 0;
}

.container{
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
}

.container_800{
    width: 800px;
    margin: 0 auto;
}

ul{
    list-style:none;
    margin: 0;
    padding: 0;
}

img{
    width: 100%;
    height: 100%;
}

h1{
    position: relative;
    text-align: center;
    margin: 0 auto;
    padding: 8px 15px;
    background:  -webkit-linear-gradient(#fff 35px, #efefef);
    background:  -moz-linear-gradient(#fff 35px, #efefef);
    background:  -o-linear-gradient(#fff 35px, #efefef);
    background:  linear-gradient(#fff 35px, #efefef);
    width: 165px;
    height: 52px;
    border-bottom: solid #0074C1 5px;
    -webkit-box-shadow: 2px 2px 5px 4px rgba(0,0,0,0.1);
       -moz-box-shadow: 2px 2px 5px 4px rgba(0,0,0,0.1);
            box-shadow: 2px 2px 5px 4px rgba(0,0,0,0.1);
}

h1:after{
  content: "";
  position: absolute;
  right: 0;
  z-index: 1;
  bottom: -13px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #0074C1 rgba(255,255,255,0) rgba(255,255,255,0) rgba(255,255,255,0);
  border-width: 13px 13px 0 13px;
}

.en{
    font-size: 20px;
    color: #0074C1;
}

.ja{
    font-size: 8.5px;
}

.t{
    -webkit-transform: scale(0.6, 1);
       -moz-transform: scale(0.6, 1);
        -ms-transform: scale(0.6, 1);
         -o-transform: scale(0.6, 1);
            transform: scale(0.6, 1);
    -webkit-transform-origin: top left;
       -moz-transform-origin: top left;
        -ms-transform-origin: top left;
         -o-transform-origin: top left;
            transform-origin: top left;
    width: 170%;
}

.wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.reverse{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
       -moz-box-orient: horizontal;
       -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}

a{
    text-decoration: none;
    display: block;
    color: #000;
    width: 100%;
    height: 100%;
}

a:hover{
    opacity: 0.7;
}

.margin{
    margin-top: 50px;
}

.top_btn{
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 10000;
    background: #9FA0A0;
    width: 35px;
    height: 35px;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.top_btn.open{
    display: none;
}

.fa-angle-up{
    font-size: 25px;
    color: #fff;
    text-align: center;
    margin-bottom: 2px;
   position: absolute;
    top:45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.color{
    background: #f9f8f8;
}

.mobile_br{
    display: none;
}

.float{
    float: left;
    height: 14px;
    width: 98px;
}

/*===========================================header================================================*/
header{
    width: 100%;
    height: 150px;
    background: -webkit-gradient(linear,left top, left bottom,from(rgba(255,255,255,0)),to(#fff));
    background: -webkit-linear-gradient(rgba(255,255,255,0),#fff);
    background: -moz-linear-gradient(rgba(255,255,255,0),#fff);
    background: -o-linear-gradient(rgba(255,255,255,0),#fff);
    background: linear-gradient(rgba(255,255,255,0),#fff);
    -webkit-box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.1);
       -moz-box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.1);
            box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.1);
    position: fixed;
    z-index: 10000;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

headFer .logo img{
    width: 300px;
    height: 75px;
}

header .info img{
    width: 335px;
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
}

header .logo{
    width: 300px;
    height: 75px;
}

header .info{
    width: 335px;
    height: 70px;
}

header .wrap{
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
                -ms-grid-row-align: flex-end;
            align-items: flex-end;
    height: 150px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.transform{
    height: 75px;
    background: #fff;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

header .wrap.trans{
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
    height: 75px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.mobile_logo{
    width: 140px;
    height: 42px;
    background: #fff;
    padding: 5px;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 20;
}

.mobile_logo img{
    width: 128px;
    height: 35px;
}

.mobile_gnav{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    padding: 7px;
    width: 45px;
    height: 42px;
}

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.menu-trigger {
    position: relative;
    width: 30px;
    height: 28px;
}

.menu-trigger:hover{
    cursor: pointer;
}
.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0074C1;
    -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
    z-index: 10000;
  
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger span:nth-of-type(2) {
    top: 13px;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(13px) rotate(-315deg);
    -moz-transform: translateY(13px) rotate(-315deg);
     -ms-transform: translateY(13px) rotate(-315deg);
     -o-transform: translateY(13px) rotate(-315deg);
       transform: translateY(13px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-13px) rotate(315deg);
    -moz-transform: translateY(-13px) rotate(315deg);
     -ms-transform: translateY(-13px) rotate(315deg);
     -o-transform: translateY(-13px) rotate(315deg);
       transform: translateY(-13px) rotate(315deg);
}
.overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(255,255,255,0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.overlay:hover{
    cursor: pointer;
}

.gnav{
  width: 250px;
  height: 100%;
  padding-top: 100px;
  background-color: rgb(255,255,255, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  -webkit-transform: translate(250px);
     -moz-transform: translate(250px);
      -ms-transform: translate(250px);
       -o-transform: translate(250px);
          transform: translate(250px);
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.gnav.open {
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
}

.gnav ul{
    width: 250px;
    height: auto;
    flex-direction: column;
}

.gnav li {
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 250px;
    height: 60px;
    font-size: 16px;
}
/*==========================================back=====================================================*/
.back{
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
    z-index: -1;
}

/*==========================================hero=====================================================*/
.swiper-container {
    width: 100%;
    height: auto;
}

.swiper-wrapper{
    width: 100%;
    height: auto;
    margin-top: 150px;
}

.swiper-slide-prev,.swiper-slide-next{
    -webkit-transform: scale(0.8) !important;
       -moz-transform: scale(0.8) !important;
        -ms-transform: scale(0.8) !important;
         -o-transform: scale(0.8) !important;
            transform: scale(0.8) !important;
}

.swiper-slide-active{
        -webkit-transform: scale(1) !important;
           -moz-transform: scale(1) !important;
            -ms-transform: scale(1) !important;
             -o-transform: scale(1) !important;
                transform: scale(1) !important;
}

.swiper-slide-prev,
.swiper-slide-next,
.swiper-slide-active{
        -webkit-transition: all 1s;
        -moz-transition: all 1s;
        -o-transition: all 1s;
        transition: all 1s;
}
.swiper-button-prev,.swiper-button-next{
    top: 60%;
}

.swiper-slide{
    width: 100%;
    height: auto;
}

/*==========================================nav======================================================*/
nav{
    background: #0074C1;
    padding: 50px 0 2px;
}

nav ul{
    background: #fff;
    width: 798px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

nav li{
    text-align: center;
    width: 133px;
    height: 52px;
    border-right: solid #000 1px;
    -webkit-border-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
    -webkit-border-image: -webkit-linear-gradient(bottom, #ccc 0%, #fff 100%);
       -moz-border-image: -moz-linear-gradient(bottom, #ccc 0%, #fff 100%);
         -o-border-image: -o-linear-gradient(bottom, #ccc 0%, #fff 100%);
            border-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
            border-image: linear-gradient(to top, #ccc 0%, #fff 100%);
    border-image-slice: 1;
    position: relative;
}

nav li a{
    line-height: 52px;
}

nav li a:hover{
    border-bottom: #0074C1 3px solid;
    opacity: 1;
}

nav li a:hover:after{
    content: "";
    position: absolute;
    right: 0;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: rgba(255,255,255,0) rgba(255,255,255,0) #0074C1 rgba(255,255,255,0);
    border-width: 0 10px 10px 10px;
}


nav li:last-child{
    border: none;
}

/*==========================================service==================================================*/
.item{
    width: 300px;
    height: 368px;
    -webkit-transform:skewX(-15deg);
       -moz-transform:skewX(-15deg);
        -ms-transform:skewX(-15deg);
         -o-transform:skewX(-15deg);
            transform:skewX(-15deg);
    overflow: hidden;
    position: relative;
}

.service_wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.img{
    -webkit-transform:skewX(15deg) scale(1.3);
       -moz-transform:skewX(15deg) scale(1.3);
        -ms-transform:skewX(15deg) scale(1.3);
         -o-transform:skewX(15deg) scale(1.3);
            transform:skewX(15deg) scale(1.3);
    background-position: center center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    width: 330px;
    height: 368px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.description{
    width: 330px;
    height: 150px;
    background-color: rgba(255,255,255,0.7);
    padding: 15px 30px;
}

.wrapper .wrap{
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.description h2{
    font-size: 15px;
    line-height: 1.2;
}

.description h2 span{
    display: block;
    font-size: 9px;
}

.description ul{
    font-size: 8px;
    padding: 6px 0;
}

.bx-wrapper {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    background: none !important;
    margin: 0 auto !important;
}

.bx-viewport{
    overflow: visible !important;
}

/*===============================================feature==============================================*/
dl{
    width: 800px;
    font-size: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

dt{
    padding: 18px 18px 18px 150px;
    width: 300px;
    border-bottom: solid 0.5px #595757;
}

dd{
    padding:18px;
    border-bottom: solid 0.5px #595757;
    width: 500px;
}

.title{
    background: #0074C1;
    width: 69px;
    height: 67px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 0;
    left: 5%;
}

.title p{
    color: #fff;
    font-weight: bold;
}

.company,.history{
    position: relative;
}
/*=============================================access=================================================*/
.map{
    width: 800px;
    margin: 0 auto;
}

/*============================================insurance===============================================*/
.i_f{
    width: 120px;
    height: 60px;
    overflow: hidden;
}

.i_f img{
    width: 120px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
}

/*=======================================Insurance products==========================================*/

.insurancep_bg {
    background-color: #f9f8f8;
}

.insurance h2 {
    width: 100%;
    max-width: 800px;
    color: #0074C1;
    background: linear-gradient(transparent 80%, #b0dfff 80%);
    font-size: 1.7em;
    font-family: 'Yu gothic',sans-serif;
    font-weight: 700;
    padding-top: 30px;
    text-indent: 1em;
    margin: 0 auto;
}

.myp {
    font-size: 128%;
    width: 40%;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    background-color: #0074C1;
    border-radius: 5px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .1.5s;
    transition: all .5s;
}

.myp_cap {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.myp a {
    color: #fff;
    padding: 10px;
}

/* マウスオーバー時 */
.myp a:hover {
    background-color: #fff;
    color: #0074C1;
    cursor: pointer;
}

.pb30 {
    padding-bottom: 30px;
}

/*===========================================Rakuten bnr==============================================*/
.r_f{
    width: 140px;
    height: 140px;
    margin: 30px 0 40px;
    overflow: hidden;
}

.r_f img{
    width: 140px;
    height: 140px;
    -o-object-fit: contain;
       object-fit: contain;
}

/*===========================================AIG bnr==============================================*/
.a_f {
    /*width: 350px;
    height: 80px;*/
    margin: 30px 0 40px;
    overflow: hidden;
}

.a_f img {
    max-width: 300px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}


/*=========================================sompojapan bnr============================================*/
.s_f{
    /*width: 140px;
    height: 140px;*/
    margin: 30px 0 40px;
    overflow: hidden;
}

.s_f img{
    max-width: 200px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
}

/*============================================contact=================================================*/
.contact{
    background: #0074C1;
    padding: 30px 0;
}

.contact_wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.box{
    width: 100px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: solid #fff 2px;
}

.box p{
    text-align: center;
    color: #fff;
    font-size: 11px;
}

.footer_info{
    width: 230px;
    height: 42px;
    padding: 10px;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.tel{
    font-size: 21px;
    letter-spacing: 1.4;
}

.time{
    font-size: 9px;
}

.mailform{
    background: #fff;
    width: 164px;
    height: 34px;
}

.mailform a{
    width: 164px;
    line-height: 34px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.mailform a::before,
.mailform a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.mailform a,
.mailform a::before,
.mailform a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.mailform a:hover {
    background: #dcdcdd;
    opacity: 1;
}

.mailform i{
    font-size: 16px;
    color: #0074C1;
    display: block;
    width: 23px;
    height: 34px;
    line-height: 34px;
    margin-right: 7px;
}

.mail_pc{
    font-size: 11px;
    color: #fff;
    text-align: center;
}
/*============================================insurance============================================*/
.i_f{
    margin: 30px 0;
}

/*===========================================service_item==========================================*/
.service_item{
    width: 100%;
    height: auto;
}

.photo,.sentence{
    width: 50%;
    max-height: 60%;
}

.photo{
    overflow: hidden;
}

.photo img{
    margin: auto;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}

.sentence{
    padding: 50px 80px;
}

.sentence .wrap{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.service_item h3{
    font-size: -webkit-calc(100vw/45);
    font-size: -moz-calc(100vw/45);
    font-size: calc(100vw/45);
    font-family: 'Yu gothic',sans-serif;
    -webkit-font-feature-settings: 'palt';
       -moz-font-feature-settings: 'palt';
            font-feature-settings: 'palt';
    font-weight: 700;
    color: #0074C1;
}

.service_item span{
    font-size: 20px;
}

.service_item ul{
    font-size: 17px;
    list-style: disc;
    margin-left: 3em;
    line-height: 2em;
}

.service_item .wrap{
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
        background-color: #f9f8f8;
}

.service_item .t{
    -webkit-transform: scale(0.9, 1);
       -moz-transform: scale(0.9, 1);
        -ms-transform: scale(0.9, 1);
         -o-transform: scale(0.9, 1);
            transform: scale(0.9, 1);
    width: 115%;
}


/*=============================================footer==============================================*/
.menu{
    background:-webkit-repeating-linear-gradient(150deg, #C9C9CA 0, #C9C9CA 1px, #dcdcdd 1px, #dcdcdd 10px);
    background:-moz-repeating-linear-gradient(150deg, #C9C9CA 0, #C9C9CA 1px, #dcdcdd 1px, #dcdcdd 10px);
    background:-o-repeating-linear-gradient(150deg, #C9C9CA 0, #C9C9CA 1px, #dcdcdd 1px, #dcdcdd 10px);
    background:repeating-linear-gradient(-60deg, #C9C9CA 0, #C9C9CA 1px, #dcdcdd 1px, #dcdcdd 10px);
    padding: 20px 0 50px;
    width: 100%;
    height: auto;
}

.menu .logo{
    width: 223px;
    height: 55px;
    display: inline-block;
}

.footer_menu{
    width: 500px;
    height: 42px;
}

.footer_menu li{
    display: inline-block;
    width: 120px;
    height: 17px;
    font-size: 10px;
}

.fa-chevron-circle-right{
    font-size: 13px;
    color: #0074C1;
    margin-right: 6px;
}

.copy{
    text-align: center;
    background: #C9C9CA;
    font-size: 12px;
}

/*========================================responsive=================================================*/
@media screen and (max-width:1260px){
    .sentence .wrap{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
           -moz-box-orient: horizontal;
           -moz-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    .mobile_br{
        display: block;
    }
}

@media screen and (max-width:1000px){
    header{
        display: none;
    }
    
    .mobile_logo{
        display: block;
    }
    
    .mobile_gnav{
        display: block;
    }
    
    .back{
        display: none;
    }
    
    .swiper-wrapper{
        width: 100%;
        height: auto;
        margin-top: 0;
    }
    
    nav{
        display: none;
    }
    
    .swiper-button-prev,.swiper-button-next{
        top: 50%;
    }
    
    .item, .img{
        -webkit-transform: none;
           -moz-transform: none;
            -ms-transform: none;
             -o-transform: none;
                transform: none;
        width: 240px;
        height: 240px;
    }
    
    .description,.wrapper{
        width: 240px;
        height: 120px;
    }
    
    .bxslider{
        padding: 0 20px !important;
    }
    
    .bx-viewport{
        overflow: hidden!important;
    }
    
    .description{
        padding: 15px;
    }
    
    .description ul{
        font-size: 11px;
    }
    
    .service_item .wrap{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .service_item h3{
        font-size: -webkit-calc(100vw/25);
        font-size: -moz-calc(100vw/25);
        font-size: calc(100vw/25);
    }
    
    .photo,.sentence{
        width: 100%;
        height: 60%;
    }
    
    .sentence .mobile_br{
        display: none;
    }
    
}

@media screen and (max-width:840px){
    dl{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 500px;
        margin: 0 auto;
    }
    
    dt{
        padding-left: 18px;
        width: 500px;
        background-color: #f9f8f8;
        border-bottom: dotted 1px #bbb;
    }
    
    .title{
        position: static;
        margin: 15px 0;
    }
    
    /* Insurance products */
    .insurance h2 {
        width: 95%;
    }
    
    /* Insurance products end */
    
    .map{
        width: 100%;
    }
    
    iframe{
        width: 100%;
        height: 300px;
    }
    
    .insurance .wrap{
        padding: 20px;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }
    
    .column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .office1,
    .office2,
    .mailform{
        margin: 20px 0;
    }
    
    .menu .wrap{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                    -ms-grid-row-align: center;
                align-items: center;
    }
    
    .footer_menu{
        width: 150px;
        height: auto;
        margin: 0 auto;
    }
    
    .footer_menu li{
        display: block;
        font-size: 15px;
        width: 200px;
        height: 40px;
        padding: 20px 0;
    }
    
    .container_800{
        width: 100%;
    }
}

@media screen and (max-width:600px){
    .float{
        height: 28px;
    }
    
    .insurance .wrap::after{
        content:"";
        display: block;
        width: 140px;
    }
    
    .sentence h3{
        font-size: 28px;
    }
    
    .sentence .mobile_br{
        display: block;
    }
}

@media screen and (max-width:560px){
    dl,dt,dd{
        width: 345px;
    }
    
    .myp_cap {
        padding: 20px;
    }
}

@media screen and (max-width:400px){
    .sentence{
        padding: 30px;
    }    
}

@media screen and (max-width:375px){
    .float{
        height: 45px;
    }
    
    dl,dt,dd{
        width: 280px;
    }
}

@media screen and (max-width:320px){
    .r_f {
        width: 160px;
        height: 160px;
        margin: 0 0 30px;
    }
    .r_f img{
        width: 160px;
        height: 160px;
    }
    
    .a_f {
        /*width: 280px;
        height: 64px;*/
        margin: 0 0 30px;
    }
    
    .s_f {
        margin: 0 0 30px;
    }
    
    .myp {
        width: 70%;
    }
    
    .insurance .wrap{
        width:100%;
        margin: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}