Commit 47b0ab9b by o.kimura

SORA WP 安定後

parent 730c3a8d
This diff could not be displayed because it is too large.
<?php
/**
* WordPress Administration for Navigation Menus
* Interface functions
*
* @version 2.0.0
*
* @package WordPress
* @subpackage Administration
*/
/** Load WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';
// Load all the nav menu interface functions.
require_once ABSPATH . 'wp-admin/includes/nav-menu.php';
if ( ! current_theme_supports( 'menus' ) && ! current_theme_supports( 'widgets' ) ) {
wp_die( __( 'Your theme does not support navigation menus or widgets.' ) );
}
// Permissions check.
if ( ! current_user_can( 'edit_theme_options' ) ) {
wp_die(
'<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
'<p>' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '</p>',
403
);
}
wp_enqueue_script( 'nav-menu' );
if ( wp_is_mobile() ) {
wp_enqueue_script( 'jquery-touch-punch' );
}
// Container for any messages displayed to the user.
$messages = array();
// Container that stores the name of the active menu.
$nav_menu_selected_title = '';
// The menu id of the current menu being edited.
$nav_menu_selected_id = isset( $_REQUEST['menu'] ) ? (int) $_REQUEST['menu'] : 0;
// Get existing menu locations assignments.
$locations = get_registered_nav_menus();
$menu_locations = get_nav_menu_locations();
$num_locations = count( array_keys( $locations ) );
// Allowed actions: add, update, delete.
$action = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : 'edit';
/*
* If a JSON blob of navigation menu data is found, expand it and inject it
* into `$_POST` to avoid PHP `max_input_vars` limitations. See #14134.
*/
_wp_expand_nav_menu_post_data();
switch ( $action ) {
case 'add-menu-item':
check_admin_referer( 'add-menu_item', 'menu-settings-column-nonce' );
if ( isset( $_REQUEST['nav-menu-locations'] ) ) {
set_theme_mod( 'nav_menu_locations', array_map( 'absint', $_REQUEST['menu-locations'] ) );
} elseif ( isset( $_REQUEST['menu-item'] ) ) {
wp_save_nav_menu_items( $nav_menu_selected_id, $_REQUEST['menu-item'] );
}
break;
case 'move-down-menu-item':
// Moving down a menu item is the same as moving up the next in order.
check_admin_referer( 'move-menu_item' );
$menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0;
if ( is_nav_menu_item( $menu_item_id ) ) {
$menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) );
if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) {
$menu_id = (int) $menus[0];
$ordered_menu_items = wp_get_nav_menu_items( $menu_id );
$menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) );
// Set up the data we need in one pass through the array of menu items.
$dbids_to_orders = array();
$orders_to_dbids = array();
foreach ( (array) $ordered_menu_items as $ordered_menu_item_object ) {
if ( isset( $ordered_menu_item_object->ID ) ) {
if ( isset( $ordered_menu_item_object->menu_order ) ) {
$dbids_to_orders[ $ordered_menu_item_object->ID ] = $ordered_menu_item_object->menu_order;
$orders_to_dbids[ $ordered_menu_item_object->menu_order ] = $ordered_menu_item_object->ID;
}
}
}
// Get next in order.
if (
isset( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] + 1 ] )
) {
$next_item_id = $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] + 1 ];
$next_item_data = (array) wp_setup_nav_menu_item( get_post( $next_item_id ) );
// If not siblings of same parent, bubble menu item up but keep order.
if (
! empty( $menu_item_data['menu_item_parent'] ) &&
(
empty( $next_item_data['menu_item_parent'] ) ||
$next_item_data['menu_item_parent'] != $menu_item_data['menu_item_parent']
)
) {
$parent_db_id = in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) ? (int) $menu_item_data['menu_item_parent'] : 0;
$parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) );
if ( ! is_wp_error( $parent_object ) ) {
$parent_data = (array) $parent_object;
$menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent'];
update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] );
}
// Make menu item a child of its next sibling.
} else {
$next_item_data['menu_order'] = $next_item_data['menu_order'] - 1;
$menu_item_data['menu_order'] = $menu_item_data['menu_order'] + 1;
$menu_item_data['menu_item_parent'] = $next_item_data['ID'];
update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] );
wp_update_post( $menu_item_data );
wp_update_post( $next_item_data );
}
// The item is last but still has a parent, so bubble up.
} elseif (
! empty( $menu_item_data['menu_item_parent'] ) &&
in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids )
) {
$menu_item_data['menu_item_parent'] = (int) get_post_meta( $menu_item_data['menu_item_parent'], '_menu_item_menu_item_parent', true );
update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] );
}
}
}
break;
case 'move-up-menu-item':
check_admin_referer( 'move-menu_item' );
$menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0;
if ( is_nav_menu_item( $menu_item_id ) ) {
$menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) );
if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) {
$menu_id = (int) $menus[0];
$ordered_menu_items = wp_get_nav_menu_items( $menu_id );
$menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) );
// Set up the data we need in one pass through the array of menu items.
$dbids_to_orders = array();
$orders_to_dbids = array();
foreach ( (array) $ordered_menu_items as $ordered_menu_item_object ) {
if ( isset( $ordered_menu_item_object->ID ) ) {
if ( isset( $ordered_menu_item_object->menu_order ) ) {
$dbids_to_orders[ $ordered_menu_item_object->ID ] = $ordered_menu_item_object->menu_order;
$orders_to_dbids[ $ordered_menu_item_object->menu_order ] = $ordered_menu_item_object->ID;
}
}
}
// If this menu item is not first.
if ( ! empty( $dbids_to_orders[ $menu_item_id ] ) && ! empty( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) ) {
// If this menu item is a child of the previous.
if (
! empty( $menu_item_data['menu_item_parent'] ) &&
in_array( $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ) ) &&
isset( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) &&
( $menu_item_data['menu_item_parent'] == $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] )
) {
$parent_db_id = in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) ? (int) $menu_item_data['menu_item_parent'] : 0;
$parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) );
if ( ! is_wp_error( $parent_object ) ) {
$parent_data = (array) $parent_object;
/*
* If there is something before the parent and parent a child of it,
* make menu item a child also of it.
*/
if (
! empty( $dbids_to_orders[ $parent_db_id ] ) &&
! empty( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ] ) &&
! empty( $parent_data['menu_item_parent'] )
) {
$menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent'];
/*
* Else if there is something before parent and parent not a child of it,
* make menu item a child of that something's parent
*/
} elseif (
! empty( $dbids_to_orders[ $parent_db_id ] ) &&
! empty( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ] )
) {
$_possible_parent_id = (int) get_post_meta( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ], '_menu_item_menu_item_parent', true );
if ( in_array( $_possible_parent_id, array_keys( $dbids_to_orders ) ) ) {
$menu_item_data['menu_item_parent'] = $_possible_parent_id;
} else {
$menu_item_data['menu_item_parent'] = 0;
}
// Else there isn't something before the parent.
} else {
$menu_item_data['menu_item_parent'] = 0;
}
// Set former parent's [menu_order] to that of menu-item's.
$parent_data['menu_order'] = $parent_data['menu_order'] + 1;
// Set menu-item's [menu_order] to that of former parent.
$menu_item_data['menu_order'] = $menu_item_data['menu_order'] - 1;
// Save changes.
update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] );
wp_update_post( $menu_item_data );
wp_update_post( $parent_data );
}
// Else this menu item is not a child of the previous.
} elseif (
empty( $menu_item_data['menu_order'] ) ||
empty( $menu_item_data['menu_item_parent'] ) ||
! in_array( $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ) ) ||
empty( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) ||
$orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] != $menu_item_data['menu_item_parent']
) {
// Just make it a child of the previous; keep the order.
$menu_item_data['menu_item_parent'] = (int) $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ];
update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] );
wp_update_post( $menu_item_data );
}
}
}
}
break;
case 'delete-menu-item':
$menu_item_id = (int) $_REQUEST['menu-item'];
check_admin_referer( 'delete-menu_item_' . $menu_item_id );
if ( is_nav_menu_item( $menu_item_id ) && wp_delete_post( $menu_item_id, true ) ) {
$messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'The menu item has been successfully deleted.' ) . '</p></div>';
}
break;
case 'delete':
check_admin_referer( 'delete-nav_menu-' . $nav_menu_selected_id );
if ( is_nav_menu( $nav_menu_selected_id ) ) {
$deletion = wp_delete_nav_menu( $nav_menu_selected_id );
} else {
// Reset the selected menu.
$nav_menu_selected_id = 0;
unset( $_REQUEST['menu'] );
}
if ( ! isset( $deletion ) ) {
break;
}
if ( is_wp_error( $deletion ) ) {
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $deletion->get_error_message() . '</p></div>';
} else {
$messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'The menu has been successfully deleted.' ) . '</p></div>';
}
break;
case 'delete_menus':
check_admin_referer( 'nav_menus_bulk_actions' );
foreach ( $_REQUEST['delete_menus'] as $menu_id_to_delete ) {
if ( ! is_nav_menu( $menu_id_to_delete ) ) {
continue;
}
$deletion = wp_delete_nav_menu( $menu_id_to_delete );
if ( is_wp_error( $deletion ) ) {
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $deletion->get_error_message() . '</p></div>';
$deletion_error = true;
}
}
if ( empty( $deletion_error ) ) {
$messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'Selected menus have been successfully deleted.' ) . '</p></div>';
}
break;
case 'update':
check_admin_referer( 'update-nav_menu', 'update-nav-menu-nonce' );
// Remove menu locations that have been unchecked.
foreach ( $locations as $location => $description ) {
if ( ( empty( $_POST['menu-locations'] ) || empty( $_POST['menu-locations'][ $location ] ) ) && isset( $menu_locations[ $location ] ) && $menu_locations[ $location ] == $nav_menu_selected_id ) {
unset( $menu_locations[ $location ] );
}
}
// Merge new and existing menu locations if any new ones are set.
if ( isset( $_POST['menu-locations'] ) ) {
$new_menu_locations = array_map( 'absint', $_POST['menu-locations'] );
$menu_locations = array_merge( $menu_locations, $new_menu_locations );
}
// Set menu locations.
set_theme_mod( 'nav_menu_locations', $menu_locations );
// Add Menu.
if ( 0 == $nav_menu_selected_id ) {
$new_menu_title = trim( esc_html( $_POST['menu-name'] ) );
if ( $new_menu_title ) {
$_nav_menu_selected_id = wp_update_nav_menu_object( 0, array( 'menu-name' => $new_menu_title ) );
if ( is_wp_error( $_nav_menu_selected_id ) ) {
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $_nav_menu_selected_id->get_error_message() . '</p></div>';
} else {
$_menu_object = wp_get_nav_menu_object( $_nav_menu_selected_id );
$nav_menu_selected_id = $_nav_menu_selected_id;
$nav_menu_selected_title = $_menu_object->name;
if ( isset( $_REQUEST['menu-item'] ) ) {
wp_save_nav_menu_items( $nav_menu_selected_id, absint( $_REQUEST['menu-item'] ) );
}
if ( isset( $_REQUEST['zero-menu-state'] ) ) {
// If there are menu items, add them.
wp_nav_menu_update_menu_items( $nav_menu_selected_id, $nav_menu_selected_title );
// Auto-save nav_menu_locations.
$locations = get_nav_menu_locations();
foreach ( $locations as $location => $menu_id ) {
$locations[ $location ] = $nav_menu_selected_id;
break; // There should only be 1.
}
set_theme_mod( 'nav_menu_locations', $locations );
}
if ( isset( $_REQUEST['use-location'] ) ) {
$locations = get_registered_nav_menus();
$menu_locations = get_nav_menu_locations();
if ( isset( $locations[ $_REQUEST['use-location'] ] ) ) {
$menu_locations[ $_REQUEST['use-location'] ] = $nav_menu_selected_id;
}
set_theme_mod( 'nav_menu_locations', $menu_locations );
}
// $messages[] = '<div id="message" class="updated"><p>' . sprintf( __( '<strong>%s</strong> has been created.' ), $nav_menu_selected_title ) . '</p></div>';
wp_redirect( admin_url( 'nav-menus.php?menu=' . $_nav_menu_selected_id ) );
exit();
}
} else {
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . __( 'Please enter a valid menu name.' ) . '</p></div>';
}
// Update existing menu.
} else {
$_menu_object = wp_get_nav_menu_object( $nav_menu_selected_id );
$menu_title = trim( esc_html( $_POST['menu-name'] ) );
if ( ! $menu_title ) {
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . __( 'Please enter a valid menu name.' ) . '</p></div>';
$menu_title = $_menu_object->name;
}
if ( ! is_wp_error( $_menu_object ) ) {
$_nav_menu_selected_id = wp_update_nav_menu_object( $nav_menu_selected_id, array( 'menu-name' => $menu_title ) );
if ( is_wp_error( $_nav_menu_selected_id ) ) {
$_menu_object = $_nav_menu_selected_id;
$messages[] = '<div id="message" class="error notice is-dismissible"><p>' . $_nav_menu_selected_id->get_error_message() . '</p></div>';
} else {
$_menu_object = wp_get_nav_menu_object( $_nav_menu_selected_id );
$nav_menu_selected_title = $_menu_object->name;
}
}
// Update menu items.
if ( ! is_wp_error( $_menu_object ) ) {
$messages = array_merge( $messages, wp_nav_menu_update_menu_items( $_nav_menu_selected_id, $nav_menu_selected_title ) );
// If the menu ID changed, redirect to the new URL.
if ( $nav_menu_selected_id != $_nav_menu_selected_id ) {
wp_redirect( admin_url( 'nav-menus.php?menu=' . intval( $_nav_menu_selected_id ) ) );
exit();
}
}
}
break;
case 'locations':
if ( ! $num_locations ) {
wp_redirect( admin_url( 'nav-menus.php' ) );
exit();
}
add_filter( 'screen_options_show_screen', '__return_false' );
if ( isset( $_POST['menu-locations'] ) ) {
check_admin_referer( 'save-menu-locations' );
$new_menu_locations = array_map( 'absint', $_POST['menu-locations'] );
$menu_locations = array_merge( $menu_locations, $new_menu_locations );
// Set menu locations.
set_theme_mod( 'nav_menu_locations', $menu_locations );
$messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'Menu locations updated.' ) . '</p></div>';
}
break;
}
// Get all nav menus.
$nav_menus = wp_get_nav_menus();
$menu_count = count( $nav_menus );
// Are we on the add new screen?
$add_new_screen = ( isset( $_GET['menu'] ) && 0 == $_GET['menu'] ) ? true : false;
$locations_screen = ( isset( $_GET['action'] ) && 'locations' == $_GET['action'] ) ? true : false;
/*
* If we have one theme location, and zero menus, we take them right
* into editing their first menu.
*/
$page_count = wp_count_posts( 'page' );
$one_theme_location_no_menus = ( 1 == count( get_registered_nav_menus() ) && ! $add_new_screen && empty( $nav_menus ) && ! empty( $page_count->publish ) ) ? true : false;
$nav_menus_l10n = array(
'oneThemeLocationNoMenus' => $one_theme_location_no_menus,
'moveUp' => __( 'Move up one' ),
'moveDown' => __( 'Move down one' ),
'moveToTop' => __( 'Move to the top' ),
/* translators: %s: Previous item name. */
'moveUnder' => __( 'Move under %s' ),
/* translators: %s: Previous item name. */
'moveOutFrom' => __( 'Move out from under %s' ),
/* translators: %s: Previous item name. */
'under' => __( 'Under %s' ),
/* translators: %s: Previous item name. */
'outFrom' => __( 'Out from under %s' ),
/* translators: 1: Item name, 2: Item position, 3: Total number of items. */
'menuFocus' => __( '%1$s. Menu item %2$d of %3$d.' ),
/* translators: 1: Item name, 2: Item position, 3: Parent item name. */
'subMenuFocus' => __( '%1$s. Sub item number %2$d under %3$s.' ),
);
wp_localize_script( 'nav-menu', 'menus', $nav_menus_l10n );
/*
* Redirect to add screen if there are no menus and this users has either zero,
* or more than 1 theme locations.
*/
if ( 0 == $menu_count && ! $add_new_screen && ! $one_theme_location_no_menus ) {
wp_redirect( admin_url( 'nav-menus.php?action=edit&menu=0' ) );
}
// Get recently edited nav menu.
$recently_edited = absint( get_user_option( 'nav_menu_recently_edited' ) );
if ( empty( $recently_edited ) && is_nav_menu( $nav_menu_selected_id ) ) {
$recently_edited = $nav_menu_selected_id;
}
// Use $recently_edited if none are selected.
if ( empty( $nav_menu_selected_id ) && ! isset( $_GET['menu'] ) && is_nav_menu( $recently_edited ) ) {
$nav_menu_selected_id = $recently_edited;
}
// On deletion of menu, if another menu exists, show it.
if ( ! $add_new_screen && 0 < $menu_count && isset( $_GET['action'] ) && 'delete' == $_GET['action'] ) {
$nav_menu_selected_id = $nav_menus[0]->term_id;
}
// Set $nav_menu_selected_id to 0 if no menus.
if ( $one_theme_location_no_menus ) {
$nav_menu_selected_id = 0;
} elseif ( empty( $nav_menu_selected_id ) && ! empty( $nav_menus ) && ! $add_new_screen ) {
// If we have no selection yet, and we have menus, set to the first one in the list.
$nav_menu_selected_id = $nav_menus[0]->term_id;
}
// Update the user's setting.
if ( $nav_menu_selected_id != $recently_edited && is_nav_menu( $nav_menu_selected_id ) ) {
update_user_meta( $current_user->ID, 'nav_menu_recently_edited', $nav_menu_selected_id );
}
// If there's a menu, get its name.
if ( ! $nav_menu_selected_title && is_nav_menu( $nav_menu_selected_id ) ) {
$_menu_object = wp_get_nav_menu_object( $nav_menu_selected_id );
$nav_menu_selected_title = ! is_wp_error( $_menu_object ) ? $_menu_object->name : '';
}
// Generate truncated menu names.
foreach ( (array) $nav_menus as $key => $_nav_menu ) {
$nav_menus[ $key ]->truncated_name = wp_html_excerpt( $_nav_menu->name, 40, '&hellip;' );
}
// Retrieve menu locations.
if ( current_theme_supports( 'menus' ) ) {
$locations = get_registered_nav_menus();
$menu_locations = get_nav_menu_locations();
}
/*
* Ensure the user will be able to scroll horizontally
* by adding a class for the max menu depth.
*
* @global int $_wp_nav_menu_max_depth
*/
global $_wp_nav_menu_max_depth;
$_wp_nav_menu_max_depth = 0;
// Calling wp_get_nav_menu_to_edit generates $_wp_nav_menu_max_depth.
if ( is_nav_menu( $nav_menu_selected_id ) ) {
$menu_items = wp_get_nav_menu_items( $nav_menu_selected_id, array( 'post_status' => 'any' ) );
$edit_markup = wp_get_nav_menu_to_edit( $nav_menu_selected_id );
}
/**
* @global int $_wp_nav_menu_max_depth
*
* @param string $classes
* @return string
*/
function wp_nav_menu_max_depth( $classes ) {
global $_wp_nav_menu_max_depth;
return "$classes menu-max-depth-$_wp_nav_menu_max_depth";
}
add_filter( 'admin_body_class', 'wp_nav_menu_max_depth' );
wp_nav_menu_setup();
wp_initial_nav_menu_meta_boxes();
if ( ! current_theme_supports( 'menus' ) && ! $num_locations ) {
$messages[] = '<div id="message" class="updated"><p>' . sprintf(
/* translators: %s: URL to Widgets screen. */
__( 'Your theme does not natively support menus, but you can use them in sidebars by adding a &#8220;Navigation Menu&#8221; widget on the <a href="%s">Widgets</a> screen.' ),
admin_url( 'widgets.php' )
) . '</p></div>';
}
if ( ! $locations_screen ) : // Main tab.
$overview = '<p>' . __( 'This screen is used for managing your navigation menus.' ) . '</p>';
$overview .= '<p>' . sprintf(
/* translators: 1: URL to Widgets screen, 2 and 3: The names of the default themes. */
__( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a &#8220;Navigation Menu&#8221; widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side.' ),
admin_url( 'widgets.php' ),
'Twenty Nineteen',
'Twenty Twenty'
) . '</p>';
$overview .= '<p>' . __( 'From this screen you can:' ) . '</p>';
$overview .= '<ul><li>' . __( 'Create, edit, and delete menus' ) . '</li>';
$overview .= '<li>' . __( 'Add, organize, and modify individual menu items' ) . '</li></ul>';
get_current_screen()->add_help_tab(
array(
'id' => 'overview',
'title' => __( 'Overview' ),
'content' => $overview,
)
);
$menu_management = '<p>' . __( 'The menu management box at the top of the screen is used to control which menu is opened in the editor below.' ) . '</p>';
$menu_management .= '<ul><li>' . __( 'To edit an existing menu, <strong>choose a menu from the drop down and click Select</strong>' ) . '</li>';
$menu_management .= '<li>' . __( 'If you haven&#8217;t yet created any menus, <strong>click the &#8217;create a new menu&#8217; link</strong> to get started' ) . '</li></ul>';
$menu_management .= '<p>' . __( 'You can assign theme locations to individual menus by <strong>selecting the desired settings</strong> at the bottom of the menu editor. To assign menus to all theme locations at once, <strong>visit the Manage Locations tab</strong> at the top of the screen.' ) . '</p>';
get_current_screen()->add_help_tab(
array(
'id' => 'menu-management',
'title' => __( 'Menu Management' ),
'content' => $menu_management,
)
);
$editing_menus = '<p>' . __( 'Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.' ) . '</p>';
$editing_menus .= '<p>' . __( '<strong>Clicking the arrow to the right of any menu item</strong> in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.' ) . '</p>';
$editing_menus .= '<ul><li>' . __( 'Add one or several items at once by <strong>selecting the checkbox next to each item and clicking Add to Menu</strong>' ) . '</li>';
$editing_menus .= '<li>' . __( 'To add a custom link, <strong>expand the Custom Links section, enter a URL and link text, and click Add to Menu</strong>' ) . '</li>';
$editing_menus .= '<li>' . __( 'To reorganize menu items, <strong>drag and drop items with your mouse or use your keyboard</strong>. Drag or move a menu item a little to the right to make it a submenu' ) . '</li>';
$editing_menus .= '<li>' . __( 'Delete a menu item by <strong>expanding it and clicking the Remove link</strong>' ) . '</li></ul>';
get_current_screen()->add_help_tab(
array(
'id' => 'editing-menus',
'title' => __( 'Editing Menus' ),
'content' => $editing_menus,
)
);
else : // Locations tab.
$locations_overview = '<p>' . __( 'This screen is used for globally assigning menus to locations defined by your theme.' ) . '</p>';
$locations_overview .= '<ul><li>' . __( 'To assign menus to one or more theme locations, <strong>select a menu from each location&#8217;s drop down.</strong> When you&#8217;re finished, <strong>click Save Changes</strong>' ) . '</li>';
$locations_overview .= '<li>' . __( 'To edit a menu currently assigned to a theme location, <strong>click the adjacent &#8217;Edit&#8217; link</strong>' ) . '</li>';
$locations_overview .= '<li>' . __( 'To add a new menu instead of assigning an existing one, <strong>click the &#8217;Use new menu&#8217; link</strong>. Your new menu will be automatically assigned to that theme location' ) . '</li></ul>';
get_current_screen()->add_help_tab(
array(
'id' => 'locations-overview',
'title' => __( 'Overview' ),
'content' => $locations_overview,
)
);
endif;
get_current_screen()->set_help_sidebar(
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
'<p>' . __( '<a href="https://wordpress.org/support/article/appearance-menus-screen/">Documentation on Menus</a>' ) . '</p>' .
'<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
);
// Get the admin header.
require_once ABSPATH . 'wp-admin/admin-header.php';
?>
<div class="wrap">
<h1 class="wp-heading-inline"><?php echo esc_html( __( 'Menus' ) ); ?></h1>
<?php
if ( current_user_can( 'customize' ) ) :
$focus = $locations_screen ? array( 'section' => 'menu_locations' ) : array( 'panel' => 'nav_menus' );
printf(
' <a class="page-title-action hide-if-no-customize" href="%1$s">%2$s</a>',
esc_url(
add_query_arg(
array(
array( 'autofocus' => $focus ),
'return' => urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ),
),
admin_url( 'customize.php' )
)
),
__( 'Manage with Live Preview' )
);
endif;
$nav_tab_active_class = '';
$nav_aria_current = '';
if ( ! isset( $_GET['action'] ) || isset( $_GET['action'] ) && 'locations' != $_GET['action'] ) {
$nav_tab_active_class = ' nav-tab-active';
$nav_aria_current = ' aria-current="page"';
}
?>
<hr class="wp-header-end">
<nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
<a href="<?php echo admin_url( 'nav-menus.php' ); ?>" class="nav-tab<?php echo $nav_tab_active_class; ?>"<?php echo $nav_aria_current; ?>><?php esc_html_e( 'Edit Menus' ); ?></a>
<?php
if ( $num_locations && $menu_count ) {
$active_tab_class = '';
$aria_current = '';
if ( $locations_screen ) {
$active_tab_class = ' nav-tab-active';
$aria_current = ' aria-current="page"';
}
?>
<a href="<?php echo esc_url( add_query_arg( array( 'action' => 'locations' ), admin_url( 'nav-menus.php' ) ) ); ?>" class="nav-tab<?php echo $active_tab_class; ?>"<?php echo $aria_current; ?>><?php esc_html_e( 'Manage Locations' ); ?></a>
<?php
}
?>
</nav>
<?php
foreach ( $messages as $message ) :
echo $message . "\n";
endforeach;
?>
<?php
if ( $locations_screen ) :
if ( 1 == $num_locations ) {
echo '<p>' . __( 'Your theme supports one menu. Select which menu you would like to use.' ) . '</p>';
} else {
echo '<p>' . sprintf(
/* translators: %s: Number of menus. */
_n(
'Your theme supports %s menu. Select which menu appears in each location.',
'Your theme supports %s menus. Select which menu appears in each location.',
$num_locations
),
number_format_i18n( $num_locations )
) . '</p>';
}
?>
<div id="menu-locations-wrap">
<form method="post" action="<?php echo esc_url( add_query_arg( array( 'action' => 'locations' ), admin_url( 'nav-menus.php' ) ) ); ?>">
<table class="widefat fixed" id="menu-locations-table">
<thead>
<tr>
<th scope="col" class="manage-column column-locations"><?php _e( 'Theme Location' ); ?></th>
<th scope="col" class="manage-column column-menus"><?php _e( 'Assigned Menu' ); ?></th>
</tr>
</thead>
<tbody class="menu-locations">
<?php foreach ( $locations as $_location => $_name ) { ?>
<tr class="menu-locations-row">
<td class="menu-location-title"><label for="locations-<?php echo $_location; ?>"><?php echo $_name; ?></label></td>
<td class="menu-location-menus">
<select name="menu-locations[<?php echo $_location; ?>]" id="locations-<?php echo $_location; ?>">
<option value="0"><?php printf( '&mdash; %s &mdash;', esc_html__( 'Select a Menu' ) ); ?></option>
<?php
foreach ( $nav_menus as $menu ) :
$data_orig = '';
$selected = isset( $menu_locations[ $_location ] ) && $menu_locations[ $_location ] == $menu->term_id;
if ( $selected ) {
$data_orig = 'data-orig="true"';
}
?>
<option <?php echo $data_orig; ?> <?php selected( $selected ); ?> value="<?php echo $menu->term_id; ?>">
<?php echo wp_html_excerpt( $menu->name, 40, '&hellip;' ); ?>
</option>
<?php endforeach; ?>
</select>
<div class="locations-row-links">
<?php if ( isset( $menu_locations[ $_location ] ) && 0 != $menu_locations[ $_location ] ) : ?>
<span class="locations-edit-menu-link">
<a href="
<?php
echo esc_url(
add_query_arg(
array(
'action' => 'edit',
'menu' => $menu_locations[ $_location ],
),
admin_url( 'nav-menus.php' )
)
);
?>
">
<span aria-hidden="true"><?php _ex( 'Edit', 'menu' ); ?></span><span class="screen-reader-text"><?php _e( 'Edit selected menu' ); ?></span>
</a>
</span>
<?php endif; ?>
<span class="locations-add-menu-link">
<a href="
<?php
echo esc_url(
add_query_arg(
array(
'action' => 'edit',
'menu' => 0,
'use-location' => $_location,
),
admin_url( 'nav-menus.php' )
)
);
?>
">
<?php _ex( 'Use new menu', 'menu' ); ?>
</a>
</span>
</div><!-- .locations-row-links -->
</td><!-- .menu-location-menus -->
</tr><!-- .menu-locations-row -->
<?php } // End foreach. ?>
</tbody>
</table>
<p class="button-controls wp-clearfix"><?php submit_button( __( 'Save Changes' ), 'primary left', 'nav-menu-locations', false ); ?></p>
<?php wp_nonce_field( 'save-menu-locations' ); ?>
<input type="hidden" name="menu" id="nav-menu-meta-object-id" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" />
</form>
</div><!-- #menu-locations-wrap -->
<?php
/**
* Fires after the menu locations table is displayed.
*
* @since 3.6.0
*/
do_action( 'after_menu_locations_table' );
?>
<?php else : ?>
<div class="manage-menus">
<?php if ( $menu_count < 1 ) : ?>
<span class="first-menu-message">
<?php _e( 'Create your first menu below.' ); ?>
<span class="screen-reader-text"><?php _e( 'Fill in the Menu Name and click the Create Menu button to create your first menu.' ); ?></span>
</span><!-- /first-menu-message -->
<?php elseif ( $menu_count < 2 ) : ?>
<span class="add-edit-menu-action">
<?php
printf(
/* translators: %s: URL to create a new menu. */
__( 'Edit your menu below, or <a href="%s">create a new menu</a>. Don&#8217;t forget to save your changes!' ),
esc_url(
add_query_arg(
array(
'action' => 'edit',
'menu' => 0,
),
admin_url( 'nav-menus.php' )
)
)
);
?>
<span class="screen-reader-text"><?php _e( 'Click the Save Menu button to save your changes.' ); ?></span>
</span><!-- /add-edit-menu-action -->
<?php else : ?>
<form method="get" action="<?php echo admin_url( 'nav-menus.php' ); ?>">
<input type="hidden" name="action" value="edit" />
<label for="select-menu-to-edit" class="selected-menu"><?php _e( 'Select a menu to edit:' ); ?></label>
<select name="menu" id="select-menu-to-edit">
<?php if ( $add_new_screen ) : ?>
<option value="0" selected="selected"><?php _e( '&mdash; Select &mdash;' ); ?></option>
<?php endif; ?>
<?php foreach ( (array) $nav_menus as $_nav_menu ) : ?>
<option value="<?php echo esc_attr( $_nav_menu->term_id ); ?>" <?php selected( $_nav_menu->term_id, $nav_menu_selected_id ); ?>>
<?php
echo esc_html( $_nav_menu->truncated_name );
if ( ! empty( $menu_locations ) && in_array( $_nav_menu->term_id, $menu_locations ) ) {
$locations_assigned_to_this_menu = array();
foreach ( array_keys( $menu_locations, $_nav_menu->term_id ) as $menu_location_key ) {
if ( isset( $locations[ $menu_location_key ] ) ) {
$locations_assigned_to_this_menu[] = $locations[ $menu_location_key ];
}
}
/**
* Filters the number of locations listed per menu in the drop-down select.
*
* @since 3.6.0
*
* @param int $locations Number of menu locations to list. Default 3.
*/
$assigned_locations = array_slice( $locations_assigned_to_this_menu, 0, absint( apply_filters( 'wp_nav_locations_listed_per_menu', 3 ) ) );
// Adds ellipses following the number of locations defined in $assigned_locations.
if ( ! empty( $assigned_locations ) ) {
printf(
' (%1$s%2$s)',
implode( ', ', $assigned_locations ),
count( $locations_assigned_to_this_menu ) > count( $assigned_locations ) ? ' &hellip;' : ''
);
}
}
?>
</option>
<?php endforeach; ?>
</select>
<span class="submit-btn"><input type="submit" class="button" value="<?php esc_attr_e( 'Select' ); ?>"></span>
<span class="add-new-menu-action">
<?php
printf(
/* translators: %s: URL to create a new menu. */
__( 'or <a href="%s">create a new menu</a>. Don&#8217;t forget to save your changes!' ),
esc_url(
add_query_arg(
array(
'action' => 'edit',
'menu' => 0,
),
admin_url( 'nav-menus.php' )
)
)
);
?>
<span class="screen-reader-text"><?php _e( 'Click the Save Menu button to save your changes.' ); ?></span>
</span><!-- /add-new-menu-action -->
</form>
<?php
endif;
$metabox_holder_disabled_class = '';
if ( isset( $_GET['menu'] ) && '0' == $_GET['menu'] ) {
$metabox_holder_disabled_class = ' metabox-holder-disabled';
}
?>
</div><!-- /manage-menus -->
<div id="nav-menus-frame" class="wp-clearfix">
<div id="menu-settings-column" class="metabox-holder<?php echo $metabox_holder_disabled_class; ?>">
<div class="clear"></div>
<form id="nav-menu-meta" class="nav-menu-meta" method="post" enctype="multipart/form-data">
<input type="hidden" name="menu" id="nav-menu-meta-object-id" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" />
<input type="hidden" name="action" value="add-menu-item" />
<?php wp_nonce_field( 'add-menu_item', 'menu-settings-column-nonce' ); ?>
<h2><?php _e( 'Add menu items' ); ?></h2>
<?php do_accordion_sections( 'nav-menus', 'side', null ); ?>
</form>
</div><!-- /#menu-settings-column -->
<div id="menu-management-liquid">
<div id="menu-management">
<form id="update-nav-menu" method="post" enctype="multipart/form-data">
<?php
$new_screen_class = '';
if ( $add_new_screen ) {
$new_screen_class = 'blank-slate';
}
?>
<h2><?php _e( 'Menu structure' ); ?></h2>
<div class="menu-edit <?php echo $new_screen_class; ?>">
<input type="hidden" name="nav-menu-data">
<?php
wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
wp_nonce_field( 'update-nav_menu', 'update-nav-menu-nonce' );
$menu_name_aria_desc = $add_new_screen ? ' aria-describedby="menu-name-desc"' : '';
if ( $one_theme_location_no_menus ) {
$menu_name_val = 'value="' . esc_attr( 'Menu 1' ) . '"';
?>
<input type="hidden" name="zero-menu-state" value="true" />
<?php
} else {
$menu_name_val = 'value="' . esc_attr( $nav_menu_selected_title ) . '"';
}
?>
<input type="hidden" name="action" value="update" />
<input type="hidden" name="menu" id="menu" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" />
<div id="nav-menu-header">
<div class="major-publishing-actions wp-clearfix">
<label class="menu-name-label" for="menu-name"><?php _e( 'Menu Name' ); ?></label>
<input name="menu-name" id="menu-name" type="text" class="menu-name regular-text menu-item-textbox" <?php echo $menu_name_val . $menu_name_aria_desc; ?> />
<div class="publishing-action">
<?php submit_button( empty( $nav_menu_selected_id ) ? __( 'Create Menu' ) : __( 'Save Menu' ), 'primary large menu-save', 'save_menu', false, array( 'id' => 'save_menu_header' ) ); ?>
</div><!-- END .publishing-action -->
</div><!-- END .major-publishing-actions -->
</div><!-- END .nav-menu-header -->
<div id="post-body">
<div id="post-body-content" class="wp-clearfix">
<?php if ( ! $add_new_screen ) : ?>
<?php
$hide_style = '';
if ( isset( $menu_items ) && 0 == count( $menu_items ) ) {
$hide_style = 'style="display: none;"';
}
if ( $one_theme_location_no_menus ) {
$starter_copy = __( 'Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.' );
} else {
$starter_copy = __( 'Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.' );
}
?>
<div class="drag-instructions post-body-plain" <?php echo $hide_style; ?>>
<p><?php echo $starter_copy; ?></p>
</div>
<?php
if ( isset( $edit_markup ) && ! is_wp_error( $edit_markup ) ) {
echo $edit_markup;
} else {
?>
<ul class="menu" id="menu-to-edit"></ul>
<?php } ?>
<?php endif; ?>
<?php if ( $add_new_screen ) : ?>
<p class="post-body-plain" id="menu-name-desc"><?php _e( 'Give your menu a name, then click Create Menu.' ); ?></p>
<?php if ( isset( $_GET['use-location'] ) ) : ?>
<input type="hidden" name="use-location" value="<?php echo esc_attr( $_GET['use-location'] ); ?>" />
<?php endif; ?>
<?php
endif;
$no_menus_style = '';
if ( $one_theme_location_no_menus ) {
$no_menus_style = 'style="display: none;"';
}
?>
<div class="menu-settings" <?php echo $no_menus_style; ?>>
<h3><?php _e( 'Menu Settings' ); ?></h3>
<?php
if ( ! isset( $auto_add ) ) {
$auto_add = get_option( 'nav_menu_options' );
if ( ! isset( $auto_add['auto_add'] ) ) {
$auto_add = false;
} elseif ( false !== array_search( $nav_menu_selected_id, $auto_add['auto_add'] ) ) {
$auto_add = true;
} else {
$auto_add = false;
}
}
?>
<fieldset class="menu-settings-group auto-add-pages">
<legend class="menu-settings-group-name howto"><?php _e( 'Auto add pages' ); ?></legend>
<div class="menu-settings-input checkbox-input">
<input type="checkbox"<?php checked( $auto_add ); ?> name="auto-add-pages" id="auto-add-pages" value="1" /> <label for="auto-add-pages"><?php printf( __( 'Automatically add new top-level pages to this menu' ), esc_url( admin_url( 'edit.php?post_type=page' ) ) ); ?></label>
</div>
</fieldset>
<?php if ( current_theme_supports( 'menus' ) ) : ?>
<fieldset class="menu-settings-group menu-theme-locations">
<legend class="menu-settings-group-name howto"><?php _e( 'Display location' ); ?></legend>
<?php foreach ( $locations as $location => $description ) : ?>
<div class="menu-settings-input checkbox-input">
<input type="checkbox"<?php checked( isset( $menu_locations[ $location ] ) && $menu_locations[ $location ] == $nav_menu_selected_id ); ?> name="menu-locations[<?php echo esc_attr( $location ); ?>]" id="locations-<?php echo esc_attr( $location ); ?>" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" />
<label for="locations-<?php echo esc_attr( $location ); ?>"><?php echo $description; ?></label>
<?php if ( ! empty( $menu_locations[ $location ] ) && $menu_locations[ $location ] != $nav_menu_selected_id ) : ?>
<span class="theme-location-set">
<?php
printf(
/* translators: %s: Menu name. */
_x( '(Currently set to: %s)', 'menu location' ),
wp_get_nav_menu_object( $menu_locations[ $location ] )->name
);
?>
</span>
<?php endif; ?>
</div>
<?php endforeach; ?>
</fieldset>
<?php endif; ?>
</div>
</div><!-- /#post-body-content -->
</div><!-- /#post-body -->
<div id="nav-menu-footer">
<div class="major-publishing-actions wp-clearfix">
<?php if ( 0 != $menu_count && ! $add_new_screen ) : ?>
<span class="delete-action">
<a class="submitdelete deletion menu-delete" href="
<?php
echo esc_url(
wp_nonce_url(
add_query_arg(
array(
'action' => 'delete',
'menu' => $nav_menu_selected_id,
),
admin_url( 'nav-menus.php' )
),
'delete-nav_menu-' . $nav_menu_selected_id
)
);
?>
"><?php _e( 'Delete Menu' ); ?></a>
</span><!-- END .delete-action -->
<?php endif; ?>
<div class="publishing-action">
<?php submit_button( empty( $nav_menu_selected_id ) ? __( 'Create Menu' ) : __( 'Save Menu' ), 'primary large menu-save', 'save_menu', false, array( 'id' => 'save_menu_footer' ) ); ?>
</div><!-- END .publishing-action -->
</div><!-- END .major-publishing-actions -->
</div><!-- /#nav-menu-footer -->
</div><!-- /.menu-edit -->
</form><!-- /#update-nav-menu -->
</div><!-- /#menu-management -->
</div><!-- /#menu-management-liquid -->
</div><!-- /#nav-menus-frame -->
<?php endif; ?>
</div><!-- /.wrap-->
<?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>
This diff could not be displayed because it is too large.
<!DOCTYPE html>
<html lang="ja">
<head>
<?php if (is_front_page()): ?>
<title><?php wp_title( '|', true, 'right' ); bloginfo('name'); ?></title>
<?php elseif(get_post_type() === 'message' ): ?>
<title>しあわせ通信 - <?php wp_title( '|', true, 'right' ); bloginfo('name'); ?></title>
<?php else : ?>
<title><?php wp_title( '|', true, 'right' ); bloginfo('name'); ?></title>
<?php endif; ?>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/images/favicon.ico">
<!--wp_head-->
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/js/lightbox/css/prettyPhoto.css">
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/js/slidebars/slidebars.css">
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/style.css">
<!--START : js-->
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/jquery/jquery.js?ver=1.10.2"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/jquery/jquery-migrate.min.js?ver=1.2.1"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/lightbox/js/jquery.prettyPhoto.js"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("#map_t a[rel^='prettyPhoto']:first").prettyPhoto({
custom_markup: '<div id="map_canvas_t" style="width:100%; height:425px"></div>',
changepicturecallback: function(){ initialize1(); }
});
$("#map_n a[rel^='prettyPhoto']:first").prettyPhoto({
custom_markup: '<div id="map_canvas_n" style="width:100%; height:425px"></div>',
changepicturecallback: function(){ initialize2(); }
});
});
</script>
<!-- Google Maps Code -->
<script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">
function initialize1() {
var latlng = new google.maps.LatLng(35.672479, 139.724729);
var myOptions = {
zoom: 17,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas_t"), myOptions);
var marker = new google.maps.Marker({
position: latlng,
map: map,
title:"東京オフィス"
});
}
function initialize2() {
var latlng = new google.maps.LatLng(35.173313, 136.885369);
var myOptions = {
zoom: 17,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas_n"), myOptions);
var marker = new google.maps.Marker({
position: latlng,
map: map,
title:"名古屋オフィス"
});
}
</script>
<!-- END Google Maps Code -->
<?php if (is_front_page()): ?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.heightLine.js"></script>
<script>jQuery(function(){$(".sectionArea_boxM_01 .sectionBox_body_inner").heightLine({minWidth:639});});</script>
<script>jQuery(function(){$(".sectionArea_boxM_02 .sectionBox_body_inner").heightLine({minWidth:639});});</script>
<script>jQuery(function(){$(".menuSBox .sectionBox_body_inner").heightLine({minWidth:639});});</script>
<script>jQuery(function(){$(".submenuBox .sectionBox_body_inner").heightLine({minWidth:639});});</script>
<?php elseif(is_page('73')): ?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.heightLine.js"></script>
<script>jQuery(function(){$(".sectionArea_boxM_01 .boxM").heightLine({minWidth:639});});</script>
<script>jQuery(function(){$(".sectionArea_boxM_02 .boxM").heightLine({minWidth:639});});</script>
<?php elseif(is_page('106')): ?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.heightLine.js"></script>
<script>jQuery(function(){$(".bannerList a").heightLine({minWidth:639});});</script>
<?php else : ?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.heightLine.js"></script>
<script>jQuery(function(){$(".columnBoxCol3").heightLine({minWidth:767});});</script>
<?php endif; ?>
<?php if ( is_Android() ) : ?>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/slidebars/slidebars-Android.js"></script>
<?php else: ?>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/slidebars/slidebars.js"></script>
<?php endif; ?>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/script.js"></script>
<!--END : js-->
<!--[if lte IE 9 ]>
<?php if (is_front_page()): ?>
<title><?php wp_title( '|', true, 'right' ); bloginfo('name'); ?></title>
<?php elseif(get_post_type() === 'message' ): ?>
<title>しあわせ通信 - <?php wp_title( '|', true, 'right' ); bloginfo('name'); ?></title>
<?php else : ?>
<title><?php wp_title( '|', true, 'right' ); bloginfo('name'); ?></title>
<?php endif; ?>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/images/favicon.ico">
<!--wp_head-->
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/js/lightbox/css/prettyPhoto.css">
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/js/slidebars/slidebars.css">
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/style.css">
<!--START : js-->
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/jquery/jquery.js?ver=1.10.2"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/jquery/jquery-migrate.min.js?ver=1.2.1"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/lightbox/js/jquery.prettyPhoto.js"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$("#map_t a[rel^='prettyPhoto']:first").prettyPhoto({
custom_markup: '<div id="map_canvas_t" style="width:100%; height:100%"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3241.183123504671!2d139.7227460173083!3d35.67249269876229!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb356d6b4da08283f!2z6Z2S5bGx44OE44Kk44Oz44OT44Or5paw6Z2S5bGx44OT44Or6KW_6aSo!5e0!3m2!1sja!2sjp!4v1594879691504!5m2!1sja!2sjp" width="100%" height="600" frameborder="0" style="border:0; margin-top: -180px;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe></div>',
changepicturecallback: function() {}
});
$("#map_n a[rel^='prettyPhoto']:first").prettyPhoto({
custom_markup: '<div id="map_canvas_n" style="width:100%; height:425px"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3261.312378966943!2d136.87947786350924!3d35.173766031220154!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6003773d6a97da49%3A0x462c23102a4a7298!2z5ZCN6aeF44OA44Kk44Ok44Oh44Kk44OG44OE44OT44Or!5e0!3m2!1sja!2sjp!4v1594880263936!5m2!1sja!2sjp" width="100%" height="600" frameborder="0" style="border:0; margin-top: -180px;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe></div>',
changepicturecallback: function() {}
});
});
</script>
<!-- Google Maps Code -->
<script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">
function initialize1() {
var latlng = new google.maps.LatLng(35.672479, 139.724729);
var myOptions = {
zoom: 17,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas_t"), myOptions);
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: "東京オフィス"
});
}
function initialize2() {
var latlng = new google.maps.LatLng(35.173313, 136.885369);
var myOptions = {
zoom: 17,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas_n"), myOptions);
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: "名古屋オフィス"
});
}
</script>
<!-- END Google Maps Code -->
<?php if (is_front_page()): ?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.heightLine.js"></script>
<script>
jQuery(function() {
$(".sectionArea_boxM_01 .sectionBox_body_inner").heightLine({
minWidth: 639
});
});
</script>
<script>
jQuery(function() {
$(".sectionArea_boxM_02 .sectionBox_body_inner").heightLine({
minWidth: 639
});
});
</script>
<script>
jQuery(function() {
$(".menuSBox .sectionBox_body_inner").heightLine({
minWidth: 639
});
});
</script>
<script>
jQuery(function() {
$(".submenuBox .sectionBox_body_inner").heightLine({
minWidth: 639
});
});
</script>
<?php elseif(is_page('73')): ?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.heightLine.js"></script>
<script>
jQuery(function() {
$(".sectionArea_boxM_01 .boxM").heightLine({
minWidth: 639
});
});
</script>
<script>
jQuery(function() {
$(".sectionArea_boxM_02 .boxM").heightLine({
minWidth: 639
});
});
</script>
<?php elseif(is_page('106')): ?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.heightLine.js"></script>
<script>
jQuery(function() {
$(".bannerList a").heightLine({
minWidth: 639
});
});
</script>
<?php else : ?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.heightLine.js"></script>
<script>
jQuery(function() {
$(".columnBoxCol3").heightLine({
minWidth: 767
});
});
</script>
<?php endif; ?>
<?php if ( is_Android() ) : ?>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/slidebars/slidebars-Android.js"></script>
<?php else: ?>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/slidebars/slidebars.js"></script>
<?php endif; ?>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/script.js"></script>
<!--END : js-->
<!--[if lte IE 9 ]>
<link rel="stylesheet" id="style-css" href="<?php bloginfo('template_url'); ?>/css/ie.css" type="text/css" media="all" />
<![endif]-->
<!--[if lte IE 8]>
<!--[if lte IE 8]>
<link rel="stylesheet" id="style-css" href="<?php bloginfo('template_url'); ?>/css/ie8.css" type="text/css" media="all" />
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/css3-mediaqueries.js"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/jquery.backgroundSize.js"></script>
<![endif]-->
<?php wp_head(); ?>
<?php wp_head(); ?>
</head>
<body id="<?php if (is_front_page()): ?>home<?php elseif(is_post_type_archive( 'topics' )): ?>topicsArchive<?php elseif(get_post_type() === 'topics' ): ?>topics_page<?php else : ?><?php $post = get_page($page_id); echo $post->post_name; ?><?php endif; ?>" class="<?php if (get_post_type() === 'voice,message'): ?>happyreport_page<?php elseif(in_category( array( 8 ) )): ?>happyreport_page<?php elseif(is_page( array( 633 ) )): ?>happyreport_page happyreport_pageTop<?php elseif(in_category( array( 3 ) )): ?>about_page<?php elseif(in_category( array( 3 ) )): ?>about_page<?php elseif(in_category( array( 4 ) )): ?>system_page<?php else : ?>normal<?php endif; ?>">
<!--[if lt IE 8]>
<!--[if lt IE 8]>
<div id="caution" style='border: 1px solid #F7941D; background: #FEEFDA; text-align: center; clear: both; height: 75px; position: absolute; z-index: 999;'>
<div style='position: absolute; right: 3px; top: 3px; font-family: courier new; font-weight: bold;'><a href='#' onclick='javascript:this.parentNode.parentNode.style.display="none"; return false;'><img src='http://www.ie6nomore.com/files/theme/ie6nomore-cornerx.jpg' style='border: none;' alt='Close this notice'/></a></div>
<div style='width: 640px; margin: 0 auto; text-align: left; padding: 0; overflow: hidden; color: black;'>
......@@ -116,37 +177,76 @@ $(document).ready(function(){
</div>
</div>
<![endif]-->
<div id="page">
<div id="sb-site">
<div id="container">
<div id="content">
<div id="header">
<div class="inner">
<h1 class="siteTitle"><img src="<?php bloginfo('template_url'); ?>/images/ttl_h1_DFC.gif" alt="<?php bloginfo( 'name' ); ?>"></h1>
<div class="uiNav">
<div class="btn_form"><?php btn_form('form'); ?><!-- /.btn_form --></div>
<div class="btn_map_t"><img src="<?php bloginfo('template_url'); ?>/images/text_header_tel_t.gif" width="252" height="20" alt="東京オフィス:03-3405-8261" class="imgTll">
<p id="map_t"><a href="#?custom=true&width=630&height=420" rel="prettyPhoto" title="東京都港区南青山1-1-1 新青山ビル西館2階" data-link="https://www.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E6%9D%B1%E4%BA%AC%E9%83%BD%E6%B8%AF%E5%8C%BA%E5%8D%97%E9%9D%92%E5%B1%B11-1-1%E6%96%B0%E9%9D%92%E5%B1%B1%E3%83%93%E3%83%AB%E8%A5%BF%E9%A4%A82%E9%9A%8E&amp;aq=&amp;sll=36.018536,139.305715&amp;sspn=0.581477,0.798569&amp;brcurrent=3,0x60188c820ac932eb:0xc68079dd10afd971,0&amp;ie=UTF8&amp;hq=&amp;hnear=%E6%9D%B1%E4%BA%AC%E9%83%BD%E6%B8%AF%E5%8C%BA%E5%8D%97%E9%9D%92%E5%B1%B1%EF%BC%91%E4%B8%81%E7%9B%AE%EF%BC%91%E2%88%92%EF%BC%91%EF%BC%99+%E9%9D%92%E5%B1%B1%E3%83%84%E3%82%A4%E3%83%B3%E3%83%93%E3%83%AB%E6%96%B0%E9%9D%92%E5%B1%B1%E3%83%93%E3%83%AB%E3%83%82%E3%83%B3%E3%82%B0%E8%A5%BF%E9%A4%A8&amp;t=m&amp;z=14&amp;ll=35.672479,139.724729">
<img src="<?php bloginfo('template_url'); ?>/images/btn_header_map.png" width="52" height="20" alt="">
</a></p></div>
<div class="btn_map_n"><img src="<?php bloginfo('template_url'); ?>/images/text_header_tel_n.gif" width="252" height="20" alt="名古屋オフィス:052-569-2915" class="imgTll">
<p id="map_n"><a href="#?custom=true&width=630&height=420" rel="prettyPhoto" title="名古屋市中村区名駅3-16-22 名古屋ダイヤビル1号館7階" data-link="https://www.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E5%90%8D%E5%8F%A4%E5%B1%8B%E5%B8%82%E4%B8%AD%E6%9D%91%E5%8C%BA%E5%90%8D%E9%A7%853%EF%BC%8D16%EF%BC%8D22%E5%90%8D%E5%8F%A4%E5%B1%8B%E3%83%80%E3%82%A4%E3%83%A4%E3%83%93%E3%83%AB1%E5%8F%B7%E9%A4%A87%E9%9A%8E&amp;aq=&amp;sll=37.996163,159.082031&amp;sspn=70.195097,102.216797&amp;brcurrent=3,0x600376dcc14c8d61:0x6070d361caa3d5eb,0&amp;ie=UTF8&amp;hq=&amp;hnear=%E6%84%9B%E7%9F%A5%E7%9C%8C%E5%90%8D%E5%8F%A4%E5%B1%8B%E5%B8%82%E4%B8%AD%E6%9D%91%E5%8C%BA%E5%90%8D%E9%A7%85%EF%BC%93%E4%B8%81%E7%9B%AE%EF%BC%91%EF%BC%96%E2%88%92%EF%BC%92%EF%BC%92+%E5%90%8D%E5%8F%A4%E5%B1%8B%E3%83%80%E3%82%A4%E3%83%A4%E3%83%93%E3%83%AB%E3%83%87%E3%82%A3%E3%83%B3%E3%82%B0%EF%BC%91%E5%8F%B7%E9%A4%A8&amp;t=m&amp;z=14&amp;ll=35.173313,136.88537">
<img src="<?php bloginfo('template_url'); ?>/images/btn_header_map.png" width="52" height="20" alt="">
</a></p></div>
<p class="icon_tabSlide">
<span class="iconTab sb-toggle-right openSlide"><img src="<?php bloginfo('template_url'); ?>/images/icon_tabSlide.gif" width="40" height="40" alt="iconTab"></span>
<span class="iconTab sb-close closeSlide"><img src="<?php bloginfo('template_url'); ?>/images/icon_tabSlide.gif" width="40" height="40" alt="iconTab"></span>
</p>
<!-- /.uiNav --></div>
<!-- /.inner --></div>
<!-- /#header --></div>
<div id="globalNavBox">
<div class="inner">
<?php wp_nav_menu( array( 'menu' => 'globalNav', 'container' => 'false', 'menu_id' => 'globalNav' ) ); ?>
<!-- /.inner --></div>
<!-- /#globalNavBox --></div>
\ No newline at end of file
<div id="page">
<div id="sb-site">
<div id="container">
<div id="content">
<div id="header">
<div class="inner">
<h1 class="siteTitle"><img src="<?php bloginfo('template_url'); ?>/images/ttl_h1_DFC.gif" alt="<?php bloginfo( 'name' ); ?>"></h1>
<div class="uiNav">
<div class="btn_form"><?php btn_form('form'); ?>
<!-- /.btn_form -->
</div>
<div class="btn_map_t"><img src="<?php bloginfo('template_url'); ?>/images/text_header_tel_t.gif" width="252" height="20" alt="東京オフィス:03-3405-8261" class="imgTll">
<p id="map_t"><a href="#?custom=true&width=630&height=420" rel="prettyPhoto" title="東京都港区南青山1-1-1 新青山ビル西館2階" data-link="https://www.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E6%9D%B1%E4%BA%AC%E9%83%BD%E6%B8%AF%E5%8C%BA%E5%8D%97%E9%9D%92%E5%B1%B11-1-1%E6%96%B0%E9%9D%92%E5%B1%B1%E3%83%93%E3%83%AB%E8%A5%BF%E9%A4%A82%E9%9A%8E&amp;aq=&amp;sll=36.018536,139.305715&amp;sspn=0.581477,0.798569&amp;brcurrent=3,0x60188c820ac932eb:0xc68079dd10afd971,0&amp;ie=UTF8&amp;hq=&amp;hnear=%E6%9D%B1%E4%BA%AC%E9%83%BD%E6%B8%AF%E5%8C%BA%E5%8D%97%E9%9D%92%E5%B1%B1%EF%BC%91%E4%B8%81%E7%9B%AE%EF%BC%91%E2%88%92%EF%BC%91%EF%BC%99+%E9%9D%92%E5%B1%B1%E3%83%84%E3%82%A4%E3%83%B3%E3%83%93%E3%83%AB%E6%96%B0%E9%9D%92%E5%B1%B1%E3%83%93%E3%83%AB%E3%83%82%E3%83%B3%E3%82%B0%E8%A5%BF%E9%A4%A8&amp;t=m&amp;z=14&amp;ll=35.672479,139.724729">
<img src="<?php bloginfo('template_url'); ?>/images/btn_header_map.png" width="52" height="20" alt="">
</a></p>
</div>
<div class="btn_map_n"><img src="<?php bloginfo('template_url'); ?>/images/text_header_tel_n.gif" width="252" height="20" alt="名古屋オフィス:052-569-2915" class="imgTll">
<p id="map_n"><a href="#?custom=true&width=630&height=420" rel="prettyPhoto" title="愛知県名古屋市西区名駅1-1-17 名駅ダイヤメイテツビル5階" data-link="https://goo.gl/maps/uxXyV77VmziBAGyq6">
<img src="<?php bloginfo('template_url'); ?>/images/btn_header_map.png" width="52" height="20" alt="">
</a></p>
</div>
<p class="icon_tabSlide">
<span class="iconTab sb-toggle-right openSlide"><img src="<?php bloginfo('template_url'); ?>/images/icon_tabSlide.gif" width="40" height="40" alt="iconTab"></span>
<span class="iconTab sb-close closeSlide"><img src="<?php bloginfo('template_url'); ?>/images/icon_tabSlide.gif" width="40" height="40" alt="iconTab"></span>
</p>
<!-- /.uiNav -->
</div>
<!-- /.inner -->
</div>
<!-- /#header -->
</div>
<div id="globalNavBox">
<div class="inner">
<ul id="globalNav" class="menu">
<li class="nItem nav_g_home"><a href="<?php echo home_url(); ?>/"><span class="nText">ホーム</span></a></li>
<li class="nItem nav_g_about"><a href="<?php echo home_url(); ?>/about/information.html"><span class="nText">ダイヤモンドファミリークラブとは</span></a>
<ul class="sub-menu">
<li class="nItem nav_gs_information"><a href="<?php echo home_url(); ?>/about/information.html"><span class="nText">営業案内</span></a></li>
<li class="nItem nav_gs_qualification"><a href="<?php echo home_url(); ?>/about/qualification.html"><span class="nText">入会資格</span></a></li>
<li class="nItem nav_gs_club"><a href="<?php echo home_url(); ?>/about/club.html"><span class="nText">クラブ概要</span></a></li>
<li class="nItem nav_gs_greeting"><a href="<?php echo home_url(); ?>/about/greeting.html"><span class="nText">代表ご挨拶</span></a></li>
<li class="nItem nav_gs_tokyo"><a href="<?php echo home_url(); ?>/about/tokyo-office.html"><span class="nText">東京オフィスのご案内</span></a></li>
<li class="nItem nav_gs_nagoya"><a href="<?php echo home_url(); ?>/about/nagoya-office.html"><span class="nText">名古屋オフィスのご案内</span></a></li>
</ul>
</li>
<li class="nItem nav_g_system"><a href="<?php echo home_url(); ?>/system/flow.html"><span class="nText">ご紹介システム</span></a>
<ul class="sub-menu">
<li class="nItem nav_gs_flow"><a href="<?php echo home_url(); ?>/system/flow.html"><span class="nText">ご入会までの流れ</span></a></li>
<li class="nItem nav_gs_system"><a href="<?php echo home_url(); ?>/system/system.html"><span class="nText">カウンセラー制度</span></a></li>
<li class="nItem nav_gs_counselor"><a href="<?php echo home_url(); ?>/system/counselor.html"><span class="nText">カウンセラー紹介</span></a></li>
<li class="nItem nav_gs_facility"><a href="<?php echo home_url(); ?>/system/facility.html"><span class="nText">施設のご紹介</span></a></li>
</ul>
</li>
<li class="nItem nav_g_profile"><a href="<?php echo home_url(); ?>/profile/profile.html"><span class="nText">会員プロフィール</span></a></li>
<li class="nItem nav_g_qa"><a href="<?php echo home_url(); ?>/qa/qa.html"><span class="nText">Q&A</span></a></li>
<li class="nItem nav_g_parents"><a href="<?php echo home_url(); ?>/parents/parents.html"><span class="nText">ご両親様へ</span></a></li>
<li class="nItem nav_g_happyreport"><a href="<?php echo home_url(); ?>/message.html"><span class="nText">しあわせ通信</span></a>
<ul class="sub-menu">
<li class="nItem nav_gs_message"><a href="<?php echo home_url(); ?>/message.html"><span class="nText">しあわせ通信</span></a></li>
<li class="nItem nav_gs_voice"><a href="<?php echo home_url(); ?>/voice/voice01.html"><span class="nText">ご成約者様の声</span></a></li>
<li class="nItem nav_gs_useful"><a href="<?php echo home_url(); ?>/happyreport/useful.html"><span class="nText">お役立ち情報</span></a></li>
</ul>
</li>
</ul>
<!-- /.inner -->
</div>
<!-- /#globalNavBox -->
</div>
......@@ -4,38 +4,47 @@
*/ get_header(); ?>
<!-- main -->
<div id="mainVisual">
<div class="shadow"><div class="inner">
<img src="<?php bloginfo('template_url'); ?>/images/mainVisual_780.png" alt="" class="img780">
<img src="<?php bloginfo('template_url'); ?>/images/mainVisual.png" alt="ダイヤモンドファミリークラブは三菱グループ社員の福利厚生と社会貢献を目的に設立した結婚紹介センターです" class="imgPC">
<div class="visualCopy">
<h2>ダイヤモンドファミリークラブは三菱グループ社員の福利厚生と社会貢献を目的に設立した結婚紹介センターです</h2>
<p>専任のカウンセラーが長年培った経験と実績をもとに、ご紹介から交際・ご婚約まで親身になってお世話させていただきます。<br>
<br>
三菱グループの安心と信頼の場で新しい出会いを広げてみませんか。</p>
<div class="btn_form"><?php btn_form('form'); ?><!-- /.btn_form --></div>
<div class="btn_member"><?php btnRd_link('member'); ?><!-- /.btn_member --></div>
<div class="shadow">
<div class="inner">
<img src="<?php bloginfo('template_url'); ?>/images/mainVisual_780.png" alt="" class="img780">
<img src="<?php bloginfo('template_url'); ?>/images/mainVisual.png" alt="ダイヤモンドファミリークラブは三菱グループ社員の福利厚生と社会貢献を目的に設立した結婚紹介センターです" class="imgPC">
<div class="visualCopy">
<h2>ダイヤモンドファミリークラブは三菱グループ社員の福利厚生と社会貢献を目的に設立した結婚紹介センターです</h2>
<p>専任のカウンセラーが長年培った経験と実績をもとに、ご紹介から交際・ご婚約まで親身になってお世話させていただきます。<br>
<br>
三菱グループの安心と信頼の場で新しい出会いを広げてみませんか。</p>
<div class="btn_form"><?php btn_form('form'); ?>
<!-- /.btn_form -->
</div>
<div class="btn_member"><?php btnRd_link('member'); ?>
<!-- /.btn_member -->
</div>
</div>
<!-- /.inner -->
</div><!-- /.shadow -->
</div>
<!-- /.mainVisual -->
</div>
<!-- /.inner --></div><!-- /.shadow --></div>
<!-- /.mainVisual --></div>
<div id="mainContent">
<div class="inner">
<div class="inner">
<h4 class="ttl_sp">ご案内</h4>
<h4 class="ttl_sp">ご案内</h4>
<div class="topixBox sectionBox boxL accordion">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><span class="icon"></span>トピックス<span class="linkText"><a href="<?php echo home_url(); ?>/topics.html">トピックス一覧へ</a></span><span class="btnArrow"></span></h3>
<!-- /.sectionBox_header --></div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<?php
<div class="topixBox sectionBox boxL accordion">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><span class="icon"></span>トピックス<span class="linkText"><a href="<?php echo home_url(); ?>/topics.html">トピックス一覧へ</a></span><span class="btnArrow"></span></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<?php
$loop = new WP_Query(array("post_type" => "topics","posts_per_page" => 3,"orderby" => "date","order" => "DESC"));
if ( $loop->have_posts() ) : while($loop->have_posts()): $loop->the_post();
?>
<?php if(empty($post->post_content)) : ?>
<p><span class="date"><?php the_time('y.m.d'); ?></span><?php
<?php if(empty($post->post_content)) : ?>
<p><span class="date"><?php the_time('y.m.d'); ?></span><?php
$days = 30; //Newマーク表示の日数
$daysInt = ($days-1)*86400;
$today = time();
......@@ -46,8 +55,8 @@ $dayago = $today-$entry;
echo '<span class="new">NEW</span>';
}
?><span class="text"><?php the_title(); ?></span></p>
<?php else : ?>
<p><a href="<?php the_permalink() ?>"><span class="date"><?php the_time('y.m.d'); ?></span><?php
<?php else : ?>
<p><a href="<?php the_permalink() ?>"><span class="date"><?php the_time('y.m.d'); ?></span><?php
$days = 30; //Newマーク表示の日数
$daysInt = ($days-1)*86400;
$today = time();
......@@ -58,181 +67,408 @@ $dayago = $today-$entry;
echo '<span class="new">NEW</span>';
}
?><span class="text"><?php the_title(); ?></span></a></p>
<?php endif; ?>
<?php endwhile; endif; ?>
<h4 class="ttl_sp"><span class="linkText"><a href="<?php echo home_url(); ?>/topics.html">トピックス一覧へ</a></span></h4>
<!-- /.sectionBox_body_inner --></div>
<!-- /.sectionBox_body --></div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner --></div>
<!-- /.sectionBox_shadow --></div>
<!-- /.topixBox --></div>
<?php endif; ?>
<?php endwhile; endif; ?>
<h4 class="ttl_sp"><span class="linkText"><a href="<?php echo home_url(); ?>/topics.html">トピックス一覧へ</a></span></h4>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.topixBox -->
</div>
<div class="sectionArea_boxM sectionArea_boxM_01">
<?php
$args = array(
'post__in' => array(88,86),
'posts_per_page' => 2,
'meta_key=num&orderby' => 'meta_value_num&order=ASC',
'order' => 'ASC'
); ?>
<?php $my_query = new WP_Query( $args ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<div class="<?php nskw_subtitle(); ?>Box sectionBox boxM accordion">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><span class="icon"></span><?php the_title(); ?><span class="btnArrow"></span></h3>
<!-- /.sectionBox_header --></div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<span class="topBox_tmb"><img src="<?php $image = wp_get_attachment_image_src(get_post_meta($post->ID, 'topBox_tmb', true), 'large'); echo $image[0];?>" alt="<?php the_title(); ?>"></span>
<span class="topBox_tmbS"><img src="<?php $image = wp_get_attachment_image_src(get_post_meta($post->ID, 'topBox_tmbS', true), 'large'); echo $image[0];?>" alt="<?php the_title(); ?>"></span>
<div class="text officeText"><?php echo (post_custom('TopSubject')); ?></div>
<div class="btn_<?php nskw_subtitle(); ?>"><div class="btnRd btnBox"><a href="<?php the_permalink(); ?>"><span class="icon"></span><span class="btnText"><?php echo nl2br(post_custom('linkText')); ?></span><span class="btnArrow"></span></a></div><!-- /.btn_member --></div>
<!-- /.sectionBox_body_inner --></div>
<!-- /.sectionBox_body --></div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner --></div>
<!-- /.sectionBox_shadow --></div>
<!-- /.topixBox --></div>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>
<!-- /.boxM --></div>
<div class="sectionArea_boxM sectionArea_boxM_01">
<div class="tokyo-officeBox sectionBox boxM accordion">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><span class="icon"></span>東京オフィスのご案内<span class="btnArrow"></span></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<span class="topBox_tmb"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_01.jpg" alt="東京オフィスのご案内"></span>
<span class="topBox_tmbS"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_01S.jpg" alt="東京オフィスのご案内"></span>
<div class="text officeText"><a href="tel:0334058261"><span>03-3405-8261</span></a>
<p class="add">〒107-0062 東京都港区南青山1-1-1 新青山ビル西館2階</p>
<dl>
<dt><span>営業日時</span></dt>
<dd>月・木・金・土・日曜日/9:00~17:00<br>
水曜日/9:00~20:00</dd>
</dl>
<p>定休日/火曜・祝日(※土曜・日曜は祝日でも営業)</p>
</div>
<div class="btn_tokyo-office">
<div class="btnRd btnBox"><a href="<?php echo home_url(); ?>/about/tokyo-office.html"><span class="icon"></span><span class="btnText">アクセスマップ</span><span class="btnArrow"></span></a></div><!-- /.btn_member -->
</div>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.topixBox -->
</div>
<div class="nagoya-officeBox sectionBox boxM accordion">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><span class="icon"></span>名古屋オフィスのご案内<span class="btnArrow"></span></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<span class="topBox_tmb"><img src="/wp-content/uploads/n_office.jpg" alt="名古屋オフィスのご案内"></span>
<span class="topBox_tmbS"><img src="/wp-content/uploads/top_n.jpg" alt="名古屋オフィスのご案内"></span>
<div class="text officeText"><a href="tel:0525692915"><span>052-569-2915</span></a>
<p class="add">〒451-0045 名古屋市西区名駅1-1-17 名駅ダイヤメイテツビル5階</p>
<dl>
<dt><span>営業日時</span></dt>
<dd>月・金曜日/10:00~15:00<br>
土・日曜日/9:30~17:00</dd>
</div>
<div class="btn_nagoya-office">
<div class="btnRd btnBox"><a href="<?php echo home_url(); ?>/about/nagoya-office.html"><span class="icon"></span><span class="btnText">アクセスマップ</span><span class="btnArrow"></span></a></div><!-- /.btn_member -->
</div>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.topixBox -->
</div>
<!-- /.boxM -->
</div>
<div class="sectionArea_boxM sectionArea_boxM_02">
<?php
$args = array(
'post_type' => array('post','page'),
'post__in' => array(75),
'posts_per_page' => 1,
'orderby' => 'ID',
'order' => 'ASC'
); ?>
<?php $my_query = new WP_Query( $args ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<div class="<?php nskw_subtitle(); ?>Box sectionBox boxM accordion">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><span class="icon"></span><?php the_title(); ?><span class="btnArrow"></span></h3>
<!-- /.sectionBox_header --></div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<span class="topBox_tmb"><img src="<?php $image = wp_get_attachment_image_src(get_post_meta($post->ID, 'topBox_tmb', true), 'large'); echo $image[0];?>" alt="<?php the_title(); ?>"></span>
<span class="topBox_tmbS"><img src="<?php $image = wp_get_attachment_image_src(get_post_meta($post->ID, 'topBox_tmbS', true), 'large'); echo $image[0];?>" alt="<?php the_title(); ?>"></span>
<p class="text"><?php echo nl2br(post_custom('TopSubject')); ?></p>
<div class="btn_<?php nskw_subtitle(); ?>"><div class="btnRd btnBox"><a href="<?php the_permalink(); ?>"><span class="icon"></span><span class="btnText"><?php echo nl2br(post_custom('linkText')); ?></span><span class="btnArrow"></span></a></div><!-- /.btn_member --></div>
<!-- /.sectionBox_body_inner --></div>
<!-- /.sectionBox_body --></div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner --></div>
<!-- /.sectionBox_shadow --></div>
<!-- /.boxM --></div>
<?php endwhile; // end of the loop. ?>
<div class="sectionArea_boxM sectionArea_boxM_02">
<div class="Box sectionBox boxM accordion">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><span class="icon"></span>入会資格<span class="btnArrow"></span></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<span class="topBox_tmb"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_03.jpg" alt="入会資格"></span>
<span class="topBox_tmbS"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_03S.jpg" alt="入会資格"></span>
<p class="text">加盟会社(三菱グループと推薦会社・推薦団体)にご勤務・所属されている方(ご退職されました方を含む)とその家族及びご紹介の方がお申込みいただけます。なお年齢、学歴、再婚等の制限はありません。</p>
<div class="btn_">
<div class="btnRd btnBox"><a href="<?php echo home_url(); ?>/about/qualification.html"><span class="icon"></span><span class="btnText">加盟会社一覧</span><span class="btnArrow"></span></a></div><!-- /.btn_member -->
</div>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxM -->
</div>
<?php wp_reset_postdata(); ?>
<?php
$args = array(
'post_type' => array('post','page'),
'post__in' => array(131),
'posts_per_page' => 1,
'orderby' => 'ID',
'order' => 'ASC'
); ?>
<?php $my_query = new WP_Query( $args ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<div class="<?php nskw_subtitle(); ?>Box sectionBox boxM accordion">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><span class="icon"></span>入会申込書類のご請求<span class="btnArrow"></span></h3>
<!-- /.sectionBox_header --></div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<span class="topBox_tmb"><img src="<?php bloginfo('template_url'); ?>/images/top_box_tmb_04S.jpg" alt="<?php the_title(); ?>"></span>
<span class="topBox_tmbS"><img src="<?php bloginfo('template_url'); ?>/images/top_box_tmb_04S.jpg" alt="<?php the_title(); ?>"></span>
<p class="text"><?php echo nl2br(post_custom('TopSubject')); ?></p>
<div class="btn_<?php nskw_subtitle(); ?>"><div class="btnGrn btnBox"><a href="<?php the_permalink(); ?>"><span class="icon"></span><span class="btnText">資料請求はこちら</span><span class="btnArrow"></span></a></div><!-- /.btn_member --></div>
<!-- /.sectionBox_body_inner --></div>
<!-- /.sectionBox_body --></div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner --></div>
<!-- /.sectionBox_shadow --></div>
<!-- /.boxM --></div>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>
<div class="formBox sectionBox boxM accordion">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><span class="icon"></span>入会申込書類のご請求<span class="btnArrow"></span></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<span class="topBox_tmb"><img src="http://www.diamond-familyclub.com/wp-content/themes/dfc-template/images/top_box_tmb_04S.jpg" alt="入会申込書類ご請求フォーム"></span>
<span class="topBox_tmbS"><img src="http://www.diamond-familyclub.com/wp-content/themes/dfc-template/images/top_box_tmb_04S.jpg" alt="入会申込書類ご請求フォーム"></span>
<p class="text">入会書類をご請求いただきますと資料及び入会必要書類をお送りいたします。<br />
こちらの請求フォームもしくはお電話にてお申込みください。</p>
<div class="btn_form">
<div class="btnGrn btnBox"><a href="<?php echo home_url(); ?>/form.html"><span class="icon"></span><span class="btnText">資料請求はこちら</span><span class="btnArrow"></span></a></div><!-- /.btn_member -->
</div>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxM -->
</div>
<!-- /.sectionArea --></div>
<!-- /.sectionArea -->
</div>
<h4 class="ttl_sp">メニュー</h4>
<h4 class="ttl_sp">メニュー</h4>
<div class="sectionArea_boxS menuSBox">
<?php
$args = array(
'post_type' => array('post','page','message'),
'post__in' => array(73,90,100,102,104,633,106,131),
'posts_per_page' => 8,
'meta_key' => 'num',
'orderby' => 'meta_value_num',
'order' => 'ASC'
); ?>
<?php $my_query = new WP_Query( $args ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<div class="<?php global $post; echo $post->post_name; ?>Box sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php the_permalink(); ?>"><?php echo nl2br(post_custom('linkText')); ?><span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header --></div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="<?php $image = wp_get_attachment_image_src(get_post_meta($post->ID, 'topBox_tmb', true), 'large'); echo $image[0];?>" alt="<?php the_title(); ?>"></p>
<p class="text"><?php echo nl2br(post_custom('TopSubject')); ?></p>
<!-- /.sectionBox_body_inner --></div>
<!-- /.sectionBox_body --></div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner --></div>
<!-- /.sectionBox_shadow --></div>
<!-- /.boxS --></div>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>
<!-- /.sectionArea --></div>
<div class="sectionArea_boxS menuSBox">
<div class="informationBox sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/about/information.html">ダイヤモンドファミリークラブとは<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_05.jpg" alt="営業案内"></p>
<p class="text">ダイヤモンドファミリークラブは三菱グループの福利厚生・社会貢献を目的に昭和47年12月に設立した結婚紹介センターです。三菱グループの安心と信頼の場で新しい出会いを広げてみませんか。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<div class="flowBox sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/system/flow.html">ご紹介システム<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_06.jpg" alt="ご入会までの流れ"></p>
<p class="text">幸せな結婚を真剣に願う方々に“これからの人生を共に歩むことができる確かなお相手”をご紹介するしくみです。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<div class="profileBox sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/profile/profile.html">会員プロフィール<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_07.jpg" alt="会員プロフィール"></p>
<p class="text">ダイヤモンドファミリークラブの会員は真剣に結婚を考えている方です。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<div class="qaBox sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/qa/qa.html">Q&A<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_08.jpg" alt="Q&A"></p>
<p class="text">皆様からよくお受けする質問を掲載しています。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<div class="sectionArea_boxS submenuBox">
<?php
$args = array(
'post_type' => array('post','page','message'),
'post__in' => array(19,23,21),
'posts_per_page' => 3,
'meta_key' => 'num',
'orderby' => 'meta_value_num',
'order' => 'ASC'
); ?>
<?php $my_query = new WP_Query( $args ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<div class="<?php nskw_subtitle(); ?>Box sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php the_permalink(); ?>"><?php echo nl2br(post_custom('linkText')); ?><span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header --></div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="<?php $image = wp_get_attachment_image_src(get_post_meta($post->ID, 'topBox_tmb', true), 'large'); echo $image[0];?>" alt="<?php the_title(); ?>"></p>
<p class="text"><?php echo nl2br(post_custom('TopSubject')); ?></p>
<!-- /.sectionBox_body_inner --></div>
<!-- /.sectionBox_body --></div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner --></div>
<!-- /.sectionBox_shadow --></div>
<!-- /.boxS --></div>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>
<!-- /.sectionArea --></div>
<div class="parentsBox sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/parents/parents.html">ご両親様へ<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_09.jpg" alt="ご両親様へ"></p>
<p class="text">当クラブでは今まで3,200件以上のご成約実績がございます。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<div class="messageBox sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/message.html">しあわせ通信<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_101.jpg" alt="しあわせ通信"></p>
<p class="text">当クラブでのご交際からご成約への事例を紹介しています。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<div class="formBox sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/form.html">入会申込書類ご請求フォーム<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_111.jpg" alt="入会申込書類ご請求フォーム"></p>
<p class="text">入会書類をご請求いただきますと資料及び入会必要書類をお送りいたします。<br />
こちらの請求フォームもしくはお電話にてお申込みください。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<div class="linkBox sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/link.html">おすすめリンク<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_12.jpg" alt="おすすめリンク"></p>
<p class="text">ホテル、お店等のご紹介です。結婚式、新婚旅行、各種贈答などを検討の際にご活用下さい。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<!-- /.sectionArea -->
</div>
<!-- /.inner --></div>
<!-- /mainContent --></div>
<?php get_footer(); ?>
\ No newline at end of file
<div class="sectionArea_boxS submenuBox">
<div class="sitepolicyBox sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/sitepolicy.html">このサイトについて<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_13.jpg" alt="このサイトについて"></p>
<p class="text">著作権、リンク等についての注意事項を掲載しています。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<div class="Box sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/privacypolicy.html">プライバシーポリシー<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_14.jpg" alt="プライバシーポリシー"></p>
<p class="text">個人情報保護に関する方針及び取り扱いについて記載しています。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<div class="sitemapBox sectionBox boxS">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h3><a href="<?php echo home_url(); ?>/sitemap.html">サイトマップ<span class="btnArrow"></span></a></h3>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<p class="img"><img src="http://www.diamond-familyclub.com/wp-content/uploads/top_box_tmb_15.jpg" alt="サイトマップ"></p>
<p class="text">ホームページ全体の構成を表示します。</p>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.boxS -->
</div>
<!-- /.sectionArea -->
</div>
<!-- /.inner -->
</div>
<!-- /mainContent -->
</div>
<?php get_footer(); ?>
div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right{height:13px}
div.pp_default .pp_top .pp_left{background:url(../images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}
div.pp_default .pp_top .pp_middle{background:url(../images/prettyPhoto/default/sprite_x.png) top left repeat-x}
div.pp_default .pp_top .pp_right{background:url(../images/prettyPhoto/default/sprite.png) -112px -93px no-repeat}
div.pp_default .pp_content .ppt{color:#f8f8f8}
div.pp_default .pp_content_container .pp_left{background:url(../images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;padding-left:13px}
div.pp_default .pp_content_container .pp_right{background:url(../images/prettyPhoto/default/sprite_y.png) top right repeat-y;padding-right:13px}
div.pp_default .pp_next:hover{background:url(../images/prettyPhoto/default/sprite_next.png) center right no-repeat;cursor:pointer}
div.pp_default .pp_previous:hover{background:url(../images/prettyPhoto/default/sprite_prev.png) center left no-repeat;cursor:pointer}
div.pp_default .pp_expand{background:url(../images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_expand:hover{background:url(../images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}
div.pp_default .pp_contract{background:url(../images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_contract:hover{background:url(../images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}
div.pp_default .pp_close{width:30px;height:30px;background:url(../images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer}
div.pp_default .pp_gallery ul li a{background:url(../images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;border:1px solid #aaa}
div.pp_default .pp_social{margin-top:7px}
div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}
div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause{background:url(../images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;height:30px;width:30px}
div.pp_default .pp_nav .pp_pause{background-position:-51px -29px}
div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url(../images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}
div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}
div.pp_default .pp_content_container .pp_details{margin-top:5px}
div.pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}
div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}
div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover{opacity:0.7}
div.pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}
div.pp_default .pp_bottom .pp_left{background:url(../images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}
div.pp_default .pp_bottom .pp_middle{background:url(../images/prettyPhoto/default/sprite_x.png) bottom left repeat-x}
div.pp_default .pp_bottom .pp_right{background:url(../images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}
div.pp_default .pp_loaderIcon{background:url(../images/prettyPhoto/default/loader.gif) center center no-repeat}
div.light_rounded .pp_top .pp_left{background:url(../images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat}
div.light_rounded .pp_top .pp_right{background:url(../images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat}
div.light_rounded .pp_next:hover{background:url(../images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;cursor:pointer}
div.light_rounded .pp_previous:hover{background:url(../images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_rounded .pp_expand{background:url(../images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_rounded .pp_expand:hover{background:url(../images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_rounded .pp_contract{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_rounded .pp_contract:hover{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_rounded .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_rounded .pp_nav .pp_play{background:url(../images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_nav .pp_pause{background:url(../images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_arrow_previous{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat}
div.light_rounded .pp_arrow_next{background:url(../images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat}
div.light_rounded .pp_bottom .pp_left{background:url(../images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat}
div.light_rounded .pp_bottom .pp_right{background:url(../images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_top .pp_left{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat}
div.dark_rounded .pp_top .pp_right{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat}
div.dark_rounded .pp_content_container .pp_left{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y}
div.dark_rounded .pp_content_container .pp_right{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y}
div.dark_rounded .pp_next:hover{background:url(../images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;cursor:pointer}
div.dark_rounded .pp_previous:hover{background:url(../images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.dark_rounded .pp_expand{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_expand:hover{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract:hover{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.dark_rounded .pp_description{margin-right:85px;color:#fff}
div.dark_rounded .pp_nav .pp_play{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_nav .pp_pause{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_arrow_previous{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat}
div.dark_rounded .pp_arrow_next{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat}
div.dark_rounded .pp_bottom .pp_left{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat}
div.dark_rounded .pp_bottom .pp_right{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_loaderIcon{background:url(../images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat}
div.dark_square .pp_left,div.dark_square .pp_middle,div.dark_square .pp_right,div.dark_square .pp_content{background:#000}
div.dark_square .pp_description{color:#fff;margin:0 85px 0 0}
div.dark_square .pp_loaderIcon{background:url(../images/prettyPhoto/dark_square/loader.gif) center center no-repeat}
div.dark_square .pp_expand{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_square .pp_expand:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_square .pp_contract{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_square .pp_contract:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_square .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.dark_square .pp_nav{clear:none}
div.dark_square .pp_nav .pp_play{background:url(../images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_nav .pp_pause{background:url(../images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_arrow_previous{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat}
div.dark_square .pp_arrow_next{background:url(../images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat}
div.dark_square .pp_next:hover{background:url(../images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;cursor:pointer}
div.dark_square .pp_previous:hover{background:url(../images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_square .pp_expand{background:url(../images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_square .pp_expand:hover{background:url(../images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_square .pp_contract{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_square .pp_contract:hover{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_square .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_square .pp_nav .pp_play{background:url(../images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_nav .pp_pause{background:url(../images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_arrow_previous{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat}
div.light_square .pp_arrow_next{background:url(../images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat}
div.light_square .pp_next:hover{background:url(../images/prettyPhoto/light_square/btnNext.png) center right no-repeat;cursor:pointer}
div.light_square .pp_previous:hover{background:url(../images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_top .pp_left{background:url(../images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat}
div.facebook .pp_top .pp_middle{background:url(../images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x}
div.facebook .pp_top .pp_right{background:url(../images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat}
div.facebook .pp_content_container .pp_left{background:url(../images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y}
div.facebook .pp_content_container .pp_right{background:url(../images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y}
div.facebook .pp_expand{background:url(../images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.facebook .pp_expand:hover{background:url(../images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.facebook .pp_contract{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.facebook .pp_contract:hover{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.facebook .pp_close{width:22px;height:22px;background:url(../images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.facebook .pp_description{margin:0 37px 0 0}
div.facebook .pp_loaderIcon{background:url(../images/prettyPhoto/facebook/loader.gif) center center no-repeat}
div.facebook .pp_arrow_previous{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}
div.facebook .pp_arrow_next{background:url(../images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}
div.facebook .pp_nav{margin-top:0}
div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}
div.facebook .pp_nav .pp_play{background:url(../images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_nav .pp_pause{background:url(../images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_next:hover{background:url(../images/prettyPhoto/facebook/btnNext.png) center right no-repeat;cursor:pointer}
div.facebook .pp_previous:hover{background:url(../images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_bottom .pp_left{background:url(../images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat}
div.facebook .pp_bottom .pp_middle{background:url(../images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x}
div.facebook .pp_bottom .pp_right{background:url(../images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat}
div.pp_pic_holder a:focus{outline:none}
div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9500}
div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}
.pp_content{height:40px;min-width:40px}
* html .pp_content{width:40px}
.pp_content_container{position:relative;text-align:left;width:100%}
.pp_content_container .pp_left{padding-left:20px}
.pp_content_container .pp_right{padding-right:20px}
.pp_content_container .pp_details{float:left;margin:10px 0 2px}
.pp_description{display:none;margin:0}
.pp_social{float:left;margin:0}
.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}
.pp_social .twitter{float:left}
.pp_nav{clear:right;float:left;margin:3px 10px 0 0}
.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}
.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}
a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}
.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}
.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}
.pp_gallery div{float:left;overflow:hidden;position:relative}
.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}
.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}
.pp_gallery ul a img{border:0}
.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}
.pp_gallery li.default a{background:url(../images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;display:block;height:33px;width:50px}
.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}
a.pp_next{background:url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:right;height:100%;text-indent:-10000px;width:49%}
a.pp_previous{background:url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:left;height:100%;text-indent:-10000px;width:49%}
a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}
a.pp_close{position:absolute;right:0;top:0;display:block;line-height:22px;text-indent:-10000px}
.pp_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}
#pp_full_res{line-height:1!important}
#pp_full_res .pp_inline{text-align:left}
#pp_full_res .pp_inline p{margin:0 0 15px}
div.ppt{color:#fff;display:none;font-size:17px;z-index:9999;margin:0 0 5px 15px}
div.pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}
div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}
div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}
div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}
div.light_rounded .pp_top .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_bottom .pp_middle,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content,div.facebook .pp_content{background:#fff}
div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}
div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}
div.light_rounded .pp_arrow_previous.disabled,div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}
div.light_rounded .pp_arrow_next.disabled,div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}
div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url(../images/prettyPhoto/light_rounded/loader.gif) center center no-repeat}
div.dark_rounded .pp_top .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_bottom .pp_middle{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat}
div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}
div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}
.pp_top,.pp_bottom{height:20px;position:relative}
* html .pp_top,* html .pp_bottom{padding:0 20px}
.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}
.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}
* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}
.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}
.pp_fade,.pp_gallery li.default a img{display:none}
\ No newline at end of file
div.pp_default .pp_top,
div.pp_default .pp_top .pp_middle,
div.pp_default .pp_top .pp_left,
div.pp_default .pp_top .pp_right,
div.pp_default .pp_bottom,
div.pp_default .pp_bottom .pp_left,
div.pp_default .pp_bottom .pp_middle,
div.pp_default .pp_bottom .pp_right {
height: 13px
}
div.pp_default .pp_top .pp_left {
background: url(../images/prettyPhoto/default/sprite.png) -78px -93px no-repeat
}
div.pp_default .pp_top .pp_middle {
background: url(../images/prettyPhoto/default/sprite_x.png) top left repeat-x
}
div.pp_default .pp_top .pp_right {
background: url(../images/prettyPhoto/default/sprite.png) -112px -93px no-repeat
}
div.pp_default .pp_content .ppt {
color: #f8f8f8
}
div.pp_default .pp_content_container .pp_left {
background: url(../images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;
padding-left: 13px
}
div.pp_default .pp_content_container .pp_right {
background: url(../images/prettyPhoto/default/sprite_y.png) top right repeat-y;
padding-right: 13px
}
div.pp_default .pp_next:hover {
background: url(../images/prettyPhoto/default/sprite_next.png) center right no-repeat;
cursor: pointer
}
div.pp_default .pp_previous:hover {
background: url(../images/prettyPhoto/default/sprite_prev.png) center left no-repeat;
cursor: pointer
}
div.pp_default .pp_expand {
background: url(../images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;
cursor: pointer;
width: 28px;
height: 28px
}
div.pp_default .pp_expand:hover {
background: url(../images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;
cursor: pointer
}
div.pp_default .pp_contract {
background: url(../images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;
cursor: pointer;
width: 28px;
height: 28px
}
div.pp_default .pp_contract:hover {
background: url(../images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;
cursor: pointer
}
div.pp_default .pp_close {
width: 30px;
height: 30px;
background: url(../images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;
cursor: pointer
}
div.pp_default .pp_gallery ul li a {
background: url(../images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;
border: 1px solid #aaa
}
div.pp_default .pp_social {
margin-top: 7px
}
div.pp_default .pp_gallery a.pp_arrow_previous,
div.pp_default .pp_gallery a.pp_arrow_next {
position: static;
left: auto
}
div.pp_default .pp_nav .pp_play,
div.pp_default .pp_nav .pp_pause {
background: url(../images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;
height: 30px;
width: 30px
}
div.pp_default .pp_nav .pp_pause {
background-position: -51px -29px
}
div.pp_default a.pp_arrow_previous,
div.pp_default a.pp_arrow_next {
background: url(../images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;
height: 20px;
width: 20px;
margin: 4px 0 0
}
div.pp_default a.pp_arrow_next {
left: 52px;
background-position: -82px -3px
}
div.pp_default .pp_content_container .pp_details {
margin-top: 5px
}
div.pp_default .pp_nav {
clear: none;
height: 30px;
width: 110px;
position: relative
}
div.pp_default .pp_nav .currentTextHolder {
font-family: Georgia;
font-style: italic;
color: #999;
font-size: 11px;
left: 75px;
line-height: 25px;
position: absolute;
top: 2px;
margin: 0;
padding: 0 0 0 10px
}
div.pp_default .pp_close:hover,
div.pp_default .pp_nav .pp_play:hover,
div.pp_default .pp_nav .pp_pause:hover,
div.pp_default .pp_arrow_next:hover,
div.pp_default .pp_arrow_previous:hover {
opacity: 0.7
}
div.pp_default .pp_description {
font-size: 11px;
font-weight: 700;
line-height: 14px;
margin: 5px 50px 5px 0
}
div.pp_default .pp_bottom .pp_left {
background: url(../images/prettyPhoto/default/sprite.png) -78px -127px no-repeat
}
div.pp_default .pp_bottom .pp_middle {
background: url(../images/prettyPhoto/default/sprite_x.png) bottom left repeat-x
}
div.pp_default .pp_bottom .pp_right {
background: url(../images/prettyPhoto/default/sprite.png) -112px -127px no-repeat
}
div.pp_default .pp_loaderIcon {
background: url(../images/prettyPhoto/default/loader.gif) center center no-repeat
}
div.light_rounded .pp_top .pp_left {
background: url(../images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat
}
div.light_rounded .pp_top .pp_right {
background: url(../images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat
}
div.light_rounded .pp_next:hover {
background: url(../images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;
cursor: pointer
}
div.light_rounded .pp_previous:hover {
background: url(../images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;
cursor: pointer
}
div.light_rounded .pp_expand {
background: url(../images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;
cursor: pointer
}
div.light_rounded .pp_expand:hover {
background: url(../images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;
cursor: pointer
}
div.light_rounded .pp_contract {
background: url(../images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;
cursor: pointer
}
div.light_rounded .pp_contract:hover {
background: url(../images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;
cursor: pointer
}
div.light_rounded .pp_close {
width: 75px;
height: 22px;
background: url(../images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;
cursor: pointer
}
div.light_rounded .pp_nav .pp_play {
background: url(../images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;
height: 15px;
width: 14px
}
div.light_rounded .pp_nav .pp_pause {
background: url(../images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;
height: 15px;
width: 14px
}
div.light_rounded .pp_arrow_previous {
background: url(../images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat
}
div.light_rounded .pp_arrow_next {
background: url(../images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat
}
div.light_rounded .pp_bottom .pp_left {
background: url(../images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat
}
div.light_rounded .pp_bottom .pp_right {
background: url(../images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat
}
div.dark_rounded .pp_top .pp_left {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat
}
div.dark_rounded .pp_top .pp_right {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat
}
div.dark_rounded .pp_content_container .pp_left {
background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y
}
div.dark_rounded .pp_content_container .pp_right {
background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y
}
div.dark_rounded .pp_next:hover {
background: url(../images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;
cursor: pointer
}
div.dark_rounded .pp_previous:hover {
background: url(../images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;
cursor: pointer
}
div.dark_rounded .pp_expand {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;
cursor: pointer
}
div.dark_rounded .pp_expand:hover {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;
cursor: pointer
}
div.dark_rounded .pp_contract {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;
cursor: pointer
}
div.dark_rounded .pp_contract:hover {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;
cursor: pointer
}
div.dark_rounded .pp_close {
width: 75px;
height: 22px;
background: url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;
cursor: pointer
}
div.dark_rounded .pp_description {
margin-right: 85px;
color: #fff
}
div.dark_rounded .pp_nav .pp_play {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;
height: 15px;
width: 14px
}
div.dark_rounded .pp_nav .pp_pause {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;
height: 15px;
width: 14px
}
div.dark_rounded .pp_arrow_previous {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat
}
div.dark_rounded .pp_arrow_next {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat
}
div.dark_rounded .pp_bottom .pp_left {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat
}
div.dark_rounded .pp_bottom .pp_right {
background: url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat
}
div.dark_rounded .pp_loaderIcon {
background: url(../images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat
}
div.dark_square .pp_left,
div.dark_square .pp_middle,
div.dark_square .pp_right,
div.dark_square .pp_content {
background: #000
}
div.dark_square .pp_description {
color: #fff;
margin: 0 85px 0 0
}
div.dark_square .pp_loaderIcon {
background: url(../images/prettyPhoto/dark_square/loader.gif) center center no-repeat
}
div.dark_square .pp_expand {
background: url(../images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;
cursor: pointer
}
div.dark_square .pp_expand:hover {
background: url(../images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;
cursor: pointer
}
div.dark_square .pp_contract {
background: url(../images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;
cursor: pointer
}
div.dark_square .pp_contract:hover {
background: url(../images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;
cursor: pointer
}
div.dark_square .pp_close {
width: 75px;
height: 22px;
background: url(../images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;
cursor: pointer
}
div.dark_square .pp_nav {
clear: none
}
div.dark_square .pp_nav .pp_play {
background: url(../images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;
height: 15px;
width: 14px
}
div.dark_square .pp_nav .pp_pause {
background: url(../images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;
height: 15px;
width: 14px
}
div.dark_square .pp_arrow_previous {
background: url(../images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat
}
div.dark_square .pp_arrow_next {
background: url(../images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat
}
div.dark_square .pp_next:hover {
background: url(../images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;
cursor: pointer
}
div.dark_square .pp_previous:hover {
background: url(../images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;
cursor: pointer
}
div.light_square .pp_expand {
background: url(../images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;
cursor: pointer
}
div.light_square .pp_expand:hover {
background: url(../images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;
cursor: pointer
}
div.light_square .pp_contract {
background: url(../images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;
cursor: pointer
}
div.light_square .pp_contract:hover {
background: url(../images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;
cursor: pointer
}
div.light_square .pp_close {
width: 75px;
height: 22px;
background: url(../images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;
cursor: pointer
}
div.light_square .pp_nav .pp_play {
background: url(../images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;
height: 15px;
width: 14px
}
div.light_square .pp_nav .pp_pause {
background: url(../images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;
height: 15px;
width: 14px
}
div.light_square .pp_arrow_previous {
background: url(../images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat
}
div.light_square .pp_arrow_next {
background: url(../images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat
}
div.light_square .pp_next:hover {
background: url(../images/prettyPhoto/light_square/btnNext.png) center right no-repeat;
cursor: pointer
}
div.light_square .pp_previous:hover {
background: url(../images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;
cursor: pointer
}
div.facebook .pp_top .pp_left {
background: url(../images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat
}
div.facebook .pp_top .pp_middle {
background: url(../images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x
}
div.facebook .pp_top .pp_right {
background: url(../images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat
}
div.facebook .pp_content_container .pp_left {
background: url(../images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y
}
div.facebook .pp_content_container .pp_right {
background: url(../images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y
}
div.facebook .pp_expand {
background: url(../images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;
cursor: pointer
}
div.facebook .pp_expand:hover {
background: url(../images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;
cursor: pointer
}
div.facebook .pp_contract {
background: url(../images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;
cursor: pointer
}
div.facebook .pp_contract:hover {
background: url(../images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;
cursor: pointer
}
div.facebook .pp_close {
width: 22px;
height: 22px;
background: url(../images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;
cursor: pointer
}
div.facebook .pp_description {
margin: 0 37px 0 0
}
div.facebook .pp_loaderIcon {
background: url(../images/prettyPhoto/facebook/loader.gif) center center no-repeat
}
div.facebook .pp_arrow_previous {
background: url(../images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;
height: 22px;
margin-top: 0;
width: 22px
}
div.facebook .pp_arrow_previous.disabled {
background-position: 0 -96px;
cursor: default
}
div.facebook .pp_arrow_next {
background: url(../images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;
height: 22px;
margin-top: 0;
width: 22px
}
div.facebook .pp_arrow_next.disabled {
background-position: -32px -96px;
cursor: default
}
div.facebook .pp_nav {
margin-top: 0
}
div.facebook .pp_nav p {
font-size: 15px;
padding: 0 3px 0 4px
}
div.facebook .pp_nav .pp_play {
background: url(../images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;
height: 22px;
width: 22px
}
div.facebook .pp_nav .pp_pause {
background: url(../images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;
height: 22px;
width: 22px
}
div.facebook .pp_next:hover {
background: url(../images/prettyPhoto/facebook/btnNext.png) center right no-repeat;
cursor: pointer
}
div.facebook .pp_previous:hover {
background: url(../images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;
cursor: pointer
}
div.facebook .pp_bottom .pp_left {
background: url(../images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat
}
div.facebook .pp_bottom .pp_middle {
background: url(../images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x
}
div.facebook .pp_bottom .pp_right {
background: url(../images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat
}
div.pp_pic_holder a:focus {
outline: none
}
div.pp_overlay {
background: #000;
display: none;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 9500
}
div.pp_pic_holder {
display: none;
position: absolute;
width: 100px;
z-index: 10000
}
.pp_content {
height: 40px;
min-width: 40px
}
* html .pp_content {
width: 40px
}
.pp_content_container {
position: relative;
text-align: left;
width: 100%
}
.pp_content_container .pp_left {
padding-left: 20px
}
.pp_content_container .pp_right {
padding-right: 20px
}
.pp_content_container .pp_details {
float: left;
margin: 10px 0 2px
}
.pp_description {
display: none;
margin: 0
}
.pp_social {
float: left;
margin: 0
}
.pp_social .facebook {
float: left;
margin-left: 5px;
width: 55px;
overflow: hidden
}
.pp_social .twitter {
float: left
}
.pp_nav {
clear: right;
float: left;
margin: 3px 10px 0 0
}
.pp_nav p {
float: left;
white-space: nowrap;
margin: 2px 4px
}
.pp_nav .pp_play,
.pp_nav .pp_pause {
float: left;
margin-right: 4px;
text-indent: -10000px
}
a.pp_arrow_previous,
a.pp_arrow_next {
display: block;
float: left;
height: 15px;
margin-top: 3px;
overflow: hidden;
text-indent: -10000px;
width: 14px
}
.pp_hoverContainer {
position: absolute;
top: 0;
width: 100%;
z-index: 2000
}
.pp_gallery {
display: none;
left: 50%;
margin-top: -50px;
position: absolute;
z-index: 10000
}
.pp_gallery div {
float: left;
overflow: hidden;
position: relative
}
.pp_gallery ul {
float: left;
height: 35px;
position: relative;
white-space: nowrap;
margin: 0 0 0 5px;
padding: 0
}
.pp_gallery ul a {
border: 1px rgba(0, 0, 0, 0.5) solid;
display: block;
float: left;
height: 33px;
overflow: hidden
}
.pp_gallery ul a img {
border: 0
}
.pp_gallery li {
display: block;
float: left;
margin: 0 5px 0 0;
padding: 0
}
.pp_gallery li.default a {
background: url(../images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;
display: block;
height: 33px;
width: 50px
}
.pp_gallery .pp_arrow_previous,
.pp_gallery .pp_arrow_next {
margin-top: 7px !important
}
a.pp_next {
background: url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
display: block;
float: right;
height: 100%;
text-indent: -10000px;
width: 49%
}
a.pp_previous {
background: url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
display: block;
float: left;
height: 100%;
text-indent: -10000px;
width: 49%
}
a.pp_expand,
a.pp_contract {
cursor: pointer;
display: none;
height: 20px;
position: absolute;
right: 30px;
text-indent: -10000px;
top: 10px;
width: 20px;
z-index: 20000
}
a.pp_close {
position: absolute;
right: 0;
top: 0;
display: block;
line-height: 22px;
text-indent: -10000px
}
.pp_loaderIcon {
display: block;
height: 24px;
left: 50%;
position: absolute;
top: 50%;
width: 24px;
margin: -12px 0 0 -12px
}
#pp_full_res {
line-height: 1 !important
}
#pp_full_res .pp_inline {
text-align: left
}
#pp_full_res .pp_inline p {
margin: 0 0 15px
}
div.ppt {
color: #fff;
display: none;
font-size: 17px;
z-index: 9999;
margin: 0 0 5px 15px
}
div.pp_default .pp_content,
div.light_rounded .pp_content {
background-color: #fff
}
div.pp_default #pp_full_res .pp_inline,
div.light_rounded .pp_content .ppt,
div.light_rounded #pp_full_res .pp_inline,
div.light_square .pp_content .ppt,
div.light_square #pp_full_res .pp_inline,
div.facebook .pp_content .ppt,
div.facebook #pp_full_res .pp_inline {
color: #000
}
div.pp_default .pp_gallery ul li a:hover,
div.pp_default .pp_gallery ul li.selected a,
.pp_gallery ul a:hover,
.pp_gallery li.selected a {
border-color: #fff
}
div.pp_default .pp_details,
div.light_rounded .pp_details,
div.dark_rounded .pp_details,
div.dark_square .pp_details,
div.light_square .pp_details,
div.facebook .pp_details {
position: relative
}
div.light_rounded .pp_top .pp_middle,
div.light_rounded .pp_content_container .pp_left,
div.light_rounded .pp_content_container .pp_right,
div.light_rounded .pp_bottom .pp_middle,
div.light_square .pp_left,
div.light_square .pp_middle,
div.light_square .pp_right,
div.light_square .pp_content,
div.facebook .pp_content {
background: #fff
}
div.light_rounded .pp_description,
div.light_square .pp_description {
margin-right: 85px
}
div.light_rounded .pp_gallery a.pp_arrow_previous,
div.light_rounded .pp_gallery a.pp_arrow_next,
div.dark_rounded .pp_gallery a.pp_arrow_previous,
div.dark_rounded .pp_gallery a.pp_arrow_next,
div.dark_square .pp_gallery a.pp_arrow_previous,
div.dark_square .pp_gallery a.pp_arrow_next,
div.light_square .pp_gallery a.pp_arrow_previous,
div.light_square .pp_gallery a.pp_arrow_next {
margin-top: 12px !important
}
div.light_rounded .pp_arrow_previous.disabled,
div.dark_rounded .pp_arrow_previous.disabled,
div.dark_square .pp_arrow_previous.disabled,
div.light_square .pp_arrow_previous.disabled {
background-position: 0 -87px;
cursor: default
}
div.light_rounded .pp_arrow_next.disabled,
div.dark_rounded .pp_arrow_next.disabled,
div.dark_square .pp_arrow_next.disabled,
div.light_square .pp_arrow_next.disabled {
background-position: -22px -87px;
cursor: default
}
div.light_rounded .pp_loaderIcon,
div.light_square .pp_loaderIcon {
background: url(../images/prettyPhoto/light_rounded/loader.gif) center center no-repeat
}
div.dark_rounded .pp_top .pp_middle,
div.dark_rounded .pp_content,
div.dark_rounded .pp_bottom .pp_middle {
background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat
}
div.dark_rounded .currentTextHolder,
div.dark_square .currentTextHolder {
color: #c4c4c4
}
div.dark_rounded #pp_full_res .pp_inline,
div.dark_square #pp_full_res .pp_inline {
color: #fff
}
.pp_top,
.pp_bottom {
height: 20px;
position: relative
}
* html .pp_top,
* html .pp_bottom {
padding: 0 20px
}
.pp_top .pp_left,
.pp_bottom .pp_left {
height: 20px;
left: 0;
position: absolute;
width: 20px
}
.pp_top .pp_middle,
.pp_bottom .pp_middle {
height: 20px;
left: 20px;
position: absolute;
right: 20px
}
* html .pp_top .pp_middle,
* html .pp_bottom .pp_middle {
left: 0;
position: static
}
.pp_top .pp_right,
.pp_bottom .pp_right {
height: 20px;
left: auto;
position: absolute;
right: 0;
top: 0;
width: 20px
}
.pp_fade,
.pp_gallery li.default a img {
display: none
}
.pp_fade {
overflow: hidden
}
$(function() {
$(function () {
var mySlidebars = new $.slidebars({
siteClose: true
});
$('.openSlide').on('click', function() {
mySlidebars.open('right');
disableOver:1000
});
$('.closeSlide').on('click', function() {
mySlidebars.close();
});
// サイドメニューの親ul
var $sideNav = $("#slidebarNav");
var $subMenus = $sideNav.find(".sub-menu");
$sideNav.find("li").each(function() {
// サイドメニューの親ul>li
var $li = $(this);
// サイドメニューの親ul>li .side-menu
// がある場合はクリックイベントを設定
if ($li.find(".sub-menu").length > 0) {
var callback = function() {
// ここから - 開閉が完了された時に実行される
// アコーディオンが閉じているときは.sub-menuに.closeというclassをつける
// アコーディオンが開いているときは.sub-menuに.openというclassをつける
var $subMenu = $(this);
var className = "close";
if ($subMenu.hasClass("close")) {
className = "open";
}
$subMenu.removeClass("close open").addClass(className);
$subMenu.parents("li:first").removeClass("close open").addClass(className);
// 開閉が完了された時に実行される - ここまで
};
$li.find("a:first").on("click", function() {
var params = { height: "toggle" };
// すでに開いているアコーディオンは閉じる
$subMenus.filter(".open").animate(params, callback);
// クリックされたaタグの親liを再取得
var $clickedRow = $(this).parents("li:first");
// .sub-menuの開閉
$clickedRow.find(".sub-menu").not(".open").animate(params, callback);
});
}
});
// scroll body to 0px on click
$('.pageTop a').click(function () {
$('body,html').animate({
scrollTop: 0
}, 600);
});
//
$(".tab li:last-child a").css({})
});
siteClose: true
});
$('.openSlide').on('click', function () {
mySlidebars.open('right');
disableOver: 1000
});
$('.closeSlide').on('click', function () {
mySlidebars.close();
});
// サイドメニューの親ul
var $sideNav = $("#slidebarNav");
var $subMenus = $sideNav.find(".sub-menu");
$sideNav.find("li").each(function () {
// サイドメニューの親ul>li
var $li = $(this);
// サイドメニューの親ul>li .side-menu
// がある場合はクリックイベントを設定
if ($li.find(".sub-menu").length > 0) {
var callback = function () {
// ここから - 開閉が完了された時に実行される
// アコーディオンが閉じているときは.sub-menuに.closeというclassをつける
// アコーディオンが開いているときは.sub-menuに.openというclassをつける
var $subMenu = $(this);
var className = "close";
if ($subMenu.hasClass("close")) {
className = "open";
}
$subMenu.removeClass("close open").addClass(className);
$subMenu.parents("li:first").removeClass("close open").addClass(className);
// 開閉が完了された時に実行される - ここまで
};
$li.find("a:first").on("click", function () {
var params = {
height: "toggle"
};
// すでに開いているアコーディオンは閉じる
$subMenus.filter(".open").animate(params, callback);
// クリックされたaタグの親liを再取得
var $clickedRow = $(this).parents("li:first");
// .sub-menuの開閉
$clickedRow.find(".sub-menu").not(".open").animate(params, callback);
});
}
});
// scroll body to 0px on click
$('.pageTop a').click(function () {
$('body,html').animate({
scrollTop: 0
}, 600);
});
//
$(".tab li:last-child a").css({})
var desti = location.href;
if (desti.match("about") !== null) {
$("body").removeClass("normal").addClass("about_page");
} else if (desti.match("system") !== null) {
$("body").removeClass("normal").addClass("system_page");
} else {
return false;
}
});
......@@ -5,95 +5,108 @@
get_header(); ?>
<!-- main -->
<div id="mainContent">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php remove_filter ('the_content', 'wpautop'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php remove_filter ('the_content', 'wpautop'); ?>
<div class="breadcrumb"><?php get_template_part( 'breadcrumb' ); ?></div>
<div class="breadcrumb"><?php get_template_part( 'breadcrumb' ); ?></div>
<div class="inner">
<div class="entryContent">
<div class="sectionBox boxL">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h1 class="entryTtl"><span><?php the_title(); ?></span></h1>
<!-- /.sectionBox_header --></div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<!-- 投稿内容 -->
<div class="contentBox">
<div class="inner">
<div class="entryContent">
<div class="sectionBox boxL">
<div class="sectionBox_shadow">
<div class="sectionBox_inner">
<div class="sectionBox_header">
<h1 class="entryTtl"><span><?php the_title(); ?></span></h1>
<!-- /.sectionBox_header -->
</div>
<div class="sectionBox_body">
<div class="sectionBox_body_inner">
<!-- 投稿内容 -->
<div class="contentBox">
<ul id="sitemapBox">
<li class="sm_a_home"><a href="<?php echo home_url(); ?>/"><span class="icon"></span><span class="nText">ホーム</span></a></li>
<li class="sm_a_about topText"><a href="javascript:void(0)"><span class="icon"></span><span class="nText">ダイヤモンドファミリークラブとは</span></a>
<ul class="sub-menu">
<li class="sm_information"><a href="<?php echo home_url(); ?>/about/information.html"><span class="icon"></span><span class="nText">営業案内</span></a></li>
<li class="sm_qualification"><a href="<?php echo home_url(); ?>/about/qualification.html"><span class="icon"></span><span class="nText">入会資格</span></a></li>
<li class="sm_club"><a href="<?php echo home_url(); ?>/about/club.html"><span class="icon"></span><span class="nText">クラブ概要</span></a></li>
<li class="sm_greeting"><a href="<?php echo home_url(); ?>/about/greeting.html"><span class="icon"></span><span class="nText">代表ご挨拶</span></a></li>
<li class="sm_tokyo"><a href="<?php echo home_url(); ?>/about/tokyo-office.html"><span class="icon"></span><span class="nText">東京オフィスのご案内</span></a></li>
<li class="sm_nagoya"><a href="<?php echo home_url(); ?>/about/nagoya-office.html"><span class="icon"></span><span class="nText">名古屋オフィスのご案内</span></a></li>
</ul></li>
<li class="sm_a_system topText"><a href="javascript:void(0)"><span class="icon"></span><span class="nText">ご紹介システム</span></a>
<ul class="sub-menu">
<li class="sm_flow"><a href="<?php echo home_url(); ?>/system/flow.html"><span class="icon"></span><span class="nText">ご入会までの流れ</span></a></li>
<li class="sm_system"><a href="<?php echo home_url(); ?>/system/system.html"><span class="icon"></span><span class="nText">カウンセラー制度</span></a></li>
<li class="sm_counselor"><a href="<?php echo home_url(); ?>/system/counselor.html"><span class="icon"></span><span class="nText">カウンセラー紹介</span></a></li>
<li class="sm_facility"><a href="<?php echo home_url(); ?>/system/facility.html"><span class="icon"></span><span class="nText">施設のご紹介</span></a></li>
</ul></li>
<li class="sm_a_profile"><a href="<?php echo home_url(); ?>/profile/profile.html"><span class="icon"></span><span class="nText">会員プロフィール</span></a></li>
<li class="sm_a_qa"><a href="<?php echo home_url(); ?>/qa/qa.html"><span class="icon"></span><span class="nText">Q&A</span></a></li>
<li class="sm_a_parents"><a href="<?php echo home_url(); ?>/parents/parents.html"><span class="icon"></span><span class="nText">ご両親様へ</span></a></li>
<li class="sm_a_happyreport topText"><a href="javascript:void(0)"><span class="icon"></span><span class="nText">しあわせ通信</span></a>
<ul class="sub-menu">
<?php
<ul id="sitemapBox">
<li class="sm_a_home"><a href="<?php echo home_url(); ?>/"><span class="icon"></span><span class="nText">ホーム</span></a></li>
<li class="sm_a_about topText"><a href="javascript:void(0)"><span class="icon"></span><span class="nText">ダイヤモンドファミリークラブとは</span></a>
<ul class="sub-menu">
<li class="sm_information"><a href="<?php echo home_url(); ?>/about/information.html"><span class="icon"></span><span class="nText">営業案内</span></a></li>
<li class="sm_qualification"><a href="<?php echo home_url(); ?>/about/qualification.html"><span class="icon"></span><span class="nText">入会資格</span></a></li>
<li class="sm_club"><a href="<?php echo home_url(); ?>/about/club.html"><span class="icon"></span><span class="nText">クラブ概要</span></a></li>
<li class="sm_greeting"><a href="<?php echo home_url(); ?>/about/greeting.html"><span class="icon"></span><span class="nText">代表ご挨拶</span></a></li>
<li class="sm_tokyo"><a href="<?php echo home_url(); ?>/about/tokyo-office.html"><span class="icon"></span><span class="nText">東京オフィスのご案内</span></a></li>
<li class="sm_nagoya"><a href="<?php echo home_url(); ?>/about/nagoya-office.html"><span class="icon"></span><span class="nText">名古屋オフィスのご案内</span></a></li>
</ul>
</li>
<li class="sm_a_system topText"><a href="javascript:void(0)"><span class="icon"></span><span class="nText">ご紹介システム</span></a>
<ul class="sub-menu">
<li class="sm_flow"><a href="<?php echo home_url(); ?>/system/flow.html"><span class="icon"></span><span class="nText">ご入会までの流れ</span></a></li>
<li class="sm_system"><a href="<?php echo home_url(); ?>/system/system.html"><span class="icon"></span><span class="nText">カウンセラー制度</span></a></li>
<li class="sm_counselor"><a href="<?php echo home_url(); ?>/system/counselor.html"><span class="icon"></span><span class="nText">カウンセラー紹介</span></a></li>
<li class="sm_facility"><a href="<?php echo home_url(); ?>/system/facility.html"><span class="icon"></span><span class="nText">施設のご紹介</span></a></li>
</ul>
</li>
<li class="sm_a_profile"><a href="<?php echo home_url(); ?>/profile/profile.html"><span class="icon"></span><span class="nText">会員プロフィール</span></a></li>
<li class="sm_a_qa"><a href="<?php echo home_url(); ?>/qa/qa.html"><span class="icon"></span><span class="nText">Q&A</span></a></li>
<li class="sm_a_parents"><a href="<?php echo home_url(); ?>/parents/parents.html"><span class="icon"></span><span class="nText">ご両親様へ</span></a></li>
<li class="sm_a_happyreport topText"><a href="javascript:void(0)"><span class="icon"></span><span class="nText">しあわせ通信</span></a>
<ul class="sub-menu">
<?php
$args = array(/* 配列に複数の引数を追加 */
'post_type' => 'message', /* 表示するカテゴリーを指定 */
'orderby' => 'date',
'order' => 'ASC',
'posts_per_page' => -1, /* 表示するページ数 */
); ?>
<?php $my_query = new WP_Query( $args ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<li class="titleBox"><a href="<?php the_permalink(); ?>"><span class="icon"></span><span class="nText"><?php nskw_subtitle(); ?></span></a></li>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>
</ul></li>
<li class="sm_voice topText"><a href="javascript:void(0)"><span class="icon"></span><span class="nText">ご成約者の声</span></a>
<ul class="sub-menu">
<?php
<?php $my_query = new WP_Query( $args ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<li class="titleBox"><a href="<?php the_permalink(); ?>"><span class="icon"></span><span class="nText"><?php nskw_subtitle(); ?></span></a></li>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>
</ul>
</li>
<li class="sm_voice topText"><a href="javascript:void(0)"><span class="icon"></span><span class="nText">ご成約者の声</span></a>
<ul class="sub-menu">
<?php
$args = array(/* 配列に複数の引数を追加 */
'post_type' => 'voice', /* 表示するカテゴリーを指定 */
'orderby' => 'title',
'order' => 'DESC',
'posts_per_page' => -1, /* 表示するページ数 */
); ?>
<?php $my_query = new WP_Query( $args ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<li class="titleBox"><a href="<?php the_permalink(); ?>"><span class="icon"></span><span class="nText"><?php nskw_subtitle(); ?></span></a></li>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>
</ul></li>
<li class="sm_useful"><a href="<?php echo home_url(); ?>/happyreport/useful.html"><span class="icon"></span><span class="nText">お役立ち情報</span></a></li>
<!--<li class="sm_guide"><a href="<?php echo home_url(); ?>/happyreport/guide.html"><span class="icon"></span><span class="nText">青山界隈情報</span></a></li>-->
<li class="sm_a_topics"><a href="<?php echo home_url(); ?>/topics.html"><span class="icon"></span><span class="nText">トピックス一覧へ</span></a></li>
<li class="sm_a_member"><a href="<?php echo home_url(); ?>/member/member.html"><span class="icon"></span><span class="nText">会員の皆様</span></a></li>
<li class="sm_a_link"><a href="<?php echo home_url(); ?>/link.html"><span class="icon"></span><span class="nText">おすすめリンク</span></a></li>
<li class="sm_a_form"><a href="<?php echo home_url(); ?>/form.html"><span class="icon"></span><span class="nText">入会申込書類のご請求フォーム</span></a></li>
<li class="sm_a_sitepolicy"><a href="<?php echo home_url(); ?>/sitepolicy.html"><span class="icon"></span><span class="nText">このサイトについて</span></a></li>
<li class="sm_a_privacypolicy"><a href="<?php echo home_url(); ?>/privacypolicy.html"><span class="icon"></span><span class="nText">プライバシーポリシー</span></a></li>
<li class="sm_a_sitemap"><a href="<?php echo home_url(); ?>/sitemap.html"><span class="icon"></span><span class="nText">サイトマップ</span></a></li>
</ul>
<?php $my_query = new WP_Query( $args ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<li class="titleBox"><a href="<?php the_permalink(); ?>"><span class="icon"></span><span class="nText"><?php nskw_subtitle(); ?></span></a></li>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>
</ul>
</li>
<li class="sm_useful"><a href="<?php echo home_url(); ?>/happyreport/useful.html"><span class="icon"></span><span class="nText">お役立ち情報</span></a></li>
<!--<li class="sm_guide"><a href="<?php echo home_url(); ?>/happyreport/guide.html"><span class="icon"></span><span class="nText">青山界隈情報</span></a></li>-->
<li class="sm_a_topics"><a href="<?php echo home_url(); ?>/topics.html"><span class="icon"></span><span class="nText">トピックス一覧</span></a></li>
<li class="sm_a_member"><a href="<?php echo home_url(); ?>/member/member.html"><span class="icon"></span><span class="nText">会員の皆様へ</span></a></li>
<li class="sm_a_form"><a href="<?php echo home_url(); ?>/form.html"><span class="icon"></span><span class="nText">入会申込書類のご請求フォーム</span></a></li>
<li class="sm_a_sitepolicy"><a href="<?php echo home_url(); ?>/sitepolicy.html"><span class="icon"></span><span class="nText">このサイトについて</span></a></li>
<li class="sm_a_privacypolicy"><a href="<?php echo home_url(); ?>/privacypolicy.html"><span class="icon"></span><span class="nText">プライバシーポリシー</span></a></li>
<li class="sm_a_sitemap"><a href="<?php echo home_url(); ?>/sitemap.html"><span class="icon"></span><span class="nText">サイトマップ</span></a></li>
</ul>
<!-- /.contentBox --></div>
<!-- /.sectionBox_body_inner --></div>
<!-- /.sectionBox_body --></div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner --></div>
<!-- /.sectionBox_shadow --></div>
<!-- /.topixBox --></div>
<!-- .entryContent --></div>
<!-- /.inner --></div>
<?php endwhile; endif; ?>
<!-- /mainContent --></div>
<?php get_footer(); ?>
\ No newline at end of file
<!-- /.contentBox -->
</div>
<!-- /.sectionBox_body_inner -->
</div>
<!-- /.sectionBox_body -->
</div>
<div class="sectionBox_btm"></div>
<!-- /.sectionBox_inner -->
</div>
<!-- /.sectionBox_shadow -->
</div>
<!-- /.topixBox -->
</div>
<!-- .entryContent -->
</div>
<!-- /.inner -->
</div>
<?php endwhile; endif; ?>
<!-- /mainContent -->
</div>
<?php get_footer(); ?>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment