@charset "UTF-8";

:root {
  --pc-size: 1366;
  --cntnr: 963 * 100%;
}

/* 全体 */

html {
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #F0F0F0;
  color: #272226;
  overflow: auto;
  letter-spacing: 0em;
  text-align: left;
  text-decoration: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
}

ol, ul {
  list-style: none;
}
.pc-view {
  display: block;
}
.sp-view {
  display: none;
}
.inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
}
.inner > div {
  width: 50%;
  text-align: center;
  position: relative;
}
.clickable {
  transition: opacity .3s;
}
.clickable:hover {
  opacity: .9;
}

.black-area {
  background-color: #141214;
  color: #FFFFFF;
}

.pink-area {
  background-color: #F4387B;
  color: #FFFFFF;
}

.blue-area {
  background-color: #5165D9;
  color: #FFFFFF;
}

.green-area {
  background-color: #8BC540;
  color: #FFFFFF;
}

.blue-btn {
  font-size: 24px;
  font-weight: 700;
  width: 300px;
  border: 1px solid #000000;
  box-shadow: 0px 4px 0px 0px #000;
  background-color: #2622E4;
  color: #FFFFFF;
  margin: 20px auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
}
.black-btn {
  font-size: 24px;
  font-weight: 700;
  width: 300px;
  border: 1px solid #000000;
  box-shadow: 0px 4px 0px 0px #000;
  background-color: #302c2f;
  color: #FFFFFF;
  margin: 20px auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
}
.youtube-btn {
  font-size: 24px;
  font-weight: 700;
  width: 300px;
  border: 1px solid #000000;
  box-shadow: 0px 4px 0px 0px #000;
  background-color: #FF0000;
  color: #FFFFFF;
  margin: 20px auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
}
.i-link::after {
  content: '';
  display: block;
  width: 24px;
  height: 30px;
  background-image: url(../images/i_link.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: relative;
  right: -10px;
}
.i-download::after {
  content: '';
  display: block;
  width: 15px;
  height: 20px;
  background-image: url(../images/i_download.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: relative;
  right: -5px;
}

body, h1, h2, h3, h4, h5, h6, p, ur, figure {
  margin : 0;
  padding : 0;
}

.heading-decoration {
  font-size: 1.25rem;
  letter-spacing: 3px;
  text-align: center;
  display: inline-block;
  margin: 55px 0 0 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

h2 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 3px;
  text-align: center;
  margin: 0 0 30px 0;
}

h2::after {
  content: "";
  display: block;
  border-bottom: 4px solid;
  width: 36px;
  margin-top: 14px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.container {
  width: calc(var(--cntnr) / var(--pc-size));
  margin: 0 auto;
}

.contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

/* ヘッダー */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(39, 34, 38, 0.6);
  z-index: 1000;
  transition: opacity 0.5s ease;
  opacity: 1;
}
.header-hidden {
  opacity: 0;
}
.header .container {
  width: 88%;
  margin: 0 auto;
  padding: 9px 0;
  display: flex;
  align-items: center;
}
.header h1 {
  margin-right: 3.5%;
}
.golfboy-logo {
  width: 116px;
}
nav {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  flex: 1;
}
.g-navi:first-child {
  position: relative;
  list-style: none;
  display: flex;
  justify-content: flex-start;
}
@media screen and (min-width: 1500px) {
  .g-navi:first-child {
    justify-content: flex-end;
  }
}
.g-navi:first-child li {
  padding: 0 1.1%;
}
.g-navi:first-child li a {
  display: block;
  letter-spacing: 1px;
  transition: color .3s, border-color .3s;
}
.g-navi:first-child li a:hover {
  color:#D5FF2B;
}
.g-navi:first-child li:last-child a:hover {
  border-color: #D5FF2B;
}
.g-navi:first-child li:last-child {
  padding-left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.g-navi:first-child li:last-child a {
  display: block;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 0 12px;
}
.g-navi:first-child .box:hover {
  border-color: #D5FF2B;
}

@media screen and (max-width: 1230px) {
  .g-navi:first-child li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1120px) {
  .g-navi:first-child li a {
    font-size: 14px;
  }
}


/* フッター */

footer {
  background-image: url(../images/footer.svg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 140px;
  padding-bottom: 34px;
  margin-top: -60px;
}
.list-sns {
  width: 36%;
  margin: 0 auto 17px auto;
  border-radius: 10px;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 43px;
  padding: 18px 2%;
}
.list-sns li {
  width: 57px;
}
.logo-footer {
  width: 204px;
}
.wrapper-f-logo {
  text-align: center;
  margin-bottom: 13px;
}
.copy-right {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
}


@media screen and (max-width: 1024px) {
  html {
    font-size: calc((1 / 390) * 100vw);
  }
  .pc-view {
    display: none;
  }
  .sp-view {
    display: block;
  }
  .container {
    padding: 0 9rem;
    width: 100%;
  }
  .heading-decoration {
    font-size: 14rem;
    font-weight: 400;
    letter-spacing: 1rem;
    margin-top: 31rem;
  }
  h2 {
    font-size: 24rem;
    letter-spacing: 3rem;
    margin-bottom: 25rem;
    line-height: normal;
  }
  h2::after {
    margin-top: 4rem;
  }
  .blue-btn {
    font-size: 20rem;
    width: 246rem;
    padding: 5rem 0;
  }
  .black-btn {
    font-size: 20rem;
    width: 246rem;
    padding: 5rem 0;
  }
  .youtube-btn {
    font-size: 20rem;
    width: 246rem;
    padding: 5rem 0;
  }
  .i-link::after {
    width: 20rem;
    height: 25rem;
    right: -8rem;
  }
  .i-download::after {
    width: 15rem;
    height: 20rem;
    right: -5rem;
  }
  .inner {
    flex-direction: column;
  }
  .inner > div {
    width: 100%;
  }

  .header {
    height: 50rem;
    display: flex;
    align-items: center;
  }
  .header h1 {
    margin-right: 0;
    flex: 1;
  }
  .header .container {
    width: 100%;
    padding: 0 22rem;
  }
  .golfboy-logo {
    width: 70rem;
  }

  .area-head-right {
    width: 92rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .area-head-right a {
    display: block;
    width: 30rem;
    font-size: 12rem;
    border: 1px solid #FFF;
    padding: 1rem 1rem;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
  }
  .hamburger {
    position: fixed;
    width: 74rem;
    height: 50rem;
    right: 0;
    top: 0;
  }
  .hamburger > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s;
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
  .hamburger > div:last-child {
    opacity: 0;
    background-color: #000;
  }
  .hamburger > div:last-child > div span:first-child {
    transform: rotate(45deg) translate(5rem, 5rem);
  }
  .hamburger > div:last-child > div span:last-child {
    transform: rotate(-45deg) translate(5rem, -5rem);
  }
  .hamburger.open > div:first-child {
    opacity: 0;
  }
  .hamburger.open > div:last-child {
    opacity: 1;
  }
  .hamburger > div > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24rem;
    height: 17rem;
    margin: 0 auto;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 3rem;
    background-color: #FFF;
    border-radius: 2px;
  }
  .hamburger > div > p {
    font-size: 10rem;
    text-align: center;
  }

  .g-navi:first-child {
    display: none;
  }
  .g-navi:last-child {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 50rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 8rem 0;
    background-color: #000;
    visibility: hidden;
    opacity: 0;
    transition: visibility .3s, opacity .3s;
  }
  .g-navi:last-child li {
    width: calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12rem 0;
    font-size: 16rem;
    letter-spacing: 1rem;
  }
  .g-navi.open:last-child {
    visibility: visible;
    opacity: 1;
  }


  footer {
    padding-top: 116rem;
    padding-bottom: 14rem;
    margin-top: -55rem;
  }
  .list-sns {
    width: 300rem;
    column-gap: 40rem;
    flex-wrap: wrap;
    row-gap: 20rem;
    padding: 18rem 40rem;
    margin-bottom: 10rem;
  }
  .list-sns li {
    width: 58rem;
  }
  .wrapper-f-logo {
    margin-bottom: 0;
  }
  .copy-right {
    font-size: 14rem;
  }
}