@charset "UTF-8";
/* ----------------------------------------------------------------header*/
header {
  position: relative;
}
#header {
  width: 100%;
  padding: 0 15px;
  position: absolute;
  top: 0;
  z-index: 100;
}
h1 {
    text-align: center;
    font-size: 0.625em;
    padding: 7px 0 0;
}
.header_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    position: relative;
}
.header_logo {
    display: inline-block;
}
.header_logo img {
    width: 140px;
    height: auto;
}
.header_contact {
    display: flex;
    padding-right: 45px;
}
.header_contact li.tel {
    margin-right: 5px;
}
.header_contact li.tel p:first-child {
    display: none;
}
.header_contact li.tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #d3efff;
}
.header_contact li.tel p:last-child img {
    width: 24px;
    height: auto;
}
.header_contact li.tel p:last-child .num {
    display: none;
}
.header_contact li.mail {}
.header_contact li.mail a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #192f60;
}
.header_contact li.mail a:hover {
    background: #0059a4;
}
@media print, screen and (min-width:768px) {
    #header {
        height: 122px;
        padding: 20px 20px 0;
    }
    h1 {
        text-align: left;
        padding: 0 0 13px;
    }
    .header_box {
        margin: 0;
        position: relative;
    }
    .header_logo img {
      width: 194px;
    }
    .header_contact {
        padding-right: 0;
        -ms-transform: translateY(-29px);
        -webkit-transform: translateY(-29px);
        transform: translateY(-29px);
    }
    .header_contact li.tel {
        margin-right: 20px;
    }
    .header_contact li.tel p:first-child {
        display: block;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        margin-bottom: 10px;
    }
    .header_contact li.tel p:last-child {
        display: flex;
        align-items: center;
    }
    .header_contact li.tel p:last-child img {
        width: 25px;
        margin-right: 10px;
    }
    .header_contact li.tel p:last-child .num {
        display: block;
        font-family: 'Teko', sans-serif;
        color: #192f60;
        font-size: 36px;
    }
    .header_contact li.mail {}
    .header_contact li.mail a {
        width: 50px;
        height: 50px;
    }
}
@media print, screen and (min-width:992px) {
    #header {
      padding: 20px 40px 0;
    }
}
/*---------HamburgerMenu Icon*/
.menu_btn {
    display: block;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid rgba(25,47,96,.6);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
}
.menu_btn:hover {
    cursor: pointer;
}
.menu_btn .hambgr {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #192f60;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 999;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 0.3s;
}
.menu_btn .hambgr:before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #192f60;
    -webkit-transform: translateY(-7px) rotate(0deg);
    transform: translateY(-7px) rotate(0deg);
    transition: all 0.3s;
}
.menu_btn .hambgr:after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #192f60;
    -webkit-transform: translateY(5px) rotate(0deg);
    transform: translateY(5px) rotate(0deg);
    transition: all 0.3s;
}
.menu_btn.hbg_close {
    top: -10px;
}
.menu_btn.hbg_close .hambgr {
    background: transparent;
}
.menu_btn.hbg_close .hambgr:before {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
}
.menu_btn.hbg_close .hambgr:after {
    -webkit-transform: translateY(-1px) rotate(45deg);
    transform: translateY(-1px) rotate(45deg);
}
@media print, screen and (min-width:768px) {
    .menu_btn {
        display: none;
    }
}
/*ヘッダー固定*/
#header.fixed {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    z-index: 200;
    animation: mnavslide linear .3s 1;
    -webkit-animation: mnavslide linear .3s 1;
}
#header.fixed h1 {
    display: none;
}
@keyframes mnavslide {
    0% {
        top: -55px;
    }
    100% {
        top: 0;
    }
}
@-webkit-keyframes mnavslide {
    0% {
        top: -55px;
    }
    100% {
        top: 0;
    }
}
#header.fixed.menu_open {
    background: transparent;
    box-shadow: none;
}
#header.fixed.menu_open .header_logo, #header.fixed.menu_open .header_contact {
    display: none;
}
#header.fixed.menu_open .menu_btn.hbg_close {
    top: 0;
}
@media print, screen and (min-width:768px) {
    #header.fixed {
        height: 74px;
    }
    #header.fixed .header_logo {
        width: 155px;
    }
    #header.fixed .header_contact {
        -ms-transform: translateY(-7px);
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
    }
    #header.fixed .header_contact .tel {
        display: none;
    }
    #header.fixed #mainnavi {
        margin-right: 77px;
        top: 0px;
    }
}
/*------------------------------------------------------------mainnavi*/
#mainnavi {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(25,47,96,.9);
    background: rgba(255,255,255,.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    overflow: hidden;
}
#mainnavi ul#m_menu {
    height: 100%;
    padding: 0 0 100px;
    margin: 70px 0 10px;
    position: relative;
    overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#mainnavi ul#m_menu > li:not(:last-child) {
    margin: 0 0 1px;
}
#mainnavi ul#m_menu > li a {
    display: block;
    padding: 10px 5px;
    text-decoration: none;
    color: #192f60;
    font-weight: 500;
    text-align: center;
}
#mainnavi ul#m_menu > li a:hover, #mainnavi ul#m_menu > li.active a {
    color: #fff;
    background: #192f60;
}
#mainnavi ul#m_menu > li.active a {
    pointer-events: none;
}
#mainnavi ul#m_menu > li.sub_toggle > a {
    cursor: pointer;
}
@media print, screen and (min-width:768px) {
    #mainnavi {
        display: block;
        width: auto;
        height: auto;
        background: transparent;
        position: absolute;
        top: 20px;
        left: auto;
        right: 0;
        overflow: visible;
    }
    #mainnavi ul#m_menu {
        height: auto;
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
        overflow-y: visible;
    }
    #mainnavi ul#m_menu > li:not(:last-child) {
        margin: 0 36px 0 0;
    }
    #mainnavi ul#m_menu > li a {
        color: #343434;
        line-height: 1;
        background: transparent;
        padding: 18px 0 20px;
        position: relative;
        overflow: hidden;
    }
    #mainnavi ul#m_menu > li a:hover, #mainnavi ul#m_menu > li.active a {
        color: #343434;
        background: transparent;
    }
    #mainnavi ul#m_menu > li a:before {
        content: "";
        width: 100%;
        height: 3px;
        background: #192f60;
        position: absolute;
        bottom: -3px;
        left: 0;
        transition: all .3s;
    }
    #mainnavi ul#m_menu > li a:hover:before, #mainnavi ul#m_menu > li.active a:before {
        bottom: 0;
    }
}
@media print, screen and (min-width:992px) {
    #mainnavi ul#m_menu > li:not(:last-child) {
        margin: 0 54px 0 0;
    }
}
/*------------------------------------------------------------pagetitle*/
#pagetitle {
    padding-top: 82px;
}
#pagetitle .pagetitle_in {
  height: 200px;
  background: url("../img/common_img/bg_pagetitle.jpg") center no-repeat;
  background-size: cover;
}
#pagetitle .container {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
#pagetitle .catch {
    display: inline-block;
    width: 50%;
    max-width: 445px;
    background: rgba(0,0,0,.7);
    padding: 15px 0 20px;
}
#pagetitle .catch p {
    font-family: 'Teko', sans-serif;
    color: #fff;
    font-size: clamp(42px,6.5vw,70px);
    line-height: 1.1;
}
#pagetitle .catch h2 {
    color: #fff;
    font-size: clamp(20px,3vw,36px);
    font-weight: 500;
    line-height: 1.1;
}
@media print, screen and (min-width:768px) {
  #pagetitle {
    padding-top: 122px;
  }
  #pagetitle .pagetitle_in {
    height: 300px;
  }
}
@media print, screen and (min-width:992px) {
    #pagetitle .pagetitle_in {
        height: 400px;
    }
}
/*------------------------------------------------------------content*/
[class^="content_bg"] {
    padding: 70px 0;
}
.content_bg01 {
    background: #fff;
}
.content_bg02 {
    background: #d3efff;
}
.section {
    clear: both;
    margin-bottom: 40px;
}
@media print, screen and (min-width:768px) {
    [class^="content_bg"] {
        padding: 100px 0;
    }
    .section {
        margin-bottom: 60px;
    }
}
/* ----------------------------------------------------------------footer*/
/** bn_contact **/
#bn_contact_area {
    background: url("../img/common_img/bg_bn_contact.jpg") center no-repeat;
    background-size: cover;
    padding: 56px 0;
}
#bn_contact_area .bn_contact_box {
    width: 90%;
    max-width: 832px;
    background: rgba(255,255,255,.8);
    padding: 35px 20px;
    margin: 0 auto;
}
#bn_contact_area .bn_contact_box .catch {
    color: #000;
    font-size: 1.125em;
    font-weight: 500;
    margin-bottom: 6px;
}
#bn_contact_area .bn_contact_box .catch strong {
    display: block;
    font-size: 1.833em;
    line-height: 1.2;
    margin-top: 3px;
}
#bn_contact_area .bn_contact_box .caption {
    font-family: 'Teko', sans-serif;
    color: #000;
    font-size: 1.5em;
}
#bn_contact_area .bn_contact {} 
#bn_contact_area .bn_contact .tel {
    margin: 0 0 10px;
} 
#bn_contact_area .bn_contact .tel p:not(.num) {
    font-weight: 500;
} 
#bn_contact_area .bn_contact .tel p.num {
    display: inline-block;
    font-family: 'Teko', sans-serif;
    color: #192f60;
    font-size: clamp(34px,5vw,40px);
    font-size: 40px;
    line-height: 1;
    background: url("../img/common_img/icon_phone.png") 0 center no-repeat;
    background-size: auto 69%;
    padding-left: 33px;
} 
#bn_contact_area .bn_contact .mail {} 
#bn_contact_area .bn_contact .mail a {
    display: flex;
    justify-content: center;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    background: #192f60;
    padding: 15px 0;
} 
#bn_contact_area .bn_contact .mail a:hover {
    background: #0059a4;
}
#bn_contact_area .bn_contact .mail a img {
    width: 17.5px;
    height: auto;
    margin-right: 15px;
}
@media print, screen and (min-width:768px) {
    #bn_contact_area {
        padding: 80px 0;
    }
    #bn_contact_area .bn_contact_box {
        padding: 50px 3%;
    }
    #bn_contact_area .bn_contact_box .catch {
        font-size: 1.125em;
    }
    #bn_contact_area .bn_contact_box .caption {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    #bn_contact_area .bn_contact {
        display: flex;
        justify-content: center;
    } 
    #bn_contact_area .bn_contact .tel {
        margin: 0 30px 0 0;
    } 
    #bn_contact_area .bn_contact .tel {
        text-align: left;
    }
    #bn_contact_area .bn_contact .tel p:not(.num) {
        
    } 
    #bn_contact_area .bn_contact .tel p.num {
        background: url("../img/common_img/icon_phone.png") 0 center no-repeat;
        background-size: auto 72%;
        padding-left: 40px;
    } 
    #bn_contact_area .bn_contact .mail {} 
    #bn_contact_area .bn_contact .mail a {
        padding: 20px 30px;
    } 
    #bn_contact_area .bn_contact .mail a img {
        width: 20px;
    }
}
@media print, screen and (min-width:992px) {
    #bn_contact_area .bn_contact_box {
        padding: 50px 6%;
    }
    #bn_contact_area .bn_contact .tel {
        margin: 0 60px 0 0;
    } 
}

/** footer **/
#footer {
    padding: 42px 0;
    background: #bee5fb;
}
@media print, screen and (min-width:768px) {
    #footer {
        padding: 60px 0;
    }
}
/*footerinfo*/
#footerinfo {
    margin-bottom: 20px;
}
#footerinfo dt {
    margin-bottom: 14px;
}
#footerinfo dt img {
    
}
#footerinfo dd.map_btn {
    margin-top: 10px;
}
#footerinfo dd.map_btn a {
    display: block;
    max-width: 280px;
    font-family: 'Teko', sans-serif;
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    background: #192f60;
    padding: 5px 0;
    margin: 0 auto;
}
#footerinfo dd.map_btn a:hover {
    background: #0059a4;
}
@media print, screen and (min-width:768px) {
    #footerinfo {
        margin-bottom: 60px;
    }
    #footerinfo dt {
        margin-bottom: 20px;
    }
    #footerinfo dt img {}
    #footerinfo dd.map_btn {
        margin-top: 13px;
    }
    #footerinfo dd.map_btn a {
        padding: 5px 0;
    }
}
/*footernavi*/
#footernavi {}
#footernavi li {
    display: inline-block;
}
#footernavi li a {
    padding: 5px 19px;
    display: block;
    color: #343434;
    text-decoration: none;
}
#footernavi li a:hover {
    text-decoration: underline;
}
@media print, screen and (min-width:768px) {
    #footernavi li a {
        padding: 0 22px;
    }
}
@media print, screen and (min-width:992px) {
    #footernavi li a {
        padding: 0 27px;
    }
}
.rights_area {
    background: #192f60;
    padding: 5px 15px;
}
.rights_area p small {
    color: #fff;
    font-size: 0.625em;
}
/*カレンダー更新プログラム（フッター）フォーマット*/
.calendar {
    width: 100%;
    padding: 10px 9px;
    margin: 0 0 10px;
    background: #fff;
    position: relative;
}
.calendar .cal_title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.calendar .month {
    font-size: 11px;
    line-height: 1.2;
    font-weight: bold;
    text-align: right;
    position: absolute;
    top: 12px;
    right: 10px;
    z-index: 999;
}
.calendar .month strong {
    font-size: 16px;
}
.calendar table {
    width: 100%;
    border-collapse: collapse;
}
.calendar table th, .calendar table td {
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}
.calendar table th {
    background: #C0C0C0;
    font-weight: bold;
}
.calendar table td.color01 {
    font-weight: bold;
    background: url(../img/common_img/holiday.png) no-repeat center center;
}
.calendar table td.color02 {
    font-weight: bold;
    background: url(../img/common_img/half.png) no-repeat center center;
}
.calendar table td.color03 {
    color: #fff;
    font-weight: bold;
    background: url(../img/common_img/monday.png) no-repeat center center;
}
.calendar ul.page_ctl {
    text-align: center;
    padding: 8px 10px;
    margin: 0 0 10px;
}
.calendar ul.page_ctl li {
    font-size: 12px;
    color: #389e7c;
}
.calendar ul.page_ctl li a {
    text-decoration: underline;
}
.calendar ul.page_ctl li a:hover {
    color: #999;
}
.calendar ul.page_ctl .ctl_left {
    float: left;
}
.calendar ul.page_ctl .ctl_right {
    float: right;
}
.calendar .tx_color01 {
    float: left;
    margin-right: 20px;
    padding: 0 0 0 15px;
    background: url(../img/common_img/holiday_s.png) no-repeat left center;
}
.calendar .tx_color02 {
    float: left;
    padding: 0 0 0 15px;
    background: url(../img/common_img/half_s.png) no-repeat left center;
}
.calendar .tx_color03 {
    clear: both;
    padding: 0 0 0 15px;
    background: url(../img/common_img/monday_s.png) no-repeat left center;
}
@media print, screen and (min-width:768px) {
    .calendar {
        width: 60%;
        margin: 0 auto 10px;
    }
}
@media print, screen and (min-width:992px) {
    .calendar {
        width: 100%;
        margin: 0 0 10px;
    }
}
/*カレンダー更新プログラム（メインカラム）フォーマット*/
.calender02 .note {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    background-color: #969696;
    top: 0px;
    border-radius: 4px;
    padding: 5px 10px;
    margin-bottom: 20px;
}
.calender02 .calender_nav {
    width: 260px;
    margin: 0 auto;
    text-align: center;
}
.calender02 div.date {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.calender02 .calender_table {
    overflow-x: auto;
    clear: both;
    position: relative;
}
.calender02 table {
    width: 600px;
    border-collapse: collapse;
    margin-bottom: 10px;
}
.calender02 table tr th {
    text-align: center;
    background: #CBCBCB;
    border: 1px dotted #6F6F6F;
    border-bottom: 1px solid #6F6F6F;
    padding: 10px;
    width: 14%;
}
.calender02 table tr td {
    text-align: center;
    border: 1px dotted #6F6F6F;
    padding: 10px;
}
.calender02 table tr.tr_date td {
    background: #E5E5E5;
}
.calender02 table tr.tr_text td {
    height: 60px;
    vertical-align: top;
}
.calender02 .bg_color01 {
    background: #D5A8A9;
}
.calender02 .bg_color02 {
    background: #B1CAD8;
}
.calender02 .tx_color01 {
    color: #D5A8A9;
}
.calender02 .tx_color02 {
    color: #B1CAD8;
}
@media print, screen and (min-width:768px) {
    .calender02 .note {
        display: none;
    }
    .calender02 table {
        width: 100%;
    }
}
/*------------------------------------------------------------Pankuzu*/
/*pankuzu*/
#pankuzu {
    width: 100%;
    margin: 10px 0 0;
    clear: both;
}
#pankuzu ol {
    float: right;
    list-style: none;
}
#pankuzu ol li {
    float: left;
    font-size: 11px;
    padding: 0 7px 0 10px;
    background: url(../img/common_img/icon_pankuzu.gif) no-repeat 0 50%;
}
#pankuzu ol li em {
    font-style: normal;
}
#pankuzu ol li.home {
    padding-left: 0;
    background: none;
}
#pankuzu ol li a:link, #pankuzu ol li a:visited {
    text-decoration: underline;
}
#pankuzu ol li a:hover, #pankuzu ol li a:active {
    text-decoration: underline;
}
/* ----------------------------------------------------------------rayout*/
.center {
    display: block;
    margin: auto;
}
/*2*/
.ly_card_2column > div + div,
.ly_card_2column > div + li,
.ly_card_2column > li + div,
.ly_card_2column > li + li {
  margin-top: 16px;
}

@media print, screen and (min-width: 768px) {
  .ly_card_2column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .ly_card_2column > div,
  .ly_card_2column > li {
    width: calc(100% / 2 - 15px);
  }
  .ly_card_2column > div + div,
  .ly_card_2column > div + li,
  .ly_card_2column > li + div,
  .ly_card_2column > li + li {
    margin-top: 0;
  }
  .ly_card_2column > div:nth-child(n+3),
  .ly_card_2column > li:nth-child(n+3) {
    margin-top: 30px;
  }
}

/*3*/
.ly_card_3column > div + div,
.ly_card_3column > div + li,
.ly_card_3column > li + div,
.ly_card_3column > li + li {
  margin-top: 16px;
}

@media print, screen and (min-width: 768px) {
  .ly_card_3column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .ly_card_3column::after {
    content: "";
    display: block;
    width: calc(100% / 3 - 15px);
  }
  .ly_card_3column > div,
  .ly_card_3column > li {
    width: calc(100% / 3 - 15px);
  }
  .ly_card_3column > div + div,
  .ly_card_3column > div + li,
  .ly_card_3column > li + div,
  .ly_card_3column > li + li {
    margin-top: 0;
  }
  .ly_card_3column > div:nth-child(n+4),
  .ly_card_3column > li:nth-child(n+4) {
    margin-top: 30px;
  }
}

/*4*/
.ly_card_4column > div + div,
.ly_card_4column > div + li,
.ly_card_4column > li + div,
.ly_card_4column > li + li {
  margin-top: 16px;
}

@media print, screen and (min-width: 768px) {
  .ly_card_4column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .ly_card_4column::before {
    content: "";
    display: block;
    width: calc(100% / 4 - 15px);
    order: 1;
  }
  .ly_card_4column::after {
    content: "";
    display: block;
    width: calc(100% / 4 - 15px);
  }
  .ly_card_4column > div,
  .ly_card_4column > li {
    width: calc(100% / 4 - 15px);
  }
  .ly_card_4column > div + div,
  .ly_card_4column > div + li,
  .ly_card_4column > li + div,
  .ly_card_4column > li + li {
    margin-top: 0;
  }
  .ly_card_4column > div > div:nth-child(n+5),
  .ly_card_4column > div > li:nth-child(n+5),
  .ly_card_4column > li > div:nth-child(n+5),
  .ly_card_4column > li > li:nth-child(n+5) {
    margin-top: 30px;
  }
}
/*------------------------------------------------------------table*/
.sheet_basic {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.sheet_basic tr {
  border: 1px solid #192f60;
}
.sheet_basic tr th,
.sheet_basic tr td {
  padding: 0.5em 1em;
  text-align: left;
  display: block;
}
.sheet_basic tr th {
    color: #192f60;
  font-weight: 700;
  background: #d3efff;
}
@media print, screen and (min-width: 768px) {
  .sheet_basic tr th,
  .sheet_basic tr td {
    display: table-cell;
    padding: 1em;
  }
  .sheet_basic tr th {
    width: 20%;
  }
}
/*------------------------------------------------------------list*/
.list_disc {
    text-align: left;
}
.list_disc li {
    padding-left: 1.2em;
    margin-bottom: 0.25em;
    position: relative;
}
.list_disc li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #192f60;
    border-radius: 100%;
    padding-right: .2em;
    position: absolute;
    top: 9px;
    left: 0;
}
@media print, screen and (min-width:768px) {
    .list_disc li:before {
        width: 10px;
        height: 10px;
    }
}
/*------------------------------------------------------------button*/
.btn a {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    background: #192f60;
    padding: 0.75em 2em;
} 
.btn a:hover {
    background: #0059a4;
}
@media print, screen and (min-width:768px) {
  .btn a {
    padding: 0.75em 3em;
  }
}
/*------------------------------------------------------------Decoration*/
/*Line*/
hr.line_01 {
    height: 1px;
    clear: both;
    margin: 20px 0px;
    border-top: 1px dotted #CCC;
    border-right: 0 dotted #CCC;
    border-bottom: 0 dotted #CCC;
    border-left: 0 dotted #CCC;
}
.space_10 {
    height: 10px;
    clear: both;
}
.space_20 {
    height: 20px;
    clear: both;
}
.space_30 {
    height: 30px;
    clear: both;
}
.space_10 hr, .space_20 hr, .space_30 hr {
    display: none;
}
/*------------------------------------------------------------Text*/
/*title*/
.title01 {
    font-size: 22px;
    font-weight: bold;
    padding: 0 0 0.5em;
    margin-bottom: 1.2em;
    text-align: center;
    position: relative;
}
.title01:before {
    content: "";
    width: 2em;
    height: 4px;
    background: #192f60;
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.title02 {
    font-size: 20px;
    font-weight: 500;
    color: #192f60;
    padding: 0.5em 1em;
    margin-bottom: 1em;
    border-top: 1px solid #192f60;
    border-bottom: 1px solid #192f60;
}
.title03 {
    font-size: 16px;
    font-weight: bold;
    color: #6D6D6D;
    padding-left: 10px;
    margin-bottom: 10px;
    border-left: 3px solid #6D6D6D;
}
.title03 span {
    font-size: 12px;
}
@media print, screen and (min-width:768px) {
    .title01 {
        font-size: 30px;
    }
    .title02 {
        font-size: 24px;
    }
}
/*TextRight*/
.tx_right {
    text-align: right;
}
/*TextLeft*/
.tx_left {
    text-align: left;
}
/*TextCenter*/
.tx_cent {
    text-align: center;
}
/*bold*/
.tx_bold {
    font-style: normal;
    font-weight: bold;
}
/*TextRed*/
.tx_red {
    color: #C33;
}
/*attention*/
.attention {
    font-size: 10px;
    line-height: 130%;
    margin: 5px 0;
}
/*------------------------------------------------------------Float*/
/*FloatLeft*/
.float_left {
    float: left;
}
/*FloatRight*/
.float_right {
    float: right;
}
/*ClearBoth*/
.clearboth {
    clear: both;
}
/*phbox*/
.phbox_right {
    text-align: center;
}
.phbox_right img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.phbox_left {
    text-align: center;
}
.phbox_left img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.ov_hidden {
    overflow: hidden;
}
@media print, screen and (min-width:768px) {
    .phbox_right {
        float: right;
        margin-left: 30px;
        margin-bottom: 0px;
    }
    .phbox_left {
        float: left;
        margin-right: 30px;
        margin-bottom: 0px;
    }
}
/*------------------------------------------------------------Margin*/
/*MarginTop*/
.margin_t05 {
    margin-top: 5px;
}
.margin_t10 {
    margin-top: 10px;
}
.margin_t20 {
    margin-top: 20px;
}
.margin_t30 {
    margin-top: 30px;
}
.margin_t40 {
    margin-top: 40px;
}
.margin_t50 {
    margin-top: 50px;
}
/*MarginBottom*/
.margin_b05 {
    margin-bottom: 5px;
}
.margin_b10 {
    margin-bottom: 10px;
}
.margin_b20 {
    margin-bottom: 20px;
}
.margin_b30 {
    margin-bottom: 30px;
}
.margin_b40 {
    margin-bottom: 40px;
}
.margin_b50 {
    margin-bottom: 50px;
}
/*MarginRight*/
.margin_r05 {
    margin-right: 5px;
}
.margin_r10 {
    margin-right: 10px;
}
.margin_r15 {
    margin-right: 15px;
}
.margin_r20 {
    margin-right: 20px;
}
/*MarginLeft*/
.margin_l05 {
    margin-left: 50px;
}
.margin_l10 {
    margin-left: 10px;
}
.margin_l15 {
    margin-left: 15px;
}
.margin_l20 {
    margin-left: 20px;
}
/*Margin_device*/
.margin-xs-b10 {
    margin-bottom: 10px;
}
@media print, screen and (min-width:768px) {
    .margin-xs-b10 {
        margin-bottom: 0px;
    }
}
.margin-xs-b15 {
    margin-bottom: 15px;
}
@media print, screen and (min-width:768px) {
    .margin-xs-b15 {
        margin-bottom: 0px;
    }
}
/*------------------------------------------------------------ClearFix*/
.clearfix {
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/*------------------------------------------------------------Hoverimg*/
a:hover img.hoverimg {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha( opacity=60 )";
    transition: all .3s;
}
/*------------------------------------------------------------other*/
/*Pagetop*/
#pagetop {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
}
#pagetop img {
    width: 40px;
    height: auto;
}
@media print, screen and (min-width:768px) {
    #pagetop img {
        width: auto;
    }
}

/*表示・非表示切り替え*/
.sp_none {
    display: none;
}
@media print, screen and (min-width:768px) {
    .pc_none {
        display: none;
    }
    .sp_none {
        display: inline-block;
    }
}

.anchor_point {
	margin-top: -60px;
	padding-top: 60px;
}
@media print, screen and (min-width:768px) {
    .anchor_point {
        margin-top: -74px;
        padding-top: 74px;
    }
}