:root{
  --green: #00aa65;
}
body{
  font-family: "Poppins","Noto Sans JP", sans-serif;
  background-color: #000;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.loading{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.5s;
}
.loading ul{
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
}
.loading ul li{
  height: 0;
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  margin: 0;
  border-radius: 100%;
  transform: transformZ(0);
  border: 3px solid white;
  animation: LOADING 1.5s Infinite;
}
.loading ul li:nth-child(1){ animation-delay: 0s; left: -20px; }
.loading ul li:nth-child(2){ animation-delay: .2s; left: 0; }
.loading ul li:nth-child(3){ animation-delay: .4s; left: 20px; }
.loading::after{
  content: "";
  display: table;
  clear: both;
}
.loading.end{ opacity: 0; }
@keyframes LOADING{
  0%{
    transform: scale(0.5);
    background: white;
  }
  50%{
    transform: scale(1);
    background: black;
  }
  100%{
    transform: scale(.5);
    background: white;
  }
}

main{
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}
section{
  width: 100%;
}
section.level1{
  padding: 30px 0;
  width: 100%;
  overflow: hidden;
}
p{ font-size: 19px; }
@media(max-width: 768px){
  p{ font-size: 14px; }
}
.txt-center{
  text-align: center;
}
a.btn{
  border: 1px solid var(--green);
  color: var(--green);
  padding: 8px 20px;
  display: inline-block;
  text-align: center;
}
video{
  width: 100%;
}
select{
  background-color: transparent;
  color: green;
  border-radius: 0;
  border: 1px solid white;
  padding: 5px 12px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("/img/select.svg");
  background-size: auto 1em;
  background-position: right 12px center;
  background-repeat: no-repeat;
  width: 100%;
}
.flex_center_h{
  display: flex;
  justify-content: center;
}
.flex_center_h.vertical{
  flex-direction: column;
}
.headline:has(h1){
  width: calc(100% - 30px);
  max-width: 980px;
  margin: 0 auto;
}
@media(min-width: 769px){
  br.mobile{ display: none;}
}


/* 背景色 */
.bg-green{
  background-color: #2fb461!important;
}
.bg-white{
  background-color: #fff;
  color: #000;
}
.bg-black{
  background-color: #000!important;
}
.col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 10vw;
  position: relative;
  margin-bottom: 5em;
}
.col h2{
  font-size: min(3.5vw, 42px);
  word-break: keep-all;
  line-break: strict;
  margin-top: 0;
}
.col h2 strong{
  font-size: 1.47em;
}
.col > div.lead{
  font-size: 14px;
}
.columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.columns video{
  width: 100%;
}
@media(min-width: 769px){
  .pc-hidden{ display: none; }
  #top .col:not(.no-lines)::after{
    content: "";
    display: block;
    width: 6px;
    height: 100%;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: top 1s .5s;
  }
  #top .col:not(.no-lines):has(.in)::after{
    top: 0;
  }
  .col > div.lead{
    grid-area: 2 / 2 / 3 / 3;
    padding-left: 2em;
    font-size: 19px;
  }
}
@media(max-width: 768px){
  .sp-hidden{ display: none; }
  .col{
    grid-template-columns: 1fr;
  }
  .col h2{
    font-size: max(5vw, 19px);
  }
  .columns{
    grid-template-columns: 1fr;
  }
  .level2 {
    padding: 23px 0;
  }
  .level2 .columns:nth-child(2) img,.level2 .columns:nth-child(4) img{
    grid-row: 1 / 2;
  }
  .level2 .columns:nth-child(2) > div,.level2 .columns:nth-child(4) div{
    grid-row: 2 / 3;
  }
}

#hamBtn{
  position: relative;
  background-color: transparent;
}
#hamBtn span{
  width: 100%;
  height: 3px;
  background-color: #fff;
  display:block;
  position: absolute;
  pointer-events: none;
  transition: rotate .2s, translate .2s,top .2s, bottom .2s;
}
#hamBtn span:nth-child(1){
  top: 0;
}
#hamBtn span:nth-child(2){
  top: 50%;
  transform: translateY(-50%);
}
#hamBtn span:nth-child(3){
  bottom: 0;
}

@media(max-width: 768px){
  #hamBtn{
    position: absolute;
    top: 50%;
    right: 15px;
    width: 30px;
    height: 30px;
    border: none;
    transform: translateY(-50%);
    padding: 0;
  }
  #hamBtn[area-expanded="true"] span:nth-child(1){
    rotate: 45deg;
    top: calc(50% - 1.5px);
  }
  #hamBtn[area-expanded="true"] span:nth-child(2){
    display: none;
  }
  #hamBtn[area-expanded="true"] span:nth-child(3){
    rotate: -45deg;
    bottom: calc(50% - 1.5px);
  }

}
/* パララックス */
.parallax{
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.parallax.mov{
  overflow: hidden;
  position: relative;
  display: block;
  z-index: 1;
}
.parallax.mov video{
  width: 100%;
  aspect-ratio: 16 / 9;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.parallax.mov .para_content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media(max-width: 768px){
  .parallax.mov{
    overflow: hidden;
  }
  .parallax.mov video{
    width: auto;
    height: 100%;
  }
}
/*--- ヘッダーナビ ---*/
header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #000;
  padding: 21px 30px 12px;
  display:flex;
  justify-content: space-between;
  color: #fff;
  width: 100%;
}
header #logo{
  display:flex;
  align-items: center;
  z-index: 2;
}
header #logo img{
  width: 125px;
  height: 30px;
}
nav ul li{
  display:inline-block;
  font-size: 21px;
  margin: 0 8px;
}
nav ul li a:hover{ color: #6aeca5; }
nav ul li.current,.txt-green{ color: var(--green); }
@media(max-width: 768px){
  header{
    padding: 15px 30px;
  }
  #nav{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  nav{
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    background-color: rgba(0, 0, 0, 0.6);
    height: 100vh;
    transition: transform linear .3s;
    padding-top: 50px;
  }
  nav.open{
    transform: translateX(0%);
  }
  nav ul{
    padding: 0 30px;
  }
  nav ul li{
    display: block;
    margin: 12px;
  }
}
a.blank img{
  display: inline-block;
  vertical-align: sub;
}
a.blank::after{
  content: "";
  background-image: url("./img/external_link_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 3px;
  vertical-align: sub;
}

/*--- メインビジュアル ---*/
#mv{ position: relative; color: #fff; }
#mv .bg_video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
#mv .bg_video video{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
}
#mv_txt{
  width: 100%;
  position:absolute;
  padding: 0 8vw;
  top: 50%;
  transform: translateY(-50%);
}
#mv_txt h1{
  font-size: 44px;
}
#mv_txt h1 strong{
  font-size: 1.75em;
  margin-left: -6px;
}
#mv_txt p, #mv_txt ul{
  font-size: 19px;
}
#mv_txt p.lead{
  font-size: 22px;
  margin-bottom: 3em;
}
#mv_txt ul{
  padding-left: 0;
}
#mv_txt ul li{
  margin: 8px 0;
  position: relative;
  padding-left: 1em;
}
#mv_txt ul li::before{
  content: "";
  background: url("/img/list.svg") no-repeat left / contain;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 6px;
  width: .8em;
  height: .8em;
  fill: var(--green);
}
@media(max-width: 768px){
  #mv_txt h1{
    font-size: max(6vw, 21px);
  }
  #mv_txt p,#mv_txt ul,#mv_txt p.lead{
    font-size: 18px;
  }
}

/*--- プロモーション動画 ---*/
#promotion{
  margin: 0 auto;
  width: calc(100% - 6vw);
  min-width: 768px;
  display: flex;
}
#promotion video{
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
}
.frames iframe{
  aspect-ratio: 8 / 3;
}
@media(max-width: 768px){
  #promotion{
    min-width: inherit;
    position: relative;
    margin: 30px auto;
  }
  #promotion video{
    width: 100%;
  }
  #promotion::after{
    content: "";
    display: block;
    position: absolute;
    width: min(50vw, 300px);
    aspect-ratio: 1 / 1;
    top: -20%;
    right: -3em;
    background-image: url("/img/sq.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .15;
    z-index: -1;
  }
}

/*--- 説明部分 ---*/
section.level2 h3{
  font-size: 32px;
}
section.level2 p{
  font-size: 17px;
}
.columns .explanation{
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.explanation p{
  line-height: 2.5em;
  color: #f0f0f0;
  margin-top: 0;
}
@media(max-width: 768px){
  section.level2 h3{
    font-size: max(5vw, 19px);
  }
  section.level2 p{
    font-size: max(5vw, 13px);
    line-height: 1.3em;
  }
  .columns .explanation{
    padding: 18px 1em;
  }
  section#catch-1 > div.col{
    position: relative;
  }
  section#catch-1 > div.col::after{
    content: "";
    display: block;
    position: absolute;
    width: min(50vw, 300px);
    aspect-ratio: 1 / 1;
    top: -1em;
    left: -10%;
    background-image: url("/img/sq.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .15;
    z-index: -1;
  }
}

/*-- インフォメーション --*/
section:has(#information){
  overflow: hidden;
}
#information{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 8vw;
}
#information h2{
  font-size: 60px;
  margin-top: .5em
}
#information p{
  line-height: 2em;
  font-size: 18px;
}
#information .bl-info{
  background-color: rgba(230, 230, 230, .28);
  padding: 5vw;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 2px 0px;
}
.bg-green #information .bl-info{
  background-color: rgba(0, 0, 0, .1);
  box-shadow: none;
  height: 100%;
}
#information h2, #information h3{ color: var(--green); }
#information .software_link{
  margin-top: 8px;
}
.bg-green #information h2,.bg-green #information h3{ color: white;}
.bl-info h3{
  font-size: 24px;
  border-bottom: 1px solid;
  border-bottom-color: var(--green);
  padding-bottom: 12px;
  font-weight: 500;
}
.bg-green .bl-info h3{
  border-bottom-color: #fff;
}
.bl-info .info-links a{
  display:block;
  text-decoration: underline;
  margin: 20px 0;
}
#information h2, #information p, #information{
  position: relative;
  z-index:2;
}
#information h2::after,#information > div:nth-child(1)::after, #information::after{
  display: block;
  background-image: url("/img/sq-grn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  aspect-ratio: 1 / 1;
  opacity: .05;
  z-index: -1;
}
#information h2::after{
  top: -99%;
  left: calc(-30% + 1em);
  width: 168px;
}
#information::after{
  content: "";
  bottom: -30%;
  left: -1em;
  width: 109px;
}
#information > div:nth-child(1)::after{
  bottom: -30%;
  right: 55%;
  width: 289px;
}
@media(min-width: 769px){
  #information h2::after,#information > div:nth-child(1)::after{
    content: "";
  }
}
@media(max-width: 768px){
  #information{
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  #information h2{
    font-size: max(7vw, 28px);
  }
  #information div:nth-child(1){
    margin-bottom: 30px;
  }
  #information div:nth-child(1) p{
    font-size: clamp(13px, 4vw, 18px);
  }
  #information::after{
    top: -30px;
    left: 0;
    width: 30vw;
  }
  #information h3{
    font-size: clamp(19px, 6vw, 21px);
    margin-top: 0;
  }
  .bg-green .bl-info{
    padding: 21px;
  }
}

/*--- フッター ---*/
footer{
  width: 100%;
  padding: 34px 0;
  background-color: #f0f0f0;
  color: #666;
  text-align: center;
}
footer img{
  margin: 0 auto;
  width: 100%;
  max-width: 250px;
}

/* JS */
[data-appear]{
  opacity: 0;
  transition: transform ease-out 1s, opacity ease-out 2s;
}
[data-appear].in{
  opacity: 1;
}
[data-appear="slideinLtoR"]{
  transform: translate(-50%,0);
}
[data-appear="slideinRtoL"]{
  transform: translate(50%, 0);
}
[data-appear="slideinBtoT"]{
  transform: translate(0, 50%);
}
[data-appear="slideinTtoB"]{
  transform: translate(0, -50%);
}
[data-appear^="slidein"].in{
  transform: translate(0);
}

/*------------------------------
  製品ページ
--------------------------------*/
#launchmonitor #mv{
  background-image: url("/img/bg_2.jpg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#launchmonitor #mv #mv_txt{
  top: 40%;
}
#launchmonitor #mv h1,#software #mv h1{
  font-size: min(8vw, 60px);
  margin: 0 0 .5em;
}
@media(max-width:768px){
  #launchmonitor #mv{
    background-size: cover;
  }
}
#launchmonitor .parallax{
  background-image: url("/img/parallax_1.jpg");
}
#launchmonitor .para_content{
  width: calc(100% - 30px);
  max-width: 980px;
  margin: 60px auto;
  background-color: #000;
}
#launchmonitor .para_content{
  border: 1px solid rgba(255, 255, 255, .2);
}
#launchmonitor .para_content div[class^="item"]{
  display: grid;
  grid-template-columns: 20% auto;
  padding: 70px 30px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
#launchmonitor .para_content div[class^="item"]:last-child{
  border: none;
}
#launchmonitor .para_content div[class^="item"] > *{
  overflow: hidden;
}
#launchmonitor .para_content div[class^="item"] h3{
  font-weight: normal;
}
#launchmonitor .para_content div[class^="item"] img{
  width: 185px;
}
@media(min-width: 769px){
  #launchmonitor .para_content div[class^="item"] div{
    padding: 0 30px;
  }
}
@media(max-width: 768px){
  #launchmonitor .para_content div[class^="item"]{
    display: block;
    padding: 50px 15px;
  }
  #launchmonitor .para_content div[class^="item"] img{
    margin: 0 auto;
  }
}
#func{
  padding: 60px 0;
}
#func h2,#components h2{
  font-size: min(8vw, 60px);
  margin-bottom: 50px;
  font-weight: 600;
}
#func .col,#components .col{
  padding: 0;
  margin-bottom: 0;
}
#launchmonitor section h2{
  margin-left: 8vw;
}
#func .list ul{
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#func .list ul li::before{
  content: "●";
  margin-right: 1em;
}
#func .list ul li:nth-child(1)::before{ color: #645A84; }
#func .list ul li:nth-child(2)::before{ color: var(--green); }
#func .list ul li:nth-child(3)::before{ color: #E6E6E6; }
#func .list ul li:nth-child(4)::before{ color: #333; }
section#components{
  padding-bottom: 0;
}
#components .col > div:nth-child(1){
  background-image: url("/img/components.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#components p{
  margin-left: 8vw;
  font-size: 18px;
  line-height: 3em;
}
@media(max-width: 768px){
  #components .col > div{ grid-row: 2 / 3; }
  #components .col > img{ grid-row: 1 / 2; }
  #components h2{ margin-top: 25px; margin-bottom: 25px;}
  #components p{ margin-right: 12px; margin-left: 12px; line-height: 2em;}
}
#spec{
  background-color: #1d1d1d;
  color: #9c9c9c;
  width: 100%;
  padding:60px 15px;
}
#spec h3{
  margin-left: 10vw;
}
#spec .content{
  padding: 15px 0;
}
#spec .content h3{
  margin-bottom: 30px;
}
#spec .content .col{
  gap: 3em;
}
#spec .content .col img{
  margin: auto;
}
@media(max-width: 768px){
  #spec .content{ margin: 15px auto; }
  #spec .content h3{ margin-bottom: 30px;}
  #spec .content .col img:nth-child(1){ grid-row: 2 / 3; }
  #spec .content .col img:nth-child(2){ grid-row: 1 / 2; }
}

/*------------------------------
  ソフトウェア
--------------------------------*/
#software{
  background-color: #1d1d1d;
}
#software #mv{
  background-image: url("/img/bg_3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.software_link{
  position: absolute;
  bottom: 1em;
  padding: 0 8vw;
  display: flex;
  gap: 24px;
}
.software_link a{
  height: 55px;
}
.software_link a img{
  width: 100%;
  height: 100%;
}
@media(max-width: 430px){
  .software_link{
    gap: 8px;
    padding: 0 12px;
  }
  .software_link a{
    height: 9vw;
  }
}
#software h2{
  font-size: min(4vw, 63px);
}
@media(max-width: 768px){
  #software h2{
    font-size: 25px;
  }
}
#software .col{
  padding: 0 3vw;
  gap: 2em;
}
.tab-line{
  background-color: #1d1d1d;
  width: 100%;
}
#tab{
  width: calc(100% - 15px);
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 0;
}
#tab ul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5vw;
  margin: 0;
}
#tab li{ color: #9c9c9c; padding: 3px; }
#tab li a:hover{ color: #fff; }
#tab li:has(a:hover){ border-bottom: 1px solid #fff; }
#tab li a.current{ color: var(--green);}
#tab li:has(a.current){ border-bottom: 1px solid var(--green);}
@media(max-width: 430px){
  #tab ul{
    gap: 1em;
    padding-left: 0;
    justify-content: center;
    font-size: 4vw;
  }
  #tab li{ border-bottom: 1px solid #fff;}
}

#software #feedback col{
  grid-template-columns: 40% auto;
}
.device{
  padding: 0 15px;
}
.bg_device{
  z-index: 2;
  display: flex;
  background-color: #000;
  border-radius: 6%;
  position: relative;
  align-items: center;
  width:100%;
  height:calc(100% + 5.5vw);
  top: -1em;
}
.bg_device::before{
  content: "";
  background-image: url(/img/09.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.bg_device .slider{
  overflow: hidden;
  position: relative;
  z-index: -1;
  margin: 1.8vw 0;
  padding: 0 15px;
}
@media(max-width: 768px){
  .device{ padding: 0;}
  .bg_device{
    height: calc(100% + 16vw);
    width: 80%;
    min-width: 300px;
  }
}
@media(min-width: 769px){
  #engine .col, #soft_link .col{
    grid-template-columns: 55% auto;
  }
  #exercise .col, #feedback .col{
    grid-template-columns: auto 55%;
  }
}
@media(max-width: 768px){
  #engine .col video{
    grid-row: 2 / 3;
  }
}
#system{
  padding: 30px 3vw;
  overflow: hidden;
}
#system h3{
  font-size:28px;
  color: #9c9c9c;
  margin-bottom: 1em;
}
#system table{
  border-top: 1px solid #818285;
  border-bottom: 1px solid #818285;
  border-collapse: collapse;
  width: 100%;
  min-width: 540px;
}
@media(max-width: 768px){
  #system div:has(table){
    overflow-x: scroll;
  }
}

#system table tr{
  border-bottom: 1px solid #6a6b6c;
  text-align: center;
}
#system table th{
  color: #a7a9ac;
  background-color: #171717;
  border-bottom: 1px solid #3a3a3c;
  padding: 1em;
}
#system table tr:last-child th{
  border: none;
}
#system table td{
  color: #6d6e71;
  border-right: 1px solid #3a3a3c;
}
#system table td:last-child{
  border: none;
}
#software .parallax.mov .para_content{
  padding: 200px 0;
  width: calc(100% - 15px);
  max-width: 980px;
}
#software .para_content h2{
  position: relative;
  z-index:1;
  font-size: min(5vw, 60px);
  margin-bottom: 40px;
  margin-left: 8%;
}
@media(min-width: 861px){
  #software .para_content h2::after{
    content: "";
    display: block;
    position:absolute;
    top: 50%;
    width: 50vw;
    max-width: 250px;
    left: -100px;
    aspect-ratio: 1 / 1;
    transform: translateY(-50%);
    background-image: url("/img/sq.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .15;
    z-index: -1;
  }
  #software .para_content p{
    margin-left: 25%;
    margin-bottom: 100px;
  }
}
@media(max-width: 768px){
  #software .para_content h2{
    font-size: 24px;
    margin-left: 0;
    text-align: center;
  }
  #software .para_content p{
    margin-bottom: 24px;
  }
}

#software a.btn{
  margin: 0 auto;
  display: block;
  width: fit-content;
  background-color: var(--green);
  color: #fff;
}
#software .para_content a.btn:hover{
  background-color: #6AECA5;
}
#software .slider2{
  width:100%;
  overflow: hidden;
}
#software .slider2 .swiper-slide{
  position: relative;
}
#software .slider2 .swiper-slide::after{
  content: "";
  opacity: 0;
  transition: opacity .5s;
}
#software .slider2 .swiper-slide:hover::after{
  position: absolute;
  bottom: 0;
  font-size: 4em;
  color: white;
  font-family: 'playfair display', serif;
}
#software .slider2 .swiper-slide:nth-child(odd):hover::after{
  content: "GSpro";
  opacity: 1;
}
#software .slider2 .swiper-slide:nth-child(even):hover::after{
  content: "E6Golf";
  opacity: 1;
}
#software #soft_link p{ margin-bottom: 12px;}
#software #soft_link a.btn{ margin: 0;}
#software #information p{
  margin-bottom: 24px;
}
#information .software_link{
  position: static;
  padding: 0;
  gap: 5px;
}
#information .software_link a{
  height: 40px;
}

/* ソフトウェア - ゴルフコース */
#courses h1, #third_party h1{
  width: calc(100% - 15px);
  max-width: 980px;
  margin: 0 auto;
  color: var(--green);
  margin: 60px 0 30px;
}
#courses h1{
  font-size: min(5vw, 50px);
}
#courses section:not(:has(#information)){
  background-color: #1d1d1d;
  width: 100%;
  padding: 20px 0;
  margin-bottom: 10px;
}
#courses .columns{
  width: calc(100% - 30px);
  max-width: 980px;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0 auto;
}
@media(max-width: 768px){
  #courses .columns{
    grid-template-columns: 1fr;
  }
}
#courses section:not(:has(div#information)) h2{
  color: var(--green);
  font-size: 30px;
  margin-top: 0;
}
#courses dl{
  display: grid;
  grid-template-columns: 10em auto;
  row-gap: 5px;
}
#courses dl dt{
  color: #e6e6e6;
}
#courses dl dd{
  color: #9c9c9c;
}

/* サードパーティー */
#third_party .top{
  width: calc(100% - 30px);
  max-width: 980px;
  margin: 0 auto 60px;
}
#third_party .jump_links{
  display: flex;
  gap: 3em;
  margin: 32px 0;
}
#third_party .jump_links a{
  border-radius: 50%;
  overflow: hidden;
  width: 200px;
  aspect-ratio: 1 / 1;
  transition: scale .4s;
}
#third_party .jump_links a:hover{
  scale: 1.1;
}
#third_party .jump_links a img{
  pointer-events: none;
}
@media(max-width: 768px){
  #third_party .jump_links{
    gap: 1em;
  }
  #third_party h1{
    font-size: 19px;
  }
}
#third_party section:not(:has(#information)){
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 740px;
}
#third_party section:not(:has(#information)) h2{
  position: absolute;
  font-size: 64px;
  top: 25%;
  left: 1em;
  margin-top:0;
}
#third_party #e6golf{
  background-image: url("/img/e6_course.jpg");
}
#third_party #gspro{
  background-image: url("/img/gspro_course.jpg");
}
#third_party #awesome_golf{
  background-image: url("/img/awesome_courses.jpg");
}
#third_party .third_contents{
  position:absolute;
  bottom:0;
  background-color: rgba(0, 0, 0, .5);
  display: grid;
  grid-template-columns: 20% 40% auto;
  width:100%;
  height: 191px;
}
#third_party .third_contents ._thumnail img{
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  width: 166px;
  height:166px;
  top: -20px;
  left: 30px;
}
#third_party .third_contents h3{
  font-size: 23px;
  margin-bottom: 12px;
}
#third_party .third_contents .os{
  width: 100%;
  opacity: .7;
}
#third_party .third_contents .os img{
  display: inline-block;
  height: 22px;
  margin-right: 5px;
}
#third_party .third_contents .os img.windows{ height: 22px; }
#third_party .third_contents .os img.ios{ height: 22px; }
#third_party .third_contents .os img.android{ height: 18px; }
#third_party .third_contents a.btn{
  margin-top: 23px;
  background-color: var(--green);
  padding: 18px 60px;
  color: #fff;
}
#third_party .third_contents a.btn:hover{
  background-color: #6AECA5;
}
@media(max-width: 768px){
  #third_party section:not(:has(#information)){
    height: 200px;
  }
  #third_party section:not(:has(#information)) h2{
    font-size: 30px;
    top:15%;
  }
  #third_party .third_contents{
    grid-template-columns: 60% auto;
    height: auto;
    padding: 10px 5px;
  }
  #third_party .third_contents h3{
    font-size: 13px;
    font-weight: normal;
  }
  #third_party .third_contents h3 span{
    color: #fff;
    display: block;
  }
  #third_party .third_contents .os img{
    height: 15px;
  }
  #third_party .third_contents a.btn{
    padding: 5px 8px;
  }
}

/*------------------------------
  サポート
--------------------------------*/
#top{
  position: relative;
}
#support #top{
  height: calc(-96px + 80vh);
}
#support h1, #faq h1{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: max(4vw, 60px);
  top: 10%;
}
.support_nav{
  width: calc(100% - 30px);
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.support_nav > div{
  padding: 15px 30px 60px;
  position: relative;
}
.support_nav > div:nth-child(odd){
  background-color: var(--green);
  color: white;
}
.support_nav > div:nth-child(even){
  background-color: white;
  color: var(--green);
}
.support_nav p{
  font-size: 16px;
}
.support_nav a{
  position:absolute;
  height:100%;
  width: 100%;
  display:block;
  bottom:0;
  left: 0;
}
.support_nav a::after{
  content: "";
  position: absolute;
  pointer-events: none;
  width: 20px;
  height: 20px;
  rotate: 45deg;
  border-right: 2px solid;
  border-bottom: 2px solid;
  top: 50%;
  left: calc(50% - 10px);
  transform: translate(-50%, -50%);
}
.support_nav > div:nth-child(odd) a::after{
  border-color: white;
}
.support_nav > div:nth-child(even) a::after{
  border-color: var(--green);
}
@media(min-width: 769px){
  .support_nav{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .support_nav h3{
    font-size: 23px;
    height: 3em;
  }
  .support_nav a{
    height: 50px;
    position:absolute;
    bottom: 0;
    left: 0;
  }
  .support_nav > div:nth-child(odd) a{
    background-color: rgba(255, 255, 255, 0.1);
  }
  .support_nav > div:nth-child(even) a{
    background-color: rgba(0, 170, 101, 0.1);
  }
}
@media(max-width: 768px){
  #support #top{
    height: auto;
  }
  #support h1{
    margin-top: 0;
    font-size: 32px;
    top: 10vw;
  }
  .support_nav{
    grid-template-columns: 1fr;
    width: 100%;
  }
  .support_nav > div{
    display: grid;
    grid-template-columns: auto 50px;
    padding: 30px;
    padding-right: 0;
  }
  .support_nav h3{
    margin: 0;
  }
  .support_nav p{
    grid-row: 2 / 3;
    padding-right: 1em;
    font-size: 14px;
  }
  .support_nav a{
    grid-column: 2 / 3;
    padding-right: 15px;
  }
  .support_nav a::after{
    left: calc(50% - 15px);
  }
}
#support section, #faq section{
  width: calc(100% - 30px);
  max-width: 980px;
  margin: 80px auto;
}
#support section h2, #faq section h2{
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: normal;
  color: var(--green);
  padding-bottom: 1em;
  border-bottom: 1px solid var(--green);
  font-size: 30px;
}
#support section h2 span{
  font-weight: 100;
  font-size: .8em;
  color: #9c9c9c;
}
#support dl > div{
  display: grid;
}
dl.type1 > div{
  grid-template-columns: 10em auto 10em;
}
dl.type2 > div{
  grid-template-columns: 1fr .6fr 1.4fr;
}
#support dl > *{
  border-bottom: 1px solid #333;
  padding: 30px;
}
#support dl dt{
  font-size: 20px;
  display:flex;
  align-items: center;
}
#support dl dd{
  display: grid;
  color: #9c9c9c;
  margin: 0;
  padding-left: 0;
  font-size: 17px;
}
#support dl dd div{
  display: flex;
  align-items: center;
}
#support .type2 dd div{
  gap: 12px;
}
#support .type2 dd div a{
  width: 100%;
  text-align: center;
}
#support .type1 a img{
  width: 100%;
}
#support .type2 div.flex_center_h{
  gap: 5px;
}
dl.type2 p{
  font-size: 13px;
  color:#00aa65;
  text-align: center;
}
span.yellow{
  color: #EEFF3E;
}
@media(min-width: 769px){
  #support section h2 span{
    margin-left: 1em;
  }
  #support dl dt{
    border-bottom: none;
    text-align: left;
  }
}
@media(max-width: 768px){
  #support section{
    margin: 40px auto;
  }
  #support section h2{
    font-size: 21px;
  }
  #support section h2 span{
    font-size: 13px;
  }
  #support dl > *{
    padding: 15px 0;
  }
  #support dl > div{
    grid-template-columns: 50% auto;
    column-gap: 8px;
  }
  #support dl dt{
    font-size: 16px;
  }
  #support dl > div > dd{
    grid-row: 2 / 3;
    font-size: 12px;
  }
  #support dl > div > div,#support .type2 div.flex_center_h{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  dl.type1 > div > div{
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
}

/*------------------------------
  FAQ
--------------------------------*/
#faq .bg-image{
  position: relative;
}
#faq .bg-image:after{
  content: "";
  width:100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 1));
  position: absolute;
  top:0;
  left:0;
}
#faq .bg-image img{
  z-index: -1;
}
#faq h1{
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top:0;
  z-index: 3;
}
@media(max-width: 768px){
  #faq h1{
    font-size: 32px;
  }
}
#faq section h2{
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 900;
  font-style: normal;
  color: var(--green);
  font-size: 30px;
}
#faq .tabs input{ display: none; }
#faq .tabs input label{
  color: white;
}
#faq .tabs input[checked=true] + label{
  color: var(--green);
}
#faq #faq_bl{
  position: relative;
  transition: height .1s;
}
#faq .tabs{
  margin-top: 60px;
}
#faq .tabs input:checked + label{
  color: var(--green);
}
#faq .tabs input#general_btn + label{
  margin-right: 1em;
}
#faq .tab_item{
  opacity: 0;
  transition: opacity 1s;
  position: absolute;
}
#faq .tab_item:not(.open){
  display: none;
}
#faq .tab_item.open{
  opacity: 1;
}
.faq_content{
  overflow: hidden;
  color: #b0b0b0;
  cursor: pointer;
}
.faq_content h3{
  background-color: rgba(255, 255, 255, 0.05);
  padding: 36px;
  padding-left: 0;
}
#faq .faq_content h3::before{
  content: attr(numbering);
  font-family: "Wix Madefor Text", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 50px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-right: 36px;
  width: 2em;
  font-stretch: expanded;
  color: white;
  transition-delay: .2s;
}
@media(max-width: 768px){
  #faq .faq_content h3{
    padding: 0 0 36px;
  }
  #faq .faq_content h3::before{
    width: 100%;
    display:block;
    padding: 15px;
    margin-bottom: 48px;
  }
}
#faq .faq_content:hover h3:before{
  background-color: var(--green);
}
.faq_content .answer{
  transition: height .2s, padding .2s;
  padding: 0 0 0 3em;
}
.faq_content .answer[data-cond="true"]{
  padding: 48px 0 60px 3em;
}
@media(max-width: 768px){
  .faq_content .answer{
    padding: 0 0 0 1em;
  }
  .faq_content .answer[data-cond="true"]{
    padding: 24px 0 0 1em;
  }
}
.faq_content .answer ul{
  margin:0;
  padding-left: 0;
}
.faq_content .answer ul li{
  list-style:disc;
}
.faq_content .answer:not([data-cond="true"]){
  height: 0;
}

/* プライバシーポリシー */
#policy section{
  width: calc(100% - 30px);
  max-width: 980px;
  margin: 60px auto;
  color: #b0b0b0;
}
#policy h2{
  color: var(--green);
  border-bottom: 1px solid var(--green);
}
#policy h3{
  color: var(--green);
  margin-top: 4em;
  font-size: 23px;
}
#policy h4{
  font-size: 19px;
  margin-top: 2em;
}
#policy section ul{
  padding-left: 0;
}
#policy section ul li::before{
  content: "・";
}
#policy ol{
  padding-left: 1em;
}
#policy ul li{
  margin-bottom: 5px;
}

/* 3rdアプリ */
#app .top{
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#app .top#e6golf{
  background-image: url("/img/e6_course.jpg");
}
#app .top#gspro{
  background-image: url("/img/gspro_course.jpg");
}
#app .top#awesome{
  background-image: url("/img/awesome_courses.jpg");
}
#app .top .contents{
  position: absolute;
  background-color: rgba(0, 0, 0, .5);
  bottom: 0;
  width: 100%;
  padding: 30px 50px 30px;
}
#app .top .contents > *{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
#app .top h1{
  font-size: max(4vw, 65px);
  font-weight: 500;
}
#app .top .contents p{
  font-size: max(2vw, 25px);
  font-weight: 200;
}
#app .top .contents .os{
  display: flex;
  gap: 5px;
  opacity: .6;
}
#app .top .contents .os img{
  max-height: 22px;
}

#app main section:not(.level1){
  width: calc(100% - 30px);
  max-width: 980px;
  margin: 100px auto;
}
#app section h2{
  font-size: 42px;
  color: var(--green);
  margin-bottom: 15px;
}
#app .preparation{
  background-color: #1d1d1d;
  padding: 40px 40px;
  margin: 40px 0;
}
#app .preparation h3{
  font-size: 30px;
  margin-top: 0;
}
#app .preparation ul{
  color: #808080;
  font-size: 17px;
  padding-left: 0;
}
#app .preparation ul li a{
  text-decoration: underline;
}
#app #step{
  display: grid;
  gap: 60px;
}
#app #step > div{
  padding-left: 120px;
  position: relative;
}
#app #step > div::before{
  content: attr(data-word);
  font-size: 24px;
  font-weight: 500;
  color: #808080;
  background-image: url("/img/balloon.svg");
  background-repeat: no-repeat;
  opacity: 0.8;
  position: absolute;
  top:0;
  left: 0;
  display:block;
  width: 101px;
  height: 92px;
  padding: 20px 0 0 8px;
  text-align: left;
}
#app #step h3{
  color: #f0f0f0;
  font-size: 21px;
  font-weight: normal;
}
#app #step p{
  color: #808080;
  font-size: 18px;
}
@media(max-width: 768px){
  #app .top{ height: 300px; }
  #app .top .contents{ padding: 15px;}
  #app .top h1{ font-size: 30px; }
  #app .top .contents p{
    font-size: 13px;
    margin: 12px 0;
  }
  #app .top .os img{ height: 15px; }
  #app section h2{ font-size: 21px; }
  #app .preparation{ padding: 30px 20px; }
  #app .preparation h3{ font-size: 18px; }
  #app .preparation ul{ font-size: 13px; }
  #app .preparation ul li{ margin-bottom: 8px; }
  #app #step div{
    padding:0;
  }
  #app #step > div:before{
    background-image: url("/img/balloon_sp.svg");
    width: 20vw;
    height:15vw;
    font-size: max(4vw, 15px);
    padding: 5px 0 0 8px;
  }
  #app #step h3{
    font-size: 15px;
    padding-left: 21vw;
    margin-top:0;
    height: 10vw;
    display: flex;
    align-items: center;
  }
  #app #step p{
    font-size: 13px;
  }
}

.videoBx{ position: relative; overflow: hidden; }
.videoBx::before{
  content: url("/img/plays.svg");
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  z-index: 2;
}
.videoBx:hover::before{
  opacity: .5;
}
.videoBx:has(video.play)::before{
  display: none;
}
.videoBx:hover::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000;
  opacity: .2;
  pointer-events: none;
}
.videoBx video, .videoBx img{
  position: absolute;
  top: 0;
  left: 0;
}
.videoBx img{
  pointer-events: none;
}
.videoBx video:hover{
  cursor: pointer;
}
.videoBx video.play + img{
  display:none;
}

/* PR用フローティングバナー */
#pr {
  position: fixed;
  left: 15px;
  bottom: 0;
  -webkit-transform: translateY(calc(100% + .5em));
          transform: translateY(calc(100% + .5em));
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 30%;
  max-width: 330px;
  aspect-ratio: 1/0.69;
  z-index: 10;
  font-size: 28px;
}
#pr .close_btn {
  position: absolute;
  width: 1em;
  height: 1em;
  right: -.5em;
  top: -.5em;
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 480px) {
  #pr {
    width: calc(100% - 35px - 55px);
    max-width: none;
    aspect-ratio: unset;
    left: 10px;
  }
}