
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 770px) {
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
    background-color: #dfdfdf;
}
body {
    background: url("../images/body_bg.png");
    min-height: 100vh;
}
.w_base {
    margin: 0 auto;
    width: 1158px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
    background-color: #FFF;
    position: relative;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	z-index: 100;
}
.hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
    position: relative;
}
.hd_logo {
    line-height: 0;
    margin-left: 2rem;
}
.hd_logo img {
    width: auto;
    height: 1.4rem;
}
.hd_nav {
    display: flex;
    align-items: center;
}
.hd_nav_item, .hd_nav_item_user {
    border-right: 1px solid rgba(0,0,0,0.1);
    height: 6rem;
    width: 6rem;
    position: relative;
}
.hd_nav_item_user {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 0 2em;
}
.hd_nav_item_user .logout_link {
    color: #111;
    margin-left: 2rem;
    text-decoration: none;
    position: relative;
}
.hd_nav_item_user .logout_link:hover::after {
    content: '';
    border-bottom: 1px solid #111;
    bottom: 0;
    left: 0;
    width: 100%;
    position: absolute;
}
.hd_nav_item > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6rem;
    width: 6rem;
    line-height: 0;
    text-decoration: none;
    position: relative;
    transition: All 0.5s ease;
}
.hd_nav_item_home > a {
    background-color: #1B4F98;
}
.hd_nav_item_home > a:hover {
    background-color: #153F77;
}
.hd_nav_item_favorite > a {
    background-color: #FC0000;
}
.hd_nav_item_favorite > a:hover {
    background-color: #D90000;
}
.hd_nav_item_search > a {
    background-color: #8cc401;
}
.hd_nav_item_search > a:hover {
    background-color: #75A001;
}
.hd_nav_item > a i {
    color: #FFF;
    font-size: 2.2rem;
}
.hd_nav_item > a.favorite_link i {
    color: #FFF;
}
.hd_nav_item a.favorite_link .favorite_sum {
    color: #FC0000;
    font-size: 0.7rem;
    position: absolute;
}
.hd_nav_item_manage > a {  /* add. by.nagaok */
    background-color: #848484;
}
.hd_nav_item_manage > a:hover { /* add. by.nagaok */
    background-color: #6e6e6e;
}
.hd_nav_item_manage .fa-times {
    display: none;
}
.hd_nav_clist {
    background-color: #848484;
    display: none;
    transition: All 2s ease;
    width: 24rem;
    position: absolute;
    top: 100%;
    left: -18rem;
}
.hd_nav_item:hover .hd_nav_clist {
    display: block;
    animation: hd_nav_clist_active 1s ease 0s 1 alternate;
}
@-webkit-keyframes hd_nav_clist_active {
0% {
opacity:0
}
100% {
opacity:1
}
}
@keyframes hd_nav_clist_active {
0% {
opacity:0
}
100% {
opacity:1
}
}
.hd_nav_clist>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}
.hd_nav_clist>li>a {
    color: #fff;
    display: block;
    padding: 1rem;
    text-decoration: none;
    transition: All 0.5s ease;
}
.hd_nav_clist>li>a:hover, .hd_nav_clist>li>a.current {
    background-color: #6e6e6e;
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
    padding: 4rem 0;
	z-index: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft {
    border-top: 1px solid #CCC;
    padding: 3rem 0;
}
.ft_copy {
    color: #666;
    font-size: 0.8rem;
    text-align: center
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
    border-radius: 50%;
    background-color: #999;
    bottom: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    right: 30px;
    position: fixed;
    width: 60px;
    z-index: 100;
}
.pt:hover {
    opacity: 0.6;
}
.pt_btn {
    cursor: pointer;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 8px;
    transform: rotate(45deg);
    position: relative;
}
.pt_btn::before, .pt_btn::after {
    background-color: #FFF;
    content: "";
    display: block;
    top: 0;
    left: 0;
    position: absolute;
}
.pt_btn::before {
    width: 7px;
    bottom: 0;
}
.pt_btn::after {
    height: 7px;
    right: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** pageback
******************************************************************************
----------------------------------------------------------------------------*/
.pb {
    border-radius: 50%;
    background-color: #777;
    top: 49%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    right: 30px;
    position: fixed;
    width: 70px;
    z-index: 100;
}
.pb:hover {
    opacity: 0.6;
}
.pb_btn {
    color: #FFF;
    cursor: pointer;
    font-size: 0.5rem;
    display: block;
    line-height: 1rem;
    position: relative;
    text-align: center;
    /*width: 4em; 2020.02.13 変更*/
    width: 7em;
}
.pb_btn i {
    display: block;
    font-size: 1rem;
    margin-top: 0.4rem;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.article_list {
    display: flex;
    flex-wrap: wrap;
}
.article_list_item {
    box-shadow: 0 0 1rem rgba(0,0,0,0.1);
    border-top: 2px solid #2284F9;
    border-radius: 0 0 4px 4px;
    background-color: #FFF;
    margin: 0 2rem 2rem 0;
    width: 270px;
    transition: All 0.5s ease;
}
.article_list_item.mt {
    margin-top: -20px;
}
.article_list_item:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.4);
}
.article_list_item:nth-child(4n) {
    margin-right: 0!important;
}
.article_list_thumnail {
    background: url("../images/loading.gif") no-repeat center #FFF;
    -webkit-transition-property: background-size;
    transition-property: background-size;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: relative;
    margin: 4px 4px 0;
}
.article_list_thumnail.thumnail_small {
    margin-bottom: 24px;
}
.article_list_thumnail_cover {
    position: relative;
    overflow: hidden;
}
.article_list_thumnail_cover::after {
    width: 100%;
    height: 200px!important;
    content: url("../images/pc_cover.png");
    position: absolute;
    bottom: 0;
    right: 0;
}
.article_list_thumnail .detail_span {
    color: #FFF;
    display: flex;
    align-items: center;
    line-height: 0;
    font-size: 1.2rem;
    position: absolute;
    text-decoration: none;
    top: 1rem;
    left: 1rem;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.article_list_thumnail .detail_span::before {
    content: url("../images/icon_circle_list_blue.png");
    margin-right: 0.2em;
}
.article_list_thumnail:hover .detail_span, .article_list_thumnail.active .detail_span {
    opacity: 0;
}
.article_list_detail {
    background-color: rgba(0,73,160,0.6);
    cursor: pointer;
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 2rem;
    overflow: hidden;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.article_list_thumnail:hover .article_list_detail, .article_list_thumnail.active .article_list_detail {
    opacity: 1;
}
.article_list_detail dt {
    color: #FFF;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.article_list_detail dd {
    color: #FFF;
}
.article_list_detail .click_dd {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
.article_list_detail .click_dd a {
    border: 1px solid #FFF;
    background-color: inherit;
    border-radius: 5rem;
    display: block;
    color: #FFF;
    text-decoration: none;
    padding: 0 1em;
    transition: All 0.3s ease;
}
.article_list_detail .click_dd a:hover {
    background-color: #FFF;
    color: #2284F9;
}
.article_list_nav {
    display: flex;
    align-items: center;
}
.article_list_nav li.favorite_item {
    height: 3rem;
    width: 4rem;
}
.article_list_nav li.detail_item {
    height: 3rem;
    width: 3rem;
}
.article_list_nav li:first-child {
    color: #999;
    margin-right: auto;
    padding: 0 1rem;
}
.article_list_nav a, .article_list_nav span {
    color: #999;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 100%;
    line-height: 0;
    text-decoration: none;
    cursor: pointer;
    transition: All 0.5s ease;
}
.article_list_nav .favorite_span {
    font-size: 0.9rem;
    font-weight: bold;
}
.article_list_nav .favorite_span i {
    color: #CCC;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}
.article_list_nav .favorite_span.active i {
    color: #FC0000;
}
.article_list_nav .favorite_span:active i {
    transform: scale(1.5);
}
.article_list_nav .detail_link {
    color: #EBC647;
}
.article_list_nav .detail_link:hover {
    color: #2284F9;
}
.article_list_nav .detail_link.opened {     /* 2020.02.13 追加 */
    color: #22f997;
}
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.w_search {
    width: 960px;
    margin: 0 auto;
}
.detail_data_area, .detail_photo_area {
    padding: 1rem 0;
    position: relative;
}
.detail_data_area::before, .detail_photo_area::before {
    background-color: #2284F9;
    border-radius: 50%;
    content: url("../images/icon_teeth_02.png");
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    position: absolute;
    left: calc(-5rem - 40px);
    top: 0;
}
.detail_photo_area::before {
    content: url("../images/icon_photo.png");
}
.detail_data_area h2, .detail_photo_area h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 2rem;
}
.detail_photo_box {
    background-color: rgba(0,73,160,0.08);
    border-radius: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
}
.detail_photo_box_head {
    font-size: 1.3rem;
    font-weight: normal;
    position: relative;
    cursor: pointer;
}
.detail_photo_box_head:hover {
    text-decoration: underline;
}
.detail_photo_box_head::before {
    background-color: rgba(0,73,160,0.8);
    border-radius: 50%;
    content: "-";
    color: #FFF;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    width: 1.5rem;
    position: absolute;
    left: -1.8rem;
    top: 0.2rem;
}
.detail_photo_box_head.active::before {
    content: "+";
}
.detail_photo_box_list {
    display: none;
    margin-top: 1rem;
}
.detail_photo_box_list .ug-thumb-wrapper {
    background: url("../images/loading.gif") no-repeat center #FFF;
    overflow: hidden;
}
.detail_photo_box_list .ug-thumb-wrapper::after {
    content: url("../images/pc_cover.png");
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1000;
}
.detail_photo_box_list .ug-thumb-overlay {
    background-color: rgba(0,0,0,0)!important;
}
.page_con {
    background-color: #FFF;
    box-shadow: 0 0 1rem rgba(0,0,0,0.1);
    border-top: 5px solid #2284F9;
    padding: 2rem 5rem;
}
.page_head_bg {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}
.page_head_bg::before {
    background-color: #2284F9;
    border-radius: 50%;
    content: url("../images/icon_teeth.png");
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    position: absolute;
    left: calc(-5rem - 40px);
    top: 0;
}
.page_head_bg h1 {
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 1rem;
}
.page_head_iconlist .favorite_i {
    color: #999;
    font-size: 2rem;
    cursor: pointer;
    transition: All 0.5s ease;
}
.page_head_iconlist .favorite_i.active {
    color: #FC0000;
}
.page_head_iconlist .favorite_i:active {
    transform: scale(2);
}
.page_head_taglist {
    display: flex;
    flex-wrap: wrap;
}
.page_head_taglist li {
    margin: 0 0.5rem 0.5rem 0;
}
.page_head_taglist a {
    border: 1px solid #eee;
    background-color: rgba(0,0,0,0.05);
    color: #333;
    display: block;
    text-decoration: none;
    padding: 0.2em 0.5em 0.2em;
}
.page_head_taglist a:hover {
    background-color: #2284F9;
    color: #FFF!important;
}
.page_head_taglist i {
    color: #999;
    margin-right: 0.2em;
}
.page_head_taglist a:hover i {
    color: #FFF!important;
}
.search_head_bg {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}
.search_head_bg::before {
    background-color: #2284F9;
    border-radius: 50%;
    content: url("../images/icon_search.png");
    color: #FFF;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    position: absolute;
    left: calc(-5rem - 40px);
    top: 0;
    line-height: 0;
}
.search_head_bg h1 {
    font-size: 2rem;
    font-weight: normal;
    padding-top: 1em;
}
.search_tbl {
    position: relative;
}
.search_tbl .list_bdr_dot {
    margin: 0!important;
}
.search_tbl .list_bdr_dot li {
    padding-left: 0!important;
}
.search_tbl .list_bdr_dot li:last-child {
    border-bottom: none!important;
    padding-bottom: 0!important;
    margin-bottom: 0;
}
.search_tbl_tr {
    display: flex;
    justify-content: space-between;
}
.search_tbl_tr_submit {
    display: flex;
    justify-content: center;
    align-items: center;
}
.search_tbl_tr_submit > div {
    margin: 0 1rem;
}
.search_tbl_tr_submit_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -1rem;
    top: -4.5rem;
}
.search_tbl_tr_submit_02 > div {
    margin: 0 1rem;
}
.search_tbl_th {
    border-top: 3px solid #6AA8F1;
    padding: 1em;
    width: 20%;
}
.search_tbl_td {
    border-top: 3px solid #ddd;
    padding: 1em;
    width: calc(80% - 2rem);
}
.search_hagata_con {
    width: 50%;
}
.search_hagata_con_baby {    /* add. by.nagaoka */
    width: 33%;
}
.search_conditions {
    background-color: #EFEFEF;
    margin-bottom: 2rem;
    padding: 2rem;
}
.search_conditions_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.search_conditions_ttl {
    border-top: 3px solid #6AA8F1;
    padding: 1em;
    width: 20%;
}
.search_conditions_con {
    border-top: 3px solid #ddd;
    padding: 1em;
    width: calc(80% - 2rem);
}
.search_conditions_list {
    display: flex;
    flex-wrap: wrap;
}
.search_conditions_list li {
    border: 1px solid #eee;
    background-color: rgba(0,0,0,0.05);
    color: #333;
    margin: 0 0.5rem 0.5rem 0;
    padding: 0.2em 0.5em 0.2em;
}
.search_conditions_list li.search_conditions_list_ttl {
    border: none;
    background-color: rgba(0,0,0,0);
    color: #111;
    margin: 0 0.5rem 0.5rem 0;
    padding: 0.2em 0.5em 0.2em;
    border-right: 1px solid #ccc;
}
.search_conditions_list a {
    display: inline-block;
    text-decoration: none;
    margin-left: 0.5rem;
}
.search_conditions_list i {
    color: #999;
}
.search_conditions_list a:hover i {
    color: #111;
}
.search_conditions_remove {
    margin-top: 1rem;
    text-align: right;
}
.search_conditions_remove a {
    color: rgba(165, 39, 39, 1);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: All 0.5s ease;
    opacity: 0.6;
}
.search_conditions_remove a:hover {
    opacity: 1;
}
.search_conditions_remove a::before {
    content: "\f057";
    font-family: "Font Awesome 5 Free";
    margin-right: 0.2rem;
}
.search_resultnum {
    color: #333;
    margin-bottom: 2rem;
}
.search_resultnum_num {
    color: #D5941C;
    display: inline-block;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 0.3rem;
}
.form_list_il {
    display: flex;
    flex-wrap: wrap;
}
.form_list_il li {
    margin: 0 1rem 0 0;
}
.form_list_il label {
    display: flex;
    align-items: center;
}
.form_list_il label input[type="radio"], .form_list_il label input[type="checkbox"] {
    margin-right: 0.2rem;
}
.form_list li {
    margin-bottom: 1rem;
}
.form_list li label {
    display: flex;
    flex-wrap: wrap;
}
.form_list label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.form_list label input[type="radio"], .form_list label input[type="checkbox"] {
    margin-right: 0.2rem;
}
.w_rem_30 {
    width: 30rem;
}
.w_rem_20 {
    width: 20rem;
}
.w_rem_12 {
    width: 12rem;
}
.w_rem_10 {
    width: 10rem;
}
.w_rem_8 {
    width: 8rem;
}
.w_rem_6 {
    width: 6rem;
}
.w_rem_4 {
    width: 4rem;
}
.w_rem_2 {
    width: 2rem;
}
img.ui-datepicker-trigger {
    cursor: pointer;
    margin-left: 7px!important;
    vertical-align: middle;
}
}
