@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --black: #101921;
  --yellow: #fff100;
  --blue: #00aeba;
  --red: #ea535e;
  --green: #8fc43d;
  --purple: #b74b97;
}

html {
  -webkit-text-size-adjust: none;
          text-size-adjust: none;
}

body {
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, figure {
  margin: 0;
}

p {
  margin: 0;
}

a:not([class]) {
  color: currentColor;
  text-decoration: none;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

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

.c_inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 94%;
}
@media screen and (max-width: 767px) {
  .c_inner {
    width: 80%;
  }
}
.c_inner.max_lg {
  max-width: 1500px;
}
@media screen and (max-width: 767px) {
  .c_inner.max_lg {
    width: 90%;
  }
}

.c_ttl {
  margin-bottom: 60px;
}

.c_ttl_ja {
  display: flex;
  align-items: center;
  font-size: 24px;
  letter-spacing: 0.04em;
  gap: 0 14px;
}
.c_ttl_ja::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: currentColor;
}

.c_ttl_en {
  display: block;
  font-size: 52px;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .c_ttl {
    margin-bottom: 40px;
  }
  .c_ttl_ja {
    font-size: 16px;
    gap: 0 12px;
    margin-top: 10px;
  }
  .c_ttl_ja::before {
    width: 34px;
  }
  .c_ttl_en {
    font-size: 32px;
  }
}
.bg01 {
  background: url(../img/bg01.png);
}

.bg02 {
  background: url(../img/bg02.png);
}

.bg_stripe {
  background-color: #2a3640;
  position: relative;
}
.bg_stripe::before {
  content: "";
  display: block;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(90deg, #101921, #101921 5px, transparent 5px, transparent 10px);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
}

.square_icon {
  padding-left: 1.4em;
  position: relative;
}
.square_icon::before {
  content: "";
  border-radius: 4px;
  display: inline-block;
  height: 0.9em;
  width: 0.9em;
  position: absolute;
  left: 0;
  top: 52%;
  translate: 0 -50%;
}
.square_icon.yellow::before {
  background-color: var(--yellow);
}
.square_icon.blue::before {
  background-color: var(--blue);
}
.square_icon.red::before {
  background-color: var(--red);
}
.square_icon.green::before {
  background-color: var(--green);
}
.square_icon.purple::before {
  background-color: var(--purple);
}

.header {
  max-width: 1500px;
  width: 92%;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  transition: transform 0.3s;
  position: relative;
  z-index: 100;
}
.header .logo {
  width: 18%;
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .header .logo {
    width: 40%;
  }
}

.header.fixed {
  position: sticky;
  background: #fff;
  border-radius: 0 0 30px 30px;
  transition: transform 0.3s;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .header.fixed {
    background: transparent;
    border-radius: 0 0 15px 15px;
    padding: 10px 0;
  }
}
.header.fixed .logo {
  scale: 0.8;
}
@media screen and (min-width: 768px) {
  .header.fixed .logo {
    width: 16%;
  }
}

@media screen and (min-width: 768px) {
  .header_hamburger {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header_nav {
    display: none;
  }
}
.header_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 1.2em;
  font-size: clamp(11px, 1.17vw, 15px);
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .header_nav ul {
    flex-direction: column;
  }
}
.header_nav .nav_item {
  color: var(--black);
}
.header_nav .nav_item a {
  color: inherit;
  text-decoration: none;
}
.header_nav .nav_botton {
  background-color: #fff;
  border-radius: 50px;
  border: 2px solid var(--black);
  box-shadow: 0px 3px 0px;
  padding: 12px 20px;
}

@media screen and (max-width: 767px) {
  .header_nav {
    border-radius: 30px 0 0 30px;
    color: #fff;
    height: 100vh;
    padding: 70px 6%;
  }
  .header_nav ul {
    font-size: clamp(13px, 2.67vw, 20px);
  }
  .header_nav .nav_item {
    color: #fff;
  }
  .header_nav .nav_item:last-of-type {
    margin-top: 40px;
  }
  .header_nav .nav_item .nav_botton {
    color: var(--black);
  }
}
.header_hamburger {
  background-color: var(--black);
  border: none;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header_hamburger {
    display: none;
  }
}
.header_hamburger span {
  width: 18px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s;
}
.header_hamburger span:nth-of-type(1) {
  margin: 3px 0;
}
.header_hamburger span:nth-of-type(2) {
  margin: 3px 0;
}

.header_hamburger.active {
  position: relative;
  z-index: 200;
}
.header_hamburger.active span {
  position: absolute;
  transition: transform 0.3s;
}
.header_hamburger.active span:nth-of-type(1) {
  transform: rotate(45deg);
}
.header_hamburger.active span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.header_hamburger.active + .header_nav {
  color: #fff;
  display: block;
  position: fixed;
  right: -4.4%;
  top: 0;
  width: 60%;
  background: var(--black);
}

.fv_item .fv_pic {
  border-radius: 8px;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv_item .fv_pic {
    border-radius: 4px;
  }
}
.fv_item .fv_pic img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .fv_item .fv_pic img {
    border-radius: 4px;
  }
}
.fv_item.item_text_img {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.fv_item.item_text_img .fv_pic {
  height: 100%;
  width: calc(95% - 4.6vw);
  overflow: hidden;
}
@media screen and (min-width: 1600px) {
  .fv_item.item_text_img .fv_pic {
    width: calc(95% - 74px);
  }
}
@media screen and (max-width: 767px) {
  .fv_item.item_text_img .fv_pic {
    width: calc(95% - 9.5vw);
  }
}
.fv_item.item_text_img .fv_pic img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.fv_item.item_text_img .fv_text_img {
  width: 4.6vw;
  max-width: 74px;
}
@media screen and (max-width: 767px) {
  .fv_item.item_text_img .fv_text_img {
    width: 9.5vw;
  }
}
@media screen and (max-width: 767px) {
  .fv_item.sp_row {
    flex-direction: column;
    gap: 2vw;
  }
  .fv_item.sp_row .fv_pic {
    width: 100%;
  }
}

.fv .container {
  height: clamp(400px, 49.34vw, 740px);
  display: grid;
  grid-template-columns: 0.9fr 0.5fr 0.75fr 1.05fr;
  grid-template-rows: 1.3fr 1.2fr 0.1fr 2.2fr 0.6fr 0.9fr;
  gap: 20px 20px;
}
@media screen and (min-width: 768px) {
  .fv .container {
    grid-template-areas: "a c d f" "a e e f" "a e e g" "b e e g" "b h h h" "b h h h";
  }
}
.fv .area_a {
  grid-area: a;
}
.fv .area_b {
  grid-area: b;
  position: relative;
}
.fv .area_b .illust {
  position: absolute;
  bottom: 0;
  left: 4%;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .fv .area_b .illust {
    display: none;
  }
}
.fv .area_c {
  grid-area: c;
  overflow: hidden;
}
.fv .area_c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv .area_d {
  grid-area: d;
  display: flex;
  align-items: flex-end;
}
.fv .area_e {
  grid-area: e;
  overflow: hidden;
}
.fv .area_e img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.fv .area_f {
  grid-area: f;
}
.fv .area_g {
  grid-area: g;
}
.fv .area_h {
  grid-area: h;
}
@media screen and (min-width: 768px) {
  .fv .area_h .upper {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.fv .area_h .text1 {
  width: 57%;
}
@media screen and (max-width: 767px) {
  .fv .area_h .text1 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .fv .area_h .text2 {
    width: calc(43% - 10px);
  }
}
.fv .area_h .lower {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .fv .area_h .lower {
    margin-top: 10px;
  }
}
.fv .area_h .text3 {
  width: calc(90% - 20px);
}
.fv .area_h .illust_ball {
  width: 10%;
}

@media screen and (max-width: 767px) {
  .fv .container {
    height: clamp(620px, 157.34vw, 1180px);
    display: grid;
    grid-template-columns: 1.1fr 0.3fr 1.1fr;
    grid-template-rows: 0.8fr 1fr 1.1fr 0.6fr 0.6fr 1.9fr 0.8fr;
    gap: 2vw;
    grid-auto-flow: row;
  }
  .fv .area_a {
    grid-area: 1/1/3/3;
  }
  .fv .area_a .fv_text_img {
    width: 70%;
    max-width: inherit;
  }
  .fv .area_b {
    grid-area: 1/3/3/4;
  }
  .fv .area_b .fv_text_img {
    width: 90%;
    max-width: inherit;
  }
  .fv .area_c {
    grid-area: 3/3/4/4;
  }
  .fv .area_d {
    grid-area: 5/1/6/2;
  }
  .fv .area_g {
    grid-area: 4/2/6/4;
    flex-direction: row-reverse;
  }
  .fv .area_e {
    grid-area: 6/1/7/4;
    display: grid;
    grid-template-columns: 1fr 0.18fr;
    gap: 10px;
  }
  .fv .area_f {
    grid-area: 3/1/5/3;
  }
  .fv .area_f .fv_text_img {
    position: relative;
    top: -11vw;
  }
  .fv .area_h {
    grid-area: 7/1/8/4;
  }
}
.fv_item {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fv_item.show {
  opacity: 1;
}

.sec_news {
  padding-top: 20px;
  margin-bottom: 20px;
}

.news_box {
  background: #fff;
  border-radius: 8px;
  display: flex;
  font-weight: 600;
  align-items: center;
  padding: 20px 60px;
}
.news_box .news_ttl {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news_box .news_ttl::after {
  content: "";
  height: 2em;
  width: 1px;
  display: block;
  background: var(--black);
  margin: 0 60px 0 40px;
}
.news_box .news_ttl .ttl_en {
  width: 60px;
}
.news_box .news_ttl .ttl_ja {
  font-weight: 700;
}
.news_box .news_content p:not(:first-of-type) {
  margin-top: 6px;
}

@media screen and (max-width: 767px) {
  .sec_news {
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .sec_news .c_inner {
    width: 90%;
  }
  .news_box {
    padding: 10px 20px;
  }
  .news_box .news_ttl {
    gap: 0;
  }
  .news_box .news_ttl::after {
    margin: 0 20px;
  }
  .news_box .news_ttl .ttl_en {
    width: 40px;
  }
  .news_box .news_content {
    font-size: 12px;
  }
}
.sec_about .content_wrap {
  position: relative;
}

.about_inner {
  overflow: hidden;
  height: 70%;
  width: 84%;
  max-width: 1200px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.about_text {
  font-feature-settings: inherit;
  letter-spacing: 0.1em;
}
.about_text .emph {
  background-color: #aa051b;
  color: #fff;
}

.about_img_area {
  position: relative;
}

.about_img {
  border-radius: 8px;
  display: block;
}

@media screen and (min-width: 768px) {
  .about_inner {
    display: flex;
    max-height: 560px;
  }
  .about_inner .c_ttl {
    margin-bottom: 1vw;
  }
  .about_inner .c_ttl_ja {
    font-size: clamp(16px, 1.92vw, 24px);
  }
  .about_text_area {
    width: 56%;
  }
  .about_text {
    font-size: clamp(12px, 1.42vw, 18px);
    margin-top: clamp(10px, 3.34vw, 50px);
    line-height: 2.4;
    width: 98%;
    max-width: 596px;
  }
  .about_img_area {
    width: 44%;
  }
  .about_img {
    overflow: hidden;
  }
  .about_img.img1 {
    width: 80%;
    margin-left: auto;
  }
  .about_img.img2 {
    width: 65%;
    margin-right: auto;
    position: relative;
    bottom: 18%;
  }
}
@media screen and (max-width: 1024px) {
  .about_inner .c_ttl_en {
    width: 90%;
  }
  .about_text {
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .about_inner {
    height: 82%;
    width: 80%;
  }
  .about_inner .c_ttl {
    margin-bottom: 1vw;
  }
  .about_img_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    direction: rtl;
    margin-top: 4%;
  }
  .about_text {
    font-size: clamp(14px, 3.74vw, 28px);
    line-height: 1.7;
  }
}
.sec_funpoint {
  padding: 140px 0 120px;
}
@media screen and (max-width: 767px) {
  .sec_funpoint {
    padding: 100px 0 80px;
  }
}
.sec_funpoint .c_ttl_en {
  width: 7.4em;
}
@media screen and (min-width: 768px) {
  .sec_funpoint .ttl_wrap {
    display: flex;
    gap: 0 13vw;
  }
}

.funpoint_subttl {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .funpoint_subttl {
    font-size: clamp(30px, 3.84vw, 46px);
  }
}
@media screen and (max-width: 767px) {
  .funpoint_subttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.funpoint_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
@media screen and (max-width: 767px) {
  .funpoint_list {
    grid-template-columns: 1fr;
  }
}

.funpoint_item .img_wrap {
  border-radius: 8px;
  overflow: hidden;
}
.funpoint_item .ttl {
  font-size: clamp(22px, 2.92vw, 35px);
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 20px 0;
  padding-left: 1.2em;
}
@media screen and (max-width: 767px) {
  .funpoint_item .ttl {
    font-size: clamp(22px, 6.54vw, 49px);
    margin: 20px 0 16px;
  }
}
.funpoint_item .ttl::before {
  border-radius: 8px;
  width: 0.8em;
  height: 0.8em;
  top: inherit;
  bottom: 4%;
  translate: 0;
}
.funpoint_item .ttl.point1 {
  width: 8.6em;
}
.funpoint_item .ttl.point2 {
  width: 8.8em;
}
.funpoint_item .ttl.point3 {
  width: 7.3em;
}
.funpoint_item .text {
  letter-spacing: 0.08em;
}



.funpoint_list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}
@media screen and (max-width: 767px) {
  .funpoint_list2 {
    grid-template-columns: 1fr;
  }
}

.funpoint_item2 .img_wrap {
  border-radius: 8px;
  overflow: hidden;
}
.funpoint_item2 .ttl {
  font-size: clamp(22px, 2.92vw, 35px);
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 20px 0;
  padding-left: 1.2em;
}
@media screen and (max-width: 767px) {
  .funpoint_item2 .ttl {
    font-size: clamp(22px, 6.54vw, 49px);
    margin: 20px 0 16px;
  }
}
.funpoint_item2 .ttl::before {
  border-radius: 8px;
  width: 0.8em;
  height: 0.8em;
  top: inherit;
  bottom: 4%;
  translate: 0;
}
.funpoint_item2 .ttl.point1 {
  width: 8.6em;
}
.funpoint_item2 .ttl.point2 {
  width: 8.8em;
}
.funpoint_item2 .ttl.point3 {
  width: 7.3em;
}
.funpoint_item2 .text {
  letter-spacing: 0.08em;
}




.sec_howtoplay {
  padding: 110px 0 140px;
}
@media screen and (max-width: 767px) {
  .sec_howtoplay {
    padding: 80px 0;
  }
}
.sec_howtoplay .c_ttl_en {
  width: 8em;
}

.howtoplay_lead {
  font-size: 34px;
  font-weight: 800;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  line-height: 1.6;
  position: relative;
  margin-top: -10px;
}
@media screen and (min-width: 768px) {
  .howtoplay_lead {
    width: fit-content;
  }
}
@media screen and (max-width: 767px) {
  .howtoplay_lead {
    font-size: 5.07vw;
  }
}
@media screen and (min-width: 768px) {
  .howtoplay_lead .illust {
    position: absolute;
    right: 5em;
    top: -205px;
  }
}
@media screen and (max-width: 1000px) {
  .howtoplay_lead .illust {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .howtoplay_lead .illust {
    float: right;
    padding-top: 30px;
    width: 30%;
  }
}

.howtoplay_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.67vw, 30px);
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .howtoplay_list {
    max-width: 400px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.howtoplay_list li {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  text-align: center;
}
.howtoplay_list .num {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1;
  height: clamp(30px, 5vw, 60px);
  width: clamp(30px, 5vw, 60px);
}
@media screen and (max-width: 767px) {
  .howtoplay_list .num {
    height: clamp(30px, 17.34vw, 100px);
    width: clamp(30px, 17.34vw, 100px);
  }
}
.howtoplay_list .num.yellow {
  background-color: var(--yellow);
}
.howtoplay_list .num.blue {
  background-color: var(--blue);
}
.howtoplay_list .num.red {
  background-color: var(--red);
}
.howtoplay_list .num.green {
  background-color: var(--green);
}
.howtoplay_list .cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 86%;
  height: 70%;
  margin: 20% auto 10%;
}
.howtoplay_list .text_img {
  font-size: 16px;
}
.howtoplay_list .text_img.rental {
  width: 4em;
}
.howtoplay_list .text_img.putt {
  width: 2.6em;
}
.howtoplay_list .text_img.drink {
  width: 8em;
}
.howtoplay_list .text_img.photo {
  width: 8em;
}
.howtoplay_list .main_img {
  height: 5vw;
}
@media screen and (max-width: 767px) {
  .howtoplay_list .main_img {
    height: 17vw;
  }
}
.howtoplay_list .text {
  font-weight: 700;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .howtoplay_list .text {
    font-size: clamp(11px, 1.25vw, 16px);
  }
}

.sec_gallery {
  padding: 120px 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_gallery {
    padding: 60px 0 0;
  }
}
.sec_gallery .bg01 {
  height: 62%;
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .sec_gallery .bg01 {
    height: 45%;
  }
}
.sec_gallery .bg_stripe {
  border-radius: 0 50px 50px 0;
  width: 80%;
  height: 78%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec_gallery .bg_stripe {
    height: 90%;
    border-radius: 0 30px 30px 0;
  }
}
.sec_gallery .c_inner {
  position: relative;
  z-index: 2;
}
.sec_gallery .c_ttl {
  margin: 0;
  position: relative;
  z-index: 2;
}
.sec_gallery .c_ttl_en {
  width: 13em;
}

.photo_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -50px;
}
@media screen and (max-width: 767px) {
  .photo_gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: -26px;
  }
}
.photo_gallery .gallery_item {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .photo_gallery .gallery_item {
    border-radius: 4px;
  }
}
.photo_gallery .gallery_item .first_pic {
  cursor: pointer;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.photo_gallery .gallery_item .first_pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s;
}
.photo_gallery .gallery_item .first_pic:hover img {
  scale: 1.1;
  transition: scale 0.3s;
}

.sec_price {
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .sec_price {
    padding: 80px 0;
  }
}
.sec_price .c_ttl_en {
  width: 3.3em;
}

.price_list {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 2.5vw, 30px);
}
@media screen and (max-width: 767px) {
  .price_list {
    flex-direction: column;
    gap: 30px;
  }
}

.price_list_box {
  background: #fff;
  border-radius: 8px;
  flex: 1;
  padding: clamp(10px, 3vw, 36px) clamp(10px, 3vw, 40px);
}
@media screen and (max-width: 767px) {
  .price_list_box {
    padding: 20px 20px;
    width: 100%;
  }
}

.price_list_ttl {
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .price_list_ttl {
    font-size: 17px;
  }
}

.price_item {
  background-color: #f9f5f0;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 14px;
  padding: 14px 20px;
}
.price_item .detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(12px, 1.25vw, 16px);
}
.price_item .numwrap {
  display: block;
  margin-left: auto;
}
.price_item .num {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.34vw, 30px);
  letter-spacing: 0;
  display: inline-block;
  vertical-align: text-bottom;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .price_item .num {
    font-size: 24px;
  }
}
.price_item .line_version {
  color: var(--red);
  background-image: radial-gradient(circle, rgba(39, 41, 42, 0.5) 1px, transparent 1px);
  background-repeat: repeat-x;
  background-size: 6px 2px;
  background-position: left top;
  margin-top: 14px;
  padding-top: 14px;
}

.price_note {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 1em;
  font-size: 14px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .price_note {
    gap: 0 1em;
  }
}
.price_note .full {
  width: 100%;
}

.sec_menu {
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .sec_menu {
    padding: 80px 0;
  }
}
.sec_menu .c_ttl_en {
  width: 8em;
}
.sec_menu .note {
  font-weight: 600;
  letter-spacing: 0.04em;
}
.sec_menu .menu_list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .sec_menu .menu_list {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
}
.sec_menu .menu_link {
  display: block;
  position: relative;
}
.sec_menu .menu_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  z-index: -1;
}
.sec_menu .menu_link::after {
  content: "PDFを見る";
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  visibility: hidden;
}
.sec_menu .menu_link:hover::before {
  background: var(--black);
  opacity: 0.7;
  z-index: 1;
}
.sec_menu .menu_link:hover::after {
  visibility: visible;
  z-index: 2;
}

.sec_faq {
  padding: 120px 0 170px;
}
@media screen and (max-width: 767px) {
  .sec_faq {
    padding: 80px 0 130px;
  }
}
.sec_faq .c_ttl_en {
  width: 3.3em;
}

.faq_list_sec:not(:first-of-type) {
  margin-top: 40px;
}

.faq_list_ttl {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .faq_list_ttl {
    font-size: 16px;
  }
}

.faq_item {
  background-color: #fff;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 8px;
  padding: 26px 26px 0;
}
.faq_item .icon_qa {
  padding-top: 0.5em;
  width: 1.5em;
}

.faq_q, .faq_a {
  display: grid;
  align-items: flex-start;
}

.faq_q {
  cursor: pointer;
  grid-template-columns: 2.2em 1fr min-content;
  padding-bottom: 26px;
}
.faq_q::after {
  content: "";
  background: url(../img/arrow.svg) no-repeat center/contain;
  height: 15px;
  width: 13px;
  align-self: center;
  margin-left: 2px;
}

.faq_a {
  background-image: radial-gradient(circle, rgba(39, 41, 42, 0.4) 1px, transparent 1px);
  background-repeat: repeat-x;
  background-size: 6px 2px;
  background-position: left top;
  grid-template-columns: 2.2em auto;
  padding: 26px 0;
}

details.faq_item::details-content {
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
  height: 0;
  opacity: 0;
  overflow: clip;
}

details.faq_item[open]::details-content {
  opacity: 1;
}
details.faq_item[open] .faq_q::after {
  background: var(--black) no-repeat center/contain;
  border-radius: 1px;
  height: 2px;
  width: 12px;
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords; /* height:0（数値型） → auto（文字型） のアニメーションを可能にするための指定 */
  }
  details[open]::details-content {
    height: auto;
  }
}
/* height:0→autoへのアニメーションが対応していない場合は */
@supports not (interpolate-size: allow-keywords) {
  details[open]::details-content {
    height: 90px;
    overflow-y: scroll;
  }
}
@media screen and (min-width: 900px) {
  .sec_faq .content_wrap {
    display: flex;
  }
  .sec_faq .c_ttl {
    width: 30%;
  }
  .sec_faq .faq_list {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .faq_item {
    padding: 18px 18px 0;
  }
  .faq_q {
    padding-bottom: 18px;
  }
  .faq_a {
    padding: 18px 0;
  }
}
.sec_access {
  border-radius: 50px;
  color: #fff;
  overflow: hidden;
  padding: 100px 0 120px;
  margin-top: -50px;
}
@media screen and (max-width: 767px) {
  .sec_access {
    border-radius: 30px;
    padding: 60px 0 80px;
  }
}
.sec_access .content_wrap {
  position: relative;
}
.sec_access .c_ttl_en {
  width: 5em;
}

.access_table {
  letter-spacing: 0.05em;
  line-height: 1.6;
  display: grid;
  grid-template-columns: calc(3em + 18px) 1fr;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-repeat: repeat-x;
  background-size: 6px 2px;
  background-position: left bottom;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .access_table {
    grid-template-columns: 3em 1fr;
  }
}
.access_table dt, .access_table dd {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-repeat: repeat-x;
  background-size: 6px 2px;
  background-position: left top;
  margin: 0;
  padding: 25px 0px;
}
.access_table dt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .access_table dt {
    font-size: 18px;
    padding-left: 20px;
  }
}
.access_table dd {
  font-weight: 600;
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .access_table dd {
    padding-left: 40px;
  }
}

.access_map {
  height: 400px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .access_map {
    height: clamp(300px, 66.67vw, 500px);
  }
}
.access_map iframe {
  border-radius: 50px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .access_map iframe {
    border-radius: 30px;
  }
}

footer {
  background-color: var(--black);
  color: #fff;
  padding: 200px 0 50px;
  margin-top: -50px;
}

.footer_inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px 90px;
}

.footer_item_wrap {
  display: flex;
  gap: 0 60px;
}

.footer_item {
  font-size: 13px;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 26px;
}
.footer_item::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.footer_item .item_ttl {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 10px;
}

.copyright {
  display: block;
  font-size: 12px;
  max-width: 1500px;
  margin: 120px auto 0;
  width: 86%;
  text-align: right;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 110px 0;
  }
  .footer_inner, .footer_item_wrap {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .footer_inner {
    justify-content: center;
  }
  .footer_item {
    padding: 30px 0;
  }
  .footer_item::before {
    width: 100%;
    height: 1px;
  }
  .footer_item .item_ttl {
    font-size: 13px;
  }
  .copyright {
    margin-top: 50px;
    text-align: center;
  }
}
.fade_up {
  opacity: 0;
  transform: translateY(30px);
}
.fade_up.active {
  animation: fadeUp 0.3s 0.5s ease-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_scale_in {
  opacity: 0;
  scale: 1.1;
}
.fade_scale_in.active {
  opacity: 1;
  scale: 1;
  transition: 0.3s ease-in;
}

.slide_in {
  transform: translateX(-100%);
}
.slide_in.active {
  animation: slideIn 0.3s 0.5s ease-out forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide_in-down {
  opacity: 0;
  transform: scale(1, 0);
  transform-origin: top;
  transition: opacity 0.3s;
}
.slide_in-down.active {
  animation: slideInDown 0.8s 0.3s ease-out forwards;
  opacity: 1;
  transition: opacity 0.3s;
}
.slide_in-down .fade_up {
  animation-delay: 1s;
}

@keyframes slideInDown {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}/*# sourceMappingURL=style.css.map */


.sns-btn {
display: flex;
width: 30px;
}

div.vid_contents {
width: 100%;/*背景色を横幅いっぱいに広げる*/
text-align: center;
margin: auto;
padding-bottom:50px;
}
video.vid_main {
width: 100%;
max-width: 1200px;/*PC版での最大幅*/
}