@charset "UTF-8";
@import url(normalize.css);
@import url(lightbox.css);
@import url(slick.css);

html {
  scroll-behavior: smooth;
}

*,
::before,
::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

body {
  background-color: #4D4D4D;
  margin: 0 auto;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.w-container {
  margin: 0 auto;
  width: 91.7%;
  max-width: 1760px;
}

.sp {
  display: none;
}

.pc {
  display: inline-block;
}

.flex-wrap {
  display: flex;
  margin: 0 auto;
}

.d-icon {
  background-image: url("../image/d-icon.svg");
  background-repeat: no-repeat;
  background-position: left 0;
  line-height: 1.4;
  padding-left: 40px;
}

.btn a {
  background: #eee;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  margin-top: 60px;
  max-width: 350px;
  padding: 1.1rem 3rem 0.8rem 2rem;
  border: #4D4D4D 1px solid;
  color: #1a1a1a;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1.8rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.btn a:hover {
  background: #4D4D4D;
  color: #FFF;
}

.btn a:hover:after {
  right: 0.8rem;
}

@media screen and (max-width: 999px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .flex-wrap {
    flex-direction: column;
    align-items: center;
  }

  .btn a {
    max-width: 320px;
  }
}

header {
  height: 120px;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}

header h1 {
  width: 38%;
  max-width: 325px;
  height: auto;
  margin-left: 2%;
  margin-top: 25px;
}

header img {
  -o-object-fit: cover;
  object-fit: cover;
}

header .g-nav {
  width: 35%;
  margin-left: 5%;
}

header .g-nav a {
  color: white;
  position: relative;
}

header .g-nav a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

header .g-nav a:hover::after {
  transform: scale(1, 1.1);
}

header .g-nav ul {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: baseline;
  gap: 10%;
  font-size: clamp(1rem, 0.321rem + 1.09vw, 1.625rem);
}

header .g-nav ul li {
  list-style: none;
  margin-top: 60px;
}

header .icon {
  margin-right: 2%;
  margin-left: 2%;
  margin-top: 25px;
  display: flex;
  gap: 2%;
  align-items: center;
  width: 30%;
  max-width: 350px;
}

@media screen and (max-width: 999px) {
  header h1 {
    width: 50%;
  }

  header .g-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
  }

  header .g-nav ul {
    gap: 0;
    background-color: rgba(0, 0, 0, 0.9);
  }

  header .g-nav ul li {
    list-style: none;
    margin-top: 0;
    width: auto;
    height: 70px;
    border-right: white 1px solid;
    flex: 1;
    position: relative;
  }

  header .g-nav ul li:last-child {
    border-right: none;
  }

  header .g-nav ul li a {
    position: absolute;
    text-align: center;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  header .icon {
    width: 40%;
    gap: 4%;
  }
}

main {
  font-size: clamp(1rem, 0.321rem + 1.09vw, 1.625rem);
}

main section {
  margin-bottom: 3.65vw;
}

main article {
  width: 100%;
  max-width: 1760px;
  margin-bottom: 70px;
  padding: 80px 0;
  background-color: white;
}

main h2 {
  background-color: #4D4D4D;
  margin: 0 auto 60px auto;
  height: 60px;
  width: 91%;
  text-align: center;
  font-size: 30px;
  line-height: 2.2;
  color: white;
}

main .slider_item {
  margin: 2vw 0 2.5vw 0;
}

main .slider_item img {
  width: 100%;
  height: auto;
  height: 31.25vw;
  max-height: 620px;
  -o-object-fit: cover;
  object-fit: cover;
}

main .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1rem;
  color: white;
  padding-left: 0;
  margin: 1.68rem 0;
}

main .breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em;
  color: white;
}

main .breadcrumb a {
  color: white;
}

main .area1 img {
  display: block;
  width: 20.83vw;
  min-width: 300px;
  margin: 0 auto;
}

main .area1 .img-wrap {
  width: 100%;
  grid-area: img;
}

main .area1 .flex-wrap {
  width: 91%;
  margin: 0 auto;
  gap: 5%;
}

main .area1 ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  height: 425px;
  grid-area: text;
}

main .area1 li {
  list-style: none;
  background-image: url("../image/d-icon.svg");
  background-repeat: no-repeat;
  background-position: left 0;
  line-height: 1.4;
  padding-left: 40px;
  margin-bottom: 1rem;
  /* margin-left: 20px; */
}

main .area1 .grid-area {
  display: grid;
  width: 91%;
  height: auto;
  margin: 0 auto;
  grid-template-areas:
    "img text text"
    "img btn btn";
}

main .area1 .grid-area p {
  grid-area: btn;
}

@media screen and (max-width: 1300px) {
  main .area1 ul {
    flex-wrap: nowrap;
    height: auto;
    margin-left: 100px;
  }


  main .area1 .flex-wrap {
    width: 80%;
    margin: 0 auto;
    gap: 5%;
    justify-content: space-between;
  }

  main .area1 li {
    margin-left: 0px;
  }
}

@media screen and (max-width: 999px) {
  main .area1 ul {
    margin: 0 auto;
    max-width: 450px;
  }

  main .area1 .flex-wrap {
    align-items: center;
  }

  main .area1 .flex-wrap img {
    margin-bottom: 2rem;
  }

  main .area1 .img-wrap {
    width: 100%;
    text-align: center;
  }

  main .area1 .grid-area {
    display: block;
  }

  main .area1 .grid-area img {
    margin-bottom: 2rem;
  }

}

main .area2 .flex-wrap {
  width: 91%;
  margin: 0 auto;
  gap: 5%;
}

main .area2 .flex-wrap>p {
  width: 50%;
}

@media screen and (max-width: 999px) {
  main .area2 .flex-wrap {
    align-items: center;
  }

  main .area2 .flex-wrap>p {
    width: 100%;
  }

  main .area2 .img-wrap.area2 {
    margin-top: 1rem;
  }
}

main .area3 {
  padding-top: 125px;
}

main .area3 p {
  width: 91%;
  margin: 0 auto;
  font-size: 26px;
}

main .area3 ul {
  width: 91%;
  margin: 0 auto 60px auto;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0px 50px;
  justify-content: space-around;
}

main .area3 li {
  flex: 0 0 30%;
}

@media screen and (max-width: 999px) {
  main .area3 ul {
    flex-direction: column;
  }
}

main .area3 a {
  font-size: 26px;
}

#footer {
  background-color: #1a1a1a;
  width: 100%;
  height: 120px;
  text-align: center;
  color: white;
  padding: 1rem;
  margin-top: auto;
}

#footer .footer-nav {
  font-size: clamp(1rem, 0.321rem + 1.09vw, 1.625rem);
}

#footer .footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 4rem;
  align-items: center;
  list-style: none;
  height: 70px;
}

#footer .footer-nav a {
  color: white;
  position: relative;
}

#footer .footer-nav a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

#footer .footer-nav a:hover::after {
  transform: scale(1, 1.1);
}

#footer .copylight {
  font-size: 22px;
}

@media screen and (max-width: 999px) {
  #footer {
    height: auto;
    margin-bottom: 70px;
  }

  #footer .footer-nav ul {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  #footer .copylight {
    font-size: 1rem;
  }
}

/* topページおわり
------------------*/
#lease ul,
#lease li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#lease .area1 h2 {
  font-size: 2rem;
  line-height: 2;
  font-weight: 400;
}

#lease .area1 .flex-wrap {
  width: 80%;
  justify-content: space-between;
  align-items: center;
}

#lease .area1 .flex-wrap>.text {
  width: 50%;
}

#lease .area1 .flex-wrap.img-wrap {
  width: 50%;
  gap: 0;
}

#lease .area1 .flex-wrap.img-wrap a {
  width: 50%;
}

#lease .area1 .flex-wrap.no-col {
  flex-direction: row;
  width: 90%;
}

#lease .area1 .img-wrap {
  width: 30%;
  text-align: center;
}

#lease .area1 .img-wrap img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: none;
}

#lease .area1 .img-wrap.icon img {
  width: 85%;
  margin-right: 10%;
  margin-left: 5%;
}

#lease .area1 ul {
  flex-wrap: nowrap;
  height: auto;
  width: 100%;
}

#lease .area1 li {
  background-image: none;
  margin-bottom: 1rem;
}

#lease .area1 li:first-child {
  color: #ED1C24;
  font-size: clamp(1.7rem, 1.082rem + 1.67vw, 3.15rem);
  font-weight: 600;
  text-align: center;
}

#lease .area1 dl.left {
  width: 40%;
  margin-left: 15%;
}

#lease .area1 dl.right {
  width: 52%;
  margin-right: 10%;
}

#lease .area1 .text1 {
  width: 80%;
  margin: 0 auto;
  line-height: 1;
}

#lease .area1 dt {
  margin: 0 0 1rem 0;
}

#lease .area1 dt.img-wrap {
  width: 100%;
  height: auto;
}

#lease .area1 dd {
  margin: 0 0 3rem 0;
}

#lease .area1 dd:not(.btn, .text1 > dd) {
  font-size: clamp(1.1rem, 0.655rem + 1.5vw, 2.25rem);
  margin: 0 0 1rem 0;
  text-align: center;
}

@media screen and (max-width: 999px) {
  #lease .area1 h2 {
    font-size: 1.2rem;
    line-height: 2.8;
  }

  #lease .area1 .flex-wrap {
    flex-direction: column-reverse;
  }

  #lease .area1 .flex-wrap>.text {
    width: 90%;
  }

  #lease .area1 .flex-wrap.img-wrap {
    flex-direction: row;
    width: 80%;
  }

  #lease .area1 .flex-wrap.no-col {
    flex-direction: row;
    width: 80%;
  }

  #lease .area1 dl.left {
    width: 55%;
    margin-left: 0%;
  }

  #lease .area1 dl.right {
    width: 60%;
    margin-right: 0%;
  }
}

@media screen and (max-width: 767px) {
  #lease .area1 .flex-wrap.img-wrap {
    flex-direction: column;
    width: 100%;
  }

  #lease .area1 .flex-wrap.no-col {
    flex-direction: column;
    width: 100%;
  }

  #lease .area1 .flex-wrap.no-col.reverse {
    flex-direction: column-reverse;
  }

  #lease .area1 .img-wrap {
    width: 70%;
  }

  #lease .area1 .img-wrap.icon {
    width: 40%;
  }

  #lease .area1 dl.left {
    width: 80%;
    margin-left: 0%;
  }

  #lease .area1 dl.right {
    width: 80%;
    margin-right: 0%;
  }
}

/* leaseページおわり
------------------*/
#contact main p {
  width: 55%;
  margin: 3rem auto;
  line-height: 1.5;
  font-size: clamp(1rem, 0.605rem + 1.83vw, 1.75rem);
}

#contact .line {
  width: 91%;
  margin: auto;
  border-bottom: #4D4D4D 1px solid;
}

#contact .red {
  font-size: 0.9rem;
  color: #ED1C24;
  vertical-align: middle;
}

#contact .btn {
  background: #eee;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 60px;
  max-width: 320px;
  padding: 1rem 3rem;
  border: #4D4D4D 1px solid;
  color: #1a1a1a;
}

#contact .btn:hover {
  background: #4D4D4D;
  color: #FFF;
}

#contact .form-wrap {
  max-width: 900px;
  width: 90%;
  margin: 3rem auto;
}

#contact .form-wrap input:not([type=submit]),
#contact .form-wrap select {
  width: 100%;
  max-width: 600px;
  height: 60px;
}

#contact .form-wrap textarea {
  width: 100%;
  max-width: 600px;
  height: 280px;
}

#contact .form-wrap .textarea {
  height: 330px;
}

#contact .form-wrap table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

#contact .form-wrap table.formTable td {
  height: 90px;
  padding: 10px;
}

#contact .form-wrap table.formTable th {
  width: 30%;
  padding: 10px;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}

@media screen and (max-width: 765px) {
  #contact article {
    padding-bottom: 4rem;
  }

  #contact main p {
    width: 80%;
  }

  #contact table.formTable th,
  #contact table.formTable td {
    width: auto;
    display: block;
  }

  #contact table.formTable th {
    margin-top: 0;
    border-bottom: 0;
  }

  #contact form input[type=text],
  #contact form textarea {
    width: 90%;
    display: block;
  }
}

/* contactページおわり
------------------*/
#tournament h1 {
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
  font-size: clamp(2rem, 1.243rem + 3.51vw, 3.875rem);
}

#tournament .about {
  text-align: center;
}

#tournament .about dt {
  font-size: clamp(1.875rem, 1.623rem + 1.17vw, 2.5rem);
  font-weight: 600;
  margin-top: 2rem;
  margin-left: 0;
}

#tournament .about dt:nth-of-type(2) {
  font-size: clamp(1.975rem, 1.421rem + 2.11vw, 3rem);
}

#tournament .about dd {
  font-weight: 600;
  font-size: clamp(1.45rem, 1.019rem + 1.97vw, 2.25rem);
  line-height: 1.5;
  margin-left: 0;
}

#tournament .red-line {
  width: 100%;
  min-height: 200px;
  text-align: center;
  background-color: #ED1C24;
  display: grid;
  place-content: center;
  padding: 1rem;
}

#tournament .red-line p {
  color: white;
  font-weight: 600;
  font-size: clamp(1rem, 0.729rem + 1.26vw, 1.75rem);
  line-height: 1.5;
}

#tournament ul.flex-wrap {
  list-style: none;
  justify-content: space-evenly;
  width: 80%;
  max-width: 1200px;
  gap: 5px;
}

#tournament ul.flex-wrap li {
  width: 330px;
}

#tournament ul.flex-wrap li a {
  font-size: clamp(1rem, 0.729rem + 0.43vw, 1.25rem);
  white-space: nowrap;
}

#tournament .table {
  background-color: #1a1a1a;
  margin: 3rem auto 0 auto;
  width: 80%;
  max-width: 1200px;
}
#tournament .table.entry{
  width: 90%;
}
#tournament .table caption {
  height: 110px;
  text-align: center;
  background-color: #4D4D4D;
  color: white;
  font-size: clamp(2rem, 1.197rem + 1.4vw, 2.25rem);
  line-height: 3.2;
}

#tournament .table tr {
  background-color: #FFF;
}
  #tournament .table th {
  white-space: nowrap;
  text-align: center;
  padding: 2rem;
  font-size: clamp(1.125rem, 0.795rem + 1.53vw, 1.75rem);
}
#tournament .table.entry th {
  font-weight: 600;
  font-size: clamp(0.6rem, 0.135rem + 1.98vw, 1.375rem);

}
  #tournament .table td {
  padding: 3rem 4rem;
  font-size: clamp(1.125rem, 0.993rem + 0.61vw, 1.375rem);
  line-height: 1;
}
#tournament .table.entry td {
  padding: 0.5rem 0rem;
  font-size: clamp(0.5rem, 0.135rem + 1.28vw, 1.375rem);
  text-align: center;
}
#tournament .table.entry .tb_name {
  white-space: nowrap;
}
  #tournament .table .square {
  display: inline-block;
  margin-top: 4rem;
}
  #tournament .table .line {
  display: inline-block;
  width: 200px;
}

@media screen and (max-width: 999px) {
  #tournament .table {
    background-color: #1a1a1a;
    margin: 3rem auto 0 auto;
    width: 95%;
  }

  #tournament .table caption {
    height: 60px;
    line-height: 2;
  }

  #tournament .table tr {
    background-color: #FFF;
  }

  #tournament .table th {
    padding: 0.8rem;
    font-size: clamp(1.125rem, 0.795rem + 1.53vw, 1.75rem);
    width: 40px;
  }

  #tournament .table th span {
    /*↓縦書きの記述*/
    writing-mode: vertical-rl;
    /*↓縦書きの記述を改行させないための記述*/
    white-space: pre;
    /*↓いるかどうかわからない*/
    display: inline-block;
  }

  #tournament .table td,
  #tournament .table.entry td {
    padding: 0.2rem 0rem;
    line-height: 1.5;
  }

  #tournament .table .square {
    display: inline-block;
    margin-top: 4rem;
  }
}

/*# sourceMappingURL=style.css.map */