@charset "UTF-8";
/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  overflow-y: scroll;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul {
  list-style: none;
  padding-left: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, select, textarea {
  box-sizing: border-box;
}

html {
  /* Sets a specific default `font-size` for user with `rem` type scales.*/
  font-size: 62.5%;
  /* Changes the default tap highlight to be completely transparent in iOS.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #333333;
  line-height: 1.6;
  background: #036eb8;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 1200px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: bold;
}

a:link {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #333333;
  text-decoration: none;
}
a:active {
  color: #333333;
  text-decoration: none;
}

a[href^=tel] {
  color: #333333;
}

:focus-ring {
  outline: none;
}

.blue {
  color: #036eb8;
}

/* input */
input, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  -o-border-image: none;
     border-image: none;
  background: transparent;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #333333;
}

input:placeholder-shown, textarea:placeholder-shown {
  color: #333333;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #333333;
}
input::placeholder, textarea::placeholder {
  color: #333333;
}
input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: #333333;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #333333;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #333333;
}
input:focus::placeholder, textarea:focus::placeholder {
  color: #333333;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-footer
================================= */
.l-footer {
  background: #fff;
  padding-block: 40px;
  text-align: center;
  color: #878787;
  font-family: "Josefin Sans", sans-serif;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-content__size
================================= */
.l-content__size-sp-1 {
  padding: 0 4%;
}
@media screen and (min-width: 1025px) {
  .l-content__size-sp-1 {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.l-content__size-pc-1 {
  width: 1200px;
  margin: 0 auto;
  padding-inline: 50px;
}
@media screen and (max-width: 768px) {
  .l-content__size-pc-1 {
    width: auto;
    padding: 0 calc(30 /750*100vw);
  }
}

/* =================================
 l-header
================================= */
.l-header {
  z-index: 999;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .l-header {
    display: none;
  }
}
.l-header__top {
  display: flex;
  justify-content: space-between;
  padding: 23px 30px 19px;
}
.l-header__top-left {
  display: flex;
  align-items: center;
}
.l-header__logo-wrap a {
  display: flex;
  align-items: center;
}
.l-header__logo-txt {
  font-size: 2rem;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #120489;
  margin-left: 15px;
}
.l-header__line a {
  border: 3px solid #06c755;
  background: linear-gradient(to bottom, #06c755, #01b74b);
  box-shadow: 0px 5px 10px 0px rgba(6, 199, 85, 0.3);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  border-radius: 10px;
  position: relative;
  width: 320px;
  height: 60px;
  padding-left: 16px;
  transition: 0.2s background;
}
.l-header__line a:hover {
  background: linear-gradient(to top, #06c755, #01b74b);
}
.l-header__line-balloon {
  position: absolute;
  top: -13px;
  left: 50%;
  background: #fff;
  border: 3px solid #06c755;
  border-radius: 13px;
  margin-left: -60px;
  color: #01c74b;
  width: 120px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.l-header__line-flex {
  display: flex;
  align-items: center;
}
.l-header__line-flex i {
  margin-right: 23px;
}
.l-header__bottom {
  background: rgba(234, 246, 255, 0.8);
  position: relative;
  z-index: 1;
}
.l-header__nav {
  display: flex;
  justify-content: center;
  margin-inline: -30px;
}
.l-header__nav a {
  height: 60px;
  display: flex;
  align-items: center;
  padding-inline: 25px;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.2s color;
}
.l-header__nav a:hover {
  color: #036eb8;
}
.l-header__nav-active a {
  background: rgba(0, 150, 255, 0.7);
  color: #fff;
  transition: 0.2s background;
}
.l-header__nav-active a:hover {
  background: rgba(0, 150, 255, 0.5);
  color: #fff;
}

/* =================================
 l-header__sp
================================= */
.l-header__sp {
  z-index: 999;
  display: none;
  position: relative;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .l-header__sp {
    display: block;
  }
}
.l-header__sp-top {
  height: calc(120 /750*100vw);
  display: flex;
  align-items: center;
}
.l-header__sp-logo {
  width: calc(234 /750*100vw);
}
.l-header__sp-logo-wrap a {
  display: flex;
  align-items: center;
  margin-left: calc(30 /750*100vw);
}
.l-header__sp-logo-txt {
  font-size: 1.4rem;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #120489;
  margin-left: 15px;
}
.l-header__sp-toggle {
  position: relative;
  cursor: pointer;
  width: calc(120 /750*100vw);
  height: calc(120 /750*100vw);
  background: #49cae2;
}
.l-header__sp-toggle-wrap {
  position: absolute;
  top: 0;
  right: 0;
}
.l-header__sp-toggle span {
  width: calc(50 /750*100vw);
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: 10px;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
@media screen and (max-width: 768px) {
  .l-header__sp-toggle span {
    left: calc(35 /750*100vw);
  }
}
.l-header__sp-toggle span:nth-of-type(1) {
  top: calc(44 /750*100vw);
}
.l-header__sp-toggle span:nth-of-type(2) {
  top: calc(59 /750*100vw);
}
.l-header__sp-toggle span:nth-of-type(3) {
  top: calc(74 /750*100vw);
}
.l-header__sp-bottom {
  background: #d4f0f5;
  padding-block: calc(20 /750*100vw);
}
.l-header__sp-txt {
  font-size: calc(26 /750*100vw);
  font-weight: 500;
  text-align: center;
}
.l-header__sp.active {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}
.l-header__sp.active .l-header__sp-toggle span:nth-of-type(1) {
  top: calc(59 /750*100vw);
  transform: rotate(45deg);
}
.l-header__sp.active .l-header__sp-toggle span:nth-of-type(2) {
  top: calc(59 /750*100vw);
  width: 0;
  left: 50%;
}
.l-header__sp.active .l-header__sp-toggle span:nth-of-type(3) {
  top: calc(59 /750*100vw);
  transform: rotate(-45deg);
}

/* =================================
 l-menu__sp
================================= */
.l-menu__sp {
  z-index: 998;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100svh;
  overflow-y: auto;
  background: #fff;
  padding-top: calc(264 /750*100vw);
}
.l-menu__sp-nav {
  text-align: center;
  font-size: calc(40 /750*100vw);
  font-weight: 500;
}
.l-menu__sp-nav li {
  margin-bottom: calc(50 /750*100vw);
}
.l-menu__sp-line {
  margin-top: calc(85 /750*100vw);
}
.l-menu__sp-line a {
  border: 3px solid #06c755;
  background: linear-gradient(to bottom, #06c755, #01b74b);
  box-shadow: 0px 5px 10px 0px rgba(6, 199, 85, 0.3);
  color: #fff;
  font-size: calc(30 /750*100vw);
  font-weight: 700;
  display: flex;
  border-radius: calc(10 /750*100vw);
  position: relative;
  width: calc(690 /750*100vw);
  height: calc(110 /750*100vw);
  padding-left: calc(15 /750*100vw);
  margin-inline: auto;
}
.l-menu__sp-line-balloon {
  position: absolute;
  top: calc(-21 /750*100vw);
  left: 50%;
  background: #fff;
  border: 1px solid #06c755;
  border-radius: calc(20 /750*100vw);
  margin-left: calc(-100 /750*100vw);
  color: #01c74b;
  width: calc(200 /750*100vw);
  height: calc(40 /750*100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(26 /750*100vw);
  font-weight: 500;
}
.l-menu__sp-line-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.l-menu__sp-line-flex i {
  position: absolute;
  top: calc(50% - (23 /750*100vw));
  left: calc(50% - (239 /750*100vw));
  width: calc(57 /750*100vw);
}
.l-menu__sp-copy {
  font-size: calc(20 /750*100vw);
  text-align: center;
  color: #9fa0a0;
  margin-top: calc(39 /750*100vw);
  padding-bottom: calc(39 /750*100vw);
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_loader
================================= */
.l_loader {
  z-index: 1000;
}

/* =================================
 l_breadcrumbs
================================= */
/* =================================
 l_main_visual
================================= */
/* =================================
 l_main
================================= */
/* =================================
 l-fixed
================================= */
.l-fixed {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  padding-block: calc(40 /750*100vw) calc(30 /750*100vw);
  display: none;
}
@media screen and (max-width: 768px) {
  .l-fixed {
    display: block;
  }
}
.l-fixed .l-menu__sp-line {
  margin-top: 0;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_side
================================= */
.l_side {
  z-index: 996;
}

.c-btn__submit button, .c-btn__back button {
  width: 400px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #036eb8;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  margin-inline: auto;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-btn__submit button, .c-btn__back button {
    width: 100%;
  }
}
.c-btn__back button {
  background: #ccc;
}

.c-select {
  width: 300px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-select {
    width: 100%;
  }
}
.c-select:after {
  position: absolute;
  top: calc(50% - 14px);
  right: 20px;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  pointer-events: none;
}

.c-flex {
  display: flex;
}

.c-radio {
  margin: 0.5rem 2rem 0.5rem 0.5rem;
}
.c-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.c-radio input[type=radio]:checked + .c-radio__label:before {
  background-color: #036eb8;
  box-shadow: inset 0 0 0 4px #f7f7f7;
}
.c-radio__label {
  font-size: 2rem;
  cursor: pointer;
}
.c-radio__label:before {
  content: "";
  border-radius: 100%;
  border: 1px solid #d3d3d3;
  background: #f7f7f7;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 6px;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(162px);
    opacity: 0;
  }
}
@keyframes scrollSp {
  0% {
    transform: translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(162 /750*100vw));
    opacity: 0;
  }
}
.p-index__mv {
  background: #fff;
  padding-bottom: 50px;
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .p-index__mv {
    padding-bottom: calc(60 /750*100vw);
    margin-bottom: calc(100 /750*100vw);
  }
}
.p-index__mv-top {
  background: url(../img/index/kv01.jpg) center center/cover no-repeat;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-top {
    height: calc(640 /750*100vw);
    background: url(../img/index/sp/kv01.jpg) center center/cover no-repeat;
  }
}
.p-index__mv-top .l-content__size-pc-1 {
  position: relative;
}
.p-index__mv-catch {
  color: #fff;
  text-align: center;
  padding-block: 140px 36px;
  padding-block: 185px 36px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-catch {
    padding-block: calc(270 /750*100vw) calc(35 /750*100vw);
    padding-block: calc(270 /750*100vw) calc(117 /750*100vw);
  }
}
.p-index__mv-catch-ja {
  font-size: 1.6rem;
  margin-bottom: 19px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-catch-ja {
    font-size: calc(28 /750*100vw);
  }
}
.p-index__mv-catch-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-catch-logo {
    width: calc(601 /750*100vw);
    margin-inline: auto;
  }
}
.p-index__mv-catch-en {
  font-size: 3.4rem;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-index__mv-catch-en {
    font-size: calc(50 /750*100vw);
  }
}
.p-index__mv-campaign {
  position: absolute;
  bottom: 0;
  left: 18px;
  color: #036eb8;
  background: rgba(255, 246, 0, 0.9);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-index__mv-campaign {
    position: static;
    bottom: calc(-500 /750*100vw);
    left: calc(40 /750*100vw);
    border-radius: calc(10 /750*100vw);
    width: calc(670 /750*100vw);
    height: inherit;
    display: block;
    text-align: center;
    padding-block: calc(20 /750*100vw);
    margin-top: calc(40 /750*100vw);

    display: none;
  }
}
.p-index__mv-campaign-en {
  font-size: 1.8rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-index__mv-campaign-en {
    font-size: calc(24 /750*100vw);
    margin-bottom: calc(10 /750*100vw);
  }
}
.p-index__mv-campaign-ja {
  font-size: 2.4rem;
  font-weight: 700;
  padding-top: 10px;
  border-top: 1px solid #fff;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-index__mv-campaign-ja {
    font-size: calc(38 /750*100vw);
    border-top: none;
    padding-top: 0;
  }
}
.p-index__mv-img {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-index__mv-img {
    margin-inline: calc(-14 /750*100vw);
  }
}
.p-index__mv-open {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-open {
    display: block;
    margin-top: calc(90 /750*100vw);
  }
}
.p-index__mv-open-date {
  font-size: 5rem;
  font-weight: 700;
  color: #036eb8;
  margin-right: 25px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-index__mv-open-date {
    font-size: calc(60 /750*100vw);
    text-align: center;
    margin-right: 0;
    margin-bottom: calc(35 /750*100vw);
  }
}
.p-index__mv-open-date .num {
  font-size: 8rem;
  font-weight: 600;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-index__mv-open-date .num {
    font-size: calc(90 /750*100vw);
  }
}
.p-index__mv-open-mask {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 9rem;
  font-weight: bold;
  font-style: italic;
  background-image: url(../img/index/bg_kv_txt.jpg);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-index__mv-open-mask {
    margin-inline: calc(-10 /750*100vw);
    font-size: calc(94 /750*100vw);
    display: flex;
    justify-content: center;
  }
}
.p-index__mv-txt {
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__mv-txt {
    font-size: calc(30 /750*100vw);
  }
}
.p-index__mv-txt .blue {
  font-weight: 700;
}
.p-index__mv-bottom-bnr-inner{
  background-image: linear-gradient(90deg, rgb(8,197,254), rgb(0,86,246));
  padding: 20px 0;
  margin-top: 50px;
}
.p-index__mv-start{
  /* margin-top: 40px; */
}
@media screen and (max-width: 768px) {
  .p-index__mv-start{
    margin-top: 0px;
  }
}
.p-index-mv-start-date{
  text-align: center;
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  margin-right: 25px;
  line-height: 1;
  /* letter-spacing: 0.05em; */
}
@media screen and (max-width: 768px) {
  .p-index-mv-start-date {
    font-size: calc(60 /750*100vw);
    margin-right: 0;
    margin-bottom: calc(35 /750*100vw);
  }
}
.p-index-mv-start-date .num {
  font-size: 6rem;
  letter-spacing: -0.05em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-index__mv-open-date .num {
    font-size: calc(90 /750*100vw);
  }
}
.mv-start-span{
  font-size: 4.7rem;
  font-style: oblique;
}
@media screen and (max-width: 768px) {
  .mv-start-span{
    display: block;
    margin-top: 20px;
    font-size: calc(70 / 750 * 100vw);
  }
}
.p-index-mv-start-bottom-text{
  text-align: center;
  color: rgb(0,86,246);
  font-size: 25px;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 20px auto 0 auto;
  background: #fff600;
  border-radius: 50px;
  width: 650px;
}
@media screen and (max-width: 768px) {
  .p-index-mv-start-bottom-text{
    width: 95%;
    font-size: calc(30 / 750 * 100vw);
  }
}
.p-index__ttl {
  font-size: 7rem;
  font-weight: 200;
  font-style: italic;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-index__ttl {
    font-size: calc(80 /750*100vw);
  }
}
.p-index__enjoy {
  background-image: url(../img/index/enjoy01.jpg), linear-gradient(to right, #03539a 50%, #036bb8 50%), linear-gradient(to bottom, transparent 660px, #fff 660px);
  background-position: center 40px, center 40px, center center;
  background-size: auto, auto 620px, auto;
  background-repeat: no-repeat, no-repeat, no-repeat;
  padding-bottom: 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-index__enjoy {
    background-image: url(../img/index/sp/enjoy01.jpg), linear-gradient(to bottom, transparent 660px, #fff 660px);
    background-position: center calc(40 /750*100vw), center center;
    background-size: 100%, auto;
    background-repeat: no-repeat, no-repeat;
    margin-bottom: calc(100 /750*100vw);
  }
}
.p-index__enjoy .p-index__ttl {
  margin-bottom: 56px;
}
.p-index__enjoy-catch {
  color: #00eaff;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-index__enjoy-catch {
    font-size: calc(40 /750*100vw);
    margin-block: calc(530 /750*100vw) calc(40 /750*100vw);
  }
}
.p-index__enjoy-txt {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-index__enjoy-txt {
    font-size: calc(28 /750*100vw);
    margin-bottom: calc(40 /750*100vw);
  }
}
.p-index__enjoy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}
.p-index__enjoy-item {
  width: 530px;
}
@media screen and (max-width: 768px) {
  .p-index__enjoy-item {
    width: 100%;
  }
}
.p-index__enjoy-item-ttl {
  font-size: 1.3rem;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .p-index__enjoy-item-ttl {
    font-size: calc(25 /750*100vw);
    margin-bottom: calc(30 /750*100vw);
  }
}
.p-index__enjoy-item-ttl:before {
  content: "●";
  margin-right: 8px;
}
.p-index__enjoy-item-btn {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-index__enjoy-item-btn {
    margin-bottom: calc(60 /750*100vw);
  }
}
.p-index__enjoy-item-btn a {
  background: #0096ff;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 2.6rem;
  font-weight: 700;
  height: 70px;
  padding-inline: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__enjoy-item-btn a {
    font-size: calc(32 /750*100vw);
    height: calc(100 /750*100vw);
    padding-inline: calc(30 /750*100vw);
  }
}
.p-index__enjoy-item-btn a:before {
  position: absolute;
  right: 30px;
  top: calc(50% - 20px);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .p-index__enjoy-item-btn a:before {
    top: calc(50% - 15px);
  }
}
.p-index__enjoy-item-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.p-index__enjoy-item-img figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .p-index__enjoy-item-img figcaption {
    padding: 10px 20px;
    font-size: 1.6rem;
  }
}
.p-index__enjoy-item-img figcaption:before {
  position: absolute;
  right: 30px;
  bottom: 20px;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .p-index__enjoy-item-img figcaption:before {
    right: 20px;
    bottom: 10px;
  }
}
.p-index__enjoy-item:nth-of-type(1) .p-index__enjoy-item-ttl {
  color: #fff;
}
.p-index__enjoy-item:nth-of-type(1) .p-index__enjoy-item-ttl:before {
  color: #0048dc;
}
.p-index__enjoy-item:nth-of-type(1) .p-index__enjoy-item-img figcaption {
  background: #0048dc;
}
.p-index__enjoy-item:nth-of-type(1):has(.p-index__enjoy-item-btn) .p-index__enjoy-item-ttl:before {
  color: #0096ff;
}
.p-index__enjoy-item:nth-of-type(2) .p-index__enjoy-item-ttl {
  color: #fff;
}
.p-index__enjoy-item:nth-of-type(2) .p-index__enjoy-item-ttl:before {
  color: #00cc6e;
}
.p-index__enjoy-item:nth-of-type(2) .p-index__enjoy-item-img figcaption {
  background: #00cc6e;
}
.p-index__enjoy-item:nth-of-type(3) .p-index__enjoy-item-ttl:before {
  color: #ff4646;
}
.p-index__enjoy-item:nth-of-type(3) .p-index__enjoy-item-img figcaption {
  background: #ff4646;
}
.p-index__enjoy-item:nth-of-type(4) .p-index__enjoy-item-ttl:before {
  color: #ff800f;
}
.p-index__enjoy-item:nth-of-type(4) .p-index__enjoy-item-img figcaption {
  background: #ff800f;
}
.p-index__life {
  background: linear-gradient(to bottom, transparent 100px, #fff 100px);
  padding-bottom: 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-index__life {
    background: linear-gradient(to bottom, transparent calc(150 /750*100vw), #fff calc(150 /750*100vw));
    margin-bottom: calc(100 /750*100vw);
  }
}
.p-index__life .p-index__ttl {
  position: relative;
}
.p-index__life-img {
  margin-top: -30px;
}
.p-index__life-img img {
  width: 100%;
}
.p-index__life-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-index__life-flex {
    display: block;
  }
}
.p-index__life-info-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  color: #036eb8;
  margin-block: 30px;
}
@media screen and (max-width: 768px) {
  .p-index__life-info-ttl {
    font-size: 2.8rem;
  }
}
.p-index__life-info-txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-index__life-info-txt {
    font-size: 1.4rem;
  }
}
.p-index__life-map {
  width: 580px;
  margin-top: -130px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__life-map {
    width: 100%;
    margin-top: calc(40 /750*100vw);
  }
}
.p-index__life-map-wrap {
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 768px) {
  .p-index__life-map-wrap {
    height: calc(400 /750*100vw);
  }
}
.p-index__life-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.p-index__life-map-txt {
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.6rem;
  padding-block: 14px;
}
.p-index__life-map-catch {
  background: rgba(3, 110, 184, 0.9);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  bottom: 20px;
  right: 0;
  margin-right: -40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-index__life-map-catch {
    flex-direction: row;
    align-items: baseline;
    width: 100%;
    height: inherit;
    position: static;
    margin-right: 0;
    margin-bottom: calc(40 /750*100vw);
    border-radius: calc(10 /750*100vw);
    padding-block: calc(20 /750*100vw);
  }
}
.p-index__life-map-catch-bottom {
  display: flex;
  align-items: baseline;
  border-top: 1px solid #fff;
  margin-top: 10px;
  padding-top: 6px;
}
@media screen and (max-width: 768px) {
  .p-index__life-map-catch-bottom {
    border-top: none;
    margin-top: calc(10 /750*100vw);
    margin-left: calc(20 /750*100vw);
    padding-top: 0;
  }
}
.p-index__life-map-catch-txt-1 {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-index__life-map-catch-txt-1 {
    font-size: calc(34 /750*100vw);
  }
}
.p-index__life-map-catch-txt-2 {
  font-size: 2.5rem;
  font-weight: 700;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-index__life-map-catch-txt-2 {
    font-size: calc(38 /750*100vw);
    writing-mode: horizontal-tb;
  }
}
.p-index__life-map-catch-txt-3 {
  font-size: 8rem;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  color: #fff600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-index__life-map-catch-txt-3 {
    font-size: calc(90 /750*100vw);
  }
}
.p-index__life-map-catch-txt-4 {
  font-size: 5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-index__life-map-catch-txt-4 {
    font-size: calc(60 /750*100vw);
  }
}
.p-index__contact {
  background-image: url(../img/index/contact.jpg), linear-gradient(to bottom, transparent 200px, #f2f2f2 200px);
  background-position: center 40px, center center;
  background-size: 100% 500px, auto;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background: linear-gradient(to bottom, transparent 200px, #f2f2f2 200px);
  padding-bottom: 80px;
}
.p-index__contact .p-index__ttl {
  margin-bottom: -30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__contact .p-index__ttl {
    margin-bottom: -20px;
  }
}
.p-index__contact-img {
  margin-bottom: -340px;
}
@media screen and (max-width: 768px) {
  .p-index__contact-img {
    margin-bottom: calc(-200 /750*100vw);
  }
}
.p-index__contact-img img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-index__contact-img img {
    height: calc(400 /750*100vw);
  }
}
.p-index__contact-outer {
  background: #fff;
  border-radius: 10px;
  padding: 30px 50px 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__contact-outer {
    padding: 10px 30px 40px;
  }
}
.p-index__contact-table {
  width: 100%;
}
.p-index__contact-table tr {
  border-bottom: 1px solid #f7f7f7;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-index__contact-table tr {
    display: block;
  }
}
.p-index__contact-table th, .p-index__contact-table td {
  font-size: 1.6rem;
}
.p-index__contact-table th {
  width: 280px;
  text-align: left;
  font-weight: 400;
  position: relative;
  vertical-align: top;
  padding-block: 40px 30px;
}
@media screen and (max-width: 768px) {
  .p-index__contact-table th {
    width: 100%;
    display: block;
    padding-block: 20px 10px;
  }
}
.p-index__contact-table td {
  width: calc(100% - 280px);
  padding-block: 30px;
}
@media screen and (max-width: 768px) {
  .p-index__contact-table td {
    width: 100%;
    display: block;
    padding-block: 10px 20px;
  }
}
.p-index__contact-table input[type=text], .p-index__contact-table textarea, .p-index__contact-table select {
  background: #f7f7f7;
  border-radius: 10px;
  width: 100%;
  padding: 10px 20px;
}
.p-index__contact-table textarea {
  height: 150px;
}
.p-index__contact .required {
  position: absolute;
  top: 40px;
  right: 40px;
  background: #036eb8;
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 8px;
}
@media screen and (max-width: 768px) {
  .p-index__contact .required {
    top: 20px;
    right: 0;
  }
}
.p-index__contact-privacy {
  position: relative;
  margin-block: 40px;
}
.p-index__contact-privacy .required {
  top: 4px;
  right: inherit;
  left: calc(50% + 140px);
}
@media screen and (max-width: 768px) {
  .p-index__contact-privacy .required {
    left: 230px;
  }
}
.p-index__contact-privacy-parts {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-index__contact-privacy-parts {
    font-size: 1.4rem;
    justify-content: flex-start;
  }
}
.p-index__contact-privacy-parts:before {
  cursor: pointer;
  content: "";
  display: block;
  margin-right: 14px;
  width: 30px;
  height: 30px;
  border: 1px solid #d3d3d3;
  background: #f7f7f7;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .p-index__contact-privacy-parts:before {
    margin-right: 10px;
  }
}
.p-index__contact-privacy-input:checked + .p-index__contact-privacy-parts:before {
  background: #036eb8;
  border: 1px solid #036eb8;
}
.p-index__contact-privacy-input:checked + .p-index__contact-privacy-parts:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: calc(50% - 114px);
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media screen and (max-width: 768px) {
  .p-index__contact-privacy-input:checked + .p-index__contact-privacy-parts:after {
    left: 10px;
  }
}

.p-thanks__box {
  background: #fff;
  padding-block: 100px;
  text-align: center;
}
.p-thanks__ttl {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.p-thanks__txt {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.p-thanks__btn a {
  width: 400px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #036eb8;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  margin-inline: auto;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-thanks__btn a {
    width: 100%;
  }
}

.p-confirm__box {
  padding-block: 60px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-confirm__box {
    padding-block: calc(60 /750*100vw);
  }
}
.p-confirm__box .l-content__size-pc-1 {
  background: #fff;
  padding-block: 80px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-confirm__box .l-content__size-pc-1 {
    padding: calc(80 /750*100vw) 0;
    background: transparent;
  }
}
.p-confirm__box h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-confirm__box #formWrap {
    background: #fff;
    padding: calc(80 /750*100vw) calc(40 /750*100vw);
  }
}
.p-confirm__text-1 {
  margin-bottom: 20px;
}
.p-confirm__text-2 {
  margin-block: 20px;
}
@media screen and (max-width: 768px) {
  .p-confirm__text-2 {
    text-align: left;
  }
}

.p-tennis {
  background: #e0e0e0;
}
.p-tennis .l-content__size-pc-1 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-tennis .l-footer {
    padding-bottom: calc(220 /750*100vw);
  }
}
.p-tennis__mv {
  height: 500px;
  background: linear-gradient(to right, #03539a 50%, #036db7 50%);
}
@media screen and (max-width: 768px) {
  .p-tennis__mv {
    height: inherit;
  }
}
.p-tennis__mv-catch-wrap {
  margin-left: 50px;
  margin-bottom: -364px;
}
@media screen and (max-width: 768px) {
  .p-tennis__mv-catch-wrap {
    margin-left: 0;
    margin-bottom: calc(-374 /750*100vw);
  }
}
.p-tennis__mv-catch-1 {
  font-size: 8rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Josefin Sans", sans-serif;
  background-image: linear-gradient(to right, #057aca, #0896d9);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.2;
  position: relative;
  padding-top: 124px;
}
@media screen and (max-width: 768px) {
  .p-tennis__mv-catch-1 {
    font-size: calc(100 /750*100vw);
    padding-top: calc(70 /750*100vw);
    text-align: center;
  }
}
.p-tennis__mv-catch-2 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-tennis__mv-catch-2 {
    font-size: calc(40 /750*100vw);
    text-align: center;
  }
}
.p-tennis__mv-img {
  margin-inline: -170px;
}
@media screen and (max-width: 768px) {
  .p-tennis__mv-img {
    margin-inline: calc(-30 /750*100vw);
  }
}
.p-tennis__mv-scroll {
  position: absolute;
  bottom: 0;
  left: -100px;
}
@media screen and (max-width: 768px) {
  .p-tennis__mv-scroll {
    left: calc(10 /750*100vw);
  }
}
.p-tennis__mv-scroll p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  transform: rotate(90deg);
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-tennis__mv-scroll p {
    font-size: calc(18 /750*100vw);
    margin-bottom: calc(40 /750*100vw);
  }
}
.p-tennis__mv-scroll-line {
  content: "";
  width: 2px;
  height: 162px;
  background: #fff;
  position: relative;
  margin-left: 38px;
  margin-top: -4px;
}
@media screen and (max-width: 768px) {
  .p-tennis__mv-scroll-line {
    width: calc(2 /750*100vw);
    height: calc(162 /750*100vw);
    margin-left: calc(48 /750*100vw);
    margin-top: calc(-4 /750*100vw);
  }
}
.p-tennis__mv-scroll-line:before {
  position: absolute;
  content: "〇";
  color: #fff;
  font-size: 2.2rem;
  top: -22px;
  left: -10px;
  animation: scroll 1000ms infinite forwards;
}
@media screen and (max-width: 768px) {
  .p-tennis__mv-scroll-line:before {
    font-size: calc(30 /750*100vw);
    top: calc(-22 /750*100vw);
    left: calc(-14 /750*100vw);
    animation: scrollSp 1000ms infinite forwards;
  }
}
.p-tennis__ttl {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-tennis__ttl {
    font-size: calc(60 /750*100vw);
    margin-bottom: calc(60 /750*100vw);
  }
}
.p-tennis__ttl-en {
  font-size: 2rem;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-tennis__ttl-en {
    font-size: calc(40 /750*100vw);
    margin-bottom: calc(10 /750*100vw);
    padding-top: calc(80 /750*100vw);
  }
}
.p-tennis__txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-tennis__txt {
    font-size: calc(28 /750*100vw);
  }
}
.p-tennis__campaign {
  background: url(../img/tennis/bg_capmaign.jpg) center center/cover no-repeat;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-tennis__campaign {
    position: relative;
    padding-bottom: calc(80 /750*100vw);
  }
}
.p-tennis__campaign .p-tennis__ttl {
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .p-tennis__campaign .p-tennis__ttl {
    font-size: calc(60 /750*100vw);
  }
}
.p-tennis__campaign .p-tennis__ttl-en {
  color: #fefe56;
}
.p-tennis__campaign-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-tennis__campaign-list {
    display: block;
    margin-bottom: calc(80 /750*100vw);
  }
}
.p-tennis__campaign-item {
  width: 340px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px 0 20px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-tennis__campaign-item {
    width: 100%;
    border-radius: calc(25 /750*100vw);
    padding-bottom: calc(40 /750*100vw);
  }
  .p-tennis__campaign-item + .p-tennis__campaign-item {
    margin-top: calc(60 /750*100vw);
  }
}
.p-tennis__campaign-item-subttl {
  background: #fefe56;
  color: #f4813f;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-size: 1.6rem;
  text-align: center;
  padding-block: 8px 4px;
  width: 40px;
  height: 40px;
  border-radius: 0 0 10px 0;
  position: absolute;
  top: 0;
  left: 0;
}
.p-tennis__campaign-item-ttl {
  font-size: 3.6rem;
  font-weight: 700;
  margin-inline: 30px;
  /* border-bottom: 1px solid #e6e6e6; */
  text-align: center;
  /* padding-block: 10px; */
}
.p-tennis__campaign-item-price {
  font-size: 4.5rem;
  font-weight: 700;
  margin-inline: 30px;
  color: #f4813f;
  text-align: center;
  /* padding-top: 10px; */
  line-height: 1.2;
}
.p-tennis__campaign-item-txt {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 10px;
}
.p-tennis__campaign-item-img {
  margin-inline: 40px;
}
.p-tennis__campaign-item:nth-of-type(3) .p-tennis__campaign-item-ttl {
  /* color: #f4813f; */
  /* border-bottom: none; */
  /* line-height: 1.2; */
}
.p-tennis__campaign-list-btm .p-tennis__campaign-item{
  width: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 20px 40px;
}
.p-tennis__campaign-list-btm .p-tennis__campaign-item-ttl{
  color: #f4813f;
  font-size: 4rem;
  margin: 0;
  line-height: 1.2;
}
.p-tennis__campaign-item-inner{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-tennis__campaign-item-inner-text{
  flex-shrink: 0;
}
.p-tennis__campaign-list-btm figure{
  /* width: 158px; */
  /* height: 122px; */
  display: block;
  flex-shrink: 0;
  margin: 0;
}
.p-tennis__campaign-list-btm img{
  width: 158px;
  height: 122px;
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-tennis__campaign-list-btm .p-tennis__campaign-item{
    width: 100%;
    border-radius: calc(25 / 750 * 100vw);
    padding-bottom: calc(40 / 750 * 100vw);
  }
  .p-tennis__campaign-item-inner{
    flex-direction: column;
  }
  .p-tennis__campaign-list-btm .p-tennis__campaign-item-inner-text{
    margin: 0 0 20px 0;
  }
}
.p-tennis__campaign-txt {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-tennis__campaign-txt {
    font-size: calc(50 /750*100vw);
  }
}
.p-tennis__line {
  background: #06c755;
  padding-block: 60px;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-tennis__line {
    /* padding-block: calc(80 /750*100vw); */
    padding: 60px 0px 220px 0px;
    margin-bottom: calc(120 /750*100vw);
    /* padding-bottom: 100px; */
  }
}
.p-tennis__line-inner {
  background: #fff;
  border-radius: 20px;
  display: flex;
  padding: 40px 60px;
  margin-right: 210px;
  /* margin-inline: 100px; */
  gap: 40px;
}
.tennis-banner-img{
  position: absolute;
  bottom: -60px;
  right: -20px;
}
@media screen and (max-width: 768px) {
  .tennis-banner-img{
    position: absolute;
    bottom: -220px;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: block;
    width: 200px;
  }
  .tennis-banner-img-btm{
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .p-tennis__line-inner {
    border-radius: calc(25 /750*100vw);
    display: block;
    padding: calc(40 /750*100vw);
    margin-inline: 0;
  }
}
.p-tennis__line-left {
  /* width: 740px; */
}
@media screen and (max-width: 768px) {
  .p-tennis__line-left {
    width: 100%;
  }
}
.p-tennis__line-balloon {
  background: #06c755;
  border-radius: 25px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 8px 30px;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .p-tennis__line-balloon {
    border-radius: calc(25 /750*100vw);
    font-size: calc(48 /750*100vw);
    padding: calc(8 /750*100vw) calc(30 /750*100vw);
    margin-bottom: 0;
  }
}
.p-tennis__line-txt {
  font-size: 4.2rem;
  font-weight: 700;
  color: #06c755;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-tennis__line-txt {
    display: block;
    font-size: calc(44 /750*100vw);
    text-align: center;
  }
}
.p-tennis__line-txt img {
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .p-tennis__line-txt img {
    margin-inline: auto;
    margin-block: calc(30 /750*100vw) calc(10 /750*100vw);
  }
}
@media screen and (max-width: 768px) {
  .p-tennis__line-img {
    display: flex;
    justify-content: center;
    margin-top: calc(30 /750*100vw);
  }
}
.p-tennis__godai-slide{
  margin: 0 40px;
}
.p-tennis__godai {
  background: #fff;
  padding-block: 50px 100px;
}
@media screen and (max-width: 768px) {
  .p-tennis__godai {
    padding-block: calc(40 /750*100vw) calc(120 /750*100vw);
  }
}
.p-tennis__godai .p-tennis__ttl {
  color: #036eb8;
}
@media screen and (max-width: 768px) {
  .p-tennis__godai .p-tennis__ttl {
    font-size: calc(46 /750*100vw);
  }
}
.p-tennis__godai .p-tennis__ttl-en {
  color: #45b1fd;
}
.p-tennis__godai-txt {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-tennis__godai-txt {
    text-align: left;
  }
}
.p-tennis__feature {
  background: linear-gradient(to bottom, #45b1fd 380px, #fff 380px);
  padding-block: 50px 100px;
}
@media screen and (max-width: 768px) {
  .p-tennis__feature {
    background: linear-gradient(to bottom, #45b1fd calc(640 /750*100vw), #fff calc(640 /750*100vw));
    padding-block: calc(40 /750*100vw) calc(120 /750*100vw);
  }
}
.p-tennis__feature .p-tennis__ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-tennis__feature .p-tennis__ttl {
    margin-bottom: calc(80 /750*100vw);
  }
}
.p-tennis__feature-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-tennis__feature-list {
    display: block;
  }
}
.p-tennis__feature-item {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .p-tennis__feature-item {
    width: calc(600 /750*100vw);
    margin-inline: auto;
  }
  .p-tennis__feature-item + .p-tennis__feature-item {
    margin-top: calc(80 /750*100vw);
  }
}
.p-tennis__feature-item-img {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .p-tennis__feature-item-img {
    width: 80%;
    margin-inline: auto;
    margin-bottom: calc(25 /750*100vw);
  }
}
.p-tennis__feature-item-ttl {
  font-size: 2.2rem;
  color: #036eb8;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .p-tennis__feature-item-ttl {
    font-size: calc(40 /750*100vw);
    padding-bottom: calc(40 /750*100vw);
    margin-bottom: calc(40 /750*100vw);
  }
}
.p-tennis__coach {
  background: #e8f2f9;
  padding-block: 50px 160px;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach {
    padding-block: calc(40 /750*100vw) calc(180 /750*100vw);
  }
}
.p-tennis__coach .p-tennis__ttl {
  color: #036eb8;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach .p-tennis__ttl {
    margin-bottom: calc(80 /750*100vw);
  }
}
.p-tennis__coach .p-tennis__ttl-en {
  color: #45b1fd;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach-slider {
    margin-inline: calc(30 /750*100vw);
  }
}
.p-tennis__coach-item {
  width: 810px;
  display: flex;
  margin-inline: 30px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach-item {
    width: 100%;
    display: block;
    margin-inline: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-tennis__coach-item-img {
    width: 100%;
  }
}
.p-tennis__coach-item-info {
  width: 510px;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach-item-info {
    width: 100%;
    padding-bottom: calc(30 /750*100vw);
  }
}
.p-tennis__coach-item-name {
  background: #036eb8;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  padding: 20px 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach-item-name {
    font-size: calc(42 /750*100vw);
    padding: calc(30 /750*100vw) calc(30 /750*100vw);
  }
}
.p-tennis__coach-item-name-alpha {
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach-item-name-alpha {
    font-size: calc(26 /750*100vw);
    margin-left: calc(36 /750*100vw);
  }
}
.p-tennis__coach-item-message {
  font-size: 1.8rem;
  border-bottom: 1px solid #e0e0e0;
  margin-inline: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach-item-message {
    font-size: calc(30 /750*100vw);
    margin-inline: calc(30 /750*100vw);
    margin-bottom: calc(30 /750*100vw);
    padding-bottom: calc(30 /750*100vw);
  }
}
.p-tennis__coach-item-message-ttl {
  font-size: 1.4rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  color: #036eb8;
  margin: 30px 30px 10px;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach-item-message-ttl {
    font-size: calc(26 /750*100vw);
    margin: calc(30 /750*100vw) calc(30 /750*100vw) calc(10 /750*100vw);
  }
}
.p-tennis__coach-item-qualification {
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach-item-qualification {
    margin-bottom: calc(16 /750*100vw);
  }
}
.p-tennis__coach-item-qualification, .p-tennis__coach-item-txt {
  font-size: 1.4rem;
  color: #888888;
  margin-inline: 30px;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach-item-qualification, .p-tennis__coach-item-txt {
    font-size: calc(26 /750*100vw);
    margin-inline: calc(30 /750*100vw);
  }
}
.p-tennis__coach .splide__pagination {
  bottom: -60px;
}
@media screen and (max-width: 768px) {
  .p-tennis__coach .splide__pagination {
    bottom: calc(-60 /750*100vw);
  }
}
.p-tennis__coach .splide__pagination__page {
  background: #c0daed;
  margin: 3px 15px;
}
.p-tennis__coach .splide__pagination__page.is-active {
  transform: scale(1);
  background: #036eb8;
}
.p-tennis-table-btns{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.p-tennis-table-btn{
  width: 340px;
  height: 60px;
  font-size: 22px;
  color: #888888;
  background: #fff;
  border-radius: 50px;
  border: none;
  border: 1px solid #036eb8;
  transition: all 0.3s;
  cursor: pointer;
}
.p-tennis-table-btn:hover{
  color: #fff;
  background: #036eb8;
  transition: all 0.3s;
}
.p-tennis-table-btn.active{
  color: #fff;
  background: #036eb8;
  transition: all 0.3s;
}
.p-tennis-table-container{
  overflow: auto;
}
.p-tennis-table{
  border-collapse:collapse;
  display: none;
  width: 1100px;
}
.p-tennis-table.active{
  display: block;
}
.table-text-left{
  font-size: 18px;
  text-align: center;
  color: #000;
  width: 550px !important;
  background: #fff;
  border: 1px solid #cdcdcd;
}
.table-text-center{
  font-size: 18px;
  text-align: center;
  color: #000;
  width: 300px !important;
  background: #fff;
  border: 1px solid #cdcdcd;
}
.table-text-right{
  font-size: 18px;
  text-align: center;
  color: #000;
  width: 550px !important;
  background: #fff;
  border: 1px solid #cdcdcd;
}
.table-td-color-blue{
  background: #f5f5f5;
}
.table-ttl-th{
  background: #036eb8;
  color: #fff;
  font-size: 18px;
  padding: 10px 0;
  border: 1px solid #cdcdcd;
}
.p-tennis-table-btm-btn{
  background: #036eb8;
  color: #fff;
  width: 400px;
  height: 60px;
  display: block;
  margin: 80px auto 0px auto;
  font-size: 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.p-tennis-table-btm-btn:hover{
  color: #888888;
  background: #fff;
  transition: all 0.3s;
  outline: 1px solid #888;
}

.p-tennis-table-text {
  margin-top: 30px;
  text-align: right;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .p-tennis-table-btns{
    flex-direction:column;
    gap: 10px 0;
  }

  .p-tennis-table {
    width: 600px;
  }

  .table-text-left {
    width: 300px !important;
  }

  .table-text-right {
    width: 300px !important;
  }
}
@media screen and (max-width: 500px) {
  .p-tennis-table-btm-btn{
    width: 95%;
  }
}
.p-tennis__level{
  background: #e8f2f9;
  padding-bottom: 50px;
}
.p-tennis__level .p-tennis__ttl-en{
  color: #45b1fd;
}
.p-tennis__level .p-tennis__ttl{
  color: #036eb8;
}
.p-tennis-acc{
  margin-bottom: 50px;
}
.p-tennis-acc-top{
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #036eb8;
  color: #fff;
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.1em;
  position: relative;
  cursor: pointer;
}
.p-tennis-acc-top::after{
  position: absolute;
  top: 16px;
  right: 40px;
  color: #fff;
  content: "＋";
  font-size: 30px;
}
.p-tennis-acc-ttl{
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #45b1fd;
  color: #fff;
  text-align: center;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.p-tennis-acc-sub-ttl{
  height: auto;
  background: #555;
  padding: 20px 0;
}
.p-tennis-acc-text-area{
  border-collapse:collapse;
  width: 100%;
}
.p-tennis-acc-text-inner{
  flex-shrink: 0;
}
.acc-text-inner-btm{
  padding: 30px;
  background: #fff;
  border: 1px solid #cdcdcd;
}
.acc-text-inner-ttl{
  font-size: 14px;
  width: 50%;
  color: #fff;
  background: #036eb8;
  padding: 15px 30px;
  border: 1px solid #cdcdcd;
}
.acc-text-inner-ttl-right{
  background: darkorange;
  color: #FFF;
}
  .acc-text-inner-ttl-btm-sp{
    display: none;
  }
.acc-text-inner-btm h3{
  font-size: 22px;
  font-weight: 500;
}
.acc-text-inner-btm p{
  color: #000;
  font-size: 14px;
}
.p-tennis-acc-top.is-active.p-tennis-acc-top::after{
  content: "－";
}
.p-tennis-acc-btm-container{
  display: none;
}
.p-tennis-acc-btm-container.is-active{
  display: block;
}
@media screen and (max-width: 768px) {
  .p-tennis-acc {
      margin-bottom: 20px;
  }
  .p-tennis-acc-top{
    font-size: 25px;
  }
  .p-tennis-acc-top::after {
      top: 20px;
      right: 20px;
      font-size: 25px;
  }
  .p-tennis-acc-ttl{
    font-size: 20px;
  }
  .p-tennis-acc-sub-ttl{
    font-size: calc(23 /750*100vw);
  }
  .acc-text-inner-btm h3{
    font-size: 20px;
  }
  .p-tennis-acc-text-area-outer{
    /* overflow: auto; */
  }
  .p-tennis-acc-text-area{
    /* width: 1100px; */
    /* overflow-x: scroll; */
  }
  .acc-text-inner-ttl{
    width: 100%;
  }
  .acc-text-inner-ttl-right{
    display: none;
  }
  .acc-text-inner-ttl-btm-sp{
    display: block;
  }
  .acc-text-inner-btm-sp-flex{
    display: flex;
    flex-direction: column;
  }
}
.p-tennis__recommend {
  background: linear-gradient(to bottom, #45b1fd 380px, #fff 380px);
  padding-block: 50px 100px;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-tennis__recommend {
    padding-block: calc(40 /750*100vw) calc(120 /750*100vw);
    margin-bottom: calc(120 /750*100vw);
  }
}
.recommend-img-left{
  position: absolute;
  top: 40px;
  left: 40px;
}
.recommend-img-right{
  position: absolute;
  top: 40px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .recommend-img-left{
    width: 150px;
    position: absolute;
    top: 250px;
    left: -30px;
  }
  .recommend-img-right{
    width: 213px;
    position: absolute;
    top: 250px;
    right: -60px;
  }
}
.p-tennis__recommend .p-tennis__ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-tennis__recommend .p-tennis__ttl {
    margin-bottom: calc(80 /750*100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-tennis__recommend .p-tennis__ttl {
    margin-bottom: 200px;
  }
  .recommend-img-left{
    width: 150px;
    position: absolute;
    top: 300px;
    left: -30px;
  }
  .recommend-img-right{
    width: 213px;
    position: absolute;
    top: 300px;
    right: -60px;
  }
}
@media screen and (max-width: 500px) {
  .p-tennis__recommend .p-tennis__ttl {
    margin-bottom: 250px;
  }
}
@media screen and (max-width: 450px) {
  .p-tennis__recommend .p-tennis__ttl {
    margin-bottom: 200px;
  }
  .recommend-img-left{
    width: 207px;
    position: absolute;
    top: 240px;
    left: -30px;
  }
  .recommend-img-right{
    width: 190px;
    position: absolute;
    top: 240px;
    right: -10px;
  }
}
.p-tennis__recommend-item {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  display: flex;
  gap: 34px;
  padding: 0 30px 20px;
}
@media screen and (max-width: 768px) {
  .p-tennis__recommend-item {
    display: block;
    padding: 0 calc(30 /750*100vw) calc(40 /750*100vw);
  }
}
.p-tennis__recommend-item-img {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .p-tennis__recommend-item-img {
    width: calc(120 /750*100vw);
  }
}
.p-tennis__recommend-item-img-wrap {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #45b1fd;
  background: #fff;
  margin-top: -34px;
}
@media screen and (max-width: 768px) {
  .p-tennis__recommend-item-img-wrap {
    width: calc(240 /750*100vw);
    height: calc(240 /750*100vw);
    margin-top: calc(-68 /750*100vw);
    margin-inline: auto;
  }
}
.p-tennis__recommend-item-info {
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .p-tennis__recommend-item-info {
    margin-top: calc(40 /750*100vw);
  }
}
.p-tennis__recommend-item-info dt {
  font-size: 2.6rem;
  font-weight: 700;
  color: #036eb8;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .p-tennis__recommend-item-info dt {
    font-size: calc(48 /750*100vw);
  }
}
.p-tennis__recommend-item-info dd {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-tennis__recommend-item-info dd {
    font-size: calc(28 /750*100vw);
  }
}
.p-tennis__recommend-item + .p-tennis__recommend-item {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .p-tennis__recommend-item + .p-tennis__recommend-item {
    margin-top: calc(120 /750*100vw);
  }
}

@media screen and (min-width: 769px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}


/* 0604 */

@media screen and (max-width: 768px) {
  .p-tennis__line-left {
    margin-bottom: 30px;
  }
}

.p-tennis__line_link {
  border: 3px solid #06c755;
  background: linear-gradient(to bottom, #06c755, #01b74b);
  box-shadow: 0px 5px 10px 0px rgba(6, 199, 85, 0.3);
  color: #fff !important;
  font-size: calc(30 / 750 * 100vw);
  font-weight: 700;
  display: flex;
  border-radius: calc(10 / 750 * 100vw);
  position: relative;
  width: auto;
  height: calc(110 / 750 * 100vw);
  padding-left: calc(15 / 750 * 100vw);
  margin-inline: auto;
}

/* 0604 END */


/* 2025.06.10追加 */
@media screen and (max-width: 768px) {
  .p-index__enjoy .p-index__ttl{
    text-align: center;
  }
}
.p-index__life-info-ttl {
  margin-block-start: 0;
}
.p-index__life-info-en-ttl {
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0096ff;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-index__life-info-en-ttl {
    font-size: 1.8rem;
  }
}
.p-index__life-info-txt-span{
  font-weight: bold;
  display: block;
  margin-top: 15px;
}
.p-tennis__feature-item-ttl{
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-tennis__feature-item-ttl{
    height: auto;
  }
}
.p-tennis__ttl{
  margin-bottom: 0px;
}
.p-tennis__sub-ttl{
  text-align: center;
  margin: 10px 0 60px 0;
  padding: 5px 0;
  background: #fff;
  border-radius: 50px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-tennis__ttl{
    margin-bottom: 0px;
  }
  .p-tennis__sub-ttl{
    font-size: calc(30 / 750 * 100vw);
    margin-bottom: calc(100 / 750 * 100vw);
  }
}
.p-tennis-table-sp-text{
  display: none;
}
@media screen and (max-width: 768px) {
  .p-tennis-table-sp-text{
    /* position: absolute; */
    top: 0;
    left: 0;
    display: block;
    margin-top: calc(100 / 750 * 100vw);
    margin-bottom:10px;
    font-size: 16px;
  }
}
.p-tennis__recommend-item{
  position: relative;
}
.p-tennis__recommend-item::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #036eb8;
  border-radius: 10px 10px 0 0;
  height: 50%;
  width: 100%;
}
.p-tennis__recommend-item-info dt {
    color: #fff;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}
.p-tennis__recommend-item-img-wrap{
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-tennis__recommend-item{
    background: #036eb8;
  }
  .p-tennis__recommend-item-info dd{
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
  }
}