@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,500;1,500&family=Roboto:wght@500&display=swap');

/* ****************************************************************************

　目次

-------------------------------------------------------------------------------

　01. 大枠レイアウト
　02. モジュール

******************************************************************************* */
/* ==

　01. 大枠レイアウト

=============================================================================== */
body {
	min-width: 950px;
}
#main {
	width: auto;
	padding-top: 0;
}

/* ==

　02. モジュール

=============================================================================== */
.gMain {
	position: relative;
	margin-bottom: 80px;
	padding: 60px 10px 20px;
	min-height: 600px;
	background: url(../images/mv_bg.jpg) no-repeat center center;
	background-size: cover;
	overflow: hidden;
}
.gMain_in {
	opacity: 1;
	transition: all .5s;
}
.gMain_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(1);
	transition: all .7s;
}
.gMain_bg img {
	object-fit: cover;
	width:100%;
	height:100%;
}
.gMain#oyama .gMain_bg-oyama {
	opacity: 1;
	transform: scale(1.02);
}
.gMain#oyama .gMain_players_item-kuwaki .gMain_players_name,
.gMain#oyama .gMain_players_item-hamasaki .gMain_players_name,
.gMain#oyama .gMain_players_item-miyazato .gMain_players_name {
	opacity: 0.3;
}
.gMain#kuwaki .gMain_bg-kuwaki {
	opacity: 1;
	transform: scale(1.02);
}
.gMain#kuwaki .gMain_players_item-oyama .gMain_players_name,
.gMain#kuwaki .gMain_players_item-hamasaki .gMain_players_name,
.gMain#kuwaki .gMain_players_item-miyazato .gMain_players_name {
	opacity: 0.3;
}
.gMain#hamasaki .gMain_bg-hamasaki {
	opacity: 1;
	transform: scale(1.02);
}
.gMain#hamasaki .gMain_players_item-oyama .gMain_players_name,
.gMain#hamasaki .gMain_players_item-kuwaki .gMain_players_name,
.gMain#hamasaki .gMain_players_item-miyazato .gMain_players_name {
	opacity: 0.3;
}
.gMain#miyazato .gMain_bg-miyazato {
	opacity: 1;
	transform: scale(1.02);
}
.gMain#miyazato .gMain_players_item-oyama .gMain_players_name,
.gMain#miyazato .gMain_players_item-kuwaki .gMain_players_name,
.gMain#miyazato .gMain_players_item-hamasaki .gMain_players_name {
	opacity: 0.3;
}
.gMain#oyama .gMain_in,
.gMain#kuwaki .gMain_in,
.gMain#hamasaki .gMain_in,
.gMain#miyazato .gMain_in {
	opacity: 0;
}
.gMain_players .gMain_players_item::before {
	content: "";
	width: 340px;
	height: 165px;
	position: absolute;
  top: 4px;
  left: 4px;
	opacity: 1;
	transition: opacity .7s;
}
.gMain_players_item-oyama::before {
	background: url(/ad/sponsor/golf/images/mv_oyama.jpg) no-repeat 0 0;
	background-size: cover;
}
.gMain_players_item-kuwaki::before {
	background: url(/ad/sponsor/golf/images/mv_kuwaki.jpg) no-repeat 0 0;
	background-size: cover;
}
.gMain_players_item-hamasaki::before {
	background: url(/ad/sponsor/golf/images/mv_hamasaki.jpg) no-repeat 0 0;
	background-size: cover;
}
.gMain_players_item-miyazato::before {
	background: url(/ad/sponsor/golf/images/mv_miyazato.jpg) no-repeat 0 0;
	background-size: cover;
}
.gMain#oyama .gMain_players_item,
.gMain#kuwaki .gMain_players_item,
.gMain#hamasaki .gMain_players_item,
.gMain#miyazato .gMain_players_item {
	background-color: rgba(0, 0, 0, .15);
}
.gMain#oyama .gMain_players_item::before,
.gMain#kuwaki .gMain_players_item::before,
.gMain#hamasaki .gMain_players_item::before,
.gMain#miyazato .gMain_players_item::before {
	opacity: 0;
}
.gMain#oyama .gMain_players .gMain_players_item::after,
.gMain#kuwaki .gMain_players .gMain_players_item::after,
.gMain#hamasaki .gMain_players .gMain_players_item::after,
.gMain#miyazato .gMain_players .gMain_players_item::after {
	opacity: 0;
}
.gMain_tit {
	position: relative;
	color: #fff;
	text-align: center;
	font-size: 34px;
	border: none;
	margin-bottom: 45px;
	padding: 0;
}
.gMain_tit::after {
	content: "";
	display: block;
	width: 64px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	bottom: -25px;
	left: calc(50% - 30px);
}
.gMain_tit span {
	display: block;
	font-size: 14px;
	color: #D6D63C;
	margin-top: 8px;
	letter-spacing: 7px;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}
.gMain_lead {
	position: relative;
	text-align: center;
	color: #fff;
	font-size: 16px;
	z-index: 1;
	line-height: 1.8;
}
.gMain_players {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 700px;
	margin: 50px auto 0;
}
.gMain_players::after {
	content: "";
	display: block;
	width: calc(50%);
}
.gMain_players .gMain_players_item {
	position: relative;
  width: 340px;
  height: 165px;
  padding: 4px;
  margin-bottom: 6px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	font-size: 24px;
	text-decoration: none;
	background-color: rgba(255, 255, 255, .1);
	transition: background-color .5s;
}
.gMain_players .gMain_players_item::after {
	content: "";
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
	position: absolute;
	top: 4px;
	left: 4px;
	transition: opacity .5s;
	opacity: 1;
}
.gMain_players .gMain_players_item .gMain_players_name {
	position: relative;
	display: block;
	margin-bottom: 12px;
	padding-right: 50px;
	z-index: 1;
	opacity: 1;
	transition: opacity .5s;
}
.gMain_players .gMain_players_item .gMain_players_name span {
	font-size: 17px;
	display: inline-block;
	margin: 8px 0 0 10px;
}
.gMain_players .gMain_players_item .gMain_players_name::after {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	border: 2px solid #D6D63C;
	border-radius: 18px;
	position: absolute;
	top: calc(50% - 16px);
	right: 0;
	transition: all .5s;
}
.gMain_players .gMain_players_item .gMain_players_name::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #D6D63C;
  border-right: 2px solid #D6D63C;
  transform: rotate(45deg);
	position: absolute;
  top: calc(50% - 5px);
  right: 13px;
  z-index: 1;
	transition: all .5s;
}
.gMain_players .gMain_players_item:hover .gMain_players_name::after {
	background-color: #D6D63C;
}
.gMain_players .gMain_players_item:hover .gMain_players_name::before {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.d_ipad .gMain_bg {
	opacity: 0 !important;
}
.d_ipad .gMain_players .gMain_players_item:hover .gMain_players_name::after {
	background-color: transparent;
}
.d_ipad .gMain_players .gMain_players_item:hover .gMain_players_name::before {
  border-top: 2px solid #D6D63C;
  border-right: 2px solid #D6D63C;
}
.d_ipad .gMain_in,
.d_ipad .gMain_players_item::before,
.d_ipad .gMain_players_item::after,
.d_ipad .gMain_players_name {
	opacity: 1 !important;
}
.d_ipad .gMain_players_item {
	background-color: rgba(255, 255, 255, .1) !important;
}
.gMain_copy {
	position: absolute;
	bottom: 10px;
	left: 30px;
	color: #fff;
}
#main .adRelation {
	max-width: 950px;
	width: 100%;
	margin: 0 auto;
	padding-top: 30px;
	border-top: 2px solid #343434;
}
#main .adRelation h3 {
  font-size: 18px;
  font-weight: bold;
  border: none;
  color: #000;
  margin-bottom: 30px;
}
#main .adRelation p {
	font-size: 15px;
	text-decoration: underline;
}
#main .adRelation a:hover p {
	text-decoration: none;
}
#main .adRelation_item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	border: 1px solid #cccccc;
}
#main .adRelation_img {
	margin-right: 50px;
}
#main .adLink01 {
  display: inline-block;
  padding: 0 0 0 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ddd;
  border-radius: 5px;
  border: none;
  background: url(/common/images/rn04/svg/arw_ico03.svg) left center no-repeat;
  background-size: 8px;
}
.gBtn01 {
	background-color: #E3E343;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 400px;
	min-height: 64px;
	margin: 40px auto 0;
	border-radius: 32px;
	font-size: 16px;
	text-decoration: none;
	color: #000000;
}
.gBtn01:hover {
	text-decoration: underline;
}
.gBtn01 span {
	position: relative;
}
.gBtn01 span::after {
	content: "";
	width: 11px;
	height: 8px;
	background: url(/common/images/rn04/svg/blank_ico01.svg) no-repeat 0 0;
	background-size: 11px 8px;
	display: inline-block;
	margin-left: 10px;
	position: relative;
  top: -2px;
  left: 0
}

.adRelease {
	padding: 0 10px;
	margin-bottom: 100px;
}

.adRelease .adRelease_in {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}

#main .adNews h2 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
	padding: 0;
	background-color: transparent;
}

.adNews dl {
	width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #000000;
  
}
.adNews_scroll {
  height: 450px;
  padding-right: 15px;
}
.simplebar-scrollbar::before {
  background: #aaa;
}
.simplebar-track {
  background: #f5f5f5;
}
#main .adNews dl dt:first-child,
#main .adNews dl dt:first-child + dd {
	border-top: 1px solid #ccc;
}

#main .adNews dt {
	width: 15%;
	font-size: 14px;
	padding: 14px 0;
  border-bottom: 1px solid #ccc;
  color: #666666;
  min-height: 120px;
}
#main .adNews dd {
	width: 84%;
	font-size: 16px;
	padding: 14px 0;
  border-bottom: 1px solid #ccc;
  min-height: 120px;
}
#main .adNews dd.adNews_col {
	display: flex;
	justify-content: space-between;
}
#main .adNews dd.adNews_col p {
	font-size: 16px;
	max-width: 570px;
}
#main .adNews dd.adNews_col-txt {
	min-height: 1px;
}
#main .adNews dd.adNews_col-txt p {
	max-width: none;
}
#main .adNews dd.adNews_col a {
	font-size: 16px;
  color: #000000;
  text-decoration: underline;
	max-width: 600px;
}
#main .adNews dd.adNews_col a:hover {
  text-decoration: none;
}
#main .adNews .adNews_img {
	display: block;
	width: 180px;
	text-align: center;
}

#main .adNews dd.adNews_col a[href$='.pdf']::after {
	content: "";
	display: inline-block;
	width: 25px;
	height: 18px;
	margin: 0 0 0 8px;
	background: url(/common/images/rn04/svg/pdf_ico01.svg) left top no-repeat;
	background-size: contain;
	vertical-align: 0;
}


.adNews_popup {
	position: relative;
	transition: opacity .2s;
}
.adNews_popup::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 0 0 7px;
  background: url(/common/images/rn04/svg/search_ico04.svg) left top no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 5px;
  right: 5px;
  opacity: 0.8;
}

.adNews_popup:hover {
	opacity: 0.8;
}


/* Magnific Popup CSS */
.mfp-wrap .mfp-iframe-holder .mfp-content{max-width:99%;width:7in;border:1px solid #959593;padding:0}.mfp-wrap .mfp-iframe-scaler iframe{box-shadow:none;background:#fff}.mfp-bg{z-index:1;overflow:hidden;background:#0b0b0b;opacity:.5;filter:alpha(opacity=80)}.mfp-bg,.mfp-wrap{top:0;left:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:2;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:4}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:3}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:5;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{/* top:1px */}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:9pt;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow .mfp-a,.mfp-arrow .mfp-b,.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow .mfp-a,.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow .mfp-b,.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left .mfp-b,.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right .mfp-b,.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:9pt;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}.mfp-bg,.mfp-wrap{z-index:1112!important}.mfp-content{margin:5px 0 0;padding:50px 0 0}button.mfp-close{right:0;opacity:1;filter:alpha(opacity=100);padding:0;font-size:0;text-indent:-9999px;overflow:hidden}.mfp-iframe-holder .mfp-close{top:-54px;right:0;padding-right:0}.mfp-iframe-holder .mfp-close:active{top:-53px}
.mfp-iframe-holder .mfp-close {
	background: url(/innovation/soh/images/rn01/icon_close.svg) no-repeat right center;
}

.gModal {
	position: relative;
	width: 950px;
	margin: 0 auto 100px;
}
.gModal_in {
	position: relative;
	width: 870px;
	padding: 60px 40px;
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.gModal_in::before {
	content: "";
	width: 480px;
	height: 320px;
	background-color: #D6D63C;
	position: absolute;
	top: 0;
	right: 0;
}
.gModal h3 {
	background-color: #DEDEDE;
	margin-bottom: 16px;
	padding: 6px 15px;
	color: #333;
	border-bottom: none;
	font-size: 15px;
	font-weight: bold;
}
.gModal_head {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	margin-bottom: 60px;
	z-index: 1;
}
.gModal_head_txt {
	width: 330px;
}
.gModal_head_txt h2 {
	position: relative;
	background-color: transparent;
	padding: 0;
	font-size: 36px;
	font-weight: 500;
	padding: 25px 0 40px;
}
.gModal_head_txt h2::before {
	content: "";
	width: 72px;
	height: 4px;
	background-color: #FA0046;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.gModal_head_txt h2 span {
	font-size: 22px;
	margin-left: 15px;
}
.gModal_head_img {
	width: 480px;
	border-radius: 8px;
	overflow: hidden;
}
.gModal_head dl {
	display: flex;
	flex-wrap: wrap;
	color: #333;
	font-size: 16px;
	line-height: 2.1;
}
.gModal_head dl dt {
	width: 30%;
	font-weight: 500;
}
.gModal_head dl dd {
	width: 50%;
}
.gModal_body dl {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #D1D1D1;
	color: #000;
	margin: 23px 0 10px;
}
.gModal_body dl dt {
	width: 120px;
	background-color: rgba(214, 214, 60, .17);
	padding: 18px 10px 18px 30px;
	border-bottom: 1px solid #D1D1D1;
	font-size: 16px;
	font-weight: 500;
}
.gModal_body dl dd {
	width: 670px;
	padding: 18px 10px 18px 30px;
	border-bottom: 1px solid #D1D1D1;
	font-size: 16px;
}
.gModal_body dl dd ul {
	line-height: 1.8;
}
.gModal_body dl dd .gModal_list01 {
	font-size: 14px;
	margin-top: 15px;
}
.gModal_body dl + h3 {
	margin-top: 50px;
}
.gModal_note01 {
	color: #888888;
	font-size: 14px;
	margin-bottom: 20px;
}

.gModal_movie {
	margin-bottom: 50px;
}
.gModal_movie p {
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 1.8;
}
.gModal_movie .gModal_movie_img {
	width: 720px;
	margin: 0 auto;
}
.gModal_movie .gModal_movie_img a {
	text-align: center;
	display: block;
}
.gModal_movie .gModal_movie_img p {
	font-size: 12px;
	margin: 5px 0 0;
	text-align: right;
}
.gModal_movie a:hover {
	opacity: 0.8;
}
.gModal_movie a img {
	width: 100%;
	height: auto;
}
.gModal_movie_links {
	margin: 10px 0 30px;
}
.gModal_movie .gModal_movie_links p {
	font-weight: 500;
	margin-bottom: 5px;
	color: #000;
}
.gModal_movie .gModal_movie_links a {
	position: relative;
	display: block;
	text-align: left;
	font-size: 16px;
	color: #000;
	margin-bottom: 3px;
}


.gModal_movie .gModal_movie_links a[target=_blank]::after {
  content: "";
  width: 11px;
  height: 8px;
  background: url(/common/images/rn04/svg/blank_ico01.svg) no-repeat 0 0;
  background-size: 11px 8px;
  display: inline-block;
  margin-left: 10px;
  position: relative;
  top: -2px;
  left: 0;
}
.gModal_block {
	margin-bottom: 50px;
}

.gModal_comment {
	display: flex;
	justify-content: space-between;
}
.gModal_comment_txt {
	width: 610px;
}
.gModal_comment_txt p {
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.8;
}
.gModal_comment_img {
	width: 260px;
	text-align: center;
}
.gModal_comment-v1 .gModal_comment_txt {
	width: 370px;
}
.gModal_comment-v1 .gModal_comment_img {
	width: 450px;
}
.gModal_comment-v1 .gModal_comment_img img {
	border-radius: 8px;
  overflow: hidden;
}
.gModal_comment_txt_img span {
	position: relative;
	display: block;
	min-height: 350px;
}
.gModal_comment_txt_img span img {
	border-radius: 8px;
	overflow: hidden;
}
#modal02 .gModal_comment_txt_img_01 {
	position: absolute;
	top: 0;
	left: 0;
	width: 445px;
	height: auto;
}
#modal02 .gModal_comment_txt_img_02 {
	position: absolute;
  top: 147px;
  right: 0;
  width: 305px;
  height: auto;
}
#modal03 .gModal_comment_txt_img_01 {
	position: absolute;
  top: 50px;
  right: 0;
  width: 450px;
  height: auto;
}
#modal03 .gModal_comment_txt_img_02 {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: auto;
}

#modal04 .gModal_comment_txt_img_01 {
	position: absolute;
	top: 0;
	left: 0;
	width: 445px;
	height: auto;
}
#modal04 .gModal_comment_txt_img_02 {
	position: absolute;
  top: 147px;
  right: 0;
  width: 305px;
  height: auto;
}

.gModal_gallery p {
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.8;
}
.gModal_gallery_col {
	display: flex;
	justify-content: space-between;
	max-width: 870px;
	margin-bottom: 30px;
}
.gModal_gallery_col-reverse {
	flex-direction: row-reverse;
}
.gModal_gallery_col_item {
	width: 24.13%;
	max-width: 210px;
}
.gModal_gallery_col img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	overflow: hidden;
}
.gModal_gallery_col_img {
	max-width: 450px;
}
.gModal_gallery_col_txt {
	max-width: 380px;
}
.gModal_gallery_col_txt p {
	margin-bottom: 20px;
}
.gModal_gallery_links {
	margin: 0 0 30px;
}
.gModal_links p {
	font-weight: 500;
	margin-bottom: 0;
	color: #000;
}
.gModal_links a {
	position: relative;
	display: inline-block;
	text-align: left;
	font-size: 16px;
	color: #000;
	margin-bottom: 3px;
}
.gModal_links a + p {
	margin-top: 10px;
}
.gModal_links a[target=_blank]::after {
    content: "";
    width: 11px;
    height: 8px;
    background: url(/common/images/rn04/svg/blank_ico01.svg) no-repeat 0 0;
    background-size: 11px 8px;
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: -2px;
    left: 0;
}
.fnGallery:hover {
	opacity: 0.8;
}

.mfp-content {
	padding-top: 100px;
}
.mfp-close {
	background: url(../images/icon01.svg) no-repeat 0 0;
	background-size: 48px;
	padding: 0;
	width: 48px;
	height: 48px;
	position: absolute;
	top: -70px;
	right: 0;
	cursor: pointer;
	opacity: 1;
}
.mfp-close:hover {
	opacity: 0.7;
}
.mfp-close-btn-in .mfp-close-v1 {
	width: 200px;
	color: #fff;
	font-size: 24px;
	top: auto;
	right: auto;
	bottom: -70px;
	left: calc(50% - 70px);
	font-family: 'Noto Sans JP', "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Arial, Helvetica, sans-serif;
}
.d_ipad .gModal {
	width: 910px;
}
.d_ipad .gModal_in {
	padding: 60px 20px;
}


.adNewsModal .mfp-content {
	padding: 0;
}
.adNewsModal .mfp-close {
	background: url(../images/icon01.svg) no-repeat 0 0;
	background-size: 48px;
	padding: 0;
	width: 48px;
	height: 48px;
	position: absolute;
	top: -15px;
	right: 0;
	cursor: pointer !important;
	opacity: 1;
}
.adNewsModal .mfp-close:hover {
	opacity: 0.7;
}








/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
    #cboxContent{margin-top:32px; overflow:visible; background:#000;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{background:#000; padding:1px;}
/*         #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;} */
        #cboxLoadingOverlay{background:#000;}
        #cboxTitle{position:absolute; top:-22px; left:0; color:#000;}
        #cboxCurrent{position:absolute; top:-22px; right:205px; text-indent:-9999px;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; text-indent:-9999px; width:20px; height:20px; position:absolute; top:-20px; /* background:url(images/controls.png) no-repeat 0 0; */}
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxPrevious{background-position:0px 0px; right:44px;}
        #cboxPrevious:hover{background-position:0px -25px;}
        #cboxNext{background-position:-25px 0px; right:22px;}
        #cboxNext:hover{background-position:-25px -25px;}
/*         #cboxClose{background-position:-50px 0px; right:0;} */
/*         #cboxClose:hover{background-position:-50px -25px;} */
        .cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious{right:66px;}
        .cboxSlideshow_on #cboxSlideshow{background-position:-75px -25px; right:44px;}
        .cboxSlideshow_on #cboxSlideshow:hover{background-position:-100px -25px;}
        .cboxSlideshow_off #cboxSlideshow{background-position:-100px 0px; right:44px;}
        .cboxSlideshow_off #cboxSlideshow:hover{background-position:-75px -25px;}
#cboxPrevious,
#cboxNext {
	display: none !important;
}



#cboxContent {
  margin-top: 50px;
}
#cboxClose {
  background: url(../images/icon01.svg) no-repeat 0 0;
  background-size: 48px;
  padding: 0;
  width: 48px;
  height: 48px;
  position: absolute;
  top: -50px;
  right: 0;
  cursor: pointer;
  opacity: 1;
}
#cboxClose:hover {
	opacity: 0.7;
}