@charset "UTF-8";
/* CSS Document */


/* mainTop
-----------------------------------------------*/
#mainTop {
  background: #f2f2f2;
}
#mainSlider {
  max-width: 1440px;
  overflow: visible;
  margin: 0 auto;
}
#mainSlider li a:hover {
  opacity: 1;
}
#mainSlider li .img {
  position: relative;
  aspect-ratio: 144	 / 71;
  max-height: calc(100vh - 160px);
  min-height: 500px;
  width: 100%;
}
#mainSlider li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mainSlider li .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,1));
  width: 100%;
  padding: 80px 50px 50px 50px;
  color: #fff;
}
#mainSlider li .txt span {
  display: block;
  font-size: 14px;
}
#mainSlider li .txt strong {
  display: block;
  font-size: 22px;
  margin-top: 10px;
}
@media only screen and (max-width:767px) {
  #mainSlider li .img {
    min-height: auto;
  }
  #mainSlider li .txt {
    padding: 40px 20px 14px 20px;
  }
  #mainSlider li .txt span {
    font-size: 11px;
  }
  #mainSlider li .txt strong {
    font-size: 14px;
    margin-top: 2px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}


/* section
-----------------------------------------------*/
section h2 {
  text-align: center;
}
section h2 strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
}
section h2 span {
  display: block;
  margin-top: 15px;
  font-size: 14px;
}
section .btn {
  max-width: 250px;
  margin: 40px auto 0;
}
section .btn a {
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #002e70;
  border-radius: 45px;
}
section .btn a span {
  position: relative;
  padding-right: 25px;
  font-size: 16px;
  line-height: 45px;
}
section .btn a span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg)translateY(-50%);
  margin-top: -1px;
}
section .btn a span::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 15px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}
@media only screen and (max-width:767px) {
  section h2 strong {
    font-size: 36px;
  }
  section h2 span {
    margin-top: 8px;
  }
  section .btn {
    margin: 30px auto 0;
  }
}


/* schedule
-----------------------------------------------*/
#schedule {
  padding: 100px 60px;
  background: #f2f2f2;
}
#schedule .inner {
  max-width: 1180px;
  margin: 0 auto;
}
#schedule table {
  background: #fff;
  border-radius: 10px;
  margin-top: 40px;
}
#schedule table th,
#schedule table td {
  padding: 20px 20px;
  border-top: 1px solid #f2f2f2;
  font-size: 14px;
}
#schedule table .time {
  color: #002e70;
  font-weight: bold;
  padding-left: 40px;
  white-space: nowrap;
}
#schedule table .title {
  font-weight: bold;
  width: 65%;
}
#schedule table .title .inner {
  display: flex;
  align-items: center;
}
#schedule table .title .inner .logo {
  margin-right: 20px;
}
#schedule table .title a {
  text-decoration: underline;
}
#schedule table .course {
  width: 35%;
}
#schedule table .course a {
  text-decoration: underline;
}
#schedule table .area {
  white-space: nowrap;
}
#schedule table .more {
  white-space: nowrap;
}
#schedule table .more a {
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #002e70;
  border-radius: 45px;
  padding: 0 25px;
}
#schedule table .more a span {
  position: relative;
  padding-right: 25px;
  font-size: 16px;
  line-height: 45px;
}
#schedule table .more a span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg)translateY(-50%);
  margin-top: -1px;
}
#schedule table .more a span::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 15px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}
#schedule table .more a.empty {
    color: #ccc;
    background: #f2f2f2;
    pointer-events: none;
}
#schedule table .more a.empty span::before {
  border-color: #ccc;
}
#schedule table .more a.empty span::after {
  background: #ccc;
}
#schedule td .entry {
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #002e70;
  border-radius: 45px;
  white-space: nowrap;
  height: 45px;
  line-height: 45px;
  text-decoration: none;
  font-size: 14px;
  width: 110px;
  margin: 0 auto;
  padding: 0;
}
#schedule td .entry:hover {
  opacity: .7;
}
#schedule td .entry.empty {
  color: #ccc;
  background: #f2f2f2;
  pointer-events: none;
  padding: 0;
}
@media only screen and (max-width:1024px) {
  #schedule td .entry {
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    width: 90px;
  }
}
@media only screen and (max-width:767px) {
  #schedule {
    padding: 60px 20px;
  }
  #schedule table {
    display: block;
    margin-top: 20px;
  }
  #schedule table tr {
    position: relative;
    display: block;
    border-top: 1px solid #f2f2f2;
  }
  #schedule table th,
  #schedule table td {
    display: block;
    padding: 0 20px 0 20px;
    border: none;
    width: 100%;
  }
  #schedule table .time {
    padding: 20px 20px 0 20px;
  }
  #schedule table .title {
    width: 100%;
    padding: 5px 20px 0 20px;
    font-size: 16px;
  }
  #schedule table .course {
    width: 100%;
    padding: 5px 20px 0 20px;
  }
  #schedule table .area {
    padding: 5px 20px 20px 20px;
  }
  #schedule table .more {
    display: none;
  }
  #schedule td .entry {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    width: 100%;
    margin: 10px auto 0;
  }
}


/* news
-----------------------------------------------*/
#news {
  padding: 100px 60px;
}
#news .inner {
  max-width: 1180px;
  margin: 0 auto;
}
section .newsList {
  display: grid;
  gap: 60px 40px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}
section .newsList .col .img {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  /*min-height: 155px;*/
  aspect-ratio: 560	 / 260;
}
section .newsList .col .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section .newsList .col .txt {
  margin-top: 20px;
}
section .newsList .col .txt time {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  color: #002e70;
  margin-right: 10px;
}
section .newsList .col .txt span {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
}
section .newsList .col .txt h3 {
  font-size: 18px;
  margin-top: 10px;
}
section .newsList .col .txt p {
  font-size: 14px;
  line-height: 2;
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width:1023px) {
  section .newsList {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width:767px) {
  #news {
    padding: 60px 20px;
  }
  section .newsList {
    gap: 40px 40px;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  section .newsList .col .img {
    max-height: 200px;
    min-height: none;
  }
}


/* pickup
-----------------------------------------------*/
#pickup {
  padding: 100px 60px;
  background: #002e70;
  color: #fff;
}
#pickup .inner {
  max-width: 1180px;
  margin: 0 auto;
}
#pickup .newsList .col a,
#pickup .newsList .col .txt time {
  color: #fff;
}
@media only screen and (max-width:767px) {
  #pickup {
    padding: 60px 20px;
  }
}


/* info
-----------------------------------------------*/
#info {
  padding: 100px 60px;
}
#info .inner {
  max-width: 1180px;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  #info {
    padding: 60px 20px;
  }
}


/* ranking
-----------------------------------------------*/
#ranking {
  padding: 100px 60px;
  color: #fff;
  background: url("/image/index/bgi_ranking.jpg") center/cover;
}
#ranking .inner {
  max-width: 1080px;
  margin: 0 auto;
}
#ranking .list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
#ranking .list .col {
  width: calc(50% - 30px);
}
#ranking .list .rank1 {
  display: flex;
  align-items: center;
  font-weight: bold;
}
#ranking .list .rank1 .img {
  width: 200px;
}
#ranking .list .rank1 .txt {
  padding-left: 40px;
}
#ranking .list .rank1 .txt .rank {
  color: #d3b67d;
  font-family: 'Noto Sans JP', sans-serif;
}
#ranking .list .rank1 .txt .rank span {
  font-size: 36px;
  line-height: 1;
}
#ranking .list .rank1 .txt .rank span strong {
  font-size: 80px;
  line-height: 1;
}
#ranking .list .rank1 .txt .name {
  font-size: 24px;
}
#ranking .list .rank1 .txt .age span {
  font-size: 14px;
}
#ranking .list .rank1 .txt .age span:first-child::after {
  content: " | ";
}
#ranking .list .rank1 .txt .point {
  font-size: 42px;
  font-family: 'Noto Sans JP', sans-serif;
}
#ranking .list .rank1 .txt .point span {
  font-size: 28px;
}
#ranking .list table {
  border-bottom: 1px solid #ccc;
  margin-top: 30px;
}
#ranking .list table tr {
  border-top: 1px solid #ccc;
}
#ranking .list table td {
  padding: 20px 5px;
  font-weight: bold;
}
#ranking .list table .rank {
  padding-left: 0;
}
#ranking .list table .rank span {
  display: inline-block;
  background: #fff;
  color: #333;
  font-size: 14px;
  padding: 2px 10px;
  font-family: 'Noto Sans JP', sans-serif;
}
#ranking .list table .name {
  font-size: 18px;
}
#ranking .list table .age span {
  font-size: 13px;
}
#ranking .list table .age span + span {
  padding-left: 5px;
}
#ranking .list table .point {
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  padding-right: 0;
}
#ranking .btn a {
  background: #fff;
  color: #333;
}
#ranking .btn a span::before {
  border-color: #333;
}
#ranking .btn a span::after {
  background: #333;
}
@media only screen and (max-width:1023px) {
  #ranking .list {
    display: block;
  }
  #ranking .list .col {
    width: 100%;
  }
  #ranking .list .col:not(:first-child) {
    margin-top: 60px;
  }
}
@media only screen and (max-width:767px) {
  #ranking {
    padding: 60px 20px;
  }
  #ranking .list {
    margin-top: 20px;
  }
  #ranking .list .col:not(:first-child) {
    margin-top: 40px;
  }
  #ranking .list .rank1 .img {
    width: 120px;
  }
  #ranking .list .rank1 .txt {
    padding-left: 20px;
  }
  #ranking .list .rank1 .txt .rank span {
    font-size: 28px;
  }
  #ranking .list .rank1 .txt .rank span strong {
    font-size: 60px;
  }
  #ranking .list .rank1 .txt .name {
    font-size: 20px;
  }
  #ranking .list .rank1 .txt .age span {
    font-size: 13px;
  }
  #ranking .list .rank1 .txt .point {
    font-size: 30px;
  }
  #ranking .list .rank1 .txt .point span {
    font-size: 20px;
  }
  #ranking .list table {
    margin-top: 20px;
  }
  #ranking .list table td {
    padding: 15px 5px;
  }
  #ranking .list table .rank span {
    font-size: 13px;
    padding: 2px 3px;
  }
  #ranking .list table .name {
    font-size: 16px;
  }
  #ranking .list table .age span {
    display: block;
    font-size: 12px;  
  }

#ranking .list table .age span + span {
  padding-left: 0;
}
  #ranking .list table .point {
    font-size: 14px;
  }
}


/* handy-jr
-----------------------------------------------*/
#handy-jr {
  padding: 100px 60px;
}
#handy-jr .inner {
  display: flex;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
}
#handy-jr .inner > div {
  width: calc(50% - 30px);
}
@media only screen and (max-width:1024px) {
  #handy-jr .inner {
    display: block;
    max-width: 560px;
  }
  #handy-jr .inner > div {
    width: 100%;
  }
  #handy-jr #junior {
    margin-top: 80px;
  }
}
@media only screen and (max-width:767px) {
  #handy-jr {
    padding: 60px 20px;
  }
  #handy-jr #junior {
    margin-top: 60px;
  }
}


/* handy
-----------------------------------------------*/
#handycap .video {
  margin-top: 40px;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  outline: solid 1px #ccc;
}
#handycap .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#handycap ul {
  margin-top: 40px;
}
#handycap ul li:not(:first-child) {
  margin-top: 30px;
}
#handycap ul li a {
  display: flex;
  align-items: center;
}
#handycap ul li .img {
  width: 182px;
}
#handycap ul li .img img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #fff;
}
#handycap ul li .img.border img {
  border-color: #ccc;
}
#handycap ul li .txt {
  width: calc(100% - 182px);
  padding-left: 25px;
}
#handycap ul li .txt h3 {
  font-size: 18px;
}
#handycap ul li .txt time {
  display: block;
  font-size: 12px;
}
#handycap ul li .txt a {
  font-weight: bold;
}
#handycap ul li .txt span {
  display: inline-block;
  font-weight: bold;
  margin-top: 5px;
}
#handycap ul li .txt .pdfLink {
  position: relative;
  padding-right: 20px;
}
#handycap ul li .txt .pdfLink::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 20px;
  background: url("/image/common/icon_pdf.svg");
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#handycap ul li .txt .winLink {
  position: relative;
  padding-right: 18px;
}
#handycap ul li .txt .winLink::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 10px;
  background: url("/image/common/icon_win_blk.svg");
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#handycap .btnLink {
  text-align: right;
  margin-top: 30px;
}
#handycap .btnLink a {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  padding-right: 25px;
  text-decoration: underline;
}
#handycap .btnLink a::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg)translateY(-50%);
  margin-top: -1px;
}
#handycap .btnLink a::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 50%;
  right: 3px;
  width: 15px;
  height: 2px;
  background: #333;
  transform: translateY(-50%);
}
@media only screen and (max-width:767px) {
  #handycap .video,
  #handycap ul {
    margin-top: 20px;
  }
  #handycap ul li a {
    align-items: start;
  }
  #handycap ul li .img {
    width: 102px;
  }
  #handycap ul li .txt {
    width: calc(100% - 102px);
    padding-left: 20px;
  }
  #handycap ul li .txt h3 {
    font-size: 16px;
  }
  #handycap .btnLink {
    text-align: center;
  }
}


/* junior
-----------------------------------------------*/
#junior .bnr {
  margin-top: 40px;
}
#junior .bnr a {
  position: relative;
  display: block;
}
#junior .img {
  overflow: hidden;
  border-radius: 10px;
}
#junior .img img {
  width: 100%;
}
#junior .img .ttl {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0 0 10px 10px;
  color: #fff;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#junior .img .ttl h3 {
  display: flex;
  align-items: center;
  font-size: 28px;
  line-height: 1;
}
#junior .img .ttl h3 span {
  font-size: 13px;
  margin-right: 10px;
  line-height: 1;
}
#junior .img .ttl p {
  font-size: 16px;
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
}
#junior .badge {
  position: absolute;
  top: -30px;
  right: -30px;
  background: #d3b67d;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#junior .badge p {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}
#junior .bnr + p {
  line-height: 2;
  font-size: 14px;
  margin-top: 15px;
}
@media only screen and (max-width:767px) {
  #junior .bnr {
    margin-top: 20px;
  }
  #junior .img .ttl {
    position: static;
    background: #000;
    border-radius: 0;
    padding: 15px 20px;
    text-align: center;
    justify-content: center;
  }
  #junior .img .ttl h3 {
    font-size: 22px;
  }
  #junior .img .ttl h3 span {
    font-size: 12px;
    margin-right: 10px;
  }
  #junior .img .ttl p {
    display: none;
  }
  #junior .badge {
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
  }
  #junior .bnr + p {
    line-height: 1.8;
  }
}


/* sponsors
-----------------------------------------------*/
#sponsors {
  padding: 100px 10px;
  background: #f2f2f2;
}
#sponsors .inner {
  max-width: 1280px;
  margin: 0 auto;
}
#sponsors .box h3 {
  text-align: center;
  color: #999999;
  font-size: 16px;
  margin-bottom: 18px;
}
#sponsors .box {
  margin-top: 100px;
}
#sponsors .box1 {
  margin-top: 20px;
}
#sponsors .box ul {
  text-align: center;
  font-size: 0;
  max-width: 960px;
  margin: 0 auto;
}
#sponsors .box ul li {
  display: inline-block;
  vertical-align: top;
  padding: 18px 40px;
}
#sponsors .box ul li h3 {
  margin-bottom: 35px;
}
#sponsors .box ul li a {
  display: block;
}
#sponsors .box1 ul li img {
  height: 60px;
  width: auto;
}
#sponsors .box2 ul li img {
  height: 60px;
  width: auto;
}
#sponsors .box3 ul li img {
  height: 40px;
  width: auto;
}
#sponsors .box3 ul {
  max-width: 675px;
}
#sponsors .box3 ul li {
  width: 33.33%;
}
@media only screen and (max-width:767px) {
  #sponsors {
    padding: 60px 10px;
  }
  #sponsors .box h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  #sponsors .box ul li {
    margin: 10px 10px;
    padding: 0;
  }
  #sponsors .box ul li h3 {
    margin-bottom: 15px;
  }
  #sponsors .box ul {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    place-content: center;
  }
  #sponsors .box1 ul {
    margin-top: 20px;
  }
  #sponsors .box1 ul li img {
    height: 35px;
  }
  #sponsors .box2 ul li img {
    height: 35px;
  }
  #sponsors .box3 ul li img {
    height: 25px;
  }
  #sponsors .box3 ul li {
    width: 25%;
  }
}


/* bnrArea
-----------------------------------------------*/
#bnrArea {
  margin-top: 0;
}
#bnrArea .inner {
  border: none;
}


/* slider
-----------------------------------------------*/
.slick-slider {
  overflow: hidden;
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}
.slick-list {
  position: relative;
  display: block;
  margin: 0;
  height: 100%;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, 
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  position: relative;
}
.slick-slide:focus {
  outline: none;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
}
.slick-next, 
.slick-prev {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  opacity: .8;
  cursor: pointer;
}
.slick-next {
  left: 100%;
}
.slick-prev {
  right: 100%;
}
.slick-dots {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  text-align: center;
  font-size: 0;
  margin-top: 10px;
}
.slick-dots li {
  display: inline-block;
  margin: 0 8px;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  font-size: 0;
  background-color: rgba(128, 128, 128, 0.2);
  border: none;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  transition: background .4s;
}
.slick-dots li button + button {
  display: none;
}
.slick-dots li.slick-active button,
.slick-dots li button:hover {
  background-color: #002e70;
}
@media only screen and (max-width:767px) {
  .slick-dots {
    margin-top: 5px;
  }
  .slick-dots li {
    margin: 0 5px;
  }
  .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}


/* champion
-----------------------------------------------*/
#championship_note {
  background: #f2f2f2;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 980px;
  width: calc(100% - 40px);
  margin: 60px auto -40px;
}
#championship_note p {
  font-size: 15px;
  color: #ed1c24;
  font-weight: bold;
}
#championship_note p:not(:first-child) {
  margin-top: 6px;
}
@media only screen and (max-width:767px) {
  #championship_note {
    padding: 15px 20px;
    margin: 40px auto -40px;
  }
  #championship_note p {
    font-size: 12px;
  }
}

/* openBnr
-----------------------------------------------*/
#openBnr  {
  padding: 120px 60px 20px;
  box-sizing: border-box;
}
#openBnr .inner {
  max-width: 1180px;
  margin: 0 auto;
}
#openBnr .col3 {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}
#openBnr .col {
  width: 33.33%;
}
#openBnr .col .logo  {
  width: 100%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#openBnr .col .logo img {
  max-width: 230px;
  width: 100%;
}
#openBnr .col .btnArea  {
  margin-top: 20px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px;
}
#openBnr .so .btnArea  {
  background: url("/image/index/bgi_opeBnr_so.jpg?202508191501")no-repeat center;
  background-size: cover;
}
#openBnr .wo .btnArea  {
  background: url("/image/index/bgi_opeBnr_wo.jpg?202508191501")no-repeat center;
  background-size: cover;
}
#openBnr .jo .btnArea  {
  background: url("/image/index/bgi_opeBnr_jo.jpg?202508191501")no-repeat center;
  background-size: cover;
}
#openBnr .col .btnArea h2 {
  font-size: 0;
  background-size: contain;
  max-width: 295px;
  width: 100%;
  padding-top: 30%;
  margin-bottom: 40px;
}
#openBnr .so .btnArea h2 {
  background: url("/image/index/img_opeBnr_so_02.svg?202508191501")no-repeat;
  background-size: contain;
}
#openBnr .wo .btnArea h2 {
  background: url("/image/index/img_opeBnr_wo_02.svg?202508191501")no-repeat;
  background-size: contain;
}
#openBnr .jo .btnArea h2 {
  background: url("/image/index/img_opeBnr_jo_02.svg?202508191501")no-repeat;
  background-size: contain;
}
#openBnr .col .btnArea p {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
#openBnr .col .btnArea p span {
  font-size: 24px;
  display: block;
}
#openBnr .col .btnArea ul {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 30px auto 0;
  max-width: 284px;
}
#openBnr .col .btnArea li {
  width: 100%;
}
#openBnr .col .btnArea li a.noLink {
  pointer-events:none;
  color: #999999;
  opacity: .5;
}
#openBnr .col .btnArea li a {
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 20px;
  overflow: hidden;
  line-height: 40px;
  display: block;
  text-align: center;
}
#openBnr .so .btnArea li a {
  color: #144199;
}
#openBnr .wo .btnArea li a {
  color: #c9161e;
}
#openBnr .jo .btnArea li a {
  color: #1e6044;
}
@media only screen and (max-width:1200px) {
  #openBnr .col3 {
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
}
  #openBnr .col .btnArea h2 {
    margin-bottom: 20px;
}
  #openBnr .col .btnArea {
    padding: 20px;
}
#openBnr .col .btnArea li a {
  font-size: 14px;
}
  #openBnr .col .btnArea p span {
    font-size: 18px;
    display: block;
}
  #openBnr .col .btnArea p {
    font-size: 12px;
}
}
@media only screen and (max-width:767px) {
  #openBnr  {
    padding: 60px 10px 20px;
  }
  #openBnr .col3 {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }
  #openBnr .col{
    width: 100%;
    display: flex;
  }
  #openBnr .col .logo{
    width: 35.2%;
    margin-right: 10px;
  }
  #openBnr .col .btnArea{
    width: 64.8%;
    margin-top: 0;
  }
  #openBnr .col .btnArea h2 {
    padding-top: 32%;
    margin-bottom: 15px;
}
  #openBnr .col .btnArea p {
    display: none;
}
#openBnr .col .btnArea li a {
  font-size: 12px;
  line-height: 32px;
}
  #openBnr .col .btnArea ul{
    margin: 20px auto 0;
  }
}

