@charset "utf-8";

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

html {
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
    /* font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif; */
    font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', 'ＭＳ ゴシック', sans-serif;
}

body {
    color: #1A1A1A;
    font-size: 12px;
    line-height: 1.4;
    margin: 0px;
}

body {
    background-color: #FFFFFF;
}

p {
    margin: 0px;
}

a:link {
    color: #004CCA;
}

a:visited {
    color: #6219DB;
}

a:hover {
    color: #048ADE;
    text-decoration: none;
}

a:active {
    color: #048ADE;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

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

h1 {
    margin: 0;
}

h2 {
    margin: 0;
}

.oh {
    overflow: hidden;
}

.L {
    float: left;
}

.R {
    float: right;
}

.sp {
    display: none;
}

.pr {
    position: relative;
}

#menu {
    display: none;
}

.flex {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}

.flex-sb {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    justify-content: space-between;
}

.wrap {
    width: 1100px;
    margin: 0 auto;
}

.top_header {
    padding: 20px 0;
}

.hd01 {
    margin-bottom: 25px;
}

.hd01 .wrap.flex-sb {
    align-items: center;
}

.hd_logo {}

.hd_logo a {
    font-size: 32px;
    font-weight: 600;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    font-family: 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
}

.hd_logo a:hover {
    color: #000;
}

.hd_link_list ul li {
    width: 230px;
    height: 40px;
}

.hd_link_list ul li:first-child {
    margin-right: 20px;
}

.hd_link_list ul li.hdSeiho {
    margin-left: 20px;
}

.hd_link_list ul li.hdSeiho a {
    background: #FF5722;
}

.hd_link_list ul li a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #011b63;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-align: center;
    line-height: 40px;
    position: relative;
    padding-right: 15px;
}

.hd_link_list ul li a:after {
    content: ">";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px;
    transition: 0.3s;
}

.hd_link_list ul li a:hover:after {
    right: 10px;
}

.hd02 {}

.hd_nav {}


/*プルダウン*/
.menu {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.menu>li {}

.menu>li a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.menu>li a:hover {
    color: #999;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}

ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}

.menu>li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__third-level li {
    border-top: 1px solid #111;
}

.menu__third-level li a:hover {
    background: #2a1f1f;
}

.menu__fourth-level li a:hover {
    background: #1d0f0f;
}

ul.menu__second-level li {
    width: 225px;
    margin-bottom: 30px;
}

ul.menu__second-level li:last-child {
    margin-bottom: 0px;
}

ul.menu__second-level li a {
    font-size: 14px;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 30px;
}

ul.menu__second-level li a:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #011b63;
    border-radius: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
}

ul.menu__second-level li a:after {
    content: ">";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
}

/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* floatクリア */
.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

.menu>li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: auto;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    border-top: 2px solid #011b63;
    padding: 25px 0;
}

li.menu__single:hover ul.menu__second-level {
    top: 40px;
    visibility: visible;
    opacity: 1;
}

.top .bx-wrapper {
    box-shadow: 0px 0px 0px;
    border: 0px;
    background: none;
    margin: 0 auto 80px auto;
}

.top .bx-viewport {
    margin-bottom: 40px;
}

/*
.top .bx-wrapper .bx-pager.bx-default-pager a{
  width: 243px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.top .bx-pager-item a:before{
  content: "";
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgb(0,0,0,0.5);
  position: absolute;
}

.top .bx-pager-item:nth-child(1) a{
  background-image: url(/kyozei/wp-content/uploads/2019/08/top_bg01.png);
}

.top .bx-pager-item:nth-child(2) a{
  background-image: url(/kyozei/wp-content/uploads/2019/08/top_bg02.png);
}

.top .bx-pager-item:nth-child(3) a{
  background-image: url(/kyozei/wp-content/uploads/2019/08/top_bg03.png);
}

.top .bx-pager-item:nth-child(4) a{
  background-image: url(/kyozei/wp-content/uploads/2019/08/top_bg04.png);
}

a.bx-pager-link.active{
  border:10px solid #011b63;
}

a.bx-pager-link.active:before{
  display: none;
}

*/

.top .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
}

.top .bx-wrapper .bx-prev {
    left: 30px;
    background-image: url(/kyozei/wp-content/uploads/2019/08/slider_prev.png);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    cursor: pointer;
}

.top .bx-wrapper .bx-next {
    right: 30px;
    background-image: url(/kyozei/wp-content/uploads/2019/08/slider_next.png);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    cursor: pointer;
}

.top .bx-pager.bx-default-pager {
    position: static;
}

.top .bx-wrapper .bx-pager {
    padding-top: 0px;
}

.sec01 {
    margin-bottom: 70px;
}

.sec01_L {
    width: 520px;
    position: relative;
}

.sec01_ttlbox {
    border-bottom: 1px solid #011b63;
    padding-bottom: 15px;
    align-items: center;
    margin-bottom: 20px;
}

h2.sec_ttl {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

h2.sec_ttl:before {
    content: "";
    display: block;
    width: 12px;
    height: 20px;
    background-color: #011b63;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.sec01_list {}

.sec01_list ul {}

.sec01_list ul li {
    margin-bottom: 30px;
}

.sec01_list ul li:last-child {
    margin-bottom: 0px;
}

.sec01_list ul li a {
    display: flex;
    width: 100%;
    height: 100%;
    color: #000;
    font-size: 15px;
    text-decoration: none;
}

.sec01_list ul li span:before {
    display: inline-block;
    margin-right: 10px;
    width: 5px;
    height: 16px;
}

.sec01_list ul li span.new_info:before {
    content: "";
    background: #c49b17;
}

.sec01_list ul li span.union_info:before {
    content: "";
    background: #c41817;
}

.sec01_list_date {
    margin-right: 30px;
}

.sec01_list_date p {}

.sec01_list_ttl {}

.sec01_list_ttl p {}

/*タブ切り替え*/
.tab_wrap {}

.sec01 input[type="radio"] {
    display: none;
}

.tab_area {
    font-size: 0;
    width: 310px;
    position: absolute;
    top: 5px;
    right: 0;
}

.tab_area label {
    margin: 0 5px;
    display: inline-block;
    color: #000;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: ease 0.2s opacity;
    height: 22px;
    font-weight: 600;
    position: relative;
    padding-left: 12px;
}

.tab_area label:before {
    content: "";
    width: 5px;
    height: 22px;
    background-color: #333333;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.tab_area label:nth-of-type(2):before {
    background-color: #c49b18;
}

.tab_area label:nth-of-type(3):before {
    background-color: #c41818;
}

.tab_area label:hover {
    opacity: 0.5;
}

.panel_area {
    margin-bottom: 30px;
}

.tab_panel {
    width: 100%;
    display: none;
}

.tab_panel p {
    font-size: 14px;
    letter-spacing: 1px;
}

#tab1:checked~.tab_area .tab1_label {
    background: #333333;
    color: #fff;
    padding-right: 10px;
}

#tab1:checked~.panel_area #panel1 {
    display: block;
}

#tab2:checked~.tab_area .tab2_label {
    background: #333333;
    color: #fff;
    padding-right: 10px;
}

#tab2:checked~.panel_area #panel2 {
    display: block;
}

#tab3:checked~.tab_area .tab3_label {
    background: #333333;
    color: #fff;
    padding-right: 10px;
}

#tab3:checked~.panel_area #panel3 {
    display: block;
}

.sec01_L_bt {
    width: 170px;
    height: 25px;
    border: 1px solid #000;
    margin: 0 auto;
}

.sec01_L_bt a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 25px;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.sec01_R {
    width: 520px;
}

.sec01_link {}

.sec01_link a {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    position: relative;
    padding-right: 25px;
}

.sec01_link a:before {
    content: ">";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 16px;
}

.sec01_list02 ul li:nth-of-type(odd) {
    background-color: #f4f2e5;
}

.sec01_list02 ul li a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    padding: 10px 30px;
}

.sec01_list02_datebox {
    /* background-color: #f4f2e5; */
    line-height: 40px;
    /* padding:0 45px; */
}

.sec01_list02_date p {
    line-height: 40px;
    color: #76393a;
    font-size: 18px;
}

.sec01_R .sec01_list02_date p,
.sec01_R .sec01_list02_time p {
    font-size: 14px;
    line-height: 2;
}

.sec01_list02 .sec01_list02_date {}

.sec01_list02_time {}

.sec01_list02_time p {
    color: #000;
    font-size: 18px;
}

.sec01_list02_ttlbox {
    /* padding: 25px 45px; */
}

.sec01_list02_subttl {
    margin-bottom: 5px;
}

.sec01_list02_subttl p {
    font-size: 13px;
    color: #000;
}

.sec01_list02_text02box p span {
    color: #b8272d;
    font-weight: 600;
    display: inline-block;
    margin-left: 15px;
}

.sec01_list02_ttl {}

.sec01_list02_ttl p {
    font-size: 14px;
    font-weight: 600;
    color: #011b63;
}

.sec01_list02_textbox {
    background-color: #f4f2e5;
    padding: 10px 45px;
}

.sec01_list02_text {
    margin-bottom: 10px;
}

.sec01_list02_text02box .sec01_list02_text02 {
    margin-bottom: 5px;
}

.sec01_list02_text01 {}

.sec01_list02_text01 p {}

.sec01_list02_text02 {}

.sec01_list02_text02 p {}

.sec01_list02_text03 {}

.sec01_list02_text03 p {}

.sec01_list02_bt {
    width: 150px;
    height: 25px;
    margin: 5px 0 0 auto;
}

.sec01_list02_bt p {
    display: block;
    width: 100%;
    height: 100%;
    color: #76393a;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #76393a;
    background-color: #fff;
    background-repeat: no-repeat;
    background-image: url(/kyozei/wp-content/uploads/2019/08/sec01_icon.png);
    background-size: 10px;
    background-position: center left 20px;
    line-height: 25px;
    padding-left: 45px;
}

.sec02 {
    padding-bottom: 75px;
}

.sec02_list {}

.sec02_list ul {}

.sec02_list ul li {
    width: 340px;
    height: 230px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sec02_list ul li:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.4);
    display: block;
    position: absolute;
}

.sec02_list ul li:after {
    content: "";
    width: 320px;
    height: 210px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 1px solid #fff;
    display: block;
    position: absolute;
}

.sec02_list ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 230px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    z-index: 1000;
    position: relative;
    text-decoration: none;
    font-weight: 600;
}

.sec02_list ul li a:before {
    content: "";
    height: 2px;
    display: block;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 135px;
}

.sec02_list ul li:nth-child(1) a:before {
    width: 150px;
}

.sec02_list ul li:nth-child(2) a:before {
    width: 60px;
}

.sec02_list ul li:nth-child(3) a:before {
    width: 210px;
}


 .sec02_list ul li:nth-child(1){
  background-image: url(https://kyozei.or.jp/wp/wp-content/uploads/2023/01/sec02_img04.jpg);
}
/*お知らせ　
.sec02_list ul li:nth-child(1) {
    background-image: url(/kyozei/wp-content/uploads/2019/08/sec02_img01.png);
}*/

.sec02_list ul li:nth-child(2) {
    background-image: url(/kyozei/wp-content/uploads/2019/08/sec02_img02.png);
}

.sec02_list ul li:nth-child(3) {
    background-image: url(/kyozei/wp-content/uploads/2019/08/sec02_img03.png);
}

.sec03 {
    background-image: url(/kyozei/wp-content/uploads/2019/08/sec03_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 45px 0;
    position: relative;
}

.sec03:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
}

.sec03box {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 25px;
    z-index: 1000;
    position: relative;
}

.sec03_ttl {
    border-bottom: 1px solid #000000;
    width: 295px;
    padding-bottom: 10px;
}

.sec03_ttl:before {
    background-color: #333333 !important;
    margin-bottom: 15px !important;
}

.sec03_L {
    position: relative;
}

.sec03_bt {
    width: 295px;
    height: 45px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.sec03_bt a {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 1000;
}

.sec03_bt a:hover {
    color: #fff;
}

.sec03_bt:after {
    position: absolute;
    width: 2px;
    height: 100%;
    left: 0px;
    top: 0px;
    content: '';
    background: #333333;

    transition: all 0.3s;
}

.sec03_bt:hover:after {
    width: 100%;
}

.sec03_bt a:before {
    content: ">";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 30px;
}

.sec03_R {
    width: 660px;
}

.sec03_list {
    width: 320px;
}

.sec03_list ul {}

.sec03_list ul li {
    width: 100%;
    height: 65px;
    margin-bottom: 15px;
}

.sec03_list ul li:last-child {
    margin-bottom: 0px;
}

.sec03_list ul li a {
    display: flex;
    width: 100%;
    height: 100%;
    line-height: 65px;
    font-size: 16px;
    font-weight: 600;
    background-color: #fff;
    align-items: center;
    padding: 5px;
    border: 3px solid rgba(188, 188, 188, 0.3);
    text-decoration: none;
    color: #000;
    position: relative;
}

.sec03_list ul li a:before {
    content: ">";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    position: absolute;
}

.sec03_list_img {
    width: 85px;
    margin-right: 15px;
}

.sec03_list_img p {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    /* border-top: 3px solid #001c63; */
    /* border-bottom: 3px solid #001c63; */
    font-family: 'Big Shoulders Text', cursive;
    letter-spacing: 0.5px;
    background-color: #8e99b4;
    color: #fff;
}

.sec03_list_img img {}

.sec03_list_text {}

.sec03_list_text p {}

.sec03_inbox {
    width: 360px;
    background-color: #fff;
    padding: 20px 25px;
    border: 3px solid rgba(188, 188, 188, 0.3);
    position: relative;
}

.sec_h3 {
    font-size: 17px;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
    margin: 0 0 30px 0;
}

.sec_h3:before {
    content: "";
    width: 10px;
    height: 20px;
    background-color: #333;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
}

.sec03_list02 {
    margin-bottom: 5px;
}

.sec03_list02 ul {}

.sec03_list02 ul li {
    margin-bottom: 20px;
}

.sec03_list02 ul li a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 15px;
    text-decoration: none;
    color: #000;
}

.sec03_inbox_bt {
    width: 300px;
    height: 40px;
    margin-top: 65px;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
}

.sec03_inbox_bt a {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #333;
    font-size: 15px;
    color: #333;
    text-align: center;
    font-weight: 600;
    line-height: 40px;
    text-decoration: none;
    position: relative;
    z-index: 1000;
}

.sec03_inbox_bt a:before {
    content: ">";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    position: absolute;
    color: #333;
}

.sec03_inbox_bt a:hover:before {
    color: #fff;
}

.top_footer {
    background-color: #011b63;
    padding-bottom: 45px;
    padding-top: 20px;
}

nav.ft_nav {
    margin-bottom: 50px;
}

nav.ft_nav ul {}

nav.ft_nav ul li {
    width: 157px;
    height: 10px;
}

nav.ft_nav ul li a {
    font-size: 14px;
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 10px;
    text-decoration: none;
    border: solid #fff;
    border-width: 0px 1px;
    text-align: center;
}

.ft_box {
    /*margin-bottom: 50px;*/
}

.ft_L {
    width: 550px;
}

.ft_logo {
    margin-bottom: 15px;
}

.ft_logo p {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    font-family: 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
}

.ft_text {
    margin-bottom: 15px;
}

.ft_text p {
    font-size: 15px;
    color: #fff;
    line-height: 25px;
}


.ft_text p span {
    font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
    font-size: 18px;
}

.ft_textB p span {
    font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
    font-size: 24px;
}


.ft_L_link01 {
    margin-bottom: 20px;
}

.ft_L_link01 ul {}

.ft_L_link01 ul li {
    width: 240px;
    height: 35px;
}

.ft_L_link01 ul li a {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    text-align: center;
    line-height: 35px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    position: relative;
}

.ft_L_link01 ul li a:before {
    content: ">";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    position: absolute;
}

.ft_L_ttl {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.ft_L_ttl p {
    font-size: 17px;
    color: #fff;
}

.ft_L_ttl p span {
    font-size: 13px;
}

.ft_L_link02 {
    margin-bottom: 20px;
}

.ft_L_link02 ul {}

.ft_L_link02 ul li {
    width: 260px;
    height: 50px;
}

.ft_L_link02 ul li:first-child {
    margin-bottom: 15px;
}

.ft_L_link02 ul li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #fff;
    color: #011b63;
    font-weight: 600;
    font-size: 14px;
    line-height: 50px;
    text-decoration: none;
    position: relative;
}

.ft_L_link02 ul li a:before {
    content: ">";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    position: absolute;
}

.ft_L_link02 ul li a:after {
    content: "";
    width: 254px;
    height: 44px;
    border: 1px solid #011b63;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}


.ft_L_link04 {
    margin-bottom: 20px;
}

.ft_L_link04 ul {}

.ft_L_link04 ul li {
    width: 260px;
    height: 50px;
}

.ft_L_link04 ul li:first-child {
    margin-bottom: 15px;
}

.ft_L_link04 ul li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #fff;
    color: #011b63;
    font-weight: 600;
    font-size: 14px;
    line-height: 50px;
    text-decoration: none;
    position: relative;
}

.ft_L_link04 ul li a:before {
    content: ">";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    position: absolute;
}

.ft_L_link04 ul li a:after {
    content: "";
    width: 254px;
    height: 44px;
    border: 1px solid #011b63;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.ft_R {
    width: 495px;
}

.ft_map {
    height: 365px;
    margin-bottom: 20px;
    padding: 5px;
    background-color: #fff;
}

.ft_text02 {}

.ft_text02 p {
    color: #fff;
    line-height: 20px;
    font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
}

.ft_text02 small {
    display: block;
    color: #fff;
    margin: 15px 0 0;
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid #fff;
}

.ft_L_link03 ul li:first-child {
    width: 55px;
    margin-right: 20px;
}

.ft_L_link03 ul li:last-child {
    width: 70px;
}

/*kotei*/
.kotei_h1box {
    height: 200px;
    background-color: #011b63;
    background-image: url(/kyozei/wp-content/uploads/2019/11/h1bg.png);
    background-size: cover;
    background-position: center;
}

.page-id-228 .kotei_h1box, .page-id-238 .kotei_h1box, .page-id-235 .kotei_h1box, .page-id-231 .kotei_h1box,
.page-id-520 .kotei_h1box, .page-id-267 .kotei_h1box, .page-id-241 .kotei_h1box,
.page-id-39 .kotei_h1box, .page-id-31 .kotei_h1box, .category .kotei_h1box, .page-id-694 .kotei_h1box {
    /* background-image: url(/kyozei/wp-content/uploads/2019/11/h1bg_01.png); */
    background-size: cover;
    background-position: center;
}


h1.kotei_h1 {
    font-size: 30px;
    text-align: center;
    color: #fff;
    line-height: 200px;
    font-weight: 600;
    letter-spacing: 2px;
}

.breadcrumb {
    height: 30px;
    /*     border-top: 1px solid #fff; */
    background-color: #011b63;
    color: #fff;
    line-height: 30px;
}

.breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.kotei_wrap {
    margin: 80px 0;
}

h2.kotei_h2 {
    font-size: 22px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid #011b63;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

h2.kotei_h2:before {
    content: "";
    display: block;
    width: 12px;
    height: 22px;
    background-color: #011b63;
    position: absolute;
    left: 0;
    top: 5px;
    margin: auto;
}

h2.kotei_h2n span.h2_number {
    width: 22px;
    height: 22px;
    line-height: 20px;
    border-radius: 50%;
    border: 1px solid #000;
    font-size: 14px;
    text-align: center;
    position: absolute;
    left: 20px;
    top: 4px;
}

h2.kotei_h2n {
    padding-left: 50px;
}

.kotei_list_ttl p {
    font-size: 18px;
    padding-left: 20px;
}

.kotei_list_ttl p span {
    display: inline-block;
    margin-right: 10px;
    background-color: #000;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 13px;
    line-height: 21px;
    position: absolute;
    top: 7px;
    margin: auto;
    left: 0;
}

.kotei_list_ttl {
    margin-bottom: 20px;
    position: relative;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}

.kotei_list_textbox p {
    font-size: 15px;
    line-height: 1.5;
}

.kotei_list_textbox p a {
    color: #000;
}

.kotei_list_textbox_ttl p {
    font-weight: 600;
}

.kotei_list_textbox_ttl {
    width: 210px;
    padding-left: 20px;
}

.kotei_list_textbox_text {
    width: 800px;
    border-left: 1px solid #000;
    padding-left: 30px;
}

.kotei_list.business_list ul li {
    background-color: #f2f2f2;
    padding: 20px 30px 10px 30px;
    margin-bottom: 15px;
}

.kotei_list_textbox {
    margin-bottom: 15px;
}

.kotei_list_small p {
    font-size: 12px;
}

span.kotei_small {
    font-size: 11px;
}

.kotei_list_right {
    text-align: right;
}

.kotei_list_textbox_text_A {
    padding-top: 25px;
}

.kotei_list_textbox_text p span {
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
}

.kotei_list_textbox_ttl_A {
    padding-top: 20px;
}

.kotei_list_textbox_ttl_B {
    padding-top: 10px;
}

.fixed_bana {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: #fff;
    padding: 4px;
    z-index: 1000;
}

h2.kotei_h2 span {
    font-size: 17px;
    display: inline-block;
    margin-right: 10px;
}

h2.kotei_h2 span a {
    color: #000;
}

.kyozeikyo_new_ttl p {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

.kyozeikyo_new_ttl {
    margin-bottom: 10px;
}

.kyozeikyo_logo {
    width: 320px;
    margin: 0 auto 30px auto;
}

.kyozeikyo_new_img {
    width: 350px;
    height: 200px;
    position: relative;
    overflow: hidden;
    background-color: #f2f2f2;
    margin: 0 auto 20px auto;
}

.kyozeikyo_new_img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
}

.kyozeikyo_new_date p {
    font-size: 18px;
    text-align: center;
}

.kyozeikyo_new_link {
    margin: 0 auto;
    width: 410px;
}

.kyozeikyo_new_link a {
    text-align: center;
    line-height: 40px;
    text-align: center;
    display: block;
    width: 200px;
    height: 40px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    border: 1px solid #000;
    position: relative;
}

.kyozeikyo_new_link a:before {
    content: ">";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    position: absolute;
}

.kyozeikyo_new_date {
    margin-bottom: 10px;
}

/*member*/
.member_list_ttl p {
    font-size: 18px;
}

.member_list_ttl {
    margin: 20px 0;
}

.member_list_ttl_sub {
    font-size: 16px;
    margin: 15px 0 0;
}

.member_list ul {
    margin-top: 30px;
}

.member_list ul li {
    margin-bottom: 40px;
}

.member_list_link {}

.member_list_link a {
    display: block;
    width: 200px;
    /* text-align: center; */
    text-decoration: none;
    color: #000;
    font-size: 15px;
    border: 1px solid #000;
    line-height: 45px;
    margin-right: 10px;
    position: relative;
    transition: 0.3s;
    padding: 10px;
}

.member_list_link2 a {
    display: block;
    width: 200px;
    height: 328px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    border: 1px solid #000;
    line-height: 45px;
    margin-right: 10px;
    position: relative;
    transition: 0.3s;
    padding: 10px;
}

.member_list_link a:hover {
    background-color: #f2f2f2;
}

.member_list_link2 a:hover {
    background-color: #f2f2f2;
}

.member_list_link a:hover:before {
    right: 10px;
}

.member_list_link2 a:hover:before {
    right: 10px;
}

.member_list_link a:last-child {
    margin-right: 0px;
}

.member_list_link2 a:last-child {
    margin-right: 0px;
}

.member_list_link a:before {
    content: ">";
    bottom: 20px;
    margin: auto;
    right: 20px;
    position: absolute;
    transition: 0.3s;
}

.member_list_link2 a:before {
    content: ">";
    bottom: 20px;
    margin: auto;
    right: 20px;
    position: absolute;
    transition: 0.3s;
}

a.member_a {
    margin-top: 10px;
}

div#campaigns .member_list_link a {
    width: 260px;
}

div#campaigns p.member_p {
    font-size: 16px;
}

a.member_a p {
    font-size: 13.5px;
    line-height: 1.4;
    text-align: center;
}

/*back*/
.kyozeikyo_year p {
    font-size: 16px;
    font-weight: 600;
}

.kyozeikyo_year {
    margin-bottom: 10px;
}

.kyozeikyo_back_inlistbox {
    width: 250px;
    margin-right: 33px;
    position: relative;
}

.kyozeikyo_back_inlistbox:nth-child(4n) {
    margin-right: 0px;
}

.kyozeikyo_back_inlist_img {
    width: 100%;
    height: 200px;
    background-color: #f2f2f2;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.kyozeikyo_back_inlist_img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
}

.kyozeikyo_back_list ul li {
    margin-bottom: 40px;
}

.kyozeikyo_back_list ul li a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    display: block;
    width: 100%;
    height: 100%;
}

.kyozeikyo_new_icon {
    background-color: red;
    text-align: center;
    height: 25px;
    width: 80px;
    position: absolute;
    border-radius: 20px;
    top: 10px;
    left: 5px;
    z-index: 1000;
}

.kyozeikyo_new_icon p {
    color: #fff;
    line-height: 25px;
    font-size: 15px;
}

.kyozeikyo_back_list {
    margin-top: 30px;
}

.gc_wrapper {
    max-width: 800px;
    min-width: 300px;
    margin: 2.0833% auto;
}

.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.responsive-iframe-container iframe,
.responsive-iframe-container object,
.responsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

p.jyumbi {
    font-size: 35px;
    text-align: center;
    color: #333;
    letter-spacing: 2px;
    margin-top: 80px;
}

.privacy_list_link a {
    width: 360px;
    margin-bottom: 15px;
}

.privacy_list_link a:before {
    display: none;
}

.kotei_text p {
    font-size: 15px;
}

.kotei_text p span a {
    color: #000;
}

.kotei_text {
    margin-bottom: 15px;
}

.privacy_text p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.privacy_text p span {
    display: block;
    text-align: center;
    margin: 20px 0;
}

.privacy_text_right.privacy_text {
    text-align: right;
    margin-top: 30px;
}

dl.privacy_dl dt {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

dl.privacy_dl dd {
    font-size: 15px;
    margin-bottom: 15px;
}

.contact_text p {
    font-size: 15px;
}

.contact_text {
    margin-bottom: 10px;
}

.kotei_table th {
    width: 20%;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    font-size: 15px;
    text-align: left;
}

div#mw_wp_form_mw-wp-form-457 button.back-btn {
    width: 180px;
}

table.applyTable .hsoku {
    display: block;
    font-size: 12px;
}

table.applyTable th {
    width: 30%;
    padding: 10px;
}

.kotei_table table {
    width: 100%;
    border-collapse: collapse;
}

.kotei_table td {
    width: 80%;
    padding: 20px 30px;
    border: 1px solid #ccc;
    font-size: 15px;
}

select.shisyo {
    height: 20px;
    width: 70px;
}

.kotei_table td input[type="text"] {
    width: 400px;
    height: 35px;
}

.kotei_table td input[type="email"] {
    width: 400px;
    height: 35px;
    margin-bottom: 10px;
}

.kotei_table_text p {
    font-size: 13px;
    line-height: 1.4;
    color: red;
}

span.hissu {
    font-size: 12px;
    text-align: center;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    background-color: red;
    width: 35px;
    border-radius: 4px;
    height: 20px;
    line-height: 20px;
    float: left;
    margin-left: 10px;
}

span.ninni {
    font-size: 12px;
    text-align: center;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    background-color: #011b62;
    width: 35px;
    border-radius: 4px;
    height: 20px;
    line-height: 20px;
    float: left;
    margin-left: 10px;

}

.contact_table {
    margin-bottom: 30px;
}

div#btn-wrap {
    justify-content: center;
}

button.kakunin {
    width: 240px;
    height: 35px;
    border: 1px solid #000;
    font-size: 13px;
    font-weight: 600;
    line-height: 35px;
    cursor: pointer;
    transition: 0.3s;
}

button.kakunin:hover {
    background-color: #000;
    color: #fff;
}

button.back-btn {
    margin-right: 10px;
    height: 35px;
    width: 70px;
    font-size: 13px;
    font-weight: 600;
    line-height: 35px;
    border: 1px solid #000;
    padding: 0;
    background-color: #000;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

button.back-btn:hover {
    background-color: #787878;
}

button.soshin {
    width: 240px;
    height: 35px;
    padding: 0;
    font-size: 14px;
    line-height: 35px;
    font-weight: 600;
    border: 1px solid #000;
    cursor: pointer;
    transition: 0.3s;
}

.mw_wp_form p {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 600;
}


button.soshin:hover {
    background-color: #000;
    color: #fff
}

.kotei_ttl p {
    font-size: 18px;
}

.kotei_ttl {
    margin-bottom: 5px;
}

.soshikizu_img {
    width: 800px;
    margin: 50px auto 0 auto
}

.union_table {
    margin-bottom: 10px;
}

.union_table_text p {
    text-align: right;
}

.union_table_text {
    margin-bottom: 30px;
}

.union_box {
    margin-right: 50px;
}

.location_mapbox {
    margin-top: 30px;
}

.location_map {
    height: 250px;
    padding: 5px;
    border: 1px solid #ccc;
}


.greeting_text p {
    line-height: 1.8;
    text-align: justify;
}

.kotei_text_namebox p {
    font-size: 14px;
    line-height: 1.5;
}

.kotei_name01 {
    margin-right: 30px;
}

.kotei_text_namebox p span {
    font-size: 20px;
    font-weight: 600;
}

.kotei_text_namebox.flex {
    align-items: center;
    width: 290px;
    margin-left: auto;
    display: block;
}

.kotei_name02 p {
    text-align: right;
}

ul#sitemap_list a {
    color: #000;
}

li.cat-item.cat-item-10 {
    display: none;
}

.affiliations {
    width: 48%;
    height: 45px;
    margin-right: 44px;
    margin-bottom: 15px;
}

.affiliations a {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    /* text-align: center; */
    line-height: 45px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    padding-left: 25px;
    position: relative;
    transition: 0.3s;
}

.affiliations p {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    /* text-align: center; */
    line-height: 45px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    padding-left: 25px;
    position: relative;
    transition: 0.3s;
}

.affiliations a:hover {
    background-color: #011b63;
    color: #fff;
}

.affiliations a:before {
    content: ">";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    position: absolute;
}

.affiliations p:before {
    content: ">";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    position: absolute;
}

.affiliations:nth-child(2n) {
    margin-right: 0px;
}

.affiliations_outer ul li {
    margin-bottom: 30px;
}

.affiliations_outer {
    margin-top: 30px;
}

.society_list_ttl p {
    font-size: 16px;
    font-weight: 600;
}

.society_list ul li {
    padding-left: 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.society_list ul li .image {
    width: 25%;
    line-height: 0;
    border-right: 1px solid #ccc;
    padding-right: 30px;
}

.society_list ul li .content {
    width: 75%;
    padding-left: 30px;
}

.society_list_ttl {
    margin-bottom: 5px;
}

.society_list_text p {
    font-size: 15px;
}

.society_list_text_S {
    font-size: 12px;
}

.society_list {
    margin-top: 15px;
}

.society_list ul li:nth-child(1) a {
    width: 180px
}

.society_list ul li:nth-child(2) a {
    width: 190px
}

.society_list ul li:nth-child(3) a {
    width: 210px
}

.society_list_text a {
    color: #76393a;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url(/kyozei/wp-content/uploads/2019/08/sec01_icon.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center left;
    padding-left: 24px;
}

.societybox {
    margin-bottom: 50px;
}

.societybox:last-child {
    margin-bottom: 0px;
}

.societybox_boxA {
    margin-top: 10px;
}

.society_list_text_A a {
    width: 250px !important;
}

.societybox_boxA {
    width: 340px;
    background-color: #ccc;
    padding: 10px 20px;
}

.societybox_boxA_ttl p {
    font-size: 15px;
    font-weight: 600;
}

.societybox_boxA_ttl {
    border-bottom: 1px solid #000;
    margin-bottom: 5px;
}

.societybox_boxA_text p {
    font-size: 13px;
}

input.your_tel {
    width: 100px !important;
}

.single_kiji {
    width: 700px;
}

.singleSidebar {
    width: 280px;
}

.single_ttl p {
    font-size: 18px;
    font-weight: 600;
    padding-left: 25px;
}

.single_ttl p span {
    font-size: 15px;
    display: block;
    font-style: italic;
}

.single_ttl {
    position: relative;
    margin-bottom: 15px;
}

.single_ttl:before {
    content: "";
    width: 10px;
    height: 90%;
    display: block;
    background-color: #011b63;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
}

.single_text p {
    font-size: 14px;
    line-height: 1.8;
}

.single_text h2 {
    background-color: #f2f2f2;
    padding: 5px 0 5px 15px;
    border: solid #000;
    border-width: 0px 5px;
    margin-bottom: 15px;
}

.single_text h3 {
    margin: 0;
    margin-bottom: 20px;
    font-size: 17px;
    border-bottom: 6px double #000;
}

.single_text h4 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    position: relative;
}

.single_text h4:before {
    content: "■";
    display: inline-block;
}

a.ichiran_link {
    display: block;
    width: 240px;
    height: 45px;
    border: 1px solid #000;
    margin: 0 auto;
    line-height: 45px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

a.ichiran_link:hover {
    background-color: #011b63;
    color: #fff;
}

.single_kiji article {
    margin-bottom: 40px;
}

.singleSidebar h2 {
    height: 45px;
    text-align: center;
    border: solid #011b63;
    border-width: 0px 10px;
    line-height: 45px;
    font-size: 17px;
}

.singleSidebar a {
    text-decoration: none;
    font-size: 15px;
    color: #000;
    padding: 10px;
    display: block;
    width: 100%;
    height: 100%;
    border-bottom: 1px dashed #000;
}

.singleSidebar a span {
    display: block;
}

.archive.flex article {
    width: 32%;
    margin-right: 22px;
    margin-bottom: 20px;
    border: 1px solid #000;
    padding: 10px 15px;
    box-shadow: 3px 3px 0px #ccc;
    position: relative;
}

.archive.flex article a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.archive.flex article:nth-child(3n) {
    margin-right: 0px;
}

.archive_postbox span:before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    width: 4px;
    height: 14px;
}

.archive_postbox span.new_info:before {
    background: #c49b18;
}

.archive_postbox span.union_info:before {
    background: #c41817;
}

.archive_postbox span.info:before,
.archive_postbox span.emergency_info:before {
    background: #333;
}

.date {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 6px;
}

.ttl {
    font-size: 15px;
}

nav.navigation.pagination h2 {
    display: none;
}

.nav-links {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    margin-bottom: 100px;
}

span.page-numbers.current {
    width: 30px;
    display: inline-block;
    height: 30px;
    border: 0px solid #011b63;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    font-weight: 600;
    background-color: #011b63;
    color: #fff;
    margin-right: 10px;
}

a.page-numbers {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    line-height: 30px;
    text-align: center;
    color: #000;
    text-decoration: none;
    background-color: #ccc;
    margin-right: 10px;
}

a.next.page-numbers {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: relative;
    margin: 0;
}

a.next.page-numbers:before {
    content: ">";
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-size: 15px;
}

a.next.page-numbers span {
    display: none;
}

a.next.page-numbers svg {
    display: none !important;
}

nav.navigation.pagination {
    margin-left: auto;
}

span.nav-prev-text {
    display: none;
}

svg.svg-icon {
    display: none;
}

a.prev.page-numbers {
    position: relative;
}

a.prev.page-numbers:after {
    content: "<";
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-size: 15px;
}

.binran {
    display: flex;
}

.binran a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
    background-color: #011b63;
    width: 280px;
    padding: 20px;
    text-align: center;
    margin-right: 10px;
}

.benePDF {
    display: flex;
    justify-content: center;
}

.benePDF a {
    display: flex;
    align-items: center;
    width: 300px;
    margin: 50px 20px 0;
    background: #f2f2f2;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    justify-content: space-between;
    padding: 15px 30px;
}

.benePDF a.entry span.icon {
    padding: 0 15px;
}

.benePDF a span.text {
    width: 175px;
}

.benePDF a span {
    display: inline-block;
}

.benePDF a span.icon {
    width: 60px;
}

.benePDF a span.text span {
    font-size: 12px;
}

h2.kotei_h2 .pdfbtn {
    display: inline-block;
}

h2.kotei_h2 .pdfbtn .icon {
    width: 30px;
    margin-right: 0px;
}

h2.kotei_h2 .pdfbtn span {
    vertical-align: middle;
}

h2.kotei_h2 .pdfbtn .text {
    font-size: 14px;
}

h2.kotei_h2 .pdfbtn .text span {
    font-size: 11px;
}

h2.kotei_h2 .pdfbtn a {
    text-decoration: none;
    border: 1px solid #ccc;
    color: #333;
    display: inline-block;
    border-radius: 5px;
    margin-left: 30px;
}

div#seiho .member_list_link a {
    width: 260px;
}

.g-recaptcha {
    width: 100%;
    margin-bottom: 40px !important;
}

span.new-txt {
    background-color: #de3c3c;
    color: #fff;
    font-size: 12px;
    padding: 3px 13px;
}

.archive_postbox span.new-txt:before {
    display: none;
}

.archive_postbox span.new-txt {
    margin-left: 7px;
    font-style: initial;
}

.recaptcha_area {
    text-align: center;
}

li.page_item.page-item-3687 {
    display: none;
}

@media (max-width: 600px) {
    .big-container {
        display: none;
    }

    .small-container {
        padding-bottom: 200%;
        /* 高さ */
    }
}

@media (min-width: 600px) {
    .small-container {
        display: none;
    }
}

.member_list_link a.flexA {
    display: flex;
    width: 300px;
    padding: 5px;
    height: auto;
    align-items: center;
}

.member_list_link a.flexA .image {
    width: 80px;
    margin-right: 20px;
}

.member_list_link a.flexA .image p {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    font-family: 'Big Shoulders Text', cursive;
    letter-spacing: 0.5px;
    background-color: #8e99b4;
    color: #fff;
}

.member_list_link a.flexA::before {
    height: 20px;
    line-height: 20px;
    display: none;
}

.member_list_link a::before {
    display: none;
}

.member_list_link2 a::before {
    display: none;
}

.seminerTitle {
    margin: 0 0 30px;
    font-weight: bold;
    font-size: 20px;
    background: #f2f2f2;
    padding: 10px 70px 10px 20px;
    border-bottom: 4px solid #ddd;
    position: relative;
}

.seminerTitle span {
    display: block;
    font-size: 14px;
}

.seminerTitle a {
    position: absolute;
    width: 46px;
    right: 10px;
    line-height: 0;
    height: 46px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    border-radius: 4px;
    box-shadow: 1px 2px #b5b5b5;
}

table.seminerTable {
    width: 100%;
    margin-bottom: 30px;
    font-size: 16px;
    border-spacing: 10px;
}

table.seminerTable th {
    width: 25%;
    background: #011b63;
    color: #fff;
    padding: 10px;
}

table.seminerTable td {
    border: solid #eee;
    padding: 10px;
    border-width: 0 1px 1px 0;
}

div#mw_wp_form_mw-wp-form-457 button.back-btn {
    width: 180px;
}

table.applyTable input[type="radio"] {
    display: inherit;
}

table.applyTable td input[type="text"] {
    width: 100%;
    font-size: 16px;
    padding-left: 10px;
}

table.applyTable .kotei_table_text p {
    font-size: 12px;
    line-height: 1.5;
}

table.applyTable td span.mwform-tel-field input[type="text"] {
    width: auto;
}

table.applyTable select {
    height: 30px;
    font-size: 16px;
}

.kotei_table td.sisho {
    letter-spacing: -.4em;
}

.kotei_table td.sisho .waku {
    display: inline-flex;
    width: 40%;
    margin-right: 5%;
    letter-spacing: normal;
    align-items: center;
}

.kotei_table td.sisho .waku .moku {
    font-weight: bold;
    margin-right: 20px;
}

.kouzaAttention {
    padding: 20px;
    border: 1px solid #ccc;
    background: #fafafa;
    overflow-y: scroll;
    height: 250px;
    margin-bottom: 50px;
}

.kouzaAttention h2 {
    text-align: center;
    font-size: 26px;
    margin: 0 0 20px;
    line-height: 3;
    border-bottom: 2px solid #011b63;
}

.kouzaAttention p {
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.kouzaAttention h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 40px 0 20px;
    border-left: 4px solid #011b63;
    padding-left: 20px;
}

span.nini {
    font-size: 12px;
    text-align: center;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    background-color: #607D8B;
    width: 35px;
    border-radius: 4px;
    height: 20px;
    line-height: 20px;
    float: left;
    margin-left: 10px;
}

.moushikomi a {
    display: block;
    text-align: center;
    text-decoration: none;
    margin: 0 auto 50px;
    background: #FF9800;
    color: #fff;
    font-size: 18px;
    line-height: 50px;
    border-radius: 4px;
    box-shadow: 0 3px #af6d2b;
    font-weight: bold;
    width: 360px;
}

.seminarSoldout {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    color: #f00;
    background: #f2f2f2;
    line-height: 50px;
}

.archive .sec01_list02 ul {
    display: flex;
    flex-wrap: wrap;
}

.archive .sec01_list02 ul li {
    width: 49%;
    margin-bottom: 20px;
    margin-right: 2%;
    border: 1px solid #011b63;
    background: #f4f2e6;
}

.archive .sec01_list02 ul li:nth-child(2n) {
    margin-right: 0;
}

.archive .sec01_list02_ttlbox {
    background: #fff;
}

.sec01_list02_bt.soldout {
    width: 300px;
}

.sec01_list02_bt.soldout p {
    background: #fff;
    color: #f00;
    padding: 0;
    text-align: center;
}

div#afpPage p.text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

div#afpPage .text .red {
    color: #f00;
}

.afpNittei a {
    display: block;
    width: 300px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    border: 1px solid #000;
    line-height: 45px;
    margin-right: 10px;
    position: relative;
    transition: 0.3s;
    padding: 10px;
    background-image: url(/kyozei/wp-content/uploads/2019/08/linkIcon.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
}

.afpNittei {
    margin-bottom: 50px;
}

div#afpPage p.text a {
    padding-right: 20px;
    background-image: url(/kyozei/wp-content/uploads/2019/08/linkIcon.png);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: right;
    margin-right: 6px;
}

div#afpPage h2.kotei_h2 {
    background-image: url(/kyozei/wp-content/uploads/2019/08/lg-jfp.gif);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: left 10px center;
    padding-left: 60px;
    padding-top: 10px;
}

div#afpPage h2.kotei_h2:before {
    display: none;
}

div#afpPage .member_list ul li .member_list_link {
    display: flex;
    margin: 10px 0;
}

.moushikoiAFP a {
    display: block;
    width: 300px;
    margin: 0 auto;
    text-align: center;
    background: #FF5722;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 60px;
    border-radius: 4px;
    box-shadow: 0 2px #a53a25;
    background-image: url(/kyozei/wp-content/uploads/2019/08/toFormIcon.png);
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: 20px center;
}

.moushikoiAFP {
    margin-top: 70px;
}

h3.afph3 {
    font-size: 18px;
    border-left: 4px solid #011b63;
    padding-left: 15px;
    color: #011b63;
    margin: 40px 0 20px;
}

table.kyouzaiTable {
    width: 100%;
    font-size: 16px;
    border-spacing: 5px;
    margin-bottom: 10px;
}

table.kyouzaiTable th {
    width: 30%;
    background: #f2f2f2;
}

table.kyouzaiTable th, table.kyouzaiTable td {
    padding: 10px;
    border: 1px solid #ccc;
}

div#afpPage div.text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

div#afpPage div.text ul {
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 20px;
}

div#afpPage div.text .flex .moku {
    width: 120px;
}

div#afpPage div.text .flex {
    margin-bottom: 20px;
    padding-left: 20px;
}

div#afpPage div.text .small {
    font-size: 13px;
}

div#afpPage div.text .image {
    margin: 20px 0;
}

div#afpPage div.text .box {
    border: 1px solid #ccc;
    background: #f2f2f2;
    padding: 20px;
    margin: 20px;
}

table.afpStepTable th {
    width: 25%;
}

table.afpStepTable th span {
    border: 1px solid;
    display: inline-block;
    width: 100%;
}

table.afpStepTable th, table.afpStepTable td {
    vertical-align: top;
    padding: 10px;
}

table.afpStepTable td:nth-child(3) {
    width: 70%;
    text-align: left;
}

table.afpStepTable {
    width: 100%;
    margin: 20px 0;
}

table.kyouzaiTable .th01 {
    width: 10%;
    font-size: 13px;
}

table.kyouzaiTable .th {
    background: rgba(1, 27, 99, 0.1);
}

.seminarArchiveAfp {
    margin-top: 10px;
}

.seminarArchiveAfp a {
    display: block;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    line-height: 50px;
    width: 430px;
    padding-left: 70px;
    background-image: url(/kyozei/wp-content/uploads/2019/08/lg-jfp.gif);
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: 10px center;
}

.member_calendar {
    height: 500px;
}

.seminarKinkyu {
    text-align: center;
    font-size: 24px;
    color: #f00;
    margin-bottom: 20px;
}

/**** 入会特典の案内 ****/
.kotei_tp {
    margin-bottom: 30px;
    font-size: 14px;
}

.kotei_tp span.kotei_tL {
    text-align: right;
    display: block;
    font-size: 16px;
    margin-top: 5px;
}

.kotei_tul {
    width: 75%;
    margin: 0 auto 30px;
}

.kotei_tul li {
    border: 1px solid #000;
    padding: 1rem;
    width: 380px;
    text-align: right;
    font-size: 22px;
}

.kotei_tul li .ttl {
    font-size: 20px;
    display: block;
    text-align: left;
}

.kotei_tul li .price {
    margin-top: 10px;
}

.kotei_ttable {
    margin-bottom: 30px;
}

.kotei_tul02 li {
    font-size: 15px;
}

.kotei_tul02 ul {
    background: #f2f2f2;
    padding: 20px 30px;
    line-height: 1.8;
}

/*** 19.10/29 修正分 ***/
.sec00 {
    margin-bottom: 70px;
}

.sec00_LR.flex {
    font-size: 14px;
    border-bottom: 1px solid #011b63;
    padding-bottom: 15px;
    position: relative;
}

a.sec00_a {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.sec00_L {
    background: #001c63;
    color: #fff;
    width: 150px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 30px;
}

.sec00_R {
    line-height: 30px;
    font-weight: bold;
}

span.sec00_day {
    margin-right: 30px;
}

.sec03_box {
    margin-top: 10px;
}

.sec03_box a {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #333;
    font-size: 15px;
    color: #333;
    text-align: center;
    font-weight: 600;
    line-height: 40px;
    text-decoration: none;
    position: relative;
    z-index: 1000;
    margin: 10px 0;
}

.sec03_box a:hover {
    color: #fff;
}

.sec03_box a:after {
    position: absolute;
    width: 2px;
    height: 100%;
    left: 0px;
    top: 0px;
    content: '';
    background: #333333;

    transition: all 0.3s;
}

.sec03_box a:hover:after {
    width: 100%;
    z-index: -1;
}

.sec03_box a:before {
    content: ">";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    position: absolute;
    color: #333;
}

.sec03_box a:hover:before {
    color: #fff;
}

.content_list .member_list_link {
    display: flex;
}

.content_list span.li_small {
    font-size: 12px;
}

.content_list a.flexA {
    line-height: 1.4;
}

.kyozeikyo_archive {
    width: 250px;
    margin-left: 33px;
    margin-bottom: 30px;
    position: relative;
}

.kyozeikyo_archive:nth-child(4n + 1) {
    margin-left: 0px;
}

.k_img {
    width: 250px;
    height: 200px;
    background-color: #f2f2f2;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.k_img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
}

.kyozeikyo_archive a.pa {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.archive_postbox a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
}

/*** 全税共提携生保の方 ***/
li.seiho_pr {
    position: relative;
    width: 260px;
    padding: 10px;
    border: 1px solid #000;
    font-size: 16px;
    transition: 0.3s;
    margin-left: 10px;
}

li.seiho_pr:nth-of-type(4n + 1) {
    margin-left: 0;
}

li.seiho_pr:hover {
    background: #f2f2f2;
}

a.seiho_pa {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

form.post-password-form {
    width: 1100px;
    margin: auto;
    padding: 100px 0;
    font-size: 14px;
    line-height: 1.8;
}

.memberTypeB {
    align-items: start;
}

.memberTypeB .member_list_link {
    margin-right: 10px;
}

.member_list_ttl.bigTitle {
    border-bottom: 1px solid #021a62;
    font-weight: bold;
    padding: 5px 20px;
    margin: 40px 0 20px;
}

.member_list_ttl.bigTitle p {
    font-size: 20px;
}

.btnArea a {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 2;
}

.ftCounter h2.widget-title {
    display: none;
}

.ftCounter ul.cpd {
    text-align: right;
    color: #fff;
}

.ftCounter {
    padding-bottom: 50px;
}

.archive_movie {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 60px;
}

.archive_movie_item iframe {
    width: 100%;
    height: 100%;
}

.archive_movie_item .movie {
    aspect-ratio: 16 / 9;
}

.archive_movie_item .title {
    color: #1a1a1a;
    font-size: 16px;
    padding: 8px 0;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.archive_movie_item a {
    text-decoration: none;
    height: 100%;
    display: block;
}

.archive_movie_item {
    border-bottom: 1px solid #eee;
}

.member_post_list li a {
    display: flex;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    align-items: center;
    column-gap: 40px;
    line-height: 1.8;
}

.member_post_list li a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    rotate: 45deg;
    margin-left: auto;
    flex-shrink: 0;
}

.member_list .member_post_list li {
    margin-bottom: 0;
}


@media (max-width: 500px) {

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    /*spmenu~*/
    .sp_hd {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 10000;
    }

    .sp_pr {
        position: relative;
    }

    .slicknav_menu .slicknav_menutxt {
        display: none !important;
    }

    .slicknav_menu .slicknav_icon {
        width: 100%;
        margin: 0;
    }

    .slicknav_menu .slicknav_icon-bar {
        width: 25px !important;
        height: 3px !important;
    }

    a.slicknav_btn {
        background: #fff;
        border-radius: 0px;
    }

    /*SPMENU kurukuru*/
    a.slicknav_btn.slicknav_open span.slicknav_icon-bar:first-child {
        top: 5px;
        -moz-transform: rotate(405deg);
        -webkit-transform: rotate(405deg);
        -o-transform: rotate(405deg);
        -ms-transform: rotate(405deg);
        transform: rotate(405deg);
        position: absolute;
    }

    a.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(3) {
        top: 0.4px;
        -moz-transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
        -o-transform: rotate(-405deg);
        -ms-transform: rotate(-405deg);
        transform: rotate(-405deg);
        position: absolute;
    }

    a.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(2) {
        opacity: 0;
    }

    span.slicknav_icon-bar {
        transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -webkit-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
    }

    .slicknav_menu .slicknav_icon {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
        position: relative;
    }

    /*kokomade*/
    .slicknav_menu .slicknav_menutxt {
        display: none;
    }

    .slicknav_menu {
        background-color: #fff;
        box-shadow: 0px 3px 5px #999;
    }

    a.slicknav_btn {
        margin: 12px 3px 3px 0px;
        padding: 0px 0 0 0px;
        height: 25px;
        width: 25px;
    }

    .slicknav_menu .slicknav_icon {
        height: 16px !important;
        display: block;
    }

    .slicknav_menu .slicknav_icon:after {
        display: block;
        font-size: 70%;
        color: #fff;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -20px;
        margin: 0 auto;
    }

    .slicknav_nav a {
        color: #333 !important;
        display: inline-block;
        font-weight: bold;
        line-height: 2;
        width: 100%;
        text-align: left;
        margin: 0;
        letter-spacing: normal;
        font-size: 80%;
        border: solid #ccc;
        border-width: 0 0px 1px 0;
        line-height: 30px;
        background-image: url(/kyozei/wp-content/uploads/2019/08/sp_yaji.png);
        background-size: 10px;
        background-repeat: no-repeat;
        background-position: right 15px center;
        padding-left: 25px;
    }

    .menu_list {
        width: 50%;
    }

    .menu_list a {
        text-align: center;
        background-color: #333;
        color: #fff !important;
        padding-left: 0;
    }

    .menu_list:first-child a {
        border-right: 1px solid #fff;
    }

    a.menu_pru {
        background-color: #f2f2f2;
    }

    /*~spmenu*/
    .sp_hd_logo {
        position: absolute;
        top: 12.5px;
        left: 5px;
    }

    .sp_hd_logo a {
        font-size: 6vw;
        text-decoration: none;
        color: #011b63;
        font-weight: 600;
    }

    .sp_hd_tel {
        position: absolute;
        width: 20px;
        top: 12.5px;
        right: 5px;
    }

    .sp_hd_mail {
        position: absolute;
        width: 25px;
        top: 17.5px;
        right: 48px
    }

    .slicknav_menu .slicknav_icon:before {
        display: none;
    }

    .slicknav_menu .slicknav_icon-bar {
        background-color: #011b63;
    }

    .wrap {
        max-width: 94%;
    }

    .top {
        margin-top: 50px;
    }

    .top .bx-viewport {
        margin-bottom: 5vw;
    }

    .top .bx-wrapper .bx-pager.bx-default-pager a {}

    .top .bx-wrapper .bx-controls-direction a {
        display: none;
    }

    a.bx-pager-link.active {
        border: 2px solid #011B65;
    }

    .top .bx-wrapper {
        margin: 0 auto 10vw auto;
    }

    .tab_area {
        position: static;
        margin-bottom: 5vw;
        width: 85vw;
        margin: 0 auto 5vw auto;
    }

    .tab_area label {
        margin: 0;
        font-size: 14px;
        line-height: 7vw;
    }

    .tab_area label:before {
        height: 22px;
    }

    .sec01_list ul li a {
        display: block;
        position: relative;
    }

    .sec01_list ul li span:before {
        position: absolute;
    }

    .sec01_list_date {
        margin-right: 0px;
        margin-bottom: 2vw;
        padding-left: 10px;
    }

    .tab_panel p {
        font-size: 12px;
    }

    .sec01_list_ttl p {
        font-size: 13px;
    }

    .sec01_list ul li {
        margin-bottom: 5vw;
    }

    .panel_area {
        margin-bottom: 5vw;
    }

    .sec01_L {
        width: 100%;
        margin-bottom: 10vw;
    }

    h2.sec_ttl {
        font-size: 16px;
        padding-left: 17px;
    }

    h2.sec_ttl:before {
        width: 10px;
        height: 20px;
    }

    .sec01_ttlbox {
        padding-bottom: 2vw;
        margin-bottom: 5vw;
    }

    .sec01_link a {
        font-size: 13px;
        padding-right: 20px;
    }

    .sec01_list02_datebox {
        padding: 0 2vw;
    }

    .sec01_list02_date p {
        font-size: 15px;
    }

    .sec01_list02_time p {
        font-size: 15px;
    }

    .sec01_list02_ttlbox {
        padding: 2vw;
    }

    .sec01_list02_subttl {
        margin-bottom: 1vw;
    }

    .sec01_list02_subttl p {
        font-size: 14px;
    }

    .sec01_list02_ttl p {
        font-size: 15px;
    }

    .sec01_list02_textbox {
        padding: 5vw;
    }

    .sec01_list02_text01 p {
        font-size: 13px;
    }

    .sec01_list02_text02 p {
        font-size: 14px;
    }

    .sec01_list02_text03 p {}

    .sec01_list02_text03 p {
        font-size: 14px;
    }

    .sec01_list02_text02box p span {
        font-size: 13px;
        margin-left: 3vw;
    }

    .sec01 {
        margin-bottom: 10vw;
    }

    .sec02_list ul li {
        height: 30vw;
        margin-bottom: 3vw;
        width: 100%;
    }

    .sec02_list ul li:nth-child(3) {
        margin-bottom: 0px;
    }

    .sec02_list ul li a {
        line-height: 30vw;
        font-size: 15px;
    }

    .sec02_list ul li:after {
        width: 96%;
        height: 88%;
    }

    .sec02_list ul li a:before {
        top: 19vw;
    }

    .sec02 {
        padding-bottom: 10vw;
    }

    .sec03 {
        padding: 10vw 0;
        position: relative;
    }

    .sec03_bt {
        position: static;
    }

    h2.sec_ttl.sec03_ttl {
        margin-bottom: 5vw;
        width: 100%;
    }

    .sec03box {
        padding: 5vw;
    }

    .sec03_bt {
        width: 100%;
    }

    .sec03_L {
        width: 100%;
        margin-bottom: 5vw;
    }

    .sec03_list ul li {
        margin-bottom: 2vw;
    }

    .sec03_list {
        margin-bottom: 2vw;
        width: 100%;
    }

    .sec03_R {
        width: 100%;
    }

    .sec_h3 {
        margin-bottom: 5vw;
        font-size: 15px;
        padding-left: 15px;
    }

    .sec_h3:before {
        width: 8px;
        height: 20px;
    }

    .sec03_list02 ul li {
        margin-bottom: 1vw;
    }

    .sec03_list02 ul li a {
        font-size: 13px;
    }

    .sec03_list02 {
        margin-bottom: 3vw;
    }

    .sec03_inbox_bt a {
        font-size: 13px;
        line-height: 35px;
    }

    .sec03_inbox_bt {
        height: 35px;
        margin-top: 0px;
        position: relative;
        bottom: 0;
    }

    .sec03_inbox {
        width: 100%;
        padding: 5vw;
    }

    nav.ft_nav ul li {
        width: 50%;
    }

    nav.ft_nav {
        margin-bottom: 5vw;
    }

    .top_footer {
        padding: 10vw 0;
    }

    .ft_logo p {
        font-size: 20px;
    }

    .ft_logo {
        margin-bottom: 2vw;
    }




    .ft_text p {
        font-size: 12px;
        line-height: 1.8;
    }

    .ft_text p a {
        color: #fff;
    }

    .ft_text p span {
        font-size: 12px;
    }

    .ft_L_link01 {
        margin-bottom: 5vw;
    }

    .ft_L_link01 ul li {
        width: 48%;
    }

    .ft_L_ttl p {
        font-size: 15px;
    }

    .ft_L_ttl p span {
        display: block;
        font-size: 11px;
    }

    .ft_L_ttl {
        padding-bottom: 2vw;
        margin-bottom: 4vw;
    }

    .ft_L_link02 ul li {
        margin-bottom: 2vw !important;
        width: 100%;
        height: 35px;
    }

    .ft_L_link02 ul li:last-child {
        margin-bottom: 0px !important;
    }

    .ft_L_link02 {
        margin-bottom: 5vw;
    }

    .ft_L_link02 ul li a {
        font-size: 13px;
        line-height: 35px;
        text-align: left;
        padding-left: 6vw;
    }

    .ft_L_link02 ul li a:after {
        display: none;
    }

    .ft_box {
        margin-bottom: 5vw;
    }

    .ft_L_link02 ul li a:before {
        right: 4vw;
        font-size: 15px;
    }

    .ft_L_link01 ul li a:before {
        display: none;
    }

    .ft_map {
        height: 45vw;
        padding: 1vw;
        margin-bottom: 2vw;
    }

    .ft_L {
        width: 100%;
        margin-bottom: 5vw;
    }

    .ft_L_link03 ul li:first-child {
        width: 14vw;
        margin-right: 5vw;
    }

    .ft_L_link03 ul li:last-child {
        width: 17vw;
    }

    /*kotei*/
    .kotei_h1box {
        height: 40vw;
        margin-top: 50px;
    }

    h1.kotei_h1 {
        line-height: 40vw;
        font-size: 6vw;
    }

    .kotei_wrap {
        margin: 10vw 0;
    }

    h2.kotei_h2 {
        font-size: 16px;
        padding-left: 15px;
        padding-bottom: 2vw;
    }

    h2.kotei_h2n {
        padding-left: 40px;
    }

    h2.kotei_h2n span.h2_number {
        width: 18px;
        height: 18px;
        line-height: 16px;
        font-size: 12px;
        left: 15px;
        top: 2px;
    }

    h2.kotei_h2:before {
        width: 8px;
        height: 18px;
        top: 2px;
    }

    .kotei_list.business_list ul li {
        padding: 5vw;
        margin-bottom: 5vw;
    }

    .kotei_list_ttl {
        margin-bottom: 4vw;
    }

    .kotei_list_ttl p {
        font-size: 15px;
    }

    .kotei_list_ttl p span {
        width: 12px;
        height: 12px;
        border-radius: 0px;
        font-size: 12px;
        line-height: 18px;
        top: 4px;
    }

    .kotei_list_textbox {
        margin-bottom: 2vw;
    }

    .kotei_list_textbox_text {
        width: 100%;
        border-left: 0px;
        padding-left: 0px;
    }

    .kotei_list_textbox_ttl {
        width: 100%;
        padding-left: 0px;
    }

    .kotei_list_textbox_ttl_A {
        padding-top: 0px;
    }

    .kotei_list_textbox p {
        font-size: 14px;
    }

    .kotei_list_small p {
        font-size: 10px;
    }

    .kotei_list_right {
        text-align: left;
    }

    span.kotei_small {
        display: inline-block;
        margin: 0 5px;
    }

    .kotei_list_textbox_text_A {
        padding-top: 0px;
    }

    .fixed_bana {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 5vw;
    }

    .home footer.top_footer {
        margin-bottom: 0;
        /*margin-bottom: 45vw;*/
    }

    /*member*/
    .member_list_link a {
        width: 48%;
        line-height: 35px;
        font-size: 13px;
        text-align: left;
        padding-left: 4vw;
        margin-bottom: 2vw;
    }

    div#campaigns .member_list_link a {
        width: 48%;
    }

    div#campaigns p.member_p {
        font-size: 12px;
    }

    .member_list_link2 a {
        width: 48%;
        height: 67vw;
        line-height: 35px;
        font-size: 13px;
        text-align: left;
        padding-left: 4vw;
        margin-bottom: 2vw;
    }

    .member_list_link a:nth-child(2n) {
        margin-right: 0px;
    }

    .member_list_link2 a:nth-child(2n) {
        margin-right: 0px;
    }

    .member_list ul li {
        margin-bottom: 5vw;
        margin-top: 5vw;
    }

    .member_list_ttl p {
        font-size: 15px;
    }

    .member_list_ttl {
        margin-bottom: 1vw;
    }

    /*kyozeikyo*/
    .kyozeikyo_new_ttl p {
        font-size: 15px;
    }

    .kyozeikyo_logo {
        width: 70%;
        margin: 0 auto 5vw auto;
    }

    .kyozeikyo_new_ttl {
        margin-bottom: 2vw;
    }

    .kyozeikyo_new_img {
        width: 100%;
        height: 55vw;
        margin-bottom: 5vw;
    }

    .kyozeikyo_new_date {
        margin-bottom: 2vw;
    }

    .kyozeikyo_new_date p {
        font-size: 14px;
    }

    .kyozeikyo_new_link {
        width: 100%;
    }

    .kyozeikyo_new_link a {
        width: 48%;
        font-size: 13px;
        text-align: left;
        padding-left: 4vw;
    }

    .kyozeikyo_new_link a:before {
        right: 2vw;
    }

    /*back*/
    .kyozeikyo_back_list {
        margin-top: 5vw;
    }

    .kyozeikyo_year p {
        font-size: 15px;
    }

    .kyozeikyo_year {
        margin-bottom: 1vw;
    }

    .kyozeikyo_back_inlistbox {
        width: 22%;
        margin-right: 3.5vw;
    }

    .kyozeikyo_back_inlistbox:nth-child(2n) {
        margin-right: 3.5vw;
    }

    .kyozeikyo_back_inlistbox:nth-child(4n) {
        margin-right: 0px;
    }

    .kyozeikyo_back_inlist_img {
        height: 20vw;
    }

    .kyozeikyo_back_list_ttl p {
        font-size: 12px;
        text-align: center;
    }

    .kyozeikyo_back_list ul li {
        margin-bottom: 7vw;
    }

    .kyozeikyo_new_icon p {
        font-size: 11px;
        line-height: 20px;
    }

    .kyozeikyo_new_icon {
        height: 20px;
        width: 55px;
        top: -5px;
        left: -3px;
    }

    p.jyumbi {
        margin-top: 10vw;
        font-size: 20px;
    }

    .privacy_text p {
        font-size: 13px;
    }

    .privacy_text p span {
        margin: 4vw 0;
    }

    .privacy_text_right.privacy_text {
        margin-top: 5vw;
    }

    dl.privacy_dl dt {
        font-size: 13px;
        margin-bottom: 2vw;
    }

    dl.privacy_dl dd {
        font-size: 13px;
        margin-left: 0px;
        margin-bottom: 5vw;
    }

    /*contact*/
    .mw_wp_form p {
        font-size: 13px;
    }

    .kotei_table td input[type="text"] {
        width: 100%;
    }

    .kotei_table td input[type="email"] {
        width: 100%;
    }

    .kotei_table th {
        padding: 3vw;
        width: 100%;
        display: block;
        font-size: 13px;
    }

    .kotei_table td {
        width: 100%;
        display: block;
        border-width: 0px 1px;
        padding: 3vw;
        font-size: 13px;
    }

    .kotei_table table {
        border-bottom: 1px solid #ccc;
    }

    textarea.textarea {
        width: 100%;
    }

    .contact_table {
        margin-bottom: 5vw;
    }

    button.back-btn {
        width: 60px;
    }

    button.soshin {
        width: 200px;
    }

    .soshikizu_img {
        margin-top: 5vw;
    }

    .location_mapbox {
        margin-top: 5vw;
    }

    .kotei_ttl p {
        font-size: 15px;
    }

    .kotei_text p {
        font-size: 13px;
    }

    .location_map {
        height: 50vw;
    }

    .union_box {
        margin-right: 0px;
        margin-bottom: 3vw;
    }

    .union_box01.flex {
        display: block;
    }

    .union_box:last-child {
        margin-bottom: 0px;
    }

    .union_box a {
        width: 100%;
    }

    .union_table_text {
        margin-bottom: 5vw;
    }

    .kotei_text_namebox p {
        font-size: 13px;
    }

    .kotei_text_namebox p span {
        font-size: 18px;
    }

    .kotei_name01 {
        margin-right: 15px;
    }

    .kotei_text_namebox.flex {
        width: 250px;
    }

    #sitemap_list li a {
        font-size: 14px;
    }

    .affiliations {
        margin-right: 0;
        width: 100%;
        height: 35px;
        margin-bottom: 2vw;
    }

    .affiliations a {
        line-height: 35px;
        font-size: 14px;
    }

    .affiliations_outer ul li {
        margin-bottom: 5vw;
    }

    .affiliations_outer {
        margin-top: 5vw;
    }

    .societybox {
        margin-bottom: 5vw;
    }

    .society_list {
        margin-top: 2vw;
    }

    .society_list ul li {
        padding-left: 0;
        margin-bottom: 10vw;
        display: block;
    }

    .society_list ul li .image {
        width: 100%;
        border: none;
        padding: 0;
        margin-bottom: 10px;
    }

    .society_list ul li .content {
        width: 100%;
        padding: 0;
    }

    .society_list_ttl p {
        font-size: 15px;
    }

    .society_list_text p {
        font-size: 13px;
    }

    .society_list ul li:nth-child(1) a {
        width: 160px;
    }

    .society_list ul li:nth-child(2) a {
        width: 170px;
    }

    .society_list ul li:nth-child(3) a {
        width: 180px;
    }

    .societybox_boxA {
        margin-top: 0;
        margin-bottom: 2vw;
        padding: 3vw;
        width: 100%;
    }

    .societybox_boxA_ttl p {
        font-size: 14px;
    }

    input.your_tel {
        width: 25vw !important;
    }

    .single_ttl p span {
        font-size: 13px;
    }

    .single_ttl p {
        font-size: 15px;
        padding-left: 15px;
    }

    .single_ttl:before {
        width: 7px;
    }

    .single_ttl {
        margin-bottom: 2vw;
    }

    .single_text p {
        font-size: 13px;
        text-align: justify;
    }

    .single_text h2 {
        margin-bottom: 3vw;
        font-size: 15px;
    }

    .single_text h3 {
        font-size: 14px;
        margin-bottom: 2vw;
    }

    .single_text h4 {
        font-size: 13px;
    }

    a.ichiran_link {
        height: 35px;
        line-height: 35px;
        font-size: 13px;
    }

    .archive.flex article {
        width: 100%;
        margin-right: 0px;
        padding: 4vw;
        margin-bottom: 4vw;
    }

    .nav-links {
        margin-bottom: 0px;
    }

    .member_list_link a.flexA {
        width: 100% !important;
        margin: 0 0 2vw;
    }

    table.seminerTable {
        font-size: 13px;
    }

    table.seminerTable th {
        width: 30%;
    }

    .single_kiji {
        width: 100%;
    }

    .moushikomi a {
        width: 100%;
        font-size: 16px;
    }

    .archive .sec01_list02 ul li {
        width: 100%;
        margin: 0 0 20px !important;
    }

    .sec01_list02_bt.soldout {
        width: 100%;
    }

    .seminarArchiveAfp a {
        width: 100%;
        font-size: 13px;
        padding: 10px 10px 10px 50px;
        line-height: 20px;
        background-size: 30px;
    }

    div#afpPage .member_list ul li .member_list_link {
        display: block;
        margin: 1vw 0;
    }

    table.applyTable th {
        width: 100%;
    }

    div#afpPage div.text {
        font-size: 14px;
    }

    div#afpPage div.text .small {
        font-size: 11px;
    }

    table.kyouzaiTable {
        font-size: 12px;
    }

    table.afpStepTable {
        font-size: 12px;
    }

    table.afpStepTable th, table.afpStepTable td {
        padding: 5px;
    }

    table.kyouzaiTable th {
        width: 25%;
    }

    table.kyouzaiTable .th01 {
        width: 15%;
        font-size: 10px;
        padding: 3px;
        line-height: 1.5;
    }

    table.kyouzaiTable th {
        padding: 5px;
    }

    div#afpPage div.text .box {
        padding: 10px;
        margin: 10px;
    }

    .seminarKinkyu {
        font-size: 20px;
    }

    /**** (SP)入会特典の案内 ****/
    .kotei_tp {
        margin-bottom: 5vw;
        font-size: 13px;
    }

    .kotei_tp span.kotei_tL {
        font-size: 15px;
        margin-top: 5px;
    }

    .kotei_tul {
        width: 100%;
        margin: 0 auto 5vw;
    }

    .kotei_tul ul {
        align-items: stretch;
    }

    .kotei_tul li {
        width: 48%;
        max-width: 380px;
        font-size: 14px;
        padding: 2vw;
        flex-direction: column;
        display: flex;
    }

    .kotei_tul li .ttl {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .kotei_tul li .price {
        margin-top: auto;
    }

    .kotei_tul02 ul {
        padding: 5vw;
    }

    .benePDF {
        display: block;
    }

    .benePDF a {
        margin: 20px auto;
    }

    .benePDF a.entry {
        padding: 20px 30px;
    }

    .content_list .member_list_link {
        display: flex;
        display: block;
        margin: 1vw 0;
    }

    h2.kotei_h2 span {
        font-size: 13px;
    }

    .kyozeikyo_archive {
        width: 46%;
        margin-left: 3.5vw;
    }

    .k_img {
        width: 100%;
        height: 20vw;
        background-color: #f2f2f2;
        position: relative;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .archive_k .ttl {
        font-size: 12px;
    }

    .kyozeikyo_archive:nth-child(2n + 1) {
        margin-left: 0px;
    }

    .sec00 {
        margin-bottom: 10vw;
    }

    .sec00_LR.flex {
        padding-bottom: 0;
        border: 1px solid #011c63;
    }

    a.sec00_a {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
    }

    .sec00_L {
        width: 100%;
        margin-right: 0;
    }

    .sec00_R {
        width: 100%;
        line-height: 40px;
        font-size: 13px;
        padding: 0 2vw;
    }

    span.sec00_day {
        margin-right: 30px;
    }


    /*** 全税共提携生保の方 ***/
    #seiho li.seiho_pr {
        width: 48%;
        font-size: 12px;
        margin-bottom: 2vw;
        margin-top: 2vw;
    }

    li.seiho_pr:nth-of-type(2n + 1) {
        margin-left: 0;
    }

    .member_list ul {
        margin: 0 0 5vw;
    }

    form.post-password-form {
        width: 96%;
        margin: auto;
    }

    h2.kotei_h2 .pdfbtn .text {
        font-size: 12px;
        margin-right: 0;
    }

    h2.kotei_h2 .pdfbtn .text span {
        font-size: 9px;
    }

    h2.kotei_h2 .pdfbtn .icon {
        width: 20px;
    }

    h2.kotei_h2 .pdfbtn a {
        margin-left: 5px;
    }

    div#seiho .member_list_link a {
        width: 48%;
    }

    .memberTypeB .member_list_link {
        margin: 10px 0 0;
    }

    .member_list_ttl.bigTitle p {
        font-size: 15px;
    }

    .member_list_ttl.bigTitle {
        padding-left: 10px;
    }

    .archive_movie {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 40px;
    }

    .member_list .member_post_list li {
        margin-top: 0;
    }

    .member_post_list li a {
        font-size: 14px;
    }

}
/* スマホCSS 500px */


/* 2025.09 */
.noEntry {
  font-size: 16px;
  padding: 5em 0;
  width: 100%;
  text-align: center;
}
