(function($, window, document, undefined) { var pluginName = "jqueryVideoLightning", defaults = { id: "y-OwdeQjNv4is", width: "857px", height: "480px", autoplay: 0, autohide: 2, controls: 1, iv_load_policy: 1, loop: 0, modestbranding: 0, playlist: "", related: "", showinfo: 1, start_time: 0, theme: "dark", color: "", byline: 1, portrait: 1, effect_in: "fadeIn", ease_in: 300, ease_out: 0, backdrop_color: "#000", backdrop_opacity: 1, glow: 0, glow_color: "#fff" }; function JQVideoLightning ( element, options ) { this.element = element; this.settings = $.extend( {}, defaults, options ); this._defaults = defaults; this._name = pluginName; this.init(); } JQVideoLightning.prototype = { init: function () { var void_target, void_elements, target, target_class; void_elements = [ "AREA", "BASE", "BR", "COL", "COMMAND", "EMBED", "HR", "IMG", "INPUT", "KEYGEN", "LINK", "META", "PARAM", "SOURCE", "TRACK", "WBR" ]; void_target = 0; target_class = ".video-target"; $(this.element).css( "cursor", "pointer" ); if (($.inArray($(this.element).prop('tagName'), void_elements)) == -1) { target = $(this.element); target.addClass("video-target"); } else { $("body").append('
' + '
'); target = $(target_class); void_target = 1; } function callPlayer() { $(this.player(target, $(this).settings), void_target); } $(this.element).on( "click", $.proxy(callPlayer, this)); }, player: function ( target, settings, void_target ) { var id, video_autohide, video_autoplay, video_byline, video_color, video_controls, video_height, video_id, video_iv_load_policy, video_loop, video_modestbranding, video_playlist, video_portrait, video_related, video_showinfo, video_start_time, video_theme, video_vendor, video_width, vimeo_player, youtube_player, ease_in, glow, glow_color, backdrop_color, backdrop_opacity, red, green, blue, effect_in, display_ratio; function colorConverter(hex){ red = parseInt((prepHex(hex)).substring(0,2),16); blue = parseInt((prepHex(hex)).substring(2,4),16); green = parseInt((prepHex(hex)).substring(4,6),16); return { red: red, blue: blue, green: green }; } function fullHex(hex){ hex = "#" + prepHex(hex); return hex; } function prepHex(hex){ hex = (hex.charAt(0)=="#") ? hex.split("#")[1]:hex; if (hex.length == 3){ hex = hex + hex; } return hex; } settings = this.settings; if (target.find(".video-wrapper").is(':visible')) { target.find(".video").remove(); target.find(".video-wrapper").hide((settings.easeOut)); target.find(".video-wrapper").remove(); if (void_target == 1){target.remove()} return $(this).destroy; } else { id = (typeof target.data("videoId") === 'undefined') ? settings.id : target.data("videoId"); video_vendor = id.split("-")[0]; if ((video_vendor === "v") || (video_vendor === "V")) { video_vendor = "Vimeo"; } else { video_vendor = "Youtube"; } video_id = id.split("-")[1]; // Youtube: "y-XbTtgr8J8uU" Vimeo: "v-32187194" video_width = target.data("videoWidth") || settings.width; // Y&V: video width in px video_height = target.data("videoHeight") || settings.height; // Y&V: video height in px display_ratio = parseInt(video_height) / parseInt(video_width); if (parseInt(video_width) > $(document).width() - 20) { video_width = $(document).width() - 20 + "px"; video_height = display_ratio * parseInt(video_width) + "px"; } video_autoplay = target.data("videoAutoplay") || settings.autoplay; // Y&V: start playback immediately (0,1) video_autohide = target.data("videoAutohide") || settings.autohide; // Y: auto hide controls after video load (0,1,2) video_controls = target.data("videoControls") || settings.controls; // Y: display controls (0,1,2) video_iv_load_policy = target.data("videoIvLoadPolicy") || settings.iv_load_policy; // Y: display annotations (1,3) video_loop = target.data("videoLoop") || settings.loop; // Y&V: loop video playback (0,1) video_modestbranding = target.data("videoModestbranding") || settings.modestbranding; // Y: hide large Youtube logo (0,1) video_playlist = target.data("videoPlaylist") || settings.playlist; // Y: comma-separated list of video IDs to play video_related = target.data("videoRelated") || settings.related; // Y: show related videos when playback id finished (0,1) video_showinfo = target.data("videoShowinfo") || settings.showinfo; // Y: display title, uploader (0,1) V: display title (0,1) video_start_time = target.data("videoStartTime") || settings.start_time; // Y: playback start position in seconds (ex. "132" starts at 2mins, 12secs) video_theme = target.data("videoTheme") || settings.theme; // Y: player theme ("dark","light") if (video_vendor == "Vimeo"){ video_color = target.data("videoColor") || prepHex(settings.color); // V: player controls color (hex code minus the "#", default is "00adef") } else { video_color = target.data("videoColor") || settings.color; // Y: player controls color ("red","white") } video_byline = target.data("videoByline") || settings.byline; // V: display byline (0,1) video_portrait = target.data("videoPortrait") || settings.portrait; // V: display user's portrait (0,1) youtube_player = $(""); vimeo_player = $(""); effect_in = settings.effect_in; ease_in = settings.ease_in; glow = settings.glow; glow_color = settings.glow_color; backdrop_color = settings.backdrop_color; backdrop_opacity = settings.backdrop_opacity; target.append('
'); target.find(".video-wrapper").css({ backgroundColor: "rgba(" + colorConverter(backdrop_color).red + "," + colorConverter(backdrop_color).blue + "," + colorConverter(backdrop_color).green + "," + backdrop_opacity + ")" }); target.find(".video-frame").css({ width: video_width, height: video_height, marginTop: '-' + ((video_height.split("p")[0])/2) + 'px', marginLeft: '-' + ((video_width.split("p")[0])/2) + 'px', boxShadow: '0px 0px ' + glow + 'px ' + (glow/5) + 'px ' + fullHex(glow_color) }); target.find(".video-wrapper")[effect_in](ease_in); if (video_vendor === "Vimeo") { return target.find(".video").append(vimeo_player); } else { return target.find(".video").append(youtube_player); } } }, destroy: function () { $(this).off(); $(this).removeData(); } }; $.fn[ pluginName ] = function ( options ) { return this.each(function() { if ( !$.data( this, "plugin_" + pluginName ) ) { $.data( this, "plugin_" + pluginName, new JQVideoLightning( this, options ) ); } }); }; return this; })( jQuery, window, document );
  1. HOME>
  2. コース紹介>
  3. コース概要
各ホールレイアウト

コース概要

設計者

富沢 誠造

改修

横山 良

ホール数

18H  PAR72

距離

Back
6,827yd
Regular
6,403yd
Front
6,042yd
Gold
5,401yd

面積

622,208.1 m2(平米)

コースレート

Back
72.9
Regular
71.1
Front
69.4
Gold
66.3

コースレコード

西川 幸一郎 67(2022.8.7)

芝種

フェアウェイ   高麗芝
ティグラウンド  高麗芝
グリーン     シャーク

 

 

 

プリント用PDFはこちら

コースレート表

Par HD B.T R.T F.T G.T
No.1 5 9 501 480 470 445
No.2 3 15 147 134 124 124
No.3 4 3 417 399 380 341
No.4 4 13 402 377 358 304
No.5 4 1 438 419 403 325
No.6 4 7 407 392 379 331
No.7 3 17 210 187 165 133
No.8 4 5 436 411 389 346
No.9 5 11 495 475 459 409
No.10 5 4 485 475 456 435
No.11 3 16 157 146 136 136
No.12 4 10 379 339 304 304
No.13 4 14 385 364 352 292
No.14 4 8 341 325 310 280
No.15 5 2 550 461 431 403
No.16 4 6 450 430 400 317
No.17 3 18 189 172 151 137
No.18 4 12 438 417 375 339
6,827 6,403 6,042 5,401