:root {
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    /*--color-base: #eee9d4;*/
    --color-base: #2246aa;
    --color-base-right: #d7e1f2;
    --color-base-darken: #18377a;
   --color-theme: #3960b7;
    --color-right: #f7f9fc;
    --color-yellow: #f9f09d;
    
    
    
/*    --color-base: #fbfaf6;
    --color-base-right: #eee9d4;*/
    --color-gray: #E2E2E2;
    
    --color-right: #F7F6F5;
    
    --color-blue: #88A3D4;
     --color-blue-right: #E6E9EF;
        --color-orange: #DDAC6C;
    --color-other: #EAE4DF;
    --color-other2: #D8CEC7;
    --color-red: #79170D;
    --color-other-darken: #D6C8BD;
    --color-other2-darken: #BCABA0;
    --color-red-darken: #660C07;
    --color-theme-darken: #665548;
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
  }
* {
	margin: 0;
	padding: 0;
}
*::after,
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* RESET
----------------------------------------------------------------------------------------------------*/
a,article,body,dd,div,dl,dt,em,form,footer,header,h1,h2,h3,h4,h5,h6,html,i,iframe,img,label,legend,li,nav,ol,p,section,main,span,table,tbody,tfoot,thead,time,tr,th,td,ul,video{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;white-space:normal;margin:0;padding:0;border:0;outline:0;background:transparent;line-height:1.8;/*text-align:left*/}textarea{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;margin:0;padding:0;border:0;outline:0;background:transparent;line-height:1.6;text-align:left}article,footer,header,nav,section,main{display:block}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}

html {
    scroll-behavior: smooth;
    
}
body {
    /*font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
/*font-family: YuGothic, Yu Gothic, "游ゴシック", "メイリオ", "Meiryo", sans-serif;
*/    
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
      
    line-height: 2;
    letter-spacing: .75px;
    word-wrap: break-word;
    color: #000000;
    -webkit-text-size-adjust: 100%;
    overflow-wrap: break-word;
    font-size: 15px; 
    background:#FFF;
}
.center {text-align: center;}
.h1_logo {font-size: 12px; padding: 0; margin: 0; }

@media screen and (max-width: 768px) {
    body {
font-size: 11.5px; line-height: 1.6em; letter-spacing: .3px;}
    .h1_logo {font-size: 7px; padding: 0 5px; margin: 0; }

}

/*パンくずリスト*/
.pankuzu_box {
    padding: 15px 15px; }
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
    font-size: 12px;
    text-align: right;
}
@media screen and (max-width: 768px) {
    .pankuzu_box {padding: 10px 4%;
    background-color: #f4f8f9;}
    .breadcrumb {
    font-size: 10px;
}
}
.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #000000;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color:#000000;/*色*/
    transition:all 0.5s;
}

.breadcrumb li a:hover {
  text-decoration: none;
    border-bottom: solid 1px #000000;
    
}
/*パンくずリスト*/

a {vertical-align:bottom}
a {transition: 0.2s ;}
img {vertical-align:bottom}
.cntr{text-align: center;}
@media screen and (max-width: 480px) {
.cntr{text-align: left;}
}
a {text-decoration: none;}
/*webpage読み込み時にフェードイン*/
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*webpage読み込み時にフェードイン*/


a {
	color: #383838;
}
a:hover {
	color: #383838;
}

/*fadein可視領域に入ると下からふわっと表示させる*/
.fadein {
  opacity:0;
}

.anime {
  animation-name: fade_bottom;
  animation-duration: 2s;
  opacity:1;
}

@keyframes fade_bottom{
  from{
    opacity: 0;
    transform: translateY(80px);
  }
  
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
/*fadein可視領域に入ると下からふわっと表示させる*/
/*ページ内リンク用このCSSだけでok*/
.pagenailink {
    padding-top: 100px;
    margin-top: -100px;
}
/*ページ内リンク用*/
/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
    /*headerの背景色*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #FFF;
    z-index: 3333;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
padding: 15px 0 15px;
}
.header_h1_wrap {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-bottom: 5px;
}
.header_h1_wrap h1 {
    color: #333333;
    font-size: 12px;
    margin: 0;
   
    line-height: 1.4em;
}
.hidden {
/*  background-color: rgba(255,255,255,0.9);*/
    transition: all 0.8s ease;
}
    /*headerの背景色*/
.bunner_box { 
    width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    
    position: relative;
}
.bunner_box .h1_logo {margin-right: auto;}

.logo {width: 400px;
    margin: 10px 0;

}
.logo img {width: 400px;}


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

}
.submenu {
    position: absolute;
    top:0;
    right: 20px;
}
.submenu {
    display: flex;
    flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
    margin: 10px 0;
}

.submenu_tel {
    display: inline;
    line-height: 1em;
    padding: 0 1em 0 0;
}
.submenu_tel a {
    
    font-size: 1em;
}
.submenu_tel span {
   padding-right:0.5em;
    font-size: 0.9em;
}
.submenu_mail {
    display: inline;
    line-height: 1em;
}
.submenu_mail a {
    background: var(--color-theme);
    border-radius: 4px;
    display: inline-block;
    line-height: 1em;
    color: #FFF;
    font-weight: normal;
    padding: 8px 20px;
    font-size: 0.8em;
    border: solid 1px var(--color-theme);
    
}
.submenu_mail a:hover {
    background: var(--color-theme-darken);
}
.icon_box {
    margin: 0 0 0 10px;
    
}
.icon_box img {
    width: 40px;
    margin-left: 15px;
}
.menu_box {
    margin-left: auto;
    display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;


}


@media screen and (max-width: 1200px) {
    .tel_box a {
    font-size: 20px;
}
.tel_txt {
    font-size: 13px;
    color: #000;
    border: solid 1px #000;
    padding: 1px 5px;
    vertical-align: middle;
    margin-right: 0.5em;
}

}
}
@media screen and (max-width: 959px) {

    .bunner_box {
   display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
padding: 0em;
        margin: 0;
}
    
    
    .tel_box {display: none;}
    }











/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */


.menu-mobile {
    display: none;
    padding: 10px 10px 10px;
}

.menu-mobile:after {
    content: "\f0c9";
    padding: 0;
    float: right;
    position: relative;
    top: 0;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
    color: var(--color-theme);
    font: var(--fa-font-solid);
    font-size: 2em;
    font-weight: 900;
}

.menu-dropdown-icon:before {
    content: "\f489";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 0.5em 1em;
    background: #fff;
    color: #333;
}

.menu > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0 10px;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
  justify-content: center;
  align-items:center;
  list-style: none;
}
/*.menu > ul li:first-child{
    margin-right: auto;
}
.menu > ul li:first-child a{
    padding: 0 0.6em;
}
.menu > ul li:first-child a::before {
    content:none;}
*/


.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    float: left;
    padding: 0;
    margin: 0;
   
}



.menu > ul > li a {
    text-decoration: none;
    margin: 0.5em 0;
    display: block;
    line-height: 1em;
    padding: 0 1em;
     text-align: center;
    font-size: 13px;
    border-left: solid 1px #383838;
    
}
.menu > ul > li:last-child a {
    border-left: none;
    padding: 0 0 0 1em;
    font-weight: normal;
    padding: 0.5em 1em;
    width: 100%;
    display: block;
    font-size: 14px;
    color: #FFF;
    border-radius: 4px;
    background: var(--color-base);

} 
.menu > ul > li:last-child a:hover {
    background: var(--color-base-darken);
}
.menu > ul > li:last-child:hover:after {
	background: none;
	
}
.menu > ul > li {
    position: relative;
}
.menu > ul > li:after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	bottom: 15px;
    border-radius: 50vh;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.menu > ul > li:hover:after {
	background: var(--color-gray);
	bottom: -10px;
}
@media only screen and (max-width: 1200px) {
    .menu > ul > li a {font-size: 13px;}
}
/*.menu > ul > li a:hover {background:var(--color-theme-darken); }*/
/* Btn Hover */


.menu > ul > li.btn {
    
}
.menu > ul > li.btn a {
    background-color: #000000;
    border-radius: 20px;
    color: #FFF;
    font-weight: 900;
    padding: 0.5em 0.8em;
    margin: 0.5em 0.5em;
    
}
.menu > ul > li.btn2 a {
    background-color: #000000;
    border-radius: 20px;
    color: #FFF;
    font-weight: 900;
    padding: 0.5em 0.8em;
    margin: 0.5em 0.5em;
    
}
.menu > ul > li.btn a::before,.menu > ul > li.btn2 a::before {
    content:none;
}
.menu > ul > li a:hover {

}

.menu > ul > li > ul {
    display: none;
    width: 100%;
    padding: 20px;
    position: absolute;
    z-index: 99;
    left: 0;
    /*top: 53px;*/
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
   background-color: #383838;
    transition:all ４s ease-out;
    
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 19%;
    margin: 0 0.5%;
    background: none;
    float: left;
    
    
}

.menu > ul > li > ul > li a {
color: #FFF;
    padding: 0.5em;
    width: 95%;
    display: block;
    border-bottom: 1px solid #ccc;
     text-align: left;
    font-weight: 700;
    letter-spacing: 0;position: relative;
    padding-left: 30px;
}

.menu > ul > li > ul > li a:before {
        content: "\f00c";
        font-family: FontAwesome;
        position: absolute;
        left: 10px;
        top: 7px;
    color: #000000;
    }
.menu > ul > li > ul > li a:hover {
    color: #E6E6E6;
    border-bottom: 1px solid #000000;
}
.menu > ul > li > ul > li a:hover:before {
        content: "\f00c";
        font-family: FontAwesome;
        position: absolute;
        left: 10px;
        top: 7px;
    color: #FFF;
    }

.menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    margin: 0;
    font-size: .8em;
 
}
.menu > ul > li > ul > li > ul > li.menuttl {font-size: 12px; width: 95%; margin: 1em 0 0.5em; line-height: 1.4em; padding: 0.8em 1em 0.8em;}
.menu > ul > li > ul > li > ul > li a {
    border: 0;
     text-align: left;
    font-weight: normal;
    line-height: 1.6em;
    
    position: relative;
  display: inline-block;
  padding: 8px 15px 5px 10px;
  color: #4d4d4d;
  text-decoration: none;
}
.menu > ul > li > ul > li > ul > li a:hover {
    border-bottom: none;
}
.menu > ul > li > ul > li > ul > li a:hover {
    color: #FFF;
}
.menu > ul > li > ul > li > ul > li a::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #4d4d4d;
  border-right: solid 1px #4d4d4d;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  transform: rotate(45deg);
}
.menu > ul > li > ul > li > ul > li a:hover::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  transform: rotate(45deg);
}
.menu > ul > li > ul > li > ul > li a::before {display: none;}/*check着いてしまうの防ぐ*/

.menu > ul > li > ul.normal-sub {
    width: 330px;
    left: auto;
    /*padding: 10px 10px;*/


}
.menu > ul > li > ul.normal-sub.normal-sub_last {
    position: absolute;
    right: 0;
    
}
.menu > ul > li > ul.normal-sub > li {
    width: 100%;
    background: #393939;
}
/*.menu > ul > li:nth-child(4) {
    padding-right: 5px;
}*/
/*.menu > ul > li:nth-child(4) a {
    position: relative;
    
}*/
/*.menu > ul > li:nth-child(4) a::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-size: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;

  /* solidなのでfont-weightに900を設定 
  font-weight: 900;
}*/
.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 1em 0;
    
    
    border: 0;
     text-align: left;
    font-weight: normal;
    line-height: 1.4em;
    
    position: relative;
  display: inline-block;
  padding-left: 15px;
  color: #FFF;
  text-decoration: none;
    background: none;
}
.menu > ul > li > ul.normal-sub > li a > span {
    display: inline;
    padding-left: 1em;
}
.menu > ul > li > ul.normal-sub > li a::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  transform: rotate(45deg);
}
.menu > ul > li > ul.normal-sub > li a::before {display: none;}/*check着いてしまうの防ぐ*/
.menu > ul > li > ul.normal-sub > li:hover {
}
.menu > ul > li > ul.normal-sub > li:hover a {
     color: #FCFCFC;
}
.menu > ul > li > ul.normal-sub > li a:hover::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  transform: rotate(45deg);
}
.vline {
    width: 1px;
    height: 120px;
    background: #FFF;
    margin: 20px auto 0;
    position: relative;
    z-index: 100;
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 959px) {
    #slide {/*margin-top: 50px;*/}
    .header {height: 50px;
    /*background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));*/
        box-shadow: none;
        padding: 0;
    }
    .bunner_box {
        height: 50px;
    }
    .header h1 {
    display: none;
}
    
    .logo {
       width: 100%;
        margin: 0;
        
        }
    .logo img {
        width:300px;
    }
    .submenu {
        display: none;
    }
   .bunner_box {
    width: calc(100% - 20px);
    padding: 10px 0 10px;
}
    .menu {
    padding: 0;
    position: absolute;
        top:10px;
        right: 0px;
        background: #FFF;
        
}
    .menu-mobile {
        display: block;
        /*height: 50px;*/
        /*height: 80px;*/
        
        
    }
    .menu-dropdown-icon:before {
        display: block;
    }
    
    .menu > ul {
        display: none;
         width: 100%;
        padding: 0;
    }
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
        background-color: #000000;
    }
    .menu > ul > li:hover {}
    .menu > ul > li a {
        padding: 0.7em 1em;
        width: 100%;
        display: block;

        text-align: left;
        color: #FFF;
        
        
    margin: 0;
    
    line-height: 1.4em;
    border-left: none;
    }
    .menu > ul > li:last-child a {
     padding: 0.7em 1em;
}
    .menu > ul > li a > span {
    display: none;
}
    .menu > ul > li a:hover {color: "#4D4D4D"}
    .menu > ul > li.logo {display: none;}
    .menu > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul {
    padding: 0px;
}
    .menu > ul > li > ul.normal-sub {
        width: 100%;
    }
    .menu > ul > li > ul.normal-sub > li a {
    padding: 0.5em 1em;
}
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
        /*margin-top: 20px;*/
    }

    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
    .menu > ul > li > ul > li > ul {
        position: relative;
    }
    
    .menu > ul > li > ul > li > ul > li {
        float: none;
    }
    .menu > ul > li > ul > li > ul > li.menuttl {
        margin: 0.5em 0 0.3em;
        padding: 0.5em 1em 0.5em;
    }
    .menu .show-on-mobile {
        display: block;
       background-color: rgba(0,0,0,0.6);
        
        
        overflow-y: scroll;  
　　 z-index: 999;
    top:0;
    
    
        position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
       margin-top: 50px;
        margin-bottom: 190px;
        
/*height: calc(100% - 95px);下に固定メニューの場合*/
        margin: 50px auto 0px;
    }
    /* Btn Hover */
.menu > ul > li {
    position: relative;
}
.menu > ul > li:after {
	position: absolute;
	content: "";
	display: none;
	
}
.vline {
    width: 1px;
    height: 60px;
    background: #FFF;
    margin: 20px auto 0;
    position: relative;
    z-index: 100;
}
.vline {
    width: 1px;
    height: 80px;
    background: #FFF;
    margin: 20px auto 0;
    position: relative;
    z-index: 100;
}
}
@media only screen and (max-width: 480px) {
    .logo {
        display: block; position: absolute;
top:13px;
left: 0px;}
.logo img {width: 250px; }
    .vline {
    width: 1px;
    height: 60px;
    background: #FFF;
    margin: 20px auto 0;
    position: relative;
    z-index: 100;
}
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
@media only screen and (min-width: 768px) {
/*----------------------------------------------------------------*/
/* 共通 */
/*----------------------------------------------------------------*/

.sp-hide {
	display: inline !important;
}

.pc-hide {
	display:none !important;	
}
}
@media only screen and (max-width: 768px) {
/*----------------------------------------------------------------*/
/* 共通 */
/*----------------------------------------------------------------*/

.sp-hide {
	display:none !important;	
}

.pc-hide {
	
    display: inline !important;
}
}


.container {
    max-width: 1200px;
    width: 100%;
    padding: 4% 0;
    margin: 0 auto;
    
}
.container img {
    max-width: 800px;
    width: 100%;
    /*margin: 20px auto 20px;*/
    /*display: block;
*/
    
}

@media screen and (max-width: 1200px) {
    .container {
    padding: 8% 20px;
}
}
.site-footer {
    background-color:var(--color-right);
}
.site-footer .footer-container {
     margin: 0 auto;
    padding: 1em 0 90px;
    width: 900px;
}
@media screen and (max-width:980px) { 
.site-footer .footer-container {
     margin: 0 auto;
    padding: 1em 1em 90px;
    width: 100%;
}
}

/*フッター固定*/
/*-----------------------固定お問合せボタン*/
.contact_fixed_btn_wrap.pc_only {
	position: fixed;
	top: 50%;
	right: 0;
	/*margin-left: -20px;*/
	transform: translateY(-50%);
	/*overflow: hidden;*/
    z-index: 1
}
.contact_fixed_btn_wrap.sp_only {
	display: none;
}
.contact_fixed_btn_wrap.pc_only .contact_fixed_btn {
	padding: 15px 13px 20px 13px;
	border-radius: 4px 0 0 4px;
	z-index: 10;
	transition: .3s;
    writing-mode: vertical-rl;
   
    
}


.contact_fixed_btn_wrap.pc_only .contact_fixed_btn.contact_fixed_btn1 {
	background: var(--color-other);
    margin-top: 10px;
}
.contact_fixed_btn_wrap.pc_only .contact_fixed_btn.contact_fixed_btn2 {
	background: var(--color-other2);
    margin-top: 10px;
}
.contact_fixed_btn_wrap.pc_only .contact_fixed_btn.contact_fixed_btn3 {
	background: var(--color-red);
    margin-top: 10px;
    
}


.contact_fixed_btn_wrap.pc_only .contact_fixed_btn a {
   color:  var(--color-theme-darken);
    
}
.contact_fixed_btn_wrap.pc_only .contact_fixed_btn3 a {
   color:  #FFF;
}
.contact_fixed_btn_wrap.pc_only .contact_fixed_btn:hover {
	padding-right: 25px;
	margin-left: -10px;
}
.contact_fixed_btn_wrap.pc_only .contact_fixed_btn a {
	display: block;
	/*padding: 15px 20px 20px 20px;*/
    
}
.contact_fixed_btn_wrap.pc_only .contact_fixed_btn i {
    padding-bottom: 2px;
}
.contact_fixed_btn_wrap.pc_only .contact_fixed_btn img {
	width: 28px;
}
@media screen and (max-width: 959px) {
	.contact_fixed_btn_wrap.pc_only {
		display: none;
	}
	.contact_fixed_btn_wrap.sp_only {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
        z-index: 1001;
	}
	.contact_fixed_btn_wrap.sp_only .flex_box {
		display: flex;
		flex-wrap: nowrap;
		align-items: stretch;
        justify-content: center;
	}
	.contact_fixed_btn_wrap.sp_only .flex_box .contact_fixed_btn {
		
		text-align: center;
	}

	.contact_fixed_btn_wrap.sp_only .flex_box .contact_fixed_btn.contact_fixed_btn2 {
		background: none;
		margin-top: 0;
	}
 
	.contact_fixed_btn_wrap.sp_only .contact_fixed_btn a {
		display: block;
		padding: 10px;
	}
	.contact_fixed_btn_wrap.sp_only .contact_fixed_btn a img {
		width: 70px;
		margin: 0 auto;
	}
    .icon_box_sp {
        display: flex;
		flex-wrap: nowrap;
		align-items: center;
        justify-content: center;
    }
    .icon_box_sp a {
        
        display: block;
        padding: 10px;
    }
    .icon_box_sp a img {
        width: 40px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 480px) {
    .contact_fixed_btn_wrap.sp_only .contact_fixed_btn a {
		padding: 3px;
	}
    	.contact_fixed_btn_wrap.sp_only .contact_fixed_btn a img {
		width: 55px;
	}
    .icon_box_sp {
        padding: 8px;
    }
        .icon_box_sp a {
        
        display: block;
        padding: 8px;
    }
    .icon_box_sp a img {
        width: 35px;
        margin: 0 auto;
    }
}

/*-----------------------固定お問合せボタン*/
/*フッター固定*/


/*ページトップへ戻る・ページ内スクロール*/

#page_top{
  width: 70px;
  height: 40px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 1;
    z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 80px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 20px;
  color:  var(--color-theme);
  position: absolute;
  width: 20px;
  height: 20px;
  top: -35px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
    font-weight: 700;
  content: 'PAGE TOP';
  font-size: 14px;
  color: var(--color-theme);
  position: absolute;
  top: 20px;
  bottom: 0px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
    font-family: 'Antonio', sans-serif;
}
@media screen and (max-width:768px) {
    #page_top{
  width: 70px;
  height: 50px;
  position: fixed;
  right: 0px;
  bottom: 80px;
  opacity: 1;
    z-index: 999;
}
#page_top a{
   
  position: relative;
  display: block;
  width: 70px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 20px;
  color: #000000;
  position: absolute;
  width: 20px;
  height: 10px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
    font-weight: 400;
  content: 'PAGE TOP';
  font-size: 11px;
    font-weight: 700;
  color: #000000;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
}
/*ページトップへ戻る・ページ内スクロール*/



/*見出し*/


h2.top_ttl02 {
font-weight: 600;
        color: #000000; 
    font-size: 30px; 
    line-height: 2em;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    text-transform:uppercase;
    
}

h2.top_ttl02 .en {
    font-size: 7rem;
    font-family: 'Jost', sans-serif;
    color:  var(--color-theme);
    line-height: 1.1em;
    
}

h2.top_ttl02:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;/*線の上下位置*/
  display: inline-block;
  width: 80px;/*線の長さ*/
  height: 1px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #000000;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}
h2.top_ttl02 .ja {
    display: block;
    font-size: 1rem;
    font-weight: normal;
}


@media screen and (max-width: 768px) {
       h2.top_ttl02 {
font-weight: 600;
        color: #000000; 
    font-size: 30px; 
    line-height: 2em;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    text-transform:uppercase;
    
}

h2.top_ttl02 .en {
    font-size: 2rem;
    font-family: 'Jost', sans-serif;
    color:  var(--color-theme);
    line-height: 1.1em;
    
}

h2.top_ttl02:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;/*線の上下位置*/
  display: inline-block;
  width: 80px;/*線の長さ*/
  height: 1px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #000000;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}
h2.top_ttl02 .ja {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
}
}

/*見出し*/
/*footer*/

footer {
    font-size: 12px;
}
footer p {
    color: #FFF;
    line-height: 2;
}
footer a {
	text-decoration: none;
    color: #FFF;
}
footer a:hover {
    text-decoration: underline;
    color: #FFF;
}
.uneigaisya {
    font-weight: 600;
    
}
address {
   color: #FFF; 
}



.site-footer {
    background-color:var(--color-theme);
}

.footer {
    padding: 30px 0;
}

.flex_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
 .site-footer h1 {
    font-size: 11px;
     color: #FFF;
     text-align: center;
     margin-bottom: 20px;
}
.flex_footer_company {
  width: 100%;
  margin: 0;
        display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.flex_footer_company_in {
    margin-bottom: 20px;
    margin: 1em 2em 0 0;
    padding: 0 1em 0 0;
}
.flex_footer_company_in:first-child {
    border-right: 0.5px #FFF solid;
    padding: 0 3em 0 0;
}
.foot_logo {margin-bottom: 2em;}
.foot_logo img {width: 600px; margin: 0 auto;
display: block;}

.flex_footer_company_in img {
    max-width: 600px;
}


.flex_footer_link_box {
  width: 100%;
  margin: 0;
    display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
}
.flex_footer_link {width: 16%; margin: 2%; }

@media screen and (max-width: 768px) {
    .footer {
    padding: 30px 20px 30px;
}
 .site-footer h1 {
    font-size: 10px;
}
    .foot_logo img {width: 260px; margin: 0 auto;
display: block;}
    .flex_footer_company,.flex_footer_link_box {width: 100%;}
    .flex_footer_company_in {
     width: 100%;
        margin-bottom: 20px;
    margin: 0;
    padding: 0;
    }

    .flex_footer_link {width: 100%; margin: 0%; padding:0; }
    .flex_footer_company img {width: 180px; margin: 0 auto; }
    .flex_footer_company_in:first-child {
    border-right:none;
       border-bottom: 0.5px #FFF solid; 
    padding: 0 0 1em 0;
        margin-bottom: 1em;
}
    
    }


.footmenu li {
    display: list-item;  /* 縦に並べる */
  list-style-type: none;
  text-transform: capitalize;
  padding: 0.3em 0;
    text-decoration: none;
    line-height: 1.2em;
    font-size: 12px;
    letter-spacing: 0;
  }

.footmenu li a {
}
.footmenu li a:hover {
    text-decoration: underline;
    color: #FFF;
}
.footmenu li ul li {
    margin-left: 2em;
    
}
.footmenu li ul li a {
    font-weight: normal;
    line-height: 1.4em;
    position: relative;
}
.footmenu li ul li a:before {
  font-family: "Font Awesome 5 Free";
  content: "/";
  position: absolute;
  left : -1em; /*左端からのアイコンまで*/
}



.copyright {
    font-size: 11px;
    text-align: center;
    margin-top: 30px;
    padding: 10px 0;;
}
@media screen and (max-width: 768px) {
    .footmenu li {padding: 0.3em 0;
        font-size: 11px;
    }
    .footmenu li:first-child {padding-top: 0px;}
    .footmenu2-wrap ul.footmenu2  {
  justify-content: flex-start;
}
.footmenu2-wrap ul.footmenu2 li {
    padding: 0 1em 0 0;
}
    .copyright {
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
    padding: 10px 0;;
}
}
/*footer*/

/*ページトップへ戻る・ページ内スクロール*/

#page_top{
  width: 90px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 0px;
  opacity: 1;
    z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 20px;
  color: var(--color-theme-darken);
  position: absolute;
  width: 25px;
  height: 25px;
  top: -35px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
    font-weight: 400;
  content: 'PAGE TOP';
  font-size: 12px;
  color: var(--color-theme-darken);
  position: absolute;
  top: 25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
    font-family: 'Jost', sans-serif;
}
@media screen and (max-width:768px) {
    #page_top{
  width: 70px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 1;
    z-index: 999;
}
#page_top a{
   
  position: relative;
  display: block;
  width: 70px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 20px;
  position: absolute;
  width: 20px;
  height: 10px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
    font-weight: 400;
  content: 'PAGE TOP';
  font-size: 11px;
    font-weight: 700;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
}
/*ページトップへ戻る・ページ内スクロール*/


/*第二階層お問い合わせボックス*/
.otoiawase {
    background:var(--color-yellow);
     padding: 2rem 0;
}
.otoiawase-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.otoiawase-box .left,.otoiawase-box .right {
    width: 50%;
    padding: 2em;
}
.otoiawase-box .left {
    border-right:solid 1px #000;
    
}
.otoiawase-box img {
    width: 100%;
    max-width: 300px;
}
.otoiawase-box {
    text-align: center;
}
.otoiawase-box .tel_txt {
   
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: solid #000 1px;
    margin: 1em 0;
    font-size: 20px;
    display: inline-block;
    padding-bottom: 0.5em;
    line-height: 1.6em;
    font-weight: 600;
}

.tel_box_tel a {
    font-size: 20px;
    padding: 0;
    font-weight: normal;
    text-decoration: none;
    line-height: 1.4em;
    

}
.tel_box_tel a::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 25px;
  background: url(../img/top/free1.gif) no-repeat;
  background-size: contain;
  margin-right: 8px;
    vertical-align: middle;
}
.tel_box a i {color: var(--color-theme);}
.tel_txt {
    font-size: 12px;
    font-weight: normal;
    color: #000;
    border: solid 1px #000;
    padding: 1px 10px;
    vertical-align: middle;
    margin-right: 1em;
}

.mailform_txt-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 2em 0;
}
.mailform_txt {
    color: var(--color-theme); 
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: solid var(--color-theme) 2px;
    
    font-size: 26px;
    display: inline-block;
    padding-bottom: 10px;
}
.otoiawase-box .tel_box_tel a {
    color: #000;
    margin: 1em 0;
    font-size: 32px;
}
.btn_mail_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.btn_mail {
    width: 100%;
}

.btn_mail a {
    
    
    font-weight: normal;
    padding: 0.5em 1em;
    width: 100%;
    display: block;
    font-size: 18px;
    color: #FFF; 
    border-radius: 4px;
background: var(--color-base);
}



.btn_mail a i {
    padding-right: 8px;
}

.btn_mail a:hover {background:var(--color-base-darken);
}

@media screen and (max-width:768px) {
    .otoiawase-box .left,section.otoiawase .right {
    width: 100%;
    padding: 1em;
}
    .otoiawase {
     padding: 15px;
}
.otoiawase-box .left {
    border-right:none;
    padding:10px;
}
    .otoiawase-box .tel_txt {
    font-size: 12px;
        margin: 0 0 1em;
}
    .mailform_txt {
    font-size: 13px;
    
}
    .otoiawase-box .tel_box_tel a {
    font-size: 15px;
}
    .btn_mail_wrap {
    margin-top: 10px;
}
.btn_mail {
    margin: 3px 0;
    width: 100%;
}
.otoiawase-box .btn_mail a {

    font-size: 13px;


}
    .otoiawase .right {
    display: none;
}
}
/*第二階層お問い合わせボックス*/
/*共通*/
.contents h2 {
    font-size: 2.3rem;
    color:#FFF;
    background: var(--color-theme);
    margin-bottom: 0.5em;
    font-weight: 700;
    text-align: center;
    padding: 0.8em 1em;
}
.contents h3 {
    font-size: 2rem;
    color:var(--color-base-darken);
    margin-bottom: 0.8em;
    font-weight: 700;
text-align: center;
    border-bottom: 2px solid var(--color-base-darken);
}
.txtimg_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.txtimg_box_txt {
    width: 50%;
    padding-right: 40px;
}
.txtimg_box_img {
    width: 50%;
    
}
.txtimg_box_img img {
    width: 100%;
   
}
.sec {
    padding-bottom:60px;
}
.daini_wrap {
    margin-top: 100px;
}
.otoiawase .catch {
     font-size: 2.3rem;
    
    font-weight: 700;
    text-align: center;
    color: var(--color-theme);
    margin-top: 0.5em;
}
.daini_cont h2 {
    font-size: 1.3rem;
    color: #FFF;
    background: var(--color-theme);
    
    font-weight: 700;
    text-align: center;
    padding: 0.5em 1em;
}
.daini_cont {
    

max-width: 900px;
    width: 100%;
    padding: 4% 0;
    margin: 0 auto;
    }
@media screen and (max-width: 768px) {
.contents h2 {
    font-size: 1rem;
    color:#FFF;
    background: var(--color-theme);
    font-weight: 700;
    text-align: center;
    padding: 0.8em 1em;
}
.contents h3 {
    font-size: 1rem;
    color:var(--color-base-darken);
    margin-bottom: 0.8em;
    font-weight: 700;
text-align: center;
    border-bottom: 2px solid var(--color-base-darken);
}
.txtimg_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.txtimg_box_txt {
    width: 100%;
    padding-right: 0px;
}
.txtimg_box_img {
    width: 100%;
    
}
.txtimg_box_img img {
    width: 100%;
   
}
.sec {
    padding-bottom:30px;
}
.daini_wrap {
    margin-top: 50px;
}
.otoiawase .catch {
     font-size: 1rem;
    
    font-weight: 700;
    text-align: center;
    color: var(--color-theme);
    margin-top: 0.5em;
}
.daini_cont h2 {
    font-size: 1rem;
    color: #FFF;
    background: var(--color-theme);
    
    font-weight: 700;
    text-align: center;
    padding: 0.5em 1em;
}
.daini_cont {

    width: 100%;
    padding: 4% 0;
    margin: 0 auto;
    }
}
/*共通*/
/*メインタイトル*/
.main_ttl_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background:var(--color-base-right);
}
.main_ttl_wrap .catch {
    color: var(--color-base);
    font-size: 2rem;
    margin-bottom: 0.8em;
    text-align: center;
    font-weight: 700;
   /*font-family: "Noto Sans JP", sans-serif;*/
}
.main_ttl_wrap p {
    font-size: 1.2rem;
    text-align: center;
}
.main_ttl_wrap img {
    width: 400px;
    display: block;
    margin: 0 auto;
   padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
   
.main_ttl_wrap .catch {
    color: var(--color-base);
    font-size: 1rem;
    margin-bottom: 0.8em;
    text-align: left;
    font-weight: 700;
   /*font-family: "Noto Sans JP", sans-serif;*/
}
.main_ttl_wrap p {
    font-size: 13px;
    text-align: left;
}
.main_ttl_wrap img {
    width: 200px;
    display: block;
    margin: 0 auto;
   padding-bottom: 20px;
}
}
/*メインタイトル*/
/*クリニック開業の現状*/
.genjo_wrap_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.genjo_wrap_img {
    width: 30%;
    padding-right: 60px;
}
.genjo_wrap_img img {
    width: 100%;
    max-height: 800px;
}
.genjo_wrap_txt {
    width: 70%;
}
.img_box600 {
    margin: 40px 0;
    text-align: center;
}
.img_box600 img {
    padding: 20px 0;
    display: block;
    margin: 0 auto;
    width: 600px;
}
.img_box800 {
    margin: 40px 0;
    text-align: center;
}
.img_box800 img {
    padding: 20px 0;
    display: block;
    margin: 0 auto;
    width: 800px;
}
.ttl_graph {
    background:var(--color-base-right);
    color: var(--color-base);
    font-weight: 600;
    padding: 0.5em 1em;
    text-align: center;
    display: inline-block;
    width: auto;
     margin: 0 auto;
    font-size: 1.1em;
    width: 100%;
}
@media screen and (max-width: 768px) {
    
.genjo_wrap_img {
    width: 100%;
    padding-right: 0px;
}
.genjo_wrap_img img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}
.genjo_wrap_txt {
    width: 100%;
}
.img_box600 {
    margin: 20px 0;
    text-align: center;
}
.img_box600 img {
    padding: 10px 0;
    display: block;
    margin: 0 auto;
    width: 100%
}
.img_box800 {
    margin: 20px 0;
    text-align: center;
}
.img_box800 img {
    padding: 0;
    display: block;
    margin: 0 auto;
    width: 100%
}
.ttl_graph {
    background:var(--color-base-right);
    color: var(--color-base);
    font-weight: 600;
    padding: 0.5em 1em;
    text-align: center;
    display: inline-block;
    width: auto;
     margin: 0 auto;
    font-size: 1.1em;
    width: 100%;
}
}
/*クリニック開業の現状*/
/*クラウドファンディングとは*/
.about_wrap {
    background:var(--color-right);
}
.about_wrap_box {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: stretch;
}
.about_wrap_img {
    width: 40%;
    padding-left: 60px;
}
.about_wrap_img img {
    width: 100%;
}
.about_wrap_txt {
    width: 60%;
}
@media screen and (max-width: 768px) {
    .about_wrap {
    background:var(--color-right);
}
.about_wrap_box {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: stretch;
}
.about_wrap_img {
    width: 100%;
    padding-left: 0px;
}
.about_wrap_img img {
    width: 250px;
    display: block;
    margin: 0 auto;
}
.about_wrap_txt {
    width: 100%;
}
}
/*クラウドファンディングとは*/
/*クリニカルファンディングの特長*/
.features_wrap {
    
}
.features_wrap_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.features_wrap_img {
    width: 30%;
    padding-right: 60px;
}
.features_wrap_img img {
    width: 100%;
}
.features_wrap_txt {
    width: 70%;
}
.ol_suuji{
	counter-reset: listnum; /* カウンターをリセット */
	list-style: none; /* 標準のスタイルは消す */
    font-size: 1.2em;
}
.ol_suuji li::before{
	counter-increment: listnum; /* counter-resetと同じ文字列 */
	content: counter(listnum); /* カウントした数に応じて番号を表示 */
}
.ol_suuji li::before{
	counter-increment: listnum;
	content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
	padding-right: 15px;
	color: var(--color-base);
	vertical-align: middle;
	font-size: 24px;
	font-family: roboto;
	font-weight: bold;
}
.ul_check li{
    position: relative;
    padding-left: 30px;
    font-size: 1.2em;
    line-height: 2.2;
  }
 
  .ul_check li:before {
    content: "";
    position: absolute;
    top: .38em;
    left: 6px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 6px;
    height: 10px;
    border-right: 3px solid var(--color-base);
    border-bottom: 3px solid var(--color-base);
      
  }
 
  .ul_check li:after {
    content: "";
    position: absolute;
    top: .4em;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-base);
    border-radius: 2px;
  }
@media screen and (max-width: 768px) {
    .features_wrap {
    
}
.features_wrap_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.features_wrap_img {
    width: 100%;
    padding-right: 0px;
}
.features_wrap_img img {
    width: 250px;
    display: block;
    margin: 0 auto 20px;
}
.features_wrap_txt {
    width: 100%;
}
.ol_suuji{
	counter-reset: listnum; /* カウンターをリセット */
	list-style: none; /* 標準のスタイルは消す */
    font-size: 1em;
}
    .ol_suuji li {
        padding-left: 25px;
        position: relative;
    }
.ol_suuji li::before{
	counter-increment: listnum; /* counter-resetと同じ文字列 */
	content: counter(listnum); /* カウントした数に応じて番号を表示 */
}
.ol_suuji li::before{
	counter-increment: listnum;
	content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
	padding-right: 3px;
	color: var(--color-base);
	vertical-align: middle;
	font-size: 14px;
	font-family: roboto;
	font-weight: bold;
    position: absolute;
    left: 5px;
}
.ul_check li{
    position: relative;
    padding-left: 20px;
    font-size: 1em;
    line-height: 2;
  }
 
  .ul_check li:before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 5px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 4px;
    height: 6px;
    border-right: 3px solid var(--color-base);
    border-bottom: 3px solid var(--color-base);
      
  }
 
  .ul_check li:after {
    content: "";
    position: absolute;
    top: .4em;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-base);
    border-radius: 2px;
  }
}
/*クリニカルファンディングの特長*/
/*こんな皆様に*/
.konnaminasama_wrap {
    background:var(--color-right);
}
.konnaminasama_wrap_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.konnaminasama_wrap_img {
    width: 40%;
    padding-right: 60px;
}
.konnaminasama_wrap_img img {
    width: 100%;
}
.konnaminasama_wrap_txt {
    width: 60%;
}
@media screen and (max-width: 767px){
    .konnaminasama_wrap {
    background:var(--color-right);
}
.konnaminasama_wrap_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.konnaminasama_wrap_img {
    width: 100%;
    padding-right: 0px;
}
.konnaminasama_wrap_img img {
    width: 200px;
    display: block;
    margin: 0 auto 20px;
}
.konnaminasama_wrap_txt {
    width: 100%;
}
}
/*こんな皆様に*/
/*DPSとは*/
.dps_wrap {
    background:var(--color-right);
}
.dps_wrap_box {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: stretch;
}
.dps_wrap_img {
    width: 50%;
    padding-left: 60px;
}
.dps_wrap_img img {
    width: 100%;
    padding-bottom: 20px;
}
.dps_wrap_txt {
    width: 50%;
}
.dps_catch {
    color: var(--color-base);
    font-size: 1.6rem;
    margin-bottom: 0.8em;
    
    font-weight: 700;
}
@media screen and (max-width: 767px){

.dps_wrap_box {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: stretch;
}
.dps_wrap_img {
    width: 100%;
    padding-left: 0px;
}
.dps_wrap_img img {
    width: 100%;
    padding: 20px 0 0;
}
.dps_wrap_txt {
    width: 100%;
}
.dps_catch {
    color: var(--color-base);
    font-size: 1rem;
    margin-bottom: 0.5em;
    
    font-weight: 700;
}
}
caption {
    font-weight: 700;
}
table.tbl02 {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 0 0 3em;
    border: 1px solid #989898;
}
table.tbl02 tr {
    border-bottom: 1px solid #989898;
}
table.tbl02 tr.waku-1 {
    border-bottom: #C00 solid 3px;
}
table.tbl02 tr th,
table.tbl02 tr td {
    text-align: left;
    vertical-align: top;
}
table.tbl02 tr th {
    width: 15%;
    font-weight: 700;
    border: 1px solid #989898;
    padding: 20px 0;
    background: var(--color-base-right);
    text-align: center;
}
table.tbl02 tr td p {
    padding-bottom: 1em;
}
table.tbl02 tr td {
    width: 75%;
    padding: 20px 20px;
    border: 1px solid #989898;
}

@media screen and (max-width: 767px){
table.tbl02 tr th,
table.tbl02 tr td {
    display: block;
    width: 100%;
    padding:10px 0;
    border:none;
    
}
    table.tbl02 tr td {
        background: #FFF;
        padding:10px;
    }
table.tbl02,table.tbl02 tr,table.tbl02 tr th {
    border:none;
}
    table.tbl02 tr.waku-1 {
    border: #C00 solid 3px;
}
}
/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.company_name {

    display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: flex-start;
}
.company_name span {
    background: var(--color-right);
    padding: 3px 10px;
    border-radius: 5px;
    border: solid 1px #000;
    color: #000;
    font-weight: 700;
    font-size: 10px;
    margin: 0 10px;
    line-height: 1em;
}

.chusyaku {
    background:#ECECEC;
    padding: 5px 10px;
}
.chuui {
    background:#ECECEC;
    padding: 20px 20px;
    border: solid 1px #979797;
    margin: 40px 0;
    text-align: center;
    font-weight: 700;
}
@media screen and (max-width: 767px){
    .chuui {
    padding: 10px 5px;
    margin: 20px 0;
        
}
}
/*DPSとは*/
/*お問い合わせはこちら*/
.otoiawasehakochira_wrap {
    
    
}
.otoiawasehakochira {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-base);
    
}
.otoiawasehakochira {
  position: relative;/*相対配置*/
    display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
}

.otoiawasehakochira:after {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 200px;/*画像の幅*/
  height: 150px;/*画像の高さ*/
  background-image: url(../img/top/otoiawase.png);
  background-size: contain;
  vertical-align: middle;
    background-repeat: no-repeat;
    margin-left: 0.5em;
}

.balloon{
  position: relative;
  background: var(--color-yellow);
  padding: 2em 4em;
display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
}
.balloon:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: var(--color-yellow)  transparent transparent transparent;
  border-width: 30px 60px 0 60px;
}
@media screen and (max-width: 768px) {

.otoiawasehakochira {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-base);
    text-align: center;
    line-height: 1;
    
}
.otoiawasehakochira {
  position: relative;/*相対配置*/
    display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
}

.otoiawasehakochira:after {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 90px;/*画像の幅*/
  height: 60px;/*画像の高さ*/
  background-image: url(../img/top/otoiawase.png);
  background-size: contain;
  vertical-align: middle;
    background-repeat: no-repeat;
    margin-left: 0.5em;
}

.balloon{
  position: relative;
  background: var(--color-yellow);
  padding: 1em 1em;
display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
}
.balloon:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: var(--color-yellow)  transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}
}
/*お問い合わせはこちら*/