@charset "UTF-8";


/* ======================================================

   common-Setting

========================================================= */
html {}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  color: #232323;
  -webkit-text-size-adjust: 100%;
  font-family:"游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
h1,h2,h3,h4,h5,h6,
input,button,textarea,select,
p,blockquote,
table,th,td,pre,address,
ul,ol,li,dl,dt,dd {
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  line-height: 1.6;
}
li { list-style: none; }
th,td { vertical-align: middle; }
select { visibility: visible !important; }

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #2ca6e0;
  text-decoration: none;
}
a:hover {
  color: #2ca6e0;
  text-decoration: underline;
}

.mb_10 { margin-bottom: 10px !important; }
.mb_20 { margin-bottom: 20px !important; }
.mb_30 { margin-bottom: 30px !important; }
.mb_40 { margin-bottom: 40px !important; }
.mb_50 { margin-bottom: 50px !important; }
.mb_60 { margin-bottom: 60px !important; }
.mb_70 { margin-bottom: 70px !important; }
.mb_80 { margin-bottom: 80px !important; }
.mb_90 { margin-bottom: 90px !important; }
.mb_100 { margin-bottom: 100px !important; }

.mb_t { margin-bottom: 20px !important; }
.mb_s { margin-bottom: 30px !important; }
.mb_m { margin-bottom: 50px !important; }
.mb_l { margin-bottom: 70px !important; }

.f_b { font-weight: bold; }
.f_10 { font-size: 10px !important; }
.f_12 { font-size: 12px !important; }
.f_14 { font-size: 14px !important; }
.f_16 { font-size: 16px !important; }
.f_18 { font-size: 18px !important; }
.f_20 { font-size: 20px !important; }
.f_22 { font-size: 22px !important; }
.text { margin-bottom: 1em; }
.txt-l { text-align: left !important; }
.txt-c { text-align: center !important; }
.txt-r { text-align: right !important; }

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.sp_area { display: block;}
.pc_area { display: none; }

.wrapper {
  padding-top: 70px;
  overflow-x: hidden;
  position: relative;
}
.index_main { margin-bottom: 70px;}
.sub_page_main {
    margin: 0 auto 60px;

}


/* ぱんくず */
.topicpath { width: 90%;margin: 0 auto;}
.topicpath ul {
    display: flex;
    justify-content: flex-end;
}
.topicpath li {
  line-height: 1.4;
  font-size: 12px;
    position: relative;
    padding-right: 35px;
}
.topicpath li a { color: #232323; text-decoration: none;}
.topicpath li::before {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background: #2ca6e0;
    position: absolute;
    top: 50%;
    right: 8px;
}
.topicpath li:last-child { padding-right: 0; color: #A7A7A7;}
.topicpath li:last-child:before {
    content: none;
}

@media screen and (min-width: 1025px) {
  .mb_t { margin-bottom: 30px !important; }
  .mb_s { margin-bottom: 50px !important; }
  .mb_m { margin-bottom: 80px !important; }
  .mb_l { margin-bottom: 100px !important; }
  

p,ul,ol,li,dl,dt,dd {
  line-height: 2;
}
    
    
    .sp_area { display: none; }
  .pc_area { display: block; }
  
  .hover_opacity { transition: 0.3s; }
  .hover_opacity:hover {
    transition: 0.3s;
    opacity: 0.8;
  }

  .wrapper{ padding-top: 0; }
    .index_main { margin-bottom: 130px;}
  .sub_page_main {
      margin: 0 auto 120px;
      padding-top: 155px;
      background: url("../images/h2_bg.jpg") no-repeat right 110px;
    }
  .topicpath { margin-bottom: 50px; }
  .topicpath ul { max-width: 1200px; }
}

/* ======================================================

   header

========================================================= */
.outer_header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #FFF;
}
.header {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.header .logo {
    width: 210px;
    position: absolute;
    top: 10px;
    left: 10px;
}
nav.global_navi,
.header_contents_b {
  display: none;
}

/* hamburger menu */
.hamburger_menu_cover {
  position: fixed;
  top: 5px;
  right: 10px;
  background: #182987;
  z-index: 999;
    border-radius: 5px;
}
.hamburger_menu {
  display: flex;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 15px;
  cursor: pointer;
    border-radius: 5px;
}
.hamburger_menu__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  position: relative;
  transition: all 0.5s;
}
.hamburger_menu__line::before,
.hamburger_menu__line::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  transition: all 0.5s;
}

.hamburger_menu__line::before { transform: translateY(-8px); }
.hamburger_menu__line::after { transform: translateY(8px); }
.hamburger_menu.open .hamburger_menu__line { background-color: transparent; }
.hamburger_menu.open .hamburger_menu__line::before { transform: rotate(45deg); }
.hamburger_menu.open .hamburger_menu__line::after { transform: rotate(-45deg); }

.nav_sp {
    box-sizing: border-box;
	position: fixed;
	top: 0px;
	left: 0;
    right: 0;
    margin: auto;
	width: 100%;
	height: 100vh;
	background: #fff;
	z-index: 998;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-16px);
    overflow: scroll;
	transition:
		opacity 0.4s ease,
		transform 0.4s ease,
		visibility 0.4s ease;
}
.nav_sp.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
    transform: translateY(0);
}
.nav_sp_inner {
    padding: 80px 5% 30px;
}

.booklet_bnr { margin: 0 auto 10px; position: relative; font-size: 14px;}
.booklet_bnr:after {
    content: "";
    display: block;
    width: 40px;
    height: 50px;
    background: url("../images/pamphlet.png") no-repeat;
    background-size: contain;
    position: absolute;
    right: 35px;
    top: -2px;
}

.booklet_bnr span {
    font-size: 18px;
    position: relative;
}
.booklet_bnr span:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    margin: auto;
}

.booklet_bnr a {
    display: block;
    width: 100%;
    padding: 13px 10px 10px;
    color: #fff;
    background: #2ca6e0;
    border-radius: 5px;
    font-weight: bold;
    position: relative;
}
.booklet_bnr a:before,
.booklet_bnr a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
}

.booklet_bnr a:after {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    right: 10px;
    transform: translateY(-50%) ;
}
.booklet_bnr a:before {
	right: 18px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #2ca6e0;
	border-right: 1px solid #2ca6e0;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}



.sp_menu > li > a {
    display: block;
    width: 100%;
    padding: 12px 0;
    box-sizing: border-box;
    color: #232323;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}
.sp_menu > li > ul > li { margin-bottom: 5px;}
.sp_menu > li > ul > li > a {
    display: block;
    width: 100%;
    background: #eee;
    border-radius: 5px;
    color: #232323;
    text-decoration: none;
    padding: 7px 15px;
    font-weight: bold;
    font-size: 14px;
    position: relative;
}
.sp_menu > li > ul > li > a:before {
    content: "";
    display: block;
    position: absolute;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #182987;
	border-right: 1px solid #182987;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}


.sp_menu > li > p {
    padding: 10px 0;
    font-weight: bold;
}

.nav_sp_inner .contact_block {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    border: 2px solid #d3e9f3;
    border-radius: 10px;
    margin-bottom: 10px;
}
.nav_sp_inner .contact_block p.ttl_text {
    font-weight: bold;
    text-align: center;
    color: #182987;
    line-height: 1.2;
}
.nav_sp_inner .contact_block p.tel { text-align: center; line-height: 1.2;}
.nav_sp_inner .contact_block p.tel span {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.025em;
    padding-left: 26px;
    position: relative;
}
.nav_sp_inner .contact_block p.tel span:before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background: url("../images/tel_icon.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0;
}
.nav_sp_inner .contact_block p.tel a { color: #232323; text-decoration: none;}
.nav_sp_inner .contact_block p.hour_text {
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
}
.nav_sp_inner .contact_btn_list {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}
.nav_sp_inner .contact_btn_list li {
    width: 49%;
}
.nav_sp_inner .contact_btn_list li a {
    display: block;
    width: 100%;
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
}
.nav_sp_inner .contact_btn_list li p {
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
.nav_sp_inner .contact_btn_list li p:first-child { font-size: 12px; margin-bottom: 3px;}

.nav_sp_inner .contact_btn_list li.line a { background: #06c755;}
.nav_sp_inner .contact_btn_list li.mail a { background: #fa8f27;}
.nav_sp_inner .contact_btn_list li p:nth-child(2) span {
    position: relative;
    padding-left: 15px;
}
.nav_sp_inner .contact_btn_list li p:nth-child(2) span:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) ;
    
}
.nav_sp_inner .contact_btn_list li.line p:nth-child(2) span:before {
    width: 15px;
    height: 15px;
    background: url("../images/line_icon.png") no-repeat;
    background-size: contain;
    left: -3px;
}
.nav_sp_inner .contact_btn_list li.mail p:nth-child(2) span:before {
    width: 12px;
    height: 12px;
    background: url("../images/mail_icon_w.png") no-repeat;
    background-size: contain;
    left: 0;
}
.nav_sp_inner .bukken { width: 90%; margin: 20px auto 10px;}
.nav_sp_inner .bukken a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #2ca6e0;
    border-radius: 10px;
    color: #2ca6e0;
    text-decoration: none;
    padding: 12px 20px;
    position: relative;
    font-weight: bold;
    background: #fffac6;
}
.nav_sp_inner .bukken a:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url("../images/bukken_icon.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.nav_sp_inner .bukken span { font-size: 12px;}
.nav_sp_inner .f_logo {
    width: 80%;
    max-width: 400px;
    margin: 20px auto 10px;
}
.nav_sp_inner .info_text {
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.nav_sp_inner .map_btn { width: 178px; margin: 0 auto 10px;}
.nav_sp_inner .map_btn a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dddddd;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    height: 50px;
    color: #232323;
    text-decoration: none;
    font-weight: bold;
}
.nav_sp_inner .map_btn span { padding-left: 20px; position: relative;}
.nav_sp_inner .map_btn span:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: -3px;
    background: url("../images/map_icon.png") no-repeat;
    background-size: contain;
}

.nav_sp_inner .youtube_bnr {
    width: 80%;
    margin: 0 auto 10px;
}
.nav_sp_inner .privacy_text { text-align: center;}
.nav_sp_inner .privacy_text a { color: #232323; text-decoration: none;}


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

    .outer_header {
        width: 100%;
        height: 155px;
    }
    .header {
        width: 100%;
        height: 95px;
        z-index: 999;
        background: #fff;
    }
    .header .logo {
        width: 287px;
        top: 12px;
        left: 15px;
    }
    
    .header .header_contents_b {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: absolute;
        top: 13px;
        right: 10px;
    }
    .header .header_contents_b .bukken {
        width: 190px;
        line-height: 1.3;
        letter-spacing: 0.025em;
        margin-right: 10px;
    }
    .header .header_contents_b .bukken a {
        display: block;
        width: 100%;
        height: 70px;
        box-sizing: border-box;
        border: 1px solid #2ca6e0;
        border-radius: 10px;
        color: #2ca6e0;
        text-decoration: none;
        padding: 15px 15px 0;
        position: relative;
        font-weight: bold;
        background: #fffac6;
        transition:0.3s;
        font-size: 15px;
    }
    .header .header_contents_b .bukken a:hover { background: #d5edf9;}
    .header .header_contents_b .bukken a:after {
        content: "";
        display: block;
        width: 15px;
        height: 15px;
        background: url("../images/bukken_icon.png") no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
    }
    .header .header_contents_b .bukken span { font-size: 14px;}
    
    .header .header_contents_b .tel { padding-left: 25px; position: relative; margin-right: 10px;}
    .header .header_contents_b .tel .num {
        font-size: 32px;
        font-weight: 700;
        font-family: "Roboto", sans-serif;
        letter-spacing: 0;
        line-height: 1.2;
    }
    .header .header_contents_b .tel .num:before {
        content: "";
        display: block;
        width: 23px;
        height: 23px;
        background: url("../images/tel_icon.png") no-repeat;
        background-size: contain;
        position: absolute;
        top: 6px;
        left: 0;
    }
    
    .header .header_contents_b .line,
    .header .header_contents_b .mail {
        width: 250px;
    }
    .header .header_contents_b .line { margin-right: 10px;}
    .header .header_contents_b .line p,
    .header .header_contents_b .mail p {
        color: #fff;
        line-height: 1.2;
        font-weight: bold;
        text-align: center;
    }
    .header .header_contents_b .line p:nth-child(1),
    .header .header_contents_b .mail p:nth-child(1) { font-size: 14px; margin-bottom: 5px;}
    .header .header_contents_b .line p:nth-child(1) span,
    .header .header_contents_b .mail p:nth-child(1) span { font-size: 16px;}
    .header .header_contents_b .line p:nth-child(2),
    .header .header_contents_b .mail p:nth-child(2) { font-size: 18px; letter-spacing: 0.025em;}
    
    .header .header_contents_b .line a,
    .header .header_contents_b .mail a {
        display: block;
        width: 100%;
        height: 70px;
        box-sizing: border-box;
        color: #fff;
        text-decoration: none;
        padding: 12px 0 0 50px;
        position: relative;
        border-radius: 10px;
        transition:0.3s;
    }
    .header .header_contents_b .line a:hover,
    .header .header_contents_b .mail a:hover { opacity: 0.8;}
    .header .header_contents_b .line a { background: #06c755;}
    .header .header_contents_b .mail a { background: #fa8f27;}
    
    .header .header_contents_b .line a:before,
    .header .header_contents_b .mail a:before {
        content: "";
        display: block;
        position: absolute;
    }
    .header .header_contents_b .line a:before {
        width: 48px;
        height: 48px;
        background: url("../images/line_icon.png") no-repeat;
        background-size: contain;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .header .header_contents_b .mail a:before {
        width: 30px;
        height: 30px;
        background: url("../images/mail_icon_w.png") no-repeat;
        background-size: contain;
        left: 20px;
        top: 20px
    }
    
    .hamburger_menu_cover { display: none;}
    
    /*---------- global navi ---------*/
    nav.global_navi {
        display: block;
        width: 100%;
        background-color: #182987;
        height: 60px;
    }
    .gnav {
        width: 100%;
        display: flex;
        justify-content: center;
        list-style: none;
    }
    .gnav > li {
        text-align: center;
        position: relative;
    }
    .gnav a {
        display: block;
        padding: 15px 28px;
        color: #FFFFFF;
        text-decoration: none;
        font-weight: bold;
        box-sizing: border-box;
    }
    .gnav a:hover {
        color: rgba(255,255,255,0.7);
    }

    .gnav > li .gnav_parent {
        color: #fff;
        font-weight: bold;
        position: relative;
        height: 60px;
        line-height: 60px;
        padding: 0 28px 0 28px;
    }
    .gnav > li .gnav_parent span { padding-right: 20px; position: relative;}
    /* サブメニューを持つ親項目に下向き矢印 */
    .gnav_parent span::after {
        content: "";
        display: inline-block;
        position: absolute;
        top: 5px;
        right: 0;
        width: 8px;
        height: 8px;
        border-right: 1px solid #FFFFFF;
        border-bottom: 1px solid #FFFFFF;
        transform: rotate(45deg);
    }

/* サブメニュー本体 */
    .gnav_submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: #FFFFFF;
    list-style: none;
    padding: 0 20px;
        box-sizing: border-box;
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 100;
        width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px); /* 10px下から */
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}
    .gnav_submenu > li {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }
    .gnav_submenu li:last-child {
        border-bottom: none;
    }

/* サブメニュー内のリンク（右矢印付き） */
.gnav_submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #232323;
    text-align: left;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.gnav_submenu a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #182987;
    border-right: 1px solid #182987;
    transform: rotate(45deg);
    margin-left: 10px;
}
.gnav_submenu a:hover {
    color: #182987;
}
/* ホバーでサブメニュー展開 */
.gnav > li:hover > .gnav_submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* 元の位置へ */
}
/* 画面全体のオーバーレイ */
.gnav_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 50;
    pointer-events: none;
}
.gnav_overlay.is-active {
    display: block;
}

/* nav自体のz-indexを上げてオーバーレイの上に出す */
nav.global_navi {
    position: relative;
    z-index: 100;
}
}
/* ======================================================

   footer contact

========================================================= */
.footer_contact {
    width: 100%;
    background: url("../images/foot_contact_bg.jpg") no-repeat center top;
    background-size: cover;
    padding: 60px 0;
}
.booklet_banner {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    box-sizing: border-box;
    background: #2ca6e0;
    border-radius: 10px;
    position: relative;
    padding: 10px;
    box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.25);
}

.booklet_banner a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.booklet_banner .inner_block {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 20px 15px 10px;
    background: #2ca6e0;
}
.booklet_banner .inner_block p {
    color: #fff;
    font-weight: bold;
}

.booklet_banner .inner_block .left_block p.text01 {
    font-size: 17px;
    color: #182987;
    letter-spacing: 0;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff,
  -1px 1px 0 #fff,  1px -1px 0 #fff,
  1px 0 0 #fff, -1px  0 0 #fff,
  0 1px 0 #fff,  0 -1px 0 #fff;
    text-align: center;
    line-height: 1.4;
}
.booklet_banner .inner_block .left_block p.text01 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
    background: #182987;
    color: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    text-align: center;
    box-sizing: border-box;
    font-size: 17px;
    margin: 0 1px;
  text-shadow: 0px 0px 0 transparent, -0px -0px 0 transparent,
  -0px 0px 0 transparent,  0px -0px 0 transparent,
  0px 0 0 transparent, -0px  0 0 transparent,
  0 0px 0 transparent,  0 -0px 0 transparent;
}

.booklet_banner .inner_block .left_block p.text02 {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.075em;
    line-height: 1.4;
}
.booklet_banner .inner_block .left_block p.text03 {
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    line-height: 1.2;
}
.booklet_banner .inner_block .left_block p.text03 span {
    color: #2ca6e0;
    background: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 14px;
}
.booklet_banner .inner_block .right_block {
    display: flex;
    justify-content: space-between;
}
.booklet_banner .inner_block .right_block .booklet_img {
    width: 38%;
}
.booklet_banner .inner_block .right_block .text_b {
    width: 58%;
}
.booklet_banner .inner_block .right_block .text_b .text01 { text-align: center; letter-spacing: 0.05em; margin-top: 5px;}
.booklet_banner .inner_block .right_block .text_b .text01 span {
    position: relative;
    padding-right: 40px;
}
.booklet_banner .inner_block .right_block .text_b .text01 span:before {
    content: "";
    display: block;
    width: 30px;
    height: 17px;
    position: absolute;
    top: 0;
    right: 0;
    background: url("../images/arrow_icon01.png") no-repeat center top;
    background-size: contain;
}


.footer_contact_bnr {
    width: 100%;
    background: rgba(255,255,255,0.5);
    padding: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    position: relative;
}
.footer_contact_bnr .inner_block {
    background: #fff;
    border-radius: 20px;
    padding: 30px 15px 15px;
    box-sizing: border-box;
    position: relative;
}
.footer_contact_bnr .f_text_block .free_fukidashi {
    width: 60px;
    position: absolute;
    top: -30px;
    right: -20px;
}

.footer_contact_bnr .f_text_block .free_fukidashi span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    background: #182987;
    height: 60px;
    color: #fff;
    box-sizing: border-box;
    position: relative;
    border-radius: 50%;
    font-weight: bold;
    letter-spacing: 0;
    z-index: 2;
}
.footer_contact_bnr .f_text_block .free_fukidashi span:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  border: 14px solid transparent;
  border-left: 14px solid #182987;
  z-index: 0;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

.footer_contact_bnr .f_text_block .fukidashi {
    text-align: center; 
}
.footer_contact_bnr .f_text_block .fukidashi p {
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.footer_contact_bnr .f_text_block .fukidashi p:before,
.footer_contact_bnr .f_text_block .fukidashi p:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 18px;
    height: 22px;
}
.footer_contact_bnr .f_text_block .fukidashi p:before {
    background: url("../images/fukidashi_img.png") no-repeat;
    background-size: contain;
    left: 0;
}
.footer_contact_bnr .f_text_block .fukidashi p:after {
    background: url("../images/fukidashi_img.png") no-repeat;
    background-size: contain;
    right: 0;
    transform: scale(-1, 1);
}
.footer_contact_bnr .f_text_block .fukidashi p span { color: #2ca6e0;}
.footer_contact_bnr .f_text_block .f_contact_ttl {
    font-size: 29px;
    letter-spacing: 0.075em;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 10px;
}
.footer_contact_bnr .f_text_block .f_contact_ttl span {
    color: #182987;
    background:linear-gradient(transparent 60%, #fff68e 60%);
}
.footer_contact_bnr .f_text_block p.txt {
    font-weight: bold;
    text-align: center;
}

.footer_contact_bnr .f_contact_bnr_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 15px auto;
}
.footer_contact_bnr .f_contact_bnr_list li { margin-bottom: 10px; }
.footer_contact_bnr .f_contact_bnr_list li:last-child { margin-bottom: 0;}


.footer_contact_bnr .f_contact_bnr_list li.line a {
    display: block;
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 18px 20px 10px 20px;
    background: #06c755;
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
    position: relative;
}
.footer_contact_bnr .f_contact_bnr_list li.mail a {
    display: block;
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 18px 20px 10px 20px;
    background: #fa8f27;
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
    position: relative;
}

.footer_contact_bnr .f_contact_bnr_list li.line a:before,
.footer_contact_bnr .f_contact_bnr_list li.line a:after,
.footer_contact_bnr .f_contact_bnr_list li.mail a:before,
.footer_contact_bnr .f_contact_bnr_list li.mail a:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 15px;
  width: 15px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}

.footer_contact_bnr .f_contact_bnr_list li.line a:before,
.footer_contact_bnr .f_contact_bnr_list li.mail a:before {
  transform: rotate(45deg);
}

.footer_contact_bnr .f_contact_bnr_list li.line a:after,
.footer_contact_bnr .f_contact_bnr_list li.mail a:after{
  transform: rotate(-45deg);
}

.footer_contact_bnr .f_contact_bnr_list li p.sub_txt {
    font-weight: bold;
}
.footer_contact_bnr .f_contact_bnr_list li p.sub_txt span { position: relative;padding-top: 5px;}
.footer_contact_bnr .f_contact_bnr_list li p.sub_txt span:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
}

.footer_contact_bnr .f_contact_bnr_list li p.main_txt {
    font-weight: bold;
    font-size: 20px;
}
.footer_contact_bnr .f_contact_bnr_list li p.main_txt span {
    position: relative;
    padding-left: 25px;
}
.footer_contact_bnr .f_contact_bnr_list li p.main_txt span:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
}

.footer_contact_bnr .f_contact_bnr_list li.line p.main_txt span:before {
    width: 25px;
    height: 25px;
    background: url("../images/line_icon.png") no-repeat;
    background-size: contain;
    left: -3px;
}
.footer_contact_bnr .f_contact_bnr_list li.mail p.main_txt span:before {
    width: 20px;
    height: 20px;
    background: url("../images/mail_icon_w.png") no-repeat;
    background-size: contain;
    left: 0;
    top: 2px;
}

.footer_contact_bnr .f_contact_bnr_list li.tel a {
    color: #232323;
    text-decoration: none;
}
.footer_contact_bnr .f_contact_bnr_list li.tel p {
    font-size: 15px;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.2;
}
.footer_contact_bnr .f_contact_bnr_list li.tel .number span {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.025em;
    padding-left: 26px;
    position: relative;
}
.footer_contact_bnr .f_contact_bnr_list li.tel .number span:before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background: url("../images/tel_icon.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0;
}
.footer_contact_bnr .inner_block .area {
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 0 35%;
}
.footer_contact_bnr .inner_block .area dt { margin-bottom: 5px;}
.footer_contact_bnr .inner_block .area dt span {
    background: #182987;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 30px;
}
.footer_contact_bnr .inner_block .area dd {}
.footer_contact_bnr .inner_block .area dd p.mainarea {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
}
.footer_contact_bnr .inner_block .area dd p {
    font-size: 13px;
    line-height: 1.4;
}
.footer_contact_bnr .f_contact_deco {
    width: 35%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.footer_contact_bnr .f_contact_deco img { border-radius: 0 0 0 20px;}


@media screen and (min-width: 1025px) {
    
    .footer_contact {
        padding: 100px 0;
        
    }
    .booklet_banner { /*height: 190px;*/ transition:0.3s;}
    .booklet_banner:hover { opacity: 0.8;}
    .booklet_banner .inner_block {
        padding: 0px 30px 0px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /*height: 170px;*/
        box-sizing: border-box;
    }
    .booklet_banner .inner_block .left_block {
        padding: 10px 0 20px 0;
    }
    .booklet_banner .inner_block .left_block p.text01 {
        font-size: 26px;
        text-align: left;
        letter-spacing: 0.1em;
        margin-bottom: 20px;
    }
    .booklet_banner .inner_block .left_block p.text01 span {
        width: 58px;
        height: 58px;
        font-size: 40px;
        margin: 0;
    }
    .booklet_banner .inner_block .left_block p.text01 span:first-child { margin-right: -5px; margin-left: 5px;}
    .booklet_banner .inner_block .left_block p.text01 span:nth-child(2) { margin-right: 5px;}
    .booklet_banner .inner_block .left_block p.text02 {
        text-align: left;
        font-size: 24px;
        letter-spacing: 0.1em;
    }
    .booklet_banner .inner_block .left_block p.text03 {
        text-align: left;
        font-size: 40px;
        margin-bottom: 0px;
    }
    .booklet_banner .inner_block .left_block p.text03 span {
        border-radius: 20px;
        padding: 6px 10px;
        font-size: 18px;
    }
    .booklet_banner .inner_block .right_block {
    display: flex;
    justify-content: space-between;
}
    .booklet_banner .inner_block .right_block .booklet_img { width: 165px; margin-top: -25px}
    .booklet_banner .inner_block .right_block .text_b { width: 220px;}
    .booklet_banner .inner_block .right_block .text_b .text01 { text-align: center; margin-top: 5px; font-size: 20px;}
    .booklet_banner .inner_block .right_block .text_b .text01 span { padding-right: 50px;}
    .booklet_banner .inner_block .right_block .text_b .text01 span:before { top: 3px;}
    .booklet_banner .inner_block .right_block .text_b .fukidashi_img { width: 210px;}
    
    
    .footer_contact_bnr .inner_block { padding: 35px 0 25px;}
    .footer_contact_bnr .inner_block .f_text_block { padding-left: 300px;}
    .footer_contact_bnr .f_text_block .free_fukidashi {
        width: 135px;
        top: -20px;
        right: 60px;
    }
    .footer_contact_bnr .f_text_block .free_fukidashi span {
        width: 135px;
        height: 135px;
        font-size: 36px;
    }
    .footer_contact_bnr .f_text_block .free_fukidashi span:before {
        bottom: 10px;
        left: 5px;
    }

    .footer_contact_bnr .f_text_block .fukidashi { text-align: left; padding-left: 100px;}
    .footer_contact_bnr .f_text_block .fukidashi p {
        font-size: 24px;
        letter-spacing: 0.1em;
        padding: 0 40px;
    }
    .footer_contact_bnr .f_text_block .fukidashi p:before,
    .footer_contact_bnr .f_text_block .fukidashi p:after {
        width: 24px;
        height: 29px;
    }
    .footer_contact_bnr .f_text_block .f_contact_ttl {
        font-size: 42px;
        line-height: 1.4;
        margin-bottom: 10px;
        text-align: left;
    }
    .footer_contact_bnr .f_text_block .f_contact_ttl span { font-size: 48px;}
    .footer_contact_bnr .f_text_block p.txt { font-size: 18px; text-align: left;}

    .footer_contact_bnr .f_contact_bnr_list {
        width: 100%;
        flex-direction:row;
        margin: 15px auto;
        position: relative;
        z-index: 2;
        justify-content: center;
}
    .footer_contact_bnr .f_contact_bnr_list li {
        width: 32%;
        max-width: 350px;
        margin-bottom: 0px;
    }
    .footer_contact_bnr .f_contact_bnr_list li.mail { margin: 0 20px;}

    .footer_contact_bnr .f_contact_bnr_list li.line a {
        padding: 20px 20px 15px 10px;
        line-height: 1.4;
        transition: 0.3s;
    }
    .footer_contact_bnr .f_contact_bnr_list li.line a:hover { background: #38d277;}
    .footer_contact_bnr .f_contact_bnr_list li.mail a {
        padding: 20px 20px 15px 10px;
        line-height: 1.4;
        transition: 0.3s;
    }
    .footer_contact_bnr .f_contact_bnr_list li.mail a:hover { background: #fba552;}
    .footer_contact_bnr .f_contact_bnr_list li p.sub_txt {
        text-align: center;
        font-size: 18px;
    }
    .footer_contact_bnr .f_contact_bnr_list li p.sub_txt span { font-size: 20px;}
    .footer_contact_bnr .f_contact_bnr_list li p.sub_txt span:before { top: 0;}

    .footer_contact_bnr .f_contact_bnr_list li p.main_txt {
        font-size: 24px;
        text-align: center;
    }
    .footer_contact_bnr .f_contact_bnr_list li p.main_txt span { padding-left: 40px;}
    .footer_contact_bnr .f_contact_bnr_list li.line p.main_txt span:before {
        width: 40px;
        height: 40px;
        left: 0px;
        top: -5px;
    }
    .footer_contact_bnr .f_contact_bnr_list li.mail p.main_txt span:before {
        width: 30px;
        height: 30px;
        top: 0px;
    }
    
    .footer_contact_bnr .f_contact_bnr_list li.tel p {
        font-size: 18px;
        letter-spacing: 0.025em;
        line-height: 1.2;
    }
    .footer_contact_bnr .f_contact_bnr_list li.tel .number span {
        font-size: 48px;
        letter-spacing: 0em;
        padding-left: 35px;
    }
    .footer_contact_bnr .f_contact_bnr_list li.tel .number span:before {
        width: 28px;
        height: 28px;
        top: 16px;
    }
    .footer_contact_bnr .inner_block .area {
        padding: 0 0 0 20%;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 2;
    }
    .footer_contact_bnr .inner_block .area dt { margin-bottom: 0;}
    .footer_contact_bnr .inner_block .area dt span {
        font-size: 24px;
        padding: 15px 15px;
    }
    .footer_contact_bnr .inner_block .area dd { display: flex; align-items: center;}
    .footer_contact_bnr .inner_block .area dd p.mainarea {
        font-size: 30px;
        margin: 0 20px 0;
    }
    .footer_contact_bnr .inner_block .area dd p { font-size: 20px; font-weight: bold;}
    .footer_contact_bnr .f_contact_deco {
        max-width: 330px;
    }
}
/* ======================================================

   footer

========================================================= */
.footer_info_block {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 20px 0;
}
.footer_info_block .left_block {
    width: 100%;
    margin-bottom: 10px;
}
.footer_info_block .left_block .f_logo {
    width: 80%;
    max-width: 400px;
    margin: 0 auto 10px;
}
.footer_info_block .left_block .f_info_contents dt {
    font-size: 13px;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0;
    margin-bottom: 5px;
}
.footer_info_block .left_block .f_info_contents .btn_list li.map_btn { width: 178px; margin: 0 auto 10px;}
.footer_info_block .left_block .f_info_contents .btn_list li.map_btn a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dddddd;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    height: 50px;
    color: #232323;
    text-decoration: none;
    font-weight: bold;
}
.footer_info_block .left_block .f_info_contents .btn_list li.map_btn span { padding-left: 20px; position: relative;}
.footer_info_block .left_block .f_info_contents .btn_list li.map_btn span:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: -3px;
    background: url("../images/map_icon.png") no-repeat;
    background-size: contain;
}
.footer_info_block .left_block .f_info_contents .btn_list li.bukken a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #2ca6e0;
    border-radius: 10px;
    color: #2ca6e0;
    text-decoration: none;
    padding: 12px 15px;
    position: relative;
    font-weight: bold;
    background: #fffac6;
}
.footer_info_block .left_block .f_info_contents .btn_list li.bukken a:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url("../images/bukken_icon.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.footer_info_block .left_block .f_info_contents .btn_list li.bukken span { font-size: 12px;}

.footer_info_block .footer_bnr {
    display: none;
}
.footer_info_block .footer_bnr li:first-child { width: 54%;}
.footer_info_block .footer_bnr li:nth-child(2) { width: 45%;}


.footer_sitemap {
    display: none;
}
.copy_outer {
    width: 100%;
    background: #182987;
    padding: 20px;
    box-sizing: border-box;
}
.copy_outer .inner {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
.copy {
  color: #FFF;
  font-size: 12px;
  line-height: 1.2;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
}
.copy_outer .inner p { text-align: center;}
.copy_outer .inner p a {
    color: #fff;
    text-decoration: none;
}

.footer_follow {
  display: none;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 10px;
    z-index: 99;
}
.footer_follow .booklet_bnr { width: 96%; margin: 0 auto 5px;}

.footer_follow .sp_btm_contact {
    width: 96%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}


.footer_follow .sp_btm_contact li {
    width: 32.5%;
    text-align: center;
    border-radius: 5px;
    
}
.footer_follow .sp_btm_contact li a {
    display: block;
    width: 100%;
    height: 55px;
    color: #FFF;
    padding: 12px 5px 8px;
    box-sizing: border-box;
    border-radius: 5px;
}

.footer_follow .sp_btm_contact li.line a { background: #06c755;}
.footer_follow .sp_btm_contact li.mail a { background: #fa8f27;}
.footer_follow .sp_btm_contact li.tel a { background: #182987; letter-spacing: 0; padding-top: 5px;}
.footer_follow .sp_btm_contact li p {
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    font-weight: bold;
}
.footer_follow .sp_btm_contact li p span {
    font-size: 15px;
    display: block;
    position: relative;
    padding-left: 10px;
}
.footer_follow .sp_btm_contact li p span:before {
    content: "";
    display: block;
    position: absolute;
}
.footer_follow .sp_btm_contact li.line p span:before {
    width: 16px;
    height: 16px;
    background: url("../images/line_icon.png") no-repeat;
    background-size: contain;
    top: 1px;
    left: 6px;
}
.footer_follow .sp_btm_contact li.mail p span:before {
    width: 14px;
    height: 14px;
    background: url("../images/mail_icon_w.png") no-repeat;
    background-size: contain;
    top: 3px;
    left: 6px;
}


@media screen and (min-width: 1025px) {
    .footer {

    }

    .footer_info_block {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 90px 0 80px 0;
        border-bottom: 1px solid #dddddd;
    }
    .footer_info_block .left_block {
        width: 50%;
        margin-bottom: 0px;
    }
    .footer_info_block .left_block .f_logo {
        margin: 0 0 0;
    }
    .footer_info_block .left_block .f_info_contents {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer_info_block .left_block .f_info_contents dt {
        font-size: 16px;
        text-align: left;
        line-height: 2;
        margin-bottom: 0px;
    }
    
    .footer_info_block .left_block .f_info_contents .btn_list li.map_btn { margin: 0 0 5px;}
    .footer_info_block .left_block .f_info_contents .btn_list li.bukken { width: 190px; font-size: 14px; line-height: 1.2;}
    .footer_info_block .left_block .f_info_contents .btn_list li.bukken a { padding: 10px 20px; transition:0.3s;}
    .footer_info_block .left_block .f_info_contents .btn_list li.bukken a:hover { background: #d5edf9;}
    .footer_info_block .left_block .f_info_contents .btn_list li.bukken span { display: block;}

    .footer_info_block .footer_bnr {
        width: 45%;
        display: flex;
        justify-content: space-between;
    }
    .footer_info_block .footer_bnr li:first-child { max-width: 290px; transition:0.3s;}
    .footer_info_block .footer_bnr li:nth-child(2) { max-width: 242px;}
    .footer_info_block .footer_bnr li:first-child:hover { opacity: 0.8;}
    .footer_sitemap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 70px 0;
        display: flex;
        justify-content: space-between;
    }
    .footer_sitemap ul.sitemap_b > li { margin-bottom: 25px;}
    .footer_sitemap ul.sitemap_b > li > a {
        color: #182987;
        text-decoration: none;
        font-weight: bold;
    }
    .footer_sitemap ul.sitemap_b > li:last-child,
    .footer_sitemap ul.sitemap_b > li > ul > li:last-child { margin-bottom: 0;}
    .footer_sitemap ul.sitemap_b > li > p {
        color: #182987;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .footer_sitemap ul.sitemap_b > li > ul > li {
        margin-bottom: 15px;
        padding-left: 10px;
        position: relative;
        font-size: 14px;
    }
    .footer_sitemap ul.sitemap_b > li > ul > li a {
        color: #232323;
        text-decoration: none;
        transition:0.3s;
    }
    .footer_sitemap ul.sitemap_b > li > ul > li a:hover { color: #182987;}
    .footer_sitemap ul.sitemap_b > li > ul > li:before {
        content: "";
        display: block;
        width: 4px;
        height: 4px;
        background: #182987;
        border-radius: 50%;
        position: absolute;
        top: 12px;
        left: 0;
    }
    .copy_outer { padding: 30px 0;}
    .copy_outer .inner {
        max-width: 1200px;
        margin: 0 auto;
        flex-direction:row;
        justify-content: space-between;
    }
    .copy { margin-bottom: 0px;}
    .copy_outer .inner p { text-align: center;}

    .footer_follow .booklet_bnr,
    .footer_follow .sp_btm_contact {
        display: none;
    }
    
/* フェードの動き（0.3秒かけてふわっと消える） */
.nav_left {
  transition: opacity 0.3s ease;
  opacity: 1;
  visibility: visible;
}

/* フッターに入った時（透明にして隠す） */
.nav_left.is-hidden {
  opacity: 0;
  visibility: hidden;
}
    
}



/* ======================================================

   about

========================================================= */
#index_about {
    margin: 0 auto 50px;
}

.index_about_content {
    width: 100%;
    background: url("../images/top_about_bg.jpg") no-repeat center top;
    border-radius: 20px;
    padding: 30px 20px 80px;
    box-sizing: border-box;
    position: relative;
}
.index_about_content:before {
    content: "ABOUT US";
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    line-height: 1;
    color: rgba(255,255,255,0.03);
    font-size: 76px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}


.index_about_content .main_sec { position: relative; z-index: 9;}

.index_about_content .main_sec h3.index_about_title {
    font-weight: bold;
    font-size: 26px;
    text-align: center;
    color: #fff;
    padding-top: 35px;
    position: relative;
    margin-bottom: 10px;
}
.index_about_content .main_sec h3.index_about_title:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url("../images/logo_w.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.index_about_content .main_sec p {
    color: #fff;
    text-align: center;
}

.about_staff_list {
    width: 90%;
    margin: -60px auto 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about_staff_list .staff_block {
    width: 49%;
    position: relative;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.15);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.about_staff_list .staff_block .inner_b {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
}
.about_staff_list .staff_block .inner_b p {
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}
.about_staff_list .staff_block .inner_b p.type { font-size: 14px;}
.about_staff_list .staff_block .inner_b p.name { font-size: 22px;}
.about_staff_list .staff_block .inner_b p.name_eng { font-family: "Roboto", sans-serif; font-size: 12px; font-weight: 600;}

.about_staff_list .staff_block a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.about_staff_list .staff_block a:before,
.about_staff_list .staff_block a:after {
    content: "";
    display: block;
    position: absolute;
}
.about_staff_list .staff_block a:before {
    width: 25px;
    height: 25px;
    right: 10px;
    background: #fff;
    bottom: 20px;
    border-radius: 50%;
}
.about_staff_list .staff_block a:after {
	right: 20px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #182987;
	border-right: 1px solid #182987;
    z-index: 2;
    bottom: 29px;
    transform: rotate(45deg);
}


.about_staff_list .staff_block .staff_img {
    width: 100%;
    
}
.about_staff_list .staff_block .staff_img img {
    width: 100%;
    height: 230px;
    border-radius: 10px;
    object-fit: cover;
}

#index_about .index_about_btnlist {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
#index_about .index_about_btnlist .txt_btn { margin-bottom: 5px;}

@media screen and (min-width: 1025px) {
    #index_about {
        margin: 0 auto 130px;
    }

    .index_about_content {
        max-width: 1500px;
        margin: 0 auto;
        padding: 50px 20px 80px;
        height: 480px;
    }
    .index_about_content:before {
        font-size: 300px;
        top: 0;
    }

    .index_about_content .main_sec { position: relative; z-index: 9;}

    .index_about_content .main_sec h3.index_about_title {
        font-size: 48px;
        padding-top: 70px;
        margin-bottom: 20px;
    }
    .index_about_content .main_sec h3.index_about_title:before {
        width: 60px;
        height: 60px;
    }
    
    .about_staff_list {
        width: 100%;
        max-width: 1200px;
        margin: -180px auto 40px;
    }
    .about_staff_list .staff_block {
        width: 23.75%;
        height: 380px;
        margin-bottom: 0px;
        border-radius: 20px;
        transition:0.3s;
    }
    .about_staff_list .staff_block .inner_b {
        padding: 0 25px 25px 30px;
    }
    .about_staff_list .staff_block .inner_b p.type { font-size: 16px;}
    .about_staff_list .staff_block .inner_b p.name { font-size: 30px;}
    .about_staff_list .staff_block .inner_b p.name_eng { font-size: 14px;}

    .about_staff_list .staff_block a:before {
        width: 35px;
        height: 35px;
        right: 25px;
        bottom: 25px;
    }
    .about_staff_list .staff_block a:after {
        right: 39px;
        width: 10px;
        height: 10px;
        bottom: 37px;
    }
    .about_staff_list .staff_block .staff_img { }
    .about_staff_list .staff_block .staff_img img {
        height: 380px;
        border-radius: 20px;
        transition: transform .3s ease;
    }
    .about_staff_list .staff_block:hover .staff_img img { transform: scale(1.1);}
    .about_staff_list .staff_block:last-child:hover .staff_img img { transform: none;}
    #index_about .index_about_btnlist {
        max-width: 1200px;
        flex-direction:row;
        align-items: center;
        justify-content: center;
    }
    #index_about .index_about_btnlist .txt_btn {
        width: 280px;
        margin: 0 15px 0;
    }
    
    
}

/* ======================================================

   block

========================================================= */
.main_sec {
  width: 90%;
  margin: 0 auto;
}

.main_sec_bg {
    width: 100%;
    background: #f3f6fa;
    padding: 40px 0;
}


@media screen and (min-width: 1025px) {
  .main_sec {
    max-width: 1200px;
  }

    .main_sec_bg { padding: 80px 0 90px;}
    
}

.row-content .block { margin-bottom: 30px; }
.row-content .block:last-child { margin-bottom: 0; }

@media screen and (min-width: 1025px) {
  .row-content {
    display: flex;
    flex-wrap: wrap;
  }
  .row-content .block {
    margin-top: 50px;
	margin-bottom: 0;
  }
  .row-content.row-2 .block:nth-child(-n+2) { margin-top: 0; }
  .row-content.row-3 .block:nth-child(-n+3) { margin-top: 0; }
  .row-content.row-4 .block:nth-child(-n+4) { margin-top: 0; }
  
  .row-content.row-2 .block { width: 48%; }
  .row-content.row-2 .block:nth-child(2n) { margin-left: auto; }
  
  .row-content.row-3 .block {
    width: 30%;
    margin-right: 5%;
  }
  .row-content.row-4 .block {
    width: 23.5%;
    margin-right: 2%;
  }
  .row-content.row-3 .block:nth-child(3n),
  .row-content.row-4 .block:nth-child(4n) {
    margin-right: 0;
  }
}

.anc_blc {
  margin-top: -70px;
  padding-top: 70px;
}

@media screen and (min-width: 600px) {
  /* 現在は何もないので削除するか、必要なスタイルを追加 */
}

@media screen and (min-width: 1025px) {  
  .anc_blc {
    margin-top: -90px;
    padding-top: 90px;
  }
}

.image_l .img,
.image_r .img {
  margin: 0 auto 20px;
}
.image_l .img img,
.image_r .img img { border-radius: 10px;}



@media screen and (min-width: 1025px) {  
  
    .image_l,.image_r { display: flex; justify-content: space-between; }
    .image_r {
        flex-direction: row-reverse;
    }
    
    .image_l .img,
    .image_r .img {
        width: 38%;
        margin: 0;
    }
    .image_l .txt,
    .image_r .txt { width: 55%;}
}

.gmap {
  height: 250px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 1025px) {  
  .gmap {
    height: 350px;
  }
}

/* ======================================================

   title

========================================================= */
.page_title {
    padding: 40px 0 40px;
    background: url("../images/h2_bg.jpg") no-repeat right top;
    background-size: cover;
}
.page_title h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}
.page_title h2.loan { letter-spacing: 0;}
.page_title .en_txt {
    font-family: "Roboto", sans-serif;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}
.page_title .en_txt span {
    background: #182987;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
}

.ttl_pt01 {
    font-size: 25px;
    line-height:1.4;
    font-weight: bold;
    margin-bottom: 25px;
    padding-top: 35px;
    position: relative;
    text-align: center;
}
.ttl_pt01:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url("../images/logo_b.png") no-repeat;
    background-size: contain;
}
.ttl_pt01 span {
    display: block;
    text-align: center;
}
.ttl_pt01 span.heading_en {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #182987;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    padding: 0 20px;
    position: relative;
    line-height: 1.4;
    text-transform: uppercase;
}
.ttl_pt01 span.heading_en:before,
.ttl_pt01 span.heading_en:after {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background: #182987;
    position: absolute;
    top: 50%;
}
.ttl_pt01 span.heading_en:before { left: 0;}
.ttl_pt01 span.heading_en:after { right: 0;}


.ttl_pt02 {
    font-size: 23px;
    padding: 15px 0 15px 0;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    color: #182987;
}
.ttl_pt02:before,
.ttl_pt02:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}
.ttl_pt02:before {
    width: 100%;
    height: 1px;
    background: #ddd;
}
.ttl_pt02:after {
    width: 50px;
    height: 1px;
    background: #182987; 
}


.ttl_pt03 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: bold;
    padding-left: 15px;
    position: relative;
}
.ttl_pt03:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #182987;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
}

.ttl_pt04 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    
}
.ttl_pt04:first-letter {color: #2ca6e0; }
.ttl_pt04 span {
    background:linear-gradient(transparent 60%, #fff68e 60%);
}


@media screen and (min-width: 1025px) {
    .page_title {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 90px 0 0px;
        background: none;
    }
    .page_title h2 {
        text-align: left;
        font-size: 46px;
        margin-bottom: 30px;
    }
    .page_title .en_txt {
        text-align: left;
        margin-bottom: 15px;
    }
    .page_title .en_txt span {
        font-size: 16px;
        padding: 8px 20px;
        border-radius: 30px;
    }

    .ttl_pt01 {
        font-size: 35px;
        line-height:1.4;
        margin-bottom: 35px;
    }
    .ttl_pt01:before {
        width: 48px;
        height: 48px;
        top: 0;
    }

    .ttl_pt01 span.heading_en {
        font-size: 14px;
        margin-bottom: 10px;
        padding: 0 30px;
    }
    .ttl_pt01 span.heading_en:before,
    .ttl_pt01 span.heading_en:after {
        width: 20px;
    }
    
    
    .ttl_pt02 {
        font-size: 32px;
    padding: 15px 0 15px 0;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .ttl_pt02:after { width: 100px;}
    
    .ttl_pt03 {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .ttl_pt03:before { top: 15px;}
    
    .ttl_pt04 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
}


/* ======================================================

   list

========================================================= */
.list_pt01 li {
    position: relative;
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 12px;
}

.list_pt01 li::before {
  display: block;
  content: "";
  position: absolute;
}

.list_pt01 li::before {
    width: 6px;
    height: 6px;
    background: #2ca6e0;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.list_pt01.orange li::before { background: #fa8f27;}

.list_pt01 li:last-child,
.list_pt02 li:last-child {
  margin-bottom: 0;
}

.bold { font-weight: bold;}


@media screen and (min-width: 1025px) {
  /* 現在は何もないので削除するか、必要なスタイルを追加 */
}

/* ======================================================

   table

========================================================= */
.tbl_pt01,
.tbl_pt02 {
  width: 100%;
  border-right: #ccc solid 1px;
  border-top: #ccc solid 1px;
  
  table-layout: fixed;
}
.tbl_pt01 th,.tbl_pt01 td,
.tbl_pt02 th,.tbl_pt02 td {
  padding: 10px 15px;
  border-left: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
}
.tbl_pt01 tr,.tbl_pt01 th,.tbl_pt01 td {
  display: block;
  box-sizing: border-box;
}
.tbl_pt01 th,.tbl_pt02 th {
  background: #f3f6fa;
    font-weight: bold;
}
.tbl_pt02 thead th {
  background: #182987;
  color: #FFF;
  text-align: center;
}

.scroll {
  overflow-x: auto;
}
.scroll::-webkit-scrollbar {
  height: 5px;
}
.scroll::-webkit-scrollbar-track {
  background: #F1F1F1;
}
.scroll::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
.scroll table {
  min-width: 600px;
}

@media screen and (min-width: 600px) {
  .scroll table {
    min-width: unset;
  }
  .tbl_pt01 th,.tbl_pt01 td,.tbl_pt02 th,.tbl_pt02 td {
    padding: 15px 20px;
  }
  .tbl_pt01 tr {
    display: table-row;
  }
  .tbl_pt01 th {
    width: 30%;
  }
  .tbl_pt01 th,.tbl_pt01 td {
    display: table-cell;
  }
  .wp15 {
    width:15% !important;
  }
  .wp20 {
    width:20% !important;
  }
  .wp25 {
    width:25% !important;
  }
  .wp30 {
    width:30% !important;
  }
  .scroll {
    overflow: hidden;
  }
}

@media screen and (min-width: 1025px) {
  .tbl_pt01 th,.tbl_pt01 td,.tbl_pt02 th,.tbl_pt02 td {
    padding: 20px 20px;
  }
}


/* ======================================================

   button

========================================================= */
.txt_btn { width: 100%;}
.txt_btn a {
    display: block;
    width: 100%;
    font-weight: bold;
    border: 1px solid #bebebe;
    padding: 15px 45px 15px 20px;
    position: relative;
    background: #fff;
    box-sizing: border-box;
    color: #232323;
    text-decoration: none;
    border-radius: 40px;
    line-height: 1.3;
}

.txt_btn a:before,
.txt_btn a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
}
.txt_btn a:before {
    width: 25px;
    height: 25px;
    right: 20px;
    background: #182987;
    transform: translateY(-50%) ;
    border-radius: 50%;
}
.txt_btn a:after {
	right: 30px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.txt_btn.blue a {
    background: #182987;
    border: none;
    color: #fff;
}
.txt_btn.blue a:before {
    background: #fff;
}
.txt_btn.blue a:after {
	border-top: 1px solid #182987;
	border-right: 1px solid #182987; 
}



@media screen and (min-width: 1025px) {
    .txt_btn a {
        padding: 20px 25px;
        border-radius: 60px;
        transition:0.3s;
    }
    .txt_btn a:hover {
        background: #182987;
        color: #fff;
    }
    .txt_btn.blue a:hover {
        opacity: 0.8;
    }
    
    
    .txt_btn_center { margin: 0 auto;}
  .w200 {
    max-width: 200px;
  }
  .w250 {
    max-width: 250px;
  }
  .w300 {
    max-width: 300px;
  }
  .w350 {
    max-width: 350px;
  }
  .w400 {
    max-width: 400px;
  }
  .w450 {
    max-width: 450px;
  }
  .w500 {
    max-width: 500px;
  }
}

/* ======================================================

   目次

========================================================= */
#content {
    padding: 0 0 60px;
    display: flex;
    flex-direction: column;
}
.nav_left {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 25px 30px 30px;
    border-top: 10px solid #182987;
    border-bottom: 10px solid #182987;
}
.nav_left .nav_left_inner {}

.nav_left p.ttl_txt {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #182987;
    letter-spacing: 0.025em;
    font-size: 20px;
}
.nav_left ul.nav_content li {
    line-height: 1.3;
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    border-bottom: 1px dashed #e2e2e0;
    padding-bottom: 15px;
}
.nav_left ul.nav_content li:last-child { margin-bottom: 0;}
.nav_left ul.nav_content li a {
    color: #232323;
    text-decoration: none;   
}
.nav_left ul.nav_content li:before,
.nav_left ul.nav_content li:after {
    content: "";
    display: block;
    position: absolute;
}
.nav_left ul.nav_content li:before {
    width: 16px;
    height: 16px;
    background: #182987;
    border-radius: 50%;
    top: 1px;
    left: 0;
}
.nav_left ul.nav_content li:after {
	left: 4px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
    z-index: 2;
    top: 7px;
    transform: rotate(45deg);  
}

.under_main {}
main.sub_page_main #content p { line-height: 2;}
@media screen and (min-width: 1025px) {

    #content { margin-left: 18.2292%;}
    .nav_left {
        position: fixed;
        left: 0;
        top: 155px;
        width: 18.2292%;
        height: 100%;
        max-width: 350px;
        z-index: 99;
        padding: 30px 30px 30px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
        border-top: none;
    border-bottom: none;
    }
    .nav_left .nav_left_inner {
        background: #fff;
    }
    .nav_left ul.nav_content li {
        font-size: 15px;
    }
}


.topic_contents {
    background: url("../images/reason_bg.jpg") repeat;
    width: 100%;
    padding: 50px 0;
}
.topic_contents .fukidashi {
    text-align: center;
    margin-bottom: 20px;
}
.topic_contents .fukidashi span {
    background: #fff;
    color: #182987;
    padding: 8px 20px;
    position: relative;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    border-radius: 30px;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
}
.topic_contents .fukidashi span:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: -10px;
    margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  border-top: 20px solid #fff;
  border-bottom: 0;
}


.topic_contents .topic_title {
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}


.topic_contents .main_sec {
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
}



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

    .topic_contents {
        padding: 80px 0;
    }
    .topic_contents .fukidashi { margin-bottom: 30px;}
    .topic_contents .fukidashi span {
        padding: 10px 20px;
        border-radius: 40px;
        font-size: 20px;
        letter-spacing: 0.075em;
    }

    .topic_contents .topic_title {
        font-size: 34px;
        margin-bottom: 40px;
    }
    
    .topic_contents .main_sec {
        border-radius: 20px;
        padding: 50px 60px;
    }

    
}


/* ======================================================

   flow

========================================================= */
.flow_contents {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 20px 20px;
    background: #e6f2fa;
}

.flow_contents dl {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 25px 20px 20px;
    background: #fff;
    position: relative;
    margin-bottom: 40px;
}
.flow_contents dl:after {
    content: "";
    display: block;
    width: 3px;
    height: 30px;
    background: url("../images/border.jpg") repeat-y;
    background-size: contain;
    position: absolute;
    bottom: -30px;
    left: 50px;
}


.flow_contents dl:last-child {
    margin-bottom: 0;
}
.flow_contents dl:last-child:after { content: none;}
.flow_contents dl dt {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.flow_contents dl dt span {
    position: absolute;
    top: -15px;
    left: 15px;
    background: #182987;
    color: #fff;
    border-radius: 30px;
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    padding: 5px 15px;
}
@media screen and (min-width: 1025px) {
    
    .flow_contents {
        padding: 60px 50px 50px;
    }
    .flow_contents dl {
        border-radius: 20px;
        padding: 40px 30px 40px;
        margin-bottom: 40px;
    }
    .flow_contents dl:after {
        left: 80px;
    }

    .flow_contents dl dt {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .flow_contents dl dt span {
        top: -20px;
        left: 30px;
        border-radius: 30px;
        font-size: 18px;
        padding: 6px 20px;
    }
    
}


/* ======================================================

   faq

========================================================= */
.faq_content {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 20px 20px;
    background: #e6f2fa;
}

.faq_content dl {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 25px 20px 20px;
    background: #fff;
    position: relative;
    margin-bottom: 20px;
}
.faq_content dl:last-child {
    margin-bottom: 0;
}

.faq_content dl dt {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}
.faq_content dl dt:before {
    content: "Q.";
    font-family: "Roboto", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    color: #182987;
    font-size: 18px;
    font-weight: 900;
}

.faq_content dl dd {
    padding-left: 1.5em;
    position: relative; 
}
.faq_content dl dd:before {
    content: "A.";
    font-family: "Roboto", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    color: #2ca6e0;
    font-size: 18px;
    font-weight: 900;
}

@media screen and (min-width: 1025px) {
    .faq_content {
        padding: 60px 50px 50px;
    }
    .faq_content dl {
        border-radius: 20px;
        padding: 40px 30px 40px;
    }
    
    .faq_content dl dt {
        font-size: 20px;
    margin-bottom: 20px;
    padding-left: 30px;
    padding-bottom: 20px;
}
    .faq_content dl dt:before {
    top: 0;
    font-size: 22px;
    }
    .faq_content dl dd { padding-left: 30px; line-height: 2;}
    .faq_content dl dd:before { font-size: 22px; top: -2px;}
    
}





/* ======================================================

   company

========================================================= */
.staff_greeting {
    width: 100%;
    background: #e6f2fa;
    padding: 40px 0;
}
.staff_greeting .greeting_title {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 20px;
}
.staff_greeting .greeting_title span {
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: #2ca6e0;
    margin-left: 10px;
}

.staff_greeting .image_r {}

.youtube_outer {}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.bg_block {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 20px 20px;
    border-radius: 20px;
    background: #e6f2fa;
}

.about_staff_list.sub_staff {
    margin: 0 auto;
}

@media screen and (min-width: 1025px) {
    
    .staff_greeting { padding: 80px 0;}
    
    .staff_greeting .image_r .img { width: 43%; }
    .staff_greeting .image_r .txt { width: 50%;}
    .staff_greeting .greeting_title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .staff_greeting .greeting_title span {
    font-size: 18px;
    margin-left: 10px;
}

.bg_block {
    padding: 40px 50px 40px;
    border-radius: 20px;
}

    .youtube_outer { width: 70%; margin: 0 auto;}
    
    
    
}


/* ======================================================

   contact

========================================================= */

.contact_flow {
	display: flex;
	justify-content: space-between;
}
.contact_flow li {
	width: 30%;
	line-height: 1.4;
	box-sizing: border-box;
	padding: 15px 15px;
	font-weight: 700;
	background: #f1f1f1;
	position: relative;
    border-radius: 10px;
}
.contact_flow li:before {
	content: "";
	display: block;
width:0;
height:0;
border-style:solid;
border-width: 25px 0 25px 20px;
border-color: transparent transparent transparent #f1f1f1;
	position: absolute;
	top: 10px;
	right: -10px;
}
.contact_flow li:last-child:before { content: none;}
.contact_flow li.active {
	background: #182987;
	color: #fff;
}
.contact_flow li.active:before { border-color: transparent transparent transparent #182987;}


.anc_btn_list .txt_btn { margin-bottom: 10px;}
.anc_btn_list .txt_btn:last-child { margin-bottom: 0;}

.privacy_block dl {
    margin-bottom: 30px;
}
.privacy_block dl:last-child { margin-bottom: 0;}
.privacy_block dl dt {
    font-weight: bold;
    margin-bottom: 10px;
}
.privacy_block dl dd {
    padding-left: 1.0em;
    line-height: 2;
}
.privacy_block dl dd p {
    
}
.privacy_block dl dd ul {
    padding-left: 1.0em;
    margin: 15px 0 15px;
}
.privacy_block dl dd ul li { margin-bottom: 10px;}
.privacy_block dl dd ul li:last-child { margin-bottom: 0;}

.area_block {
    width: 100%;
    box-sizing: border-box;
    margin: 20px 0;
}
.area_block dt { margin-bottom: 10px; text-align: center;}
.area_block dt span {
    background: #182987;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 30px;
}
.area_block dd {}
.area_block dd p.mainarea {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
    
}
.area_block dd p {
    line-height: 1.4 !important;
    text-align: center;
}


.tel_num {
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #182987;
    line-height: 1.2 !important;
    letter-spacing: 0em;
    font-size: 32px;
}


.step_block {
    display: flex;
    flex-direction: column;
}
.step_block li {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
    border-radius: 10px;
    border: 5px solid #cbe1ec;
    margin-bottom: 20px;
    position: relative;
}
.step_block li:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #cbe1ec;
  border-bottom: 0;
}

.step_block li:last-child { margin-bottom: 0;}
.step_block li:last-child:after { content: none;}
.step_block p {
    line-height: 1.3 !important;
    text-align: center;
}
.step_block p.step {
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
}
.step_block p.step span {
    color: #fff;
    background: #2ca6e0;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 20px;
}
.step_block p.step_ttl {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.wpcf7 .tbl_pt01 th p { font-weight: bold;}

::placeholder {
  color: #ccc;
}

.contact_form_btn {
    max-width: 100%;
    width: 250px;
    margin: 0 auto;
    transition: all 0.3s;
}

.contact_form_btn input.wpcf7-form-control {
    border: none;
    background: #182987;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    color: #ffffff;
    letter-spacing: 0.2em;
    padding: 15px 10px;
    line-height: 1.5;
    border-radius: 50px;
}

.contact_btn_list {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction:row;
    justify-content: center;
}

.contact_form_btn.contact_fbtn_back input.wpcf7-form-control {
    background: #2ca6e0;
}

@media screen and (min-width: 1025px) {
	.contact_flow li { padding: 15px 10px; text-align: center; font-size: 18px;}
	.contact_flow li:before {
		border-width: 20px 0 20px 20px;
		top: 7px;
		right: -15px;
	}
    
    
    .anc_btn_list {
        display: flex;
        justify-content: space-between;
    }
    
    .anc_btn_list .txt_btn {
        width: 30%;
        margin: 0;
    }
    
    .area_block {
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .area_block dt {
        margin-bottom: 0;
        text-align: left;
        margin-right: 20px;
    }
    .area_block dt span {
        font-size: 20px;
        padding: 10px 20px;
        border-radius: 40px;
    }
    .area_block dd {
        display: flex;
        align-items: center;
    }
    .area_block dd p.mainarea {
        font-size: 30px;
        margin: 0 20px 0;
    }
    .area_block dd p {
        font-size: 20px;
        font-weight: bold;
    }


    .tel_num { font-size: 42px;}

    
    
    .step_block {
        flex-direction:row;
        justify-content: space-between;
    }
    .step_block li {
        width: 24%;
        padding: 10px 20px;
        margin-bottom: 0px;
    }
    .step_block li:after {
        bottom: 45%;
        right: -15px;
        left: auto;
        border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #cbe1ec;
  border-right: 0;
    }

.wpcf7 .tbl_pt01 th {
    width: 25%;
}
}

/* ======================================================

   case

========================================================= */
.case_contents {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.case_contents .case_block {
    width: 49%;
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
    margin-bottom: 10px;
}
.case_contents .case_block:nth-child(2n) { margin-left: 2%;}
.case_contents .case_block a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


.case_contents .case_block .case_thum {
    width: 100%;
    margin: 0 auto 10px;
}
.case_contents .case_block .case_thum img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.case_contents .case_block .inner { padding: 0 10px 10px 10px;}
.case_contents .case_block .inner p {
    font-weight: bold;
    line-height: 1.2;
    font-size: 14px;
}
.case_contents .case_block .inner .cate_name {
    font-size: 11px;
    line-height: 1;
    margin-top: 5px;
    padding: 3px 0;
    text-align: center;
}
.case_contents .case_block .inner .cate_name span {
    background: #182987;
    color: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    margin: 0 2px;
}



.category_list {
    display: flex;
    flex-direction: column;
}

.category_list > li { margin-bottom: 10px;}
.category_list > li a {
    display: block;
    background: #fff;
    width: 100%;
    line-height: 50px;
    box-sizing: border-box;
    padding: 0 30px;
    border: 1px solid #bebebe;
    border-radius: 30px;
    color: #232323;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}


@media screen and (min-width: 1025px) {
    
    .case_contents {}
    .case_contents .case_block {
        width: 23.75%;
        margin-bottom: 20px;
        transition:0.3s;
        margin-right: 1.666%;
    }
    .case_contents .case_block:hover { background: #e6f2fa;}
    
    .case_contents .case_block:nth-child(2n) { margin-left: 0;}

    .case_contents .case_block:nth-child(4n) { margin-right: 0;}
    .case_contents .case_block .case_thum {
        margin: 0 auto 20px;
        height: 165px;
        overflow: hidden;
    }
    .case_contents .case_block .case_thum img {
        height: 165px;
        transition: transform .4s ease;
    }
    .case_contents .case_block:hover .case_thum img {
        transform: scale(1.1);
    }
    .case_contents .case_block .inner { padding: 0 20px 20px 20px;}
    .case_contents .case_block .inner p { font-size: 16px;}

    .case_contents .case_block .inner .cate_name {
        font-size: 12px;
        margin-top: 10px;
        padding: 5px 0;
    }
    .case_contents .case_block .inner .cate_name span { padding: 5px 15px;}

    .category_list > li { margin: 0 5px 0;}
    .category_list > li a { transition:0.3s;}
    .category_list > li a:hover { background: #182987; color: #fff;}
    .category_list {
        flex-direction:row;
        justify-content: center;
    }

    
}


/* ======================================================

   reason

========================================================= */
.reason_bg {
    width: 100%;
    background: url("../images/reason_bg.jpg") repeat;
    padding: 50px 0;
}
.reason_bg > .txt_btn { max-width: 320px; margin: 0 auto;}

.reason_bg > .main_sec { text-align: center;}
.reason_fukidashi {
    display: inline-block;
    font-weight: bold;
    background: #fff;
    border-radius: 30px;
    text-align: center;
    padding: 5px 15px;
    position: relative;
}
.reason_fukidashi:after {
    content: "";
    display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: 0;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}





.reason_fukidashi > .logo {
    display: inline-block;
    width: 135px;
}
.reason_main_title {
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 26px;
}
.reason_main_title span { font-size: 38px;}

.reason_contents { width: 96%; margin: 0 auto; max-width: 1200px;}
.reason_contents .reason_block {
    width: 100%;
    border-radius: 20px;
    border: 5px solid #cbe1ec;
    background: #fff;
    margin-bottom: 30px;
}
.reason_contents > .reason_block > .text_block {
    width: 100%;
    padding: 40px 20px 20px;
    box-sizing: border-box;
}
.reason_head_text { line-height: 1; margin-bottom: 15px;}
.reason_head_text span {
    border: 1px solid #232323;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 15px;
}

.reason_title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.025em;
    margin-bottom: 20px;
}
.reason_title span {
    color: #182987;
    background:linear-gradient(transparent 60%, #fff68e 60%);
}

.voice_btn {
    margin-top: 30px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px;
    background: #cbe1ec;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}
.voice_btn:before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -15px;
    left: -15px;
    background: url("../images/reason_voice_check.png") no-repeat;
    background-size: contain;
    z-index: 9;
}
.voice_btn a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.voice_btn .img {
    width: 30%;
    border-radius: 10px;
}
.voice_btn .img img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 10px;
    object-position: top center;
}
.voice_btn > .text_block {
    width: 63%;
    margin: 0;
}
.voice_btn > .text_block > dt {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.4;
    margin-bottom: 10px;
}
.voice_btn > .text_block > dd {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.voice_btn > .text_block > dd > p {
    font-size: 12px;
    font-weight: bold;
}
.voice_btn > .text_block > dd > p.detail_btn {
    color: #182987;
    padding-right: 15px;
    position: relative;
}
.voice_btn > .text_block > dd > p.detail_btn:before,
.voice_btn > .text_block > dd > p.detail_btn:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
}
.voice_btn > .text_block > dd > p.detail_btn:before {
    width: 12px;
    height: 12px;
    right: 0px;
    background: #182987;
    transform: translateY(-50%) ;
    border-radius: 50%;
}
.voice_btn > .text_block > dd > p.detail_btn:after {
	right: 5px;
	width: 4px;
	height: 4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.reason_contents .reason_block .reason_img {}
.reason_contents .reason_block .reason_img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
    object-position: 25% 25%;
}


.reason_contents.sub_reason .reason_block {
    box-sizing: border-box;
    padding: 30px 20px;
}
.reason_sub_title {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 18px;
    color: #2ca6e0;
}

.reason_contents.sub_reason .reason_block > .image_l,
.reason_contents.sub_reason .reason_block > .image_r {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed #ddd;
}


@media screen and (min-width: 1025px) {
    
    .reason_bg {
        padding: 80px 0 90px;
    }

    .reason_fukidashi { border-radius: 50px; padding: 15px 30px; line-height: 1; margin-bottom: 10px;}
    .reason_fukidashi span { font-size: 24px;}
    .reason_fukidashi:after {
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #fff;
    bottom: -15px;
    }

    .reason_fukidashi > .logo { width: 184px;}
    .reason_main_title { font-size: 40px; margin-bottom: 30px;}
    .reason_main_title span { font-size: 58px;}
    
    .reason_contents { width: 96%; margin: 0 auto; max-width: 1200px;}
    .reason_contents .reason_block {
        border: 10px solid #cbe1ec;
        margin-bottom: 50px;
        display: flex;
        justify-content: space-between;
    }
    .reason_contents > .reason_block:nth-child(2) {
        flex-direction: row-reverse;
    }
    
    .reason_contents > .reason_block > .text_block {
        width: 49%;
        padding: 70px 0 40px 60px;
        position: relative;
        z-index: 2;
    }

    
    .reason_contents > .reason_block > .text_block > p.text {
        margin: 0;
        line-height: 2;
    }
    
    .reason_head_text { margin-bottom: 30px;}
    .reason_head_text span {
        padding: 10px 20px;
        font-size: 18px;
    }
    .reason_title {
        font-size: 32px;
        letter-spacing: 0.1em;
        margin-bottom: 30px;
        font-feature-settings: "palt";
    }

    .voice_btn {
        margin-top: 60px;
        padding: 20px;
        transition:0.3s;
    }
    .voice_btn:hover { opacity: 0.8;}
    .voice_btn:before {
        width: 90px;
        height: 90px;
        top: -20px;
        left: -35px;
    }
    
    .voice_btn .img { width: 38%; overflow: hidden; height: 120px;}
    .voice_btn .img img {
        height: 120px;
        transition: transform .4s ease;
    }
    .voice_btn:hover .img img { transform: scale(1.1);}
    .voice_btn > .text_block { width: 57%;}
    .voice_btn > .text_block > dt {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .voice_btn > .text_block > dd > p { font-size: 15px;}
    .voice_btn > .text_block > dd > p.detail_btn { padding-right: 25px;}

    .voice_btn > .text_block > dd > p.detail_btn:before {
        width: 20px;
        height: 20px;
    }
    .voice_btn > .text_block > dd > p.detail_btn:after {
        right: 7px;
        width: 6px;
        height: 6px;
    }

    .reason_contents .reason_block .reason_img {
        width: 44%;
        padding: 20px 20px 20px 0;
    }
    .reason_contents .reason_block .reason_img img {
        height: 100%;
        border-radius: 10px;
        object-position: center center;
    }
    .reason_contents > .reason_block:nth-child(2) > .text_block { padding-left: 0; padding-right: 60px;}
    .reason_contents > .reason_block:nth-child(2) > .reason_img { padding-left: 20px; padding-right: 0;}
    
    
    .reason_contents.sub_reason > .reason_block {
        display: block;
        padding: 50px 60px;
    }
    
    
    .reason_sub_title {
        margin-bottom: 20px;
        font-size: 26px;
    }
    .reason_contents.sub_reason .reason_block > .image_l,
    .reason_contents.sub_reason .reason_block > .image_r {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 2px dashed #ddd;
        align-items: flex-end;
    }
    
    
    .reason_contents.sub_reason > .reason_block > .voice_btn {
        max-width: 520px;
        margin: 0 auto;
    }


    
}

/* ======================================================

   company

========================================================= */

.company_image_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.company_image_list li {
    width: 48%;
    margin: 0 1% 10px;
}
.company_image_list li img {
    border-radius: 10px;
}


@media screen and (min-width: 1025px) {
    .company_image_list li {
        width: 23%;
        margin-bottom: 0;
}
}


/* ======================================================

   更新

========================================================= */

.case_head {
    width: 90%;
    margin: 0 auto 30px;
    max-width: 1200px;
}
.case_head .main-title {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3;
}
.case_head .date_text {
    font-size: 14px;
    color: #182987;
    font-weight: bold;
    margin-bottom: 10px;
}
.case_head .tag_list {
    display: flex;
}
.case_head .tag_list > li { line-height: 1; margin-right: 10px; margin-bottom: 10px;}
.case_head .tag_list > li:last-child { margin-right: 0;}
.case_head .tag_list > li > a {
    display: inline-block;
    background: #fff;
    color: #232323;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 10px;
    border: 1px solid #182987;
    border-radius: 40px;
}

.case_image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.case_image img {
    height: 100%;
    width: 100%;
    vertical-align: bottom;

    max-width: 100%;
    min-height: 1px;
    object-fit: cover;  
}


#article_block .main_sec {
    background: #fff;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 20px;
}

.case_tbl {
    width: 100%;
}
.case_tbl tr,.case_tbl th,.case_tbl td {
  display: block;
  box-sizing: border-box;
}
.case_tbl th {
    padding: 15px 0 0;
    color: #182987;
    font-weight: bold;
}
.case_tbl td {
    border-bottom: #ddd solid 1px;
    padding: 0 0 15px;
}

.case_info_images {
    display: flex;
    flex-direction: column;
}
.case_info_images > li:first-child { margin-bottom: 20px;}
.case_info_images .thum_img {
    width: 100%;
    margin-bottom: 5px;
    overflow: hidden;
    border-radius: 10px;
}
.case_info_images p { font-weight: bold; text-align: center;}

.case_map {}
.case_map .gmap { margin-bottom: 10px;}
.case_map p { font-size: 12px; line-height: 1.4;}

.case_info_image { margin: 0 auto 20px;}
.case_info_image img { border-radius: 10px;}

.case_sub_title {
    padding: 10px 15px;
    font-weight: bold;
    font-size: 20px;
    background: #f1f1f1;
    border-left: 6px solid #182987;
    margin-bottom: 20px;
}
.case_sub_title span {
    font-size: 15px;
    color: #182987;
    margin-left: 5px;
}

.message_block {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    background: #e5f0f5;
    border-radius: 10px;
}
.message_block .image_l .txt h5 {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #2ca6e0;
}

.pagination,
.comments-pagination {
	font-weight: 600;
	padding: 2em 0 3em;
	text-align: center;
    line-height: 1;
}

.pagination .icon,
.comments-pagination .icon {
	width: 0.666666666em;
	height: 0.666666666em;
}

.comments-pagination {
	border: 0;
}

.page-numbers {
	display: inline-block;
    border-radius: 50%;
    background: #ddd;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    transition:0.3s;
    font-size: 16px;
}
.page-numbers:hover { background: #232323; text-decoration: none; color: #fff;}


.page-numbers.current {
	color: #fff;
    background: #232323;
	display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
}

.page-numbers.current .screen-reader-text {
	clip: auto;
	height: auto;
	overflow: auto;
	position: relative !important;
	width: auto;
}

.prev.page-numbers,
.next.page-numbers {
	background-color: #ddd;
    border-radius: 50%;
	display: inline-block;
	font-size: 17px;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.prev.page-numbers,
.next.page-numbers {
	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}

.prev.page-numbers:focus,
.prev.page-numbers:hover,
.next.page-numbers:focus,
.next.page-numbers:hover {
	background: #232323;
	color: #fff;
    text-decoration: none;
}

.prev.page-numbers {
	float: left;
}

.next.page-numbers {
	float: right;
}

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

    .case_tbl th,
    .case_tbl td{
        padding: 25px;
        border-bottom: #ddd solid 1px;
    }
  .case_tbl tr {
    display: table-row;
  }
  .case_tbl th {
    width: 30%;
      box-sizing: border-box;
  }
  .case_tbl th,.case_tbl td {
    display: table-cell;
  }

    .case_head {
        margin: 0 auto 60px;
        flex-direction:row;
        justify-content: space-between;
    }
    .case_head .case_head_content {
        width: 45%;
        margin-bottom: 30px;
    }

    .case_head .main-title {
        margin-bottom: 30px;
        font-size: 32px;
        line-height: 1.3;
    }
    .case_head .date_text {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .case_head .tag_list > li > a {
    font-size: 16px;
    padding: 5px 15px;
    }

.case_image {
    width: 90%;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 30px;
}
.case_image img {
    height: 100%;
    width: 100%;
    vertical-align: bottom;

    max-width: 100%;
    min-height: 1px;
    object-fit: cover;  
}


    #article_block .main_sec {
        border-radius: 30px;
        padding: 60px 60px;
    }


    .case_info_images { flex-direction:row; justify-content: space-between;}
    .case_info_images > li { width: 48%;}
    .case_info_images > li:first-child { margin-bottom: 0px;}

    .case_info_image { width: 80%; margin: 0 auto 20px;}

    .case_sub_title {
    font-size: 24px;
    border-left: 8px solid #182987;
    margin-bottom: 30px;
    }

    .message_block { padding: 20px 20px; border-radius: 20px;}
    .message_block .image_l { align-items: center;}
    .message_block .image_l .txt h5 {
    font-size: 20px;
    }
    
    
    .page-numbers {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
    
    
    .page-numbers.current {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }

    .prev.page-numbers,
    .next.page-numbers {
        font-size: 20px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    
    
}


.news_contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.news_contents .news_block {
    width: 100%;
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.news_contents .news_block a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.news_contents .news_block .news_thum {
    width: 100%;
    margin: 0 auto 15px;
}
.news_contents .news_block .news_thum img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.news_contents .news_block .inner { padding: 0 15px 20px 15px;}
.news_contents .news_block .inner p.begining {
    line-height: 1.4;
    font-size: 14px;
}
.news_contents .news_block .inner .cate_name {
    font-size: 11px;
    line-height: 1;
    margin-top: 10px;
    padding: 3px 0;
    text-align: center;
}
.news_contents .news_block .inner .cate_name span {
    background: #182987;
    color: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    margin: 0 2px;
}
.news_contents > .news_block > .inner > .title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}


@media screen and (min-width: 1025px) {
    .news_contents {
        flex-direction:row;
        flex-wrap: wrap;
    }
    .news_contents .news_block {
        width: 46%;
        margin: 0 2% 30px;
        transition:0.3s;
    }
    .news_contents .news_block:hover { background: #e6f2fa;}
    .news_contents .news_block .news_thum { margin: 0 auto 20px;}
    .news_contents .news_block .news_thum img {
    height: 250px;
    }
    .news_contents .news_block .inner { padding: 0 30px 30px 30px;}
    .news_contents .news_block .inner p.begining {
        line-height: 1.6;
        font-size: 16px;
    }
    .news_contents .news_block .inner .cate_name {
    font-size: 14px;
    margin-top: 20px;
    padding: 3px 0;
    }
    .news_contents .news_block .inner .cate_name span {
    border-radius: 20px;
    padding: 5px 15px;
    margin: 0 2px;
}
    .news_contents > .news_block > .inner > .title {
    font-size: 20px;
        line-height: 1.4;
    margin-bottom: 10px;
}

    
}



/* ナビゲーション全体のレイアウト */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
    width: 100%;
}

/* 左右のリンクブロック共通設定 */
.nav-previous, 
.nav-next {
    flex: 1; /* 左右を均等な幅にする */
    min-width: 0; /* テキストの省略・はみ出し防止 */
}

/* リンク自体の装飾（ボタン風デザイン） */
.nav-previous a, 
.nav-next a {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #232323;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

/* 右側のブロックはテキストを右寄せにする */
.nav-previous a {
    text-align: right;
    align-items: flex-end;
}


.post-navigation .nav-next { text-align: left !important;}


/* ホバー時の演出 */
.nav-previous a:hover, 
.nav-next a:hover {
    background-color: #2ca6e0; /* WordPress公式風のブルー */
    border-color: #2ca6e0;
    color: #ffffff;
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title { color: #fff;}





/* 「前の記事」「次の記事」というラベルの装飾 */
.meta-nav {
    font-size: 0.85rem;
    color: #777777;
    margin-bottom: 5px;
    font-weight: bold;
}
.nav-previous a:hover .meta-nav,
.nav-next a:hover .meta-nav {
    color: rgba(255, 255, 255, 0.8);
}

/* 記事タイトルの装飾 */
.nav-title {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;      /* はみ出たテキストを...で省略する設定 */
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* スマートフォン向けのレスポンシブ対応（画面幅560px以下） */
@media (max-width: 560px) {
    .post-navigation {
        flex-direction: column; /* 縦並びに変更 */
        gap: 10px;
    }
    .nav-next a {
        text-align: left; /* スマホ時は左寄せに戻す */
        align-items: flex-start;
    }
}




.sub_contact_bnr_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 15px auto;
}
.sub_contact_bnr_list li { margin-bottom: 10px; }
.sub_contact_bnr_list li:last-child { margin-bottom: 0;}


.sub_contact_bnr_list li.line a {
    display: block;
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px 20px 10px 20px;
    background: #06c755;
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
    position: relative;
}
.sub_contact_bnr_list li.mail a {
    display: block;
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px 20px 10px 20px;
    background: #fa8f27;
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
    position: relative;
}

.sub_contact_bnr_list li.line a:before,
.sub_contact_bnr_list li.line a:after,
.sub_contact_bnr_list li.mail a:before,
.sub_contact_bnr_list li.mail a:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 15px;
  width: 15px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}

.sub_contact_bnr_list li.line a:before,
.sub_contact_bnr_list li.mail a:before {
  transform: rotate(45deg);
}

.sub_contact_bnr_list li.line a:after,
.sub_contact_bnr_list li.mail a:after{
  transform: rotate(-45deg);
}


.sub_contact_bnr_list li p.main_txt {
    font-weight: bold;
    font-size: 18px;
}
.sub_contact_bnr_list li p.main_txt span {
    position: relative;
    padding-left: 25px;
}
.sub_contact_bnr_list li p.main_txt span:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
}

.sub_contact_bnr_list li.line p.main_txt span:before {
    width: 25px;
    height: 25px;
    background: url("../images/line_icon.png") no-repeat;
    background-size: contain;
    left: -3px;
}
.sub_contact_bnr_list li.mail p.main_txt span:before {
    width: 20px;
    height: 20px;
    background: url("../images/mail_icon_w.png") no-repeat;
    background-size: contain;
    left: 0;
    top: 2px;
}
.sub_contact_bnr_list li.tel p { text-align: center; line-height: 1.2 !important;}
.sub_contact_bnr_list li.tel p.main_txt span {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.025em;
    padding-left: 26px;
    position: relative;
    
    text-align: center;
}
.sub_contact_bnr_list li.tel p.main_txt span:before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background: url("../images/tel_icon.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0;
}
.sub_contact_bnr_list li.tel a { color: #232323; text-decoration: none;}
.sub_contact_bnr_list li.hour_text {
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
}




.wpcf7-list-item {
    border: 1px solid #ddd;
    padding: 6px 10px 6px 10px;
    border-radius: 2px;
    margin-left: 5px;
    margin-bottom: 5px;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content:none;
}


.wpcf7 .tbl_pt01 th p span { float:right;}
.form_required {
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    background: #C32729;
    border-radius: 2px;
    padding: 2px 10px;
}
.wpcf7 .tbl_pt01 th p .form_any {
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    background: #2ca6e0;
    border-radius: 2px;
    padding: 2px 10px;
}
.form_recommend { margin-top: 20px;}
.form_recommend li {
    margin-bottom: 10px;
    line-height: 1.4;
}
.form_recommend li:last-child { margin-bottom: 0;}
.form_recommend li span {
    background: #182987;
    color: #fff;
    padding: 5px 10px;
    margin-right: 10px;
    display:inline-block;
    font-weight: bold;
    margin-bottom: 5px;
}

@media screen and (min-width: 1025px) {
    .sub_contact_bnr_list {
        flex-direction:row;
    }
    .sub_contact_bnr_list li {
        width: 31%;
        margin: 0 1% 0;
    }

    
.wpcf7-list-item {
    margin-left: 1em;
}
.purpose span.wpcf7-list-item {
    width: 45%;
}
.form_recommend li {
    margin-bottom: 5px;
}
    .wpcf7-list-item:hover { background: #f3f6fa;}
    
    
    
}

/* popup */
.checkbox-wrapper{ margin-bottom: 30px;}
.checkbox-wrapper > p{ text-align: center;}
.checkbox-wrapper > p .open-popup{
    cursor: pointer;
    color: #0693e3;
    text-decoration: underline;
}

.checkbox-wrapper .wpcf7-list-item { border: none;}

/*--popup--*/
.popup {
  position: fixed;
  z-index: 9999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  display: none;
}
.popup-inner {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  margin: auto;
  display: flex;
}
.popup-box {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 0;
  padding: 40px 25px 40px 40px;
  background-color: #ffffff;
  margin: auto;
  text-align: left;
  max-height: 90vh;
  animation: showout 1s forwards;
}
.popup-box .close{
    max-width: 250px;
    margin: 0 auto;
    transition: all 0.3s;

    border: none;
    background: #000000;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    color: #ffffff;
    letter-spacing: 0.2em;
    padding: 15px 10px;
    line-height: 1.5;
    cursor: pointer;
}

@keyframes showout {
  from {
      max-width: 0;
    }
  to {
      max-width: 900px;
    }
}
.popup_box-in {
    opacity: 0;
    animation: showct 1s forwards;
    animation-delay: .75s;
}
@keyframes showct {
  from {
      opacity: 0;
    }
  to {
      opacity: 1;
    }
}

.popup_box-in {
  overflow-y: auto;
  overflow-x: hidden;
    max-height: calc(90vh - 80px);
    padding-right: 15px;
}
.popup .border_blc_list{
    padding: 35px;
}

@keyframes showout {
  from {
      max-width: 0;
    }
  to {
      max-width: 800px;
    }
}
.popup_box-in {
    opacity: 0;
    animation: showct 1s forwards;
    animation-delay: .75s;
}

@media screen and (max-width: 1024px) {
    .popup-box {
        padding: 20px 20px;
    }
    .popup_box-in {
        padding-right: 0
    }
    .popup-box  .border_blc_list{
        padding: 20px;
    }
    .checkbox-wrapper input{
        top: 7px !important ;
    }
    
    .border_blc_list.policy > ul>li,
    .border_blc_list.policy ul>li>ul>li {
        margin-left: 0;
        padding-left: 0;
    } 
    .border_blc_list.policy >ul>li span{
        position: relative;
        display: inline-block;
    }
}


.line_btn {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 18px 20px 15px 20px;
    background: #06c755;
    position: relative;
    border-radius: 10px;
    transition:0.3s;
}
.line_btn:hover { opacity: 0.8;}

.line_btn a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.line_btn:before,
.line_btn:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 15px;
  width: 15px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.line_btn:before { transform: rotate(45deg);}
.line_btn:after { transform: rotate(-45deg);}

.line_btn p { text-align: center; color: #fff; line-height: 1.2 !important;}


.line_btn p.sub_txt { font-weight: bold;}
.line_btn p.sub_txt span { position: relative;padding-top: 5px;}
.line_btn p.sub_txt span:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
}

.line_btn p.main_txt { font-weight: bold; font-size: 24px;}
.line_btn p.main_txt span { position: relative; padding-left: 25px;}
.line_btn p.main_txt span:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 28px;
    height: 28px;
    background: url("../images/line_icon.png") no-repeat;
    background-size: contain;
    left: -3px;
}

.map_btn { width: 178px;}
.map_btn a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dddddd;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    height: 50px;
    color: #232323;
    text-decoration: none;
    font-weight: bold;
}
.map_btn span { padding-left: 20px; position: relative;}
.map_btn span:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: -3px;
    background: url("../images/map_icon.png") no-repeat;
    background-size: contain;
}

.youtube_btn { width: 300px;}


.footer_map {
  height: 350px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.footer_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}



@media screen and (max-width: 1024px) {
    .footer_map {
        height: 400px !important;
    } 
}