@charset "UTF-8";
:root{
    --theme_color:rgba(0,158,65,1);
    --theme_color_thin:rgba(12, 119, 220 ,0.1);
    --accent_color:rgb(255, 147, 38);;
	--base_color:rgb(255,255,255);
	--bg_color:rgb(250,250,250);
	--color_tx:rgb(100,100,100);
}
div,a,button,p,img{
    background-size:cover;
    background-position:50% 50%;
    background-repeat:no-repeat;
}

div,p,a,button,table,tr,td,input,textarea{
	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
}
button{display:block;margin:0;padding:0;border:0;background-color:#fff;}
div{margin:0;padding:0;text-align:left;}
h1,h2,h3,h4,h5{font-weight:normal;margin:0;}
p{margin:0;padding:0;text-align:left;color:rgb(102,102,102);}
img{display:block;width:100%;vertical-align:bottom;object-fit:contain;}
table{width:100%;border-collapse:collapse;border:1px solid #cccccc;}
td{border:1px solid #cccccc; }
a:link,a:visited {color:rgb(255,150,100);text-decoration:none;}
a:hover,a:active {opacity:0.7;}
a{cursor:pointer}
button,a,input{outline:none;}
.clearfix:after{content: "";clear: both;display: block;}
.dotTx{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;}

/*共通*/
.hid{overflow:hidden}
.esc_opacity0{opacity:0}
.esc_dispNone{display:none}
.esc_jsLoading{opacity:0}
.esc_hidden{overflow:hidden;}
@media screen and (min-width: 769px) {
	.onlyMb{display:none;}
}
@media screen and (max-width: 768px) {
	.onlyPc{display:none;}
}
/*設定*/
body{
    margin:0;
	padding:0;
/*	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
    line-height:1.6;
}
body,div,p,a,button,h1,h2,h3,h4,h5,td,ul{
	color:#000000;
    font-family: 'Century Gothic','Noto Sans JP',"游ゴシック体", "Yu Gothic", YuGothic,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    /*"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
/*    Verdana*/
    font-weight:normal;
	font-size:16px;
}
li,span{color:inherit;font-size:inherit;font-weight:inherit;}
@media screen and (max-width: 768px) {
    body,div,p,a,button,h1,h2,h3,h4,h5,td{
        font-size:3.2vw;
    }
}
/*
input::-webkit-input-placeholder {color:rgba(102,102,102,1);}
input:-ms-input-placeholder {color:rgba(102,102,102,1);}
input::-moz-placeholder {color:rgba(102,102,102,1);}
*/
/*スクロールバー*/

/*
::-webkit-scrollbar{
	width: 7px;
    height:7px;
}
::-webkit-scrollbar-track{
	background: rgba(222,222,222,1);
	border: none;
    border-radius: 10px;
    box-shadow:0 0 0 0; 
}
::-webkit-scrollbar-thumb{
	background: rgba(239,130,0,0.7);
	border-radius: 10px;
	box-shadow: none;
}
*/
ul,ol{
    margin:0;
    padding:0;
}
li{
    position:relative;
    list-style-type: none;
}
li:before{
    position:absolute;
    content:"";
}
ul.dot{
    padding-left:1.5em;
}
ul.dot li{
    list-style-type:disc;
}
ul.dot li:before{
    display:none;
}
ol{
    padding-left:2em;
}
ol li{
    list-style-type:decimal;
}
ol.roman li{
    list-style-type:lower-roman;
}
ol li:before{
    display:none;
}
ol.paren-number {
    counter-reset: num;
}
ol.paren-number li {
    list-style: none;
    counter-increment: num;
    position: relative;
}
ol.paren-number li::before {
    content: "(" counter(num) ") ";
    display:inline;
    position: absolute;
    top:0em;
    left: -2em;
    width:auto;
    height:auto;
    background:transparent;
}
ul p{
    margin:0;
}

.flex{
    display:flex;
    align-items:stretch;
    align-content:stretch;/* 折り返し時の配置指定 */
    justify-content: space-between;
/*    justify-content: flex-start;*/
    flex-direction:row;
    flex-wrap: wrap;/* 折り返し指定 */
}
.flex2{
    display:flex;
    align-items:stretch;
    align-content:stretch;/* 折り返し時の配置指定 */
    justify-content: center;/*space-between;*/
/*    justify-content: flex-start;*/
    flex-direction:row;
    flex-wrap: wrap;/* 折り返し指定 */
}
.midCenter{
	 display: -webkit-flex;
	 display: flex;
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	 align-items: center; /* 縦方向中央揃え */
	 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
	justify-content: center; /* 横方向中央揃え */
}
@media screen and (max-width: 768px) {
    .noFlex_mb{
        display:block;
    }   
}

/*
@media screen and (max-width: 1099px) {
    #bt_naviW{display:block;}
    #navMenu-pc,#bt_navLast{display:none;}
}
@media screen and (min-width: 1100px) {
    #bt_naviW{display:none;}
    #navMenu-pc,#bt_navLast{display:block;}
}
*/

/*alternate PCのみ*/
@media screen and (min-width: 769px) {
    .alterArea>div:nth-child(2n)>img, .alterArea>div:nth-child(2n)>div{
        float:right;
    }
    .alterArea>div:nth-child(2n) h3,.alterArea>div:nth-child(2n) p{
        text-align:right;
    }
}
/*wordpress*/
article {
    font-size:16px;
}
@media screen and (max-width: 768px) {
    article {
        font-size:3.5vw;
    }
}
.alignnone{padding:4px;margin:0;}	
.aligncenter{display:block;margin:0.5em auto;}	
.alignright{float:right;display:inline;margin:0 0 1em 1em;}	
.alignleft{float:left;display:inline;margin:0 1em 1em 0;}	
.clear {clear: both;}
@media screen and (max-width: 768px) {
    .alignright,.alignleft{width:48vw;}
}
#textArea article [id^=gallery-] img{border-width:1px;}
@media screen and (max-width: 768px) {
#textArea article [id^=gallery-] img{border-width:0px;height:auto;}
}

@media screen and (max-width: 768px) {
    .ggmap {
		position: relative;padding-bottom: 56.25%;padding-top: 30px;height: 0;overflow: hidden;
    }
    .ggmap iframe, .ggmap object, .ggmap embed {
		position: absolute;top: 0;	left: 0;width: 100%; height: 100%;
    }
}

#bt_naviW span{
    transition-duration:0.5s;
}
#bt_naviW span:nth-child(1){
    transform-origin:100% 100%;
}
#bt_naviW span:nth-child(3){
    transform-origin:100% 100%;
}

/*autoindex*/
#content-index{
    display:inline-block;
    background-color:rgb(240,240,240);
    border:1px solid rgb(200,200,200);
    padding:1em 2em 1em 1em;
    margin:1em auto;
}
#content-index a{
    display:block;
    line-height:1.8;
}
#content-index a:link,#content-index a:visited{
    color:#000;
}

/*フットケア学会*/
#header{
    width:100%;
}
#message{
    display:none;
}
.top-circle span>span{
    opacity:0.5;
}

body:not(.front-page) .bg-cover{
    display:none;
}

.registration-table td{
    text-align:center;
}
.registration-form input:where([type=radio],[type=checkbox]){
    width:1.2em;
    height:1.2em;
    margin:0 0.5em 0.2em;
    vertical-align:middle;
}
.seminar-table th:nth-child(1){
    width:65%;
}
.seminar-table th:nth-child(2){
    width:20%;
}
.seminar-table th:nth-child(3){
    width:15%;
}

h1.entry-title{
    font-size:24px;
    font-weight:bold;
    margin-bottom:1em;
    padding-bottom:0.3em;
    border-bottom:1px solid rgb(0,0,0);
}
body.cart h1.entry-title,
body.cart .wc-block-cart-items__header-image,
body.cart .wc-block-cart__totals-title{
    display:none;
}
body.cart .wc-block-cart-items .wc-block-cart-item__image,
body.cart .wc-block-cart-items .wc-block-cart-item__remove-link{
    /* display:none !important; */
}
button#place_order{
    /* display:none; */
}
body.checkout h1.entry-title,
body.checkout .woocommerce-notice--success{
    display:none;
}
body.checkout #order_review .woocommerce-Price-amount{
    /* color:transparent; */
}

.wooccm-additional-fields :where(.wooccm-field-wooccm0,.wooccm-field-wooccm1){
    opacity:0
}
/*woocommerce調整*/
.content-area{
    padding:0 3vw;
}
.woocommerce .form-row{
    padding-top:1em;
}
.woocommerce .optional{
    display:none;
}
.woocommerce-order-details__title{
    display:none;
}
.woocommerce-table.shop_table.order_details{
    display:none;
}
.woocommerce .wooccm-field-country{
    padding-top:3em;
}
.wc-block-components-product-badge{
    display:none !important;
}

@media screen and (max-width:768px){
    .col2-set .form-row-first{
        width:48%;
        float:left;
    }
    .col2-set .form-row-last{
        width:48%;
        float:right;
    }
    article input:not([type=submit],[type=radio],[type=checkbox]){
        font-size:3.5vw;
        height:8vw;
    }
}
#bt_staff_enter{
    display:block;
    background-color:var(--theme_color);
    color:#fff;
}
body.page-reader :where(#header,#footer){
    display:none;
}
html{
    margin-top:0;
}
body.page-certification :where(#header,.header_space,#footer){
    display:none;
}
body.page-certification2 :where(#header,.header_space,#footer){
    display:none;
}
@media print{
    .print-esc-display{
        display:none;
    }
    .for-print-area{
        display:block;
    }
    .print_color_white{
        color:#fff !important;
    }
}

.password-3d-flip-pdf{
    padding:5% 2%;
}
.password-3d-flip-pdf .inner{
    padding:10% 5%;
    border:1px solid rgb(224,224,224);
    min-height:50vh;
}
.password-3d-flip-pdf .inner p{
    padding:0.5em 0;
    text-align:center;
}

.wide-scroll{
    width:auto;
    overflow-x:auto;
}
.ondemand-table {
    min-width:900px;
}
.ondemand-table th{
    width:auto;
}
.ondemand-table :where(td,th){
    padding:0.5em;
    font-size:14px;
}
.ondemand-table :where(td,th) a{
    font-size:14px;
    font-weight:bold;
}
.ondemand-table td:nth-last-child(4){
    width:4em;
}
.ondemand-table td:nth-last-child(3){
    width:6em;
}
.ondemand-table a:before{
    content:"";
    position:relative;
    width:1em;
    height:1.1em;
    margin:0.3em 0.3em 0em 0;
    float:left;
    background-image:url(../img/icon_play.svg);
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
}

/*小児理学*/
@media screen and (min-width:1001px){
    .onlyTb{
        display:none;
    }
}
@media screen and (max-width:1000px) and (min-width:769px){
    .tb_none{
        display:none;
    }
}
@media screen and (max-width:1000px) and (min-width:769px){
    .bnr_endai{
        margin-top:10px;
        padding-right:110px;
    }
    .bnr_endai a{
        width:100px;
    }
}
.radioSet{
    display:inline-block;
    width:12em;
    text-align:left;
}
.wc-block-components-button:not(.is-link) .wc-block-components-button__text{
    color:#fff;
}
.wc-block-components-checkout-place-order-button__text{
    color:#fff;
}
h2.wc-block-components-title.wc-block-components-title{
    margin:1em 0 0.5em;
    padding:0.3em 0.5em 0.3em 1.4em;
}
.normal-price{
    display:inline-block; 
}
.today-price{
    display:none;
}

.registration-table th{
    width:auto;
    border-left:1px solid rgba(255,255,255,1);
    border-bottom:1px solid rgba(255,255,255,1);
}
.registration-table th,.registration-table td{
    width:30%;
    padding:0.5em;
    vertical-align:middle;
}
.registration-table th:nth-child(n+2){
    text-align:center;
}
@media screen and (max-width: 768px){
    .registration-table th,.registration-table td{
        width:30vw;
    }
    .registration-table .link_button{
        width:100%;
        min-width:initial;
        padding:0.3em 0em;
        margin:0.5em 0;
    }
}

/*=リネームウィンドウ============================*/
#rename_screen {
	position:fixed;
	width:100vw;
	height:100vh;
	background-color:rgba(204,204,204,1);
	z-index:9999;
    top:0;
    left:0;
}
#rename_window {
	padding:2em;
	font-size:16px;
	background-color:rgba(255,255,255,1);
	width:70%;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	max-width:400px;
	border-radius:0.5em;
	box-shadow:0 0 1em 0 rgba(0,0,0,0.2);
}
#rename_window p{
	font-size:16px;
	padding:0;
    margin-bottom:0;
}
.rename_window_label{
	margin-top:0.4em;
	font-weight:bold;
	color:var(--theme_color);
}
#rename_window input{
	width:100%;
}
#bt_rename_output {
	color:rgba(255,255,255,1);
	font-weight:bold;
	font-size:18px;
	background-color:var(--theme_color);
	text-align:center;
	width:100%;
	display:block;
	border-radius:0.2em;
	margin:1em 0 0;
    padding:0.6em 0;
}
@media screen and (max-width: 768px){
    #rename_window {
        width:80vw;
        max-width:initial;
        font-size:4vw;
    }
    #rename_window p{
        font-size:3.5vw;
    }
    #bt_rename_output {
        font-size:4vw;
    }
}