/*
Theme Name: ゴルフ
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* Reset ----- */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  vertical-align: middle;
}

button,
select {
  text-transform: none;
}

input,
button,
select {
  font-family: inherit;
  font-weight: inherit;
}

input[type="submit"],
input[type="button"],
button[type="submit"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]:-webkit-search-decoration,
input[type="button"]:-webkit-search-decoration,
button[type="submit"]:-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus,
button[type="submit"]:focus {
  outline: none;
}

/* IE 10+ ----- */
:-ms-input-placeholder {
  color: #999;
}

html {
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:before,
:after {
  text-decoration: inherit;
  vertical-align: inherit;
}

img,
embed,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

img,
iframe {
  border: 0
}

img {
  vertical-align: bottom;
}

svg {
  fill: currentColor;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
  font-weight: normal;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/*++++++++++++++++++*/
body {
  position: relative;
  /* font-family: 'Noto Sans JP', sans-serif; */
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: #C4BEAE;
  min-height: 1000px;
  /* overflow-x: hidden; */

  ::-webkit-scrollbar {
    width: 12px;
  }

  ::-webkit-scrollbar-thumb {
    background: #BEBEBE;
  }

  ::-webkit-scrollbar-track {
    background: #fff;
  }
}

img {
  image-rendering: -webkit-optimize-contrast;
}


a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

.sp-only {
  display: none;
}

.tac {
  text-align: center;
}

.header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 40px;
  background: #625F57;
  font-weight: 500;
  color: #fff;

  .logo {
    display: flex;
    flex-flow: column;
    width: 260px;
  }

  .right-box {
    display: flex;
    align-items: center;
    gap: 40px;

    .g-nav {
      display: flex;
      gap: 10px;
      font-size: 16px;
    }

    .menu-item>a {
      display: block;
      padding: 0 15px;
      line-height: 95px;
    }

    .btn {
      width: 275px;
      height: 61px;
      padding-top: 3px;
      padding-left: 52px;
      border: 1px solid #fff;
      border-radius: 5px;
      background: url(img/btn01_icon.png) no-repeat center left 20px;
      background-size: 32px;
      text-align: center;
      letter-spacing: 0.1em;

      .p1 {
        font-size: 18px;
        font-weight: bold;
      }
    }

    .btn_sp {
      display: none;
    }
  }

  .burger {
    display: none;
  }
}

@media (max-width: 1350px) {
  .header {
    .right-box {
      .g-nav {
        position: fixed;
        top: 80px;
        bottom: 0;
        left: 0;
        right: 0;
        flex-flow: column;
        gap: 0;
        padding-top: 20px;
        min-height: 100vh;
        background: rgba(0, 0, 0, .7);
        /* transform: translateX(100%); */
        display: none;

        &.opened {
          display: block;
          /* transform: translateY(0); */
        }
      }

      .menu-item>a {
        display: block;
        padding: 10px 20px;
        line-height: 1.5;
        border: none;
      }
    }

    .burger {
      display: block;
      width: 55px;
      height: 55px;
      background: url(img/burger.png) center center / contain no-repeat;
      cursor: pointer;

      &.opened {
        background: url(img/burger_opened.png) center center / contain no-repeat;
      }
    }
  }
}

article {
  padding-top: 80px;
}

@media (max-width: 780px) {
  body {
    /* overflow-x: hidden; */
    font-size: 32px;
  }

  article {
    width: 780px;
    padding-top: 130px;
    /* overflow-x: hidden; */
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .header {
    height: 130px;
    width: 780px;
    padding: 0 20px;

    .logo {
      width: 321px;

      .logo-p {
        margin-top: 2px;
        font-size: 15px;
      }
    }

    .right-box {
      .g-nav {
        top: 130px;
        padding-top: 40px;
        font-size: 32px;
      }

      .menu-item>a {
        padding: 20px 40px;
      }

      .btn {
        display: none;
      }

      .btn_sp {
        display: block;
        width: 150px;
        height: 96px;
        padding-top: 60px;
        border: 1px solid #fff;
        border-radius: 5px;
        background: url(img/btn01_icon.png) no-repeat top 15px center;
        background-size: 46px;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
      }
    }

    .burger {
      width: 69px;
      height: 69px;
    }
  }
}


.mv {
  padding: 0 40px;
  background: url(img/mv_pc.jpg) center center / cover no-repeat;
  letter-spacing: 0.1em;

  .inner {
    height: 800px;
    padding-top: 240px;
    max-width: 1200px;
    margin: auto;

    h2 {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .small {
      font-size: 40px;
    }

    p {
      font-size: 24px;
    }

    .link {
      display: inline-block;
      padding-right: 40px;
      padding-bottom: 10px;
      margin-top: 60px;
      background: url(img/icon.png) no-repeat top 10px right 10px;
      background-size: 12px;
      border-bottom: 4px solid #CFA038;
      border-image: linear-gradient(to right, #CFA038, #E9D189, #CFA038) 1;
      font-size: 24px;
    }
  }
}

@media (max-width: 780px) {
  .mv {
    background-image: url(img/mv_sp.jpg);

    .inner {
      padding-top: 130px;

      h2 {
        font-size: 52px;
        margin-bottom: 10px;
      }

      .small {
        font-size: 44px;
      }

      p {
        font-size: 32px;
      }

      .link {
        background-size: 14px;
        font-size: 28px;
      }
    }
  }
}

section {
  padding: 1px 40px 90px;
  line-height: 1.9;

  p+p {
    margin-top: 1em;
  }
}

.h2-simple {
  margin: 80px 0 60PX;
  text-align: center;
  font-weight: bold;
  line-height: 1;

  .en {
    margin-bottom: 30px;
    font-size: 90px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #625F57;
  }

  .jp {
    font-size: 32px;
    letter-spacing: 0.05em;
  }
}

.h2-sub {
  margin-bottom: 60px;
  font-size: 20px;
  text-align: center;
}

.bg01 {
  background: url(img/bg01_pc.jpg) no-repeat top center;
}

.features-list {
  display: flex;
  max-width: 1200px;
  gap: 3%;
  margin: auto;
  text-align: center;

  h2 {
    margin: 10px 0;
    font-size: 24px;
    font-weight: 600;
  }
}

@media (max-width: 780px) {
  .h2-simple {

    .en {
      font-size: 90px;
    }

    .jp {
      font-size: 34px;
    }
  }

  .h2-sub {
    font-size: 26px;
  }

  .bg01 {
    background-image: url(img/bg01_sp.jpg);
  }

  .features-list {
    flex-flow: column;
    gap: 40px;

    h2 {
      margin: 20px;
      font-size: 40px;
    }
  }
}

.lineup {
  background: url(img/bg02.jpg) center top / cover no-repeat;

  .h2-simple {
    .en {
      color: #C4BEAE;
    }
  }

  .h3 {
    margin: 100px 0 60px;
    padding-bottom: 25px;
    position: relative;
    color: #c59b41;
    font-size: 48px;
    text-align: center;
    letter-spacing: .1em;
    line-height: 1;
  }

  .h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 200px;
    height: 1px;
    margin: auto;
    background-color: #8c6e30;
  }

  .gdr-slider {
    width: calc(100% + 80px);
    margin: 0 -40px 0;

    .box {
      background: #000;
      margin: 0 15px;
    }

    p {
      padding: 0 10px;
      font-size: 16px;
    }

    .img {
      border: 1px solid #E9D189;
    }
  }
}


@media (max-width: 780px) {
  .lineup {
    .gdr-slider {

      .box {
        margin: 0 10px;
      }

      p {
        font-size: 22px;
      }
    }
  }
}

.service-price {
  background: url(img/bg03.jpg) center top / cover no-repeat;

  .h2-simple,
  .h2-sub {
    color: #212121;
  }

  .service {
    display: flex;
    max-width: 1150px;
    margin: auto;

    img {
      width: 52%;
    }

    .txt {
      background: #212121;
    }

    h2 {
      position: relative;
      padding: 40px 24px 15px;
      font-size: 22px;

      &:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200px;
        height: 1px;
        background-color: #CFA038;
      }
    }

    p {
      padding: 24px;
      margin-top: 20px;
      font-size: 16px;
    }
  }
}

.price-table-container {
  font-family: 'Noto Sans JP', sans-serif;

  .price-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    border-collapse: separate;
    border-spacing: 4px 0;
    table-layout: fixed;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;

    th,
    td {
      text-align: center;
    }

    th {
      background-color: #625F57;
      padding: 8px 0;
      font-size: 20px;
      font-family: "Noto Serif JP", serif;
      font-weight: 500;

      &:first-child {
        background-color: transparent;
        width: 16%;
        max-width: 150px;
      }

      &.vip-header {
        background: linear-gradient(to right, #CFA038 0%, #E9D189 50%, #CFA038 100%);
        color: #ffffff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
      }
    }

    td {
      background-color: #75736E;
      padding: 15px 8px;
      border-top: 1px solid #CFA038;
      height: 4em;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.4;

      &.row-title {
        background-color: transparent;
        color: #212121;
        text-align: left;
        padding-left: 0;
      }

      &.empty-cell {
        font-size: 26px;
      }
    }
  }

  .price-main {
    display: block;
    font-size: 25px;
    letter-spacing: 0.5px;
  }

  .price-sub {
    display: block;
    font-size: 17px;
    color: #dddddd;
    opacity: .8;
  }

  .sub-text {
    font-size: 17px;
  }
}

.price-notes {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15%;
  font-size: 15px;
  color: #2b2b2b;

  p {
    margin: 5px 0;
    line-height: 1.5;
    text-indent: -1em;
    padding-left: 1em;
  }
}

@media (max-width: 1100px) {
  .price-table-container {
    overflow-x: auto;
    background-color: #D5D1C6;
    padding: 20px;
    border: 1px solid #707070;

    .price-table {
      width: 1100px;

      th {
        &:first-child {
          width: 14%;
        }
      }
    }
  }

  .price-notes {
    padding-left: 0;
    margin-top: 20px;
  }

}

@media (max-width: 1000px) {
  .service-price {
    .service {
      img {
        width: 40%;
      }

      p {
        margin-top: 0;
      }
    }
  }
}

@media (max-width: 900px) {
  .service-price {
    .pc-only {
      display: none;
    }

    .service {
      flex-flow: column;

      img {
        width: 100%;
      }

      h2 {
        padding: 40px 30px 25px;
        font-size: 34px;

        &:after {
          width: 233px;
        }
      }

      p {
        padding: 30px 30px 40px;
        font-size: 28px;
      }
    }
  }
}

@media (max-width: 780px) {
  .price-table-container {
    margin: 0 -20px;
  }

  .price-notes {
    margin: 20px -20px 0;
    font-size: 26px;
  }
}

.contact {
  padding: 40px;
  background: url(img/bg04_pc.jpg) center top / cover no-repeat;
  text-align: center;
  font-weight: 500;

  h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .box {
    max-width: 900px;
    padding: 24px;
    margin: auto;
    background: #fff;
    color: #101112;

    h3 {
      margin-bottom: 15px;
      font-size: 25px;
    }

    .tel {
      display: inline-block;
      background: url(img/icon-tel.png) center left / contain no-repeat;
      padding-left: 45px;
      margin-bottom: 15px;
      font-size: 28px;
      line-height: 31px;

      span {
        font-size: 18px;
      }
    }

    p {
      margin-bottom: 10px;

    }

    .btn {
      display: inline-block;
      width: 330px;
      border-radius: 3px;
      box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;

    }
  }
}

@media (max-width: 780px) {
  .contact {
    background-image: url(img/bg04_sp.jpg);
    padding: 60px 40px;

    h2 {
      margin-bottom: 30px;
      font-size: 32px;
    }

    .box {
      padding: 30px 0;

      h3 {
        margin-bottom: 20px;
        font-size: 30px;
      }

      .tel {
        background: url(img/icon-tel.png) no-repeat left top;
        background-size: 41px;
        padding-left: 50px;
        font-size: 40px;
        line-height: 41px;

        span {
          display: inline-block;
          padding-top: 20px;
          font-size: 25px;
        }
      }

      p {
        margin-bottom: 20px;

      }

      .btn {
        width: 403px;

      }
    }
  }
}

.c21 {
  background: url(img/bg05.jpg) center top / cover no-repeat;

  color: #212121;

  .flow {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: auto;

    .box {
      position: relative;
      flex-grow: 1;
      padding: 30px 10px;
      border: 1px solid #CFA038;
      text-align: center;

      .step {
        font-size: 26px;
        color: #CFA038;
      }

      p {
        font-size: 22px;
      }
    }

    .box:not(:last-child):after {
      position: absolute;
      top: 70px;
      right: -25px;
      display: block;
      content: "";
      width: 12px;
      height: 23px;
      background: url(img/flow_icon_pc.png) center center / cover no-repeat;
    }
  }
}

@media (max-width: 1200px) {
  .c21 {
    .flow {
      flex-wrap: wrap;

      .box {
        width: calc((100% - 50px * 2) / 3);
      }
    }
  }
}

@media (max-width: 780px) {
  .c21 {
    padding-bottom: 150px;

    .flow {
      gap: 120px;

      .box {
        width: 100%;
        padding: 70px 0;

        .step {
          font-size: 70px;
        }

        p {
          font-size: 60px;
        }
      }

      .box:not(:last-child):after {
        top: auto;
        bottom: -85px;
        right: 0;
        left: 0;
        width: 77px;
        height: 40px;
        margin: auto;
        background-image: url(img/flow_icon_sp.png);
      }
    }
  }
}

.voice {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1140px;
  margin: auto;

  .box {
    min-height: 300px;
    width: calc(50% - 10px);
    background: #fff;
    font-size: 16px;

    >p {
      padding: 20px;
    }
  }

  .head {
    background: linear-gradient(to right bottom, #75736E, #3B3A37);
    padding: 10px 20px;
    color: #fff;
    font-weight: 500;

    h3 {
      font-size: 24px;
    }

    p {
      font-size: 14px;
    }
  }
}

@media (max-width: 780px) {
  .voice {
    gap: 30px;

    .box {
      min-height: none;
      width: 100%;
      font-size: 28px;

      >p {
        padding: 25px;
      }
    }

    .head {
      padding: 10px 25px;

      h3 {
        font-size: 32px;
      }

      p {
        font-size: 24px;
      }
    }
  }
}

.qa {
  position: relative;
  max-width: 900px;
  padding: 5px 25px 25px 80px;
  margin: 25px auto 0;
  border-bottom: 1px solid #CFA038;

  &::before {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    content: "Q";
    height: 60px;
    width: 60px;
    color: #CFA038;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #CFA038;
    border-radius: 100px;
  }

  h3 {
    font-size: 24px;
    font-weight: 600;
    color: #CFA038;
  }

  p {
    font-size: 20px;
    font-weight: 500;
  }
}

@media (max-width: 780px) {
  .qa {
    padding: 5px 25px 25px 80px;

    &::before {
      height: 60px;
      width: 60px;
      font-size: 30px;
      line-height: 50px;
    }

    h3 {
      font-size: 32px;
    }

    p {
      font-size: 25px;
    }
  }
}

.access-wrap {
  max-width: 900px;
  padding: 0 30px;
  margin: auto;
  background: #75736E;
}

.access-table {
  width: 100%;
  color: #fff;

  tr:not(:last-child) {
    border-bottom: 1px solid #E9D189;
  }

  th,
  td {
    padding: 30px 0;
    vertical-align: top;
  }

  th {
    font-size: 24px;
    font-weight: bold;
  }

  td {
    font-size: 20px;
  }
}

.map {
  display: block;
  width: 100%;
  max-width: 900px;
  height: 300px;
  margin: auto;
}

@media (max-width: 780px) {

  .access-table {

    th,
    td {
      display: block;
      width: 100%;
    }

    th {
      padding-bottom: 0;
      font-size: 40px;
    }

    td {
      padding-top: 0;
      font-size: 32px;
    }
  }

  .map {
    height: 400px;
  }
}

.h3-gold {
  margin: 60px 0 30px;
  padding-bottom: 25px;
  position: relative;
  color: #CFA038;
  font-size: 44px;
  text-align: center;
  letter-spacing: .1em;
  line-height: 1;

  .small {
    font-size: 32px;
  }
}

.h3-gold::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 200px;
  height: 1px;
  margin: auto;
  background-color: #CFA038;
}

.pp {
  overflow: auto;
  max-height: 500px;
  max-width: 1200px;
  margin: auto;
  padding: 50px 40px;
  background: #75736E;
  color: #fff;

  table {
    th {
      width: 310px;
      padding: 10px 20px 10px 0;
      vertical-align: top;
    }

    td {
      padding: 10px;
    }
  }

  .box {
    padding: 1em;
    margin: 1em 0;
    border: 1px solid #fff;
  }
}

@media (max-width: 780px) {
  .pp {
    padding: 20px;
    font-size: 25px;

    table {

      th,
      td {
        display: block;
        width: 100%;
        padding: 10px;
      }

      th {
        padding-bottom: 0;
        font-size: 28px;
        font-weight: bold;
      }

      td {
        padding-top: 0;
        font-size: 25px;
      }
    }
  }
}

.footer {
  padding-top: 30px;
  background: #625F57;
  text-align: center;

  .logo {
    height: 76px;
  }

  a {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 20px;
    text-decoration: underline;
  }

  small {
    display: inline-block;
    width: 100%;
    background: #000000;
    font-size: 12px;
    line-height: 3;
  }
}

@media (max-width: 780px) {
  .footer {
    width: 780px;

    .logo {
      height: 90px;
    }

    a {
      font-size: 40px;
    }

    small {
      font-size: 20px;
    }
  }
}