@charset "utf-8";
/* CSS Document */

/*==================================================
 common
==================================================*/
:root {
  --height_header: 0px;
  --height_fix_footer: 0px;
  --section: 100px;

  --base_width: 1100px;
  --over-width-half: max(5%, calc((100vw - var(--base_width)) / 2));
  --base_color: var(--black);
  --base_bg: var(--white);

  --font_jp: "Noto Sans JP", sans-serif;
  --font_jp2: "Noto Serif JP", serif;
  --font_en: "Roboto Condensed", sans-serif;
  --icons: "Material Symbols Outlined";
  --iconsfill: "FILL" 1; /*塗りつぶしアイコン font-variation-settings: var(--iconsfill);*/
  --bold: 600;

  --transition: 0.3s;

  --black: #251e1c;
  --white: #ffffff;

  --blue: #2b7de9;
  --Dblue: #284773;
  --Lblue: #eaf1fa;
  --green: #28b472;
  --Dgreen: #338866;
  --Lgreen: #eaf8f1;
  --yellow: #fde10a;
  --ocher: #9f9019;
  --gold: #d5a13b;
  --red: #e60012;
  --Dred: #b33a4d;
  --gray: #666666;
  --Lgray: #f9f9f8;
  --gradgreen: #0a4a30 0%, var(--Dgreen) 33%;
  --gradblue: var(--Dblue) 0%, #2963b1 33%;
  --gradhalf: var(--Dred) 50%, var(--gold) 50%;
  --gradgold: #9c7524 0%, #d1a74a 50%, #9c7524 100%;
  --gradLgreen: var(--Lgreen) 0%, #c2e4d5 100%;

  --dorpshadow: 0 0 40px rgba(0, 0, 0, 0.1);

  --textshadow: 0 0 5px var(--black), 0 0 20px var(--black);
}
@media (max-width: 520px) {
  :root {
    --height_header: 50px;
    --section: 50px;
    --base_width: 100%;

    --bold: bold;
  }
}

body {
  padding-top: var(--height_header);
}

.Dred {
  color: var(--Dred);
}
.Dblue {
  color: var(--Dblue);
}
.gold {
  color: var(--gold);
}
.black {
  color: var(--black);
}
.blue {
  color: var(--blue);
}
.yellow {
  color: var(--yellow);
}
.green {
  color: var(--green);
}

.bg_gray {
  background: var(--gray);
}
.bg_Dred {
  background: var(--Dred);
}
.bg_Dblue {
  background: var(--Dblue);
}
.bg_gold {
  background: var(--gold);
}

@media (max-width: 520px) {
  body {
    padding-bottom: var(--height_fix_footer);
  }
}

/*----------------------------------------
  base control
----------------------------------------*/

/* objedt-fit */
.of_cover img,
img.of_cover {
  object-fit: cover;
}

.of_cont img,
img.of_cont {
  object-fit: contain;
}

.of_cover img,
.of_cont img {
  display: block;
  width: 100%;
  height: 100%;
}

a.logo {
  display: block;
}
a.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
  border-radius: 0px;
}
a.logo:hover img {
  scale: none;
}

/*----------------------------------------
  box control
----------------------------------------*/

/* [class*="grid_"] 等分 */
[class*="grid_"] {
  display: grid;
  grid-template-columns: repeat(var(--grid), 1fr);
  gap: var(--gap);
  --grid: 3;
  --gap: 50px;
}
@media (max-width: 520px) {
  [class*="grid_"] {
    --gap: 30px;
    --grid: 1;
  }
}

/* [class*="grid_"] 等分 auto-fit*/
[class*="gridfit_"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, var(--width));
  justify-content: center;
  gap: var(--gap);
  --grid: 3;
  --gap: 50px;
  --width: calc((100% - var(--gap) * (var(--grid) - 1)) / var(--grid));
}

/* [class*="flexnum_"] 等分 */
[class*="flexnum_"] {
  display: flex;
  flex-flow: wrap;
  gap: var(--gap);
  --num: 3;
  --gap: 60px;
  --width: calc((100% - var(--gap) * (var(--num) - 1)) / var(--num));
}

[class*="flexnum_"] > * {
  width: var(--width);
}

@media screen and (max-width: 520px) {
  [class*="flexnum_"] {
    --num: 1;
    --gap: 20px;
  }
}

/* [class*="flexfit_"] 可変 / 1個：1列 / 偶数：2列 奇数：3列 */
[class*="flexfit_"] {
  display: flex;
  flex-flow: wrap;
  gap: var(--gap);
  --gap: 60px;
}
/*1以外奇数 */
[class*="flexfit_"] > * {
  --num: 3;
  --width: calc((100% - var(--gap) * (var(--num) - 1)) / var(--num));
  width: var(--width);
}
/* 1個 */
[class*="flexfit_"]:has(> *:only-child) > * {
  --num: 1;
  /*width: fit-content;*/
}
/* 偶数 */
[class*="flexfit_"]:has(> *:nth-child(even):last-child) > * {
  --num: 2;
}

@media screen and (max-width: 520px) {
  [class*="flexfit_"] > *,
  [class*="flexfit_"]:has(> *:only-child) > *,
  [class*="flexfit_"]:has(> *:nth-child(even):last-child) > * {
    --num: 1;
  }
}

/* [class*="alternating_"] 交互の */
[class*="altern_"] {
  display: flex;
  flex-flow: column;
  gap: var(--gaps);
  --gaps: 100px; /*親縦gap*/
  --gap: 60px; /*子横gap*/
  --firstchild: 55%; /*子メディア幅*/
}
[class*="altern_"] > * {
  display: flex;
  gap: var(--gap);
}
[class*="altern_"] > * > *:first-child {
  flex: none;
  width: var(--firstchild);
}
[class*="altern_"] > * > *:last-child {
  flex: 1;
}

[class*="altern_"] > *:nth-child(even) {
  flex-flow: row-reverse;
}

@media screen and (max-width: 520px) {
  [class*="altern_"] {
    --gaps: 50px; /*親縦gap*/
    --gap: 20px; /*子横gap*/
    --firstchild: 100%; /*子メディア幅*/

    --alternff: column; /*スマホのみ並び*/
  }
  [class*="altern_"] > * {
    flex-flow: var(--alternff);
  }
  [class*="altern_"] > *:nth-child(even) {
    flex-flow: var(--alternff);
  }
}

/* [class*="Horizontal_"] 水平（つまり左右）*/
[class*="horizon_"] {
  display: flex;
  gap: var(--gap);
  flex-flow: var(--horizonff);
  --gap: 60px; /*横gap*/
  --horizonff: row; /*並び*/
  --firstchild: 55%; /*メディア幅*/
}
[class*="horizon_"] > *:first-child {
  flex: none;
  width: var(--firstchild);
}
[class*="horizon_"] > *:last-child {
  flex: 1;
}

@media screen and (max-width: 520px) {
  [class*="horizon_"] {
    --gap: 20px; /*横gap*/
    --horizonff: column; /*並び*/
    --firstchild: 100%; /*メディア幅*/
  }
}

/* [class*="table_"] テーブル*/
[class*="table_"] {
  display: flex;
  flex-flow: column;
  gap: var(--gaps);
  --gaps: 1px;

  --num: 3;
  --gap: 10px;
}

[class*="table_"] dl {
  display: grid;
  grid-template-columns: 26% repeat(var(--num), 1fr);
  gap: var(--gap);
}

/*ベースのpaddingの-top,-bottom*/

.base_pt_pb {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 520px) {
  .base_pt_pb {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/*==================================================
  slide control
==================================================*/
.splide .splide__arrow {
  background: none;
}

.splide .splide__arrow:disabled {
  opacity: 0;
}

.splide-slider3 .splide__arrow--prev {
  left: -2em;
}
.splide-slider3 .splide__arrow--next {
  right: -2em;
}

.list-bnr img {
  width: 100%;
  max-width: none;
  height: auto;
}

@media screen and (max-width: 520px) {
  .splide-slider3 .splide__arrow--prev {
    left: -1em;
  }
  .splide-slider3 .splide__arrow--next {
    right: -1em;
  }
}

/*==================================================
 this site specific
==================================================*/

/*----------------------------------------
  title
----------------------------------------*/
:root {
  --titff: column;
  --titai: flex-start;
  --titjc: flex-start;
  --titgap: 15px;
  --titw: fit-content;
  --titm: 0;
  --titp: 0;
  --titbd: none;
  --titbg: none;
  --titc: var(--black);
  --titfz: 2.2rem;
  --titfw: var(--bold);
  --titta: left;
}

.tit_ {
  grid-area: tit;
  position: relative;
  display: flex;
  flex-flow: var(--titff);
  align-items: var(--titai);
  justify-content: var(--titjc);
  gap: var(--titgap);
  width: var(--titw);
  padding: var(--titp);
  margin: var(--titm);
  border: var(--titbd);
  background: var(--titbg);
  color: var(--titc);
  font-family: var(--font_jp);
  font-size: var(--titfz);
  font-weight: var(--titfw);
  text-align: var(--titta);
  line-height: 1.4;
}

.tit_wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: url(../images/top_bg02.webp) no-repeat left top / cover;
  background-color: var(--Lgreen);
  border-top: 1px solid var(--white);
  color: var(--white);
  font-size: 2.8rem;
  font-weight: var(--bold);

  --titBc: var(--white);
}

:root {
  --titAm: 0 0 50px;
  --titAc: var(--black);
  --titAfz: 2.4rem;
}

.tit_A {
  grid-area: titA;
  margin: var(--titAm);
  color: var(--titAc);
  font-size: var(--titAfz);
  font-weight: var(--bold);
}

:root {
  --titBm: 0 0 70px;
  --titBc: var(--black);
  --titBic: var(--green);
}

.tit_B {
  grid-area: titB;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column;
  gap: 15px;
  font-size: 3.2rem;
  text-align: left;
  color: var(--titBc);
  padding: 10rem 0 0;
  margin: var(--titBm);
  line-height: 1.3;
  font-weight: 700;
  z-index: 5;
}

.tit_B i {
  position: absolute;
  top: 0;
  left: -0.7em;
  display: block;
  font-family: var(--font_en);
  font-size: 14rem;
  font-style: italic;
  color: var(--titBic);
  line-height: 1;
  z-index: -1;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0.3;
}

.tit_B.t_C {
  align-items: center;
}
.tit_B.t_C i {
  left: auto;
}

:root {
  --titCm: 0 0 20px;
  --titCc: var(--Dgreen);
  --titCts: -1px -1px var(--white), 1px -1px var(--white), -1px 1px var(--white), 1px 1px var(--white);
}

.tit_C {
  grid-area: titC;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: var(--titCm);
  color: var(--titCc);
  font-size: 2.2rem;
  font-weight: var(--bold);
  line-height: 1.3;
  text-shadow: var(--titCts);
}

.tit_C:before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  flex: none;
  width: 57px;
  height: auto;
  background: url(../images/icon_logo.png) no-repeat center / contain;
}

:root {
  --titDm: 20px auto calc(var(--titDhen) + 10px);
  --titDp: 10px;
  --titDc: var(--white);
  --titDbg: var(--green);
  --titDhen: 15px;
}

.tit_D {
  grid-area: titD;
  position: relative;
  padding: var(--titDp);
  margin: var(--titDm);
  background: var(--titDbg);
  color: var(--titDc);
  font-size: 2.2rem;
  font-weight: var(--bold);
  text-align: center;
  line-height: 1.3;
}
.tit_D:after {
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  --hen: var(--titDhen);
  background: var(--titDbg);
  height: calc(tan(60deg) * var(--hen) / 2);
  width: var(--hen);
  clip-path: polygon(0 0, 100% 0, 50% 100%); /*下*/
}

@media screen and (max-width: 520px) {
  :root {
    --titAm: 0 0 30px;
    --titAfz: 1.8rem;

    --titBm: 0 0 40px;
  }

  .tit_wrap {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .tit_wrap .tit_B i {
    font-size: 5rem;
    top: 0.2em;
  }

  .tit_B {
    gap: 15px;
    font-size: 1.8rem;
    padding: 5rem 0 0;
  }

  .tit_B i {
    left: -0.2em;
    font-size: 7rem;
  }

  .tit_C {
    font-size: 2rem;
  }
  .tit_C:before {
    width: 40px;
  }

  .tit_D {
    font-size: 1.8rem;
  }
}

/*----------------------------------------
  button
----------------------------------------*/

:root {
  --btnAm: 0;
  --btnAbd: none;
  --btnAbg: var(--green);
  --btnAc: var(--white);
}

.btn_A {
  grid-area: btnA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: fit-content;
  margin: var(--btnAm);
  padding: 15px 24px;
  border: var(--btnAbd);
  border-radius: 2px;
  background: var(--btnAbg);
  color: var(--btnAc);
  font-size: 1.6rem;
  font-weight: var(--bold);
  line-height: 1;
}

.btn_A:after {
  content: "arrow_forward";
  font-family: var(--icons);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  aspect-ratio: 1/1;
  width: 30px;
  height: auto;
  padding: 0 0 0 10px;
  border-left: 1px solid color-mix(in srgb, var(--btnAc) 30%, var(--white) 0%);
  font-size: 1.3rem;
  font-weight: normal;
}

@media screen and (max-width: 520px) {
  .btn_A {
    gap: 15px;
    padding: 10px 15px;
    font-size: 1.5rem;
  }
  .btn_A:after {
    width: 25px;
  }
}

/*
  flexbtn_
----------------------------------------*/
/*
[class*="flexbtn_"] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 2rem;
  line-height: 1;
  transition: var(--transition);
  --size: 1.6em;
}
*/

/*
  gridbtn_
----------------------------------------*/
/*
[class*="gridbtn_"] {
  display: grid;
  gap: 3px 10px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: 2rem;
  line-height: 1;
  transition: var(--transition);
  --size: 1.6em;
}
[class*="gridbtn_"] span {
  grid-area: span;
}
[class*="girdbtn_"] p {
  grid-area: p;
}
*/

/*
  _svg, _ico
----------------------------------------*/
/*
[class*="svg-b"]:before,
[class*="svg-a"]:after {
  grid-area: ico;
  content: "";
  display: block;
  width: var(--size);
  height: auto;
  aspect-ratio: var(--ar);
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: currentColor;
  --ar: 1/1;
  //--size:1.6em;*/ /*親要素で設定
  //--mask:url() center center / contain no-repat;
}

[class*="ico-b"]:before,
[class*="ico-a"]:after {
  grid-area: ico;
  content: "";
  font-family: var(--icons);
  font-size: var(--size);
  color: currentColor;
  //--size:1.6em;*/ /*親要素で設定
}
  */

/*
  _Modifier
----------------------------------------*/
/*
.gridbtn_svg-b_tel {
  grid-template-columns: var(--size) 1fr;
  grid-template-areas:
    "ico span"
    "ico p";
  background: none;
  color: var(--base_color);
}
[class$="svg-b_tel"]:before {
  --mask: url(../images/icon_tel.svg) center center / contain no-repeat;
  --ar: 31/41;
}
.gridbtn_svg-b_tel span {
  font-size: 1.8em;
  font-weight: var(--bold);  
}
.gridbtn_svg-b_tel p {
  font-size: 1.2rem;
  text-align: right;
}

.flexbtn_svg-b_mail {
  background: none;
  color: var(--base_color);
}
[class$="svg-b_mail"]:before {
  --mask: url(../images/icon_mail.svg) center center / contain no-repeat;
  --ar: 17/13;
}

.flexbtn_ico-a_arrow:after {
  content: "chevron_right";
}

.flexbtn_ico-a_arrow {
  --size: 1.5em;
}
[class$="svg-a_arrow1"]:after {
  --mask: url(../images/icon_arrow2.svg) center center / contain no-repeat;
  --ar: 22/8;
}

*/

/*----------------------------------------
  トグル
----------------------------------------*/
.toggle {
  display: none;
}
.toggle + .click::after {
  transform: rotate(90deg);
}
.toggle + .click + .open {
  height: 0;
  padding: 0 20px;
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
}
.toggle:checked + .click + .open {
  /*開閉時*/
  height: auto;
  padding: 20px;
  transition: var(--transition);
}

/*==================================================
header
==================================================*/
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  grid-template-areas:
    "logo menu1"
    "logo nav";
  width: 100%;
  padding: 0 0 0 2%;
  background: var(--white);
}

header .logo {
  grid-area: logo;
  display: flex;
  align-items: center;
}

header .logo img {
  width: 280px;
  height: auto;
}

header nav {
  grid-area: nav;
  padding: 0;
  font-weight: var(--bold);
}

header nav .gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3vw;
}

header nav .gnav a {
  display: block;
  text-align: center;
}

header nav .gnav a:hover {
  color: var(--color_typeP);
  opacity: 1;
}

header nav .gnav .btn_mail {
  padding: 20px 25px;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.hamburger,
#hamburger-check {
  display: none;
}

@media screen and (max-width: 768px) {
  header {
    position: absolute;
    height: 50px;
    padding: 0 0 0 10px;
  }

  header .logo img {
    width: 240px;
    margin: 0;
  }

  .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 50px;
    background: var(--white);
  }

  #hamburger-check {
    display: none;
  }

  /**タップされる前 open**/
  .hamburger span,
  .hamburger span:before,
  .hamburger span:after {
    content: "";
    position: absolute;
    display: block;
    height: 2px;
    width: 34px;
    border-radius: 3px;
    background-color: var(--black);
  }

  .hamburger span {
    background: none;
  }

  .hamburger span:before {
    bottom: 10px;
  }
  .hamburger span:after {
    top: 0px;
  }

  .hamburger:after {
    content: "MENU";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9rem;
  }

  /**タップされたとき close**/
  #hamburger-check:checked ~ .hamburger:after {
    content: "CLOSE";
  }

  #hamburger-check:checked ~ .hamburger span {
  }

  #hamburger-check:checked ~ .hamburger span::before {
    width: 30px;
    bottom: 5px;
    left: 5px;
    transform: rotate(45deg);
  }

  #hamburger-check:checked ~ .hamburger span::after {
    width: 30px;
    top: -5px;
    left: 5px;
    transform: rotate(-45deg);
  }

  header nav .gnav {
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 60px 30px 30px;
    background-color: var(--gray);
    color: var(--white);
    font-size: 1.2em;
    overflow-y: auto;
    overflow-x: hidden;
    transition: var(--transition);
  }

  #hamburger-check:checked ~ .gnav {
    left: 0;
  }

  header nav .gnav a {
    width: 100%;
    padding: 10px 20px;
    z-index: 5;
    font-size: 1.6rem;
    text-align: left;
  }

  header nav .gnav a:not(.btn_mail):before {
    content: "keyboard_double_arrow_right";
    font-family: var(--icons);
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 0 0;
    line-height: 1;
  }

  header nav .gnav .btn_mail {
    margin: 30px 0 0;
  }
}

.sp_fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  background: color-mix(in srgb, var(--black) 90%, var(--black) 0%);
  padding: 10px 15px 15px;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s;
}
.sp_fixed.is-visible {
  opacity: 1;
  visibility: visible;
}

.btn_tel {
  display: flex;
  flex-flow: column;
  gap: 5px;
  padding: 0 15px 0 0;
  line-height: 1;
}
.btn_tel small {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--black);
  font-weight: var(--bold);
  text-align: center;
}
.btn_tel small:after {
  position: absolute;
  top: 50%;
  right: -9px;
  transform: translateY(-50%);
  content: "";
  display: block;
  background: var(--yellow);
  height: calc(tan(60deg) * var(--hen) / 3);
  width: var(--hen);
  clip-path: polygon(0 0, 100% 50%, 0 100%); /*右*/

  --hen: 10px;
}
.btn_tel b {
  font-size: 3.2rem;
  font-weight: var(--bold);
}
.btn_tel span {
  font-size: 1.3rem;
}

.btn_cta1,
.btn_cta2 {
  display: grid;
  grid-template-columns: 32px 1fr 30px;
  align-items: center;
  gap: 20px;
  padding: 15px 30px;
  background: var(--green);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.3;

  --size: 33px;
}
.btn_cta2 {
  background: var(--blue);
}
.btn_cta1:before,
.btn_cta2:before {
  content: "";
  display: block;
  width: var(--size);
  height: auto;
  aspect-ratio: var(--ar);
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: currentColor;

  --mask: url(../images/icon_golf.svg) center center / contain no-repeat;
  --ar: 33/43;
}
.btn_cta1:after,
.btn_cta2:after {
  content: "arrow_forward";
  font-family: var(--icons);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  aspect-ratio: 1/1;
  width: 30px;
  height: auto;
  padding: 0 0 0 10px;
  border-left: 1px solid color-mix(in srgb, var(--btnAc) 30%, var(--white) 0%);
  font-size: 1.3rem;
  font-weight: normal;
}

.tel_sp {
  display: none;
}

/* そのまま小さく */
@media screen and (max-width: 980px) {
  .btn_tel b {
    font-size: 2.2rem;
  }
  .btn_tel span {
    font-size: 0.9rem;
  }

  .btn_cta1,
  .btn_cta2 {
    grid-template-columns: 20px 1fr 30px;
    gap: 10px;
    padding: 10px 15px;
    font-size: 1.4rem;

    --size: 20px;
  }
}

/* モバイル表示 */
@media screen and (max-width: 768px) {
  .sp_fixed {
    align-items: stretch;
    gap: 0;
    padding: 10px 10px 0;
  }

  .sp_fixed h2 {
    font-size: 1.3rem;
  }

  .tel_sp {
    display: flex;
  }
  .tel_pc {
    display: none;
  }

  .btn_tel {
    justify-content: center;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .btn_tel small {
    display: flex;
    justify-content: center;
    align-items: center;
    height: stretch;
    border-radius: 0;
    font-size: 1rem;
  }
  .btn_tel b {
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 100%;
    padding: 8px 0;
    background: var(--black);
    color: var(--white);
    font-size: 1.3rem;
  }
  .btn_tel b:before {
    content: "phone_in_talk";
    font-size: 2rem;
    font-family: var(--icons);
    font-variation-settings: "FILL" 1;
    font-weight: normal;
  }

  .btn_tel span {
    display: none;
  }

  .btn_cta1,
  .btn_cta2 {
    gap: 5px;
    padding: 5px 10px;
    font-size: 1.2rem;
    --size: 13px;
  }
}

/* より小さく */
@media screen and (max-width: 520px) {
  .sp_fixed {
    padding: 0;
  }
  .btn_tel {
    flex: 1;
  }
  .btn_cta1,
  .btn_cta2 {
    display: block;
    text-align: center;
  }
  .btn_cta1:before,
  .btn_cta2:before {
    margin: 0 auto 5px;
  }
  .btn_cta1:after,
  .btn_cta2:after {
    display: none;
  }
}

/*----------------------------------------
  has-second
----------------------------------------*/
.has-second dt {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0 0 10px;
  cursor: pointer;
}

.has-second dt:after {
  content: "arrow_drop_down";
  font-family: var(--icons);
}

.has-second .second-wrapper {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  padding: 30px 0;
  background: var(--black);
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.has-second:hover .second-wrapper {
  top: calc(100% - 10px);
  visibility: visible;
  opacity: 1;
}

/* second-content */
.second-content {
  display: flex;
  justify-content: center;
  gap: 3%;
  width: 90%;
  margin: 0 auto;
}

.has-second .second-content a.second {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 0;
  line-height: 1;
}

.has-second .second-content a.second figure img {
  aspect-ratio: 3/2;
  width: 180px;
  object-fit: cover;
}

.has-second .second-content a.second em {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1em;
  line-height: 1.4;
}

.has-second .second-content a.second em i::before {
  content: "chevron_right";
  display: block;
  color: var(--white);
  font-family: var(--icons);
  font-size: 1em;
  font-weight: normal;
}

@media screen and (max-width: 520px) {
  .has-second {
    width: 100%;
    padding: 10px 20px;
  }
  .has-second dt {
    padding: 0;
  }
  .has-second dt:after {
    display: none;
  }
  header nav .gnav .has-second dt a {
    padding: 0;
  }

  .has-second .second-wrapper {
    position: static;
    opacity: 1;
    width: 100%;
    padding: 10px 0 0;
    background: none;
    visibility: visible;
  }

  .has-second:hover .second-wrapper {
    box-shadow: none;
    visibility: visible;
    opacity: 1;
  }

  /* second-content */
  .second-content {
    flex-flow: wrap;
    justify-content: flex-start;
    gap: 3px;
    width: 100%;
  }

  .second-content > * {
    width: calc((100% - 3px * 1) / 2);
    background: color-mix(in srgb, var(--white) 20%, var(--white) 0%);
  }

  .has-second .second-content a.second {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    padding: 10px;
    line-height: 1;
  }

  .has-second .second-content a.second figure {
    display: none;
  }

  .has-second .second-content a.second em {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row;
    gap: 2px;
    width: 100%;
    font-size: 1.6rem;
  }

  .has-second .second-content a.second em i:before {
    font-size: 1.2rem;
  }
}

/*==================================================
 footer
==================================================*/
footer {
  padding: 0 0 130px;
  background: var(--Dgreen);
  color: var(--white);
  text-align: center;
  font-size: 1.2rem;
}

.footer_inner {
  position: relative;
  margin: 0 auto 40px;
  padding: 40px 0;
  background: url(../images/fotter_bg.jpg) no-repeat center / cover;
}
.footer_inner:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--gradgreen));
  opacity: 0.7;
  mix-blend-mode: multiply;
}
.footer_inner > * {
  position: relative;
  z-index: 3;
}

footer .sitemap {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 25px 35px;
  width: min(70%, 768px);
  margin: 40px auto 0;
  font-size: 1.5rem;
}
footer .sitemap a + a:before {
  content: "|";
  padding: 0 25px 0 0;
  opacity: 0.5;
}

@media screen and (max-width: 520px) {
  footer {
    padding: 0 0 90px;
  }

  .footer_inner {
    margin: 0 auto 20px;
    padding: 40px 0;
  }

  footer .sitemap {
    gap: 15px 20px;
    width: 100%;
    margin: 20px auto 0;
    font-size: 1.3rem;
  }

  footer .sitemap a + a:before {
    padding: 0 15px 0 0;
  }
}

/*==================================================
 TOP
==================================================*/
.sec-mv {
  position: relative;
  /*display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;*/
  width: 100%;
  height: max(43vw, 500px);

  --slideradius: 0;
}

.splide-mv,
.splide-mv > * {
  height: 100%;
}

/* 左（画像スライド） */
.sec-mv_wrap {
  width: 100%;
  border-radius: 0 var(--slideradius) var(--slideradius) 0;
}

.sec-mv_wrap li {
  position: relative;
  display: flex;
  padding-bottom: 40px;
}

.sec-mv_wrap picture {
  width: 100%;
}

.sec-mv_wrap picture {
  position: relative;
  width: 56%;
  height: max(43vw, 500px);
}

.sec-mv_wrap picture:before {
  position: absolute;
  top: 0;
  z-index: 2;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: repeating-conic-gradient(from 0deg, #f4f6f7 0deg 90deg, #338866 90deg 180deg);
  background-size: 2px 2px;
  background-repeat: repeat;
  opacity: 1;
  mix-blend-mode: multiply;
}

.sec-mv_wrap picture:first-child:before {
  left: 0;
  clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.sec-mv_wrap picture:first-child img {
  clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.sec-mv_wrap picture:last-child:before {
  right: 0;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.sec-mv_wrap picture:last-child img {
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.sec-mv_wrap picture:last-child {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: -1;
}

/* 右（テキストスライド） */
.sec-mv_right {
  position: relative;
  border-radius: var(--slideradius) 0 0 var(--slideradius);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sec-mv_center {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  color: var(--white);
  text-align: center;

  --titm: 10px auto 0;
  --titp: 8px 30px;
  --titbg: var(--yellow);
  --titc: var(--Dgreen);
  --titfz: max(1.8vw, 2.2rem);

  --titAc: var(--white);
  --titAfz: max(2vw, 5.8rem);
  --titAm: 0;

  --btnAm: 0 auto;
}

.sec-mv_center .tit_ {
  border-radius: 100px;
  /*box-shadow: 0 0 0 3px var(--white);*/
}

.sec-mv_center .tit_A {
  text-shadow: 2px 2px 5px var(--black);
  font-family: var(--font_jp2);
}

.sec-mv_center .splide__slide {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  gap: 35px;
  padding: 0 0 0 50px;
}

@media screen and (max-width: 520px) {
  .sec-mv {
    height: auto;
    padding: 15px 0 0;
    grid-template-columns: 1fr;
    gap: 10px;

    --slideradius: 10px;
  }

  .sec-mv_wrap li {
    flex-flow: column;
    padding-bottom: 0;
  }

  .sec-mv_wrap picture {
    width: 100%;
    height: 80vw;
  }
  .sec-mv_wrap picture:first-child {
    margin-bottom: -20vw;
  }

  .sec-mv_wrap picture:last-child {
    position: relative;
    top: auto;
    right: auto;
    z-index: -1;
    margin: 0 0 0 auto;
  }

  .sec-mv_wrap picture:first-child:before {
    left: 0;
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
  }

  .sec-mv_wrap picture:first-child img {
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
  }

  .sec-mv_wrap picture:last-child:before {
    right: 0;
    clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0% 100%);
  }

  .sec-mv_wrap picture:last-child img {
    clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0% 100%);
  }

  /*
  .sec-mv:before {
    border-width: 15px;
  }
  */

  /* 左（画像スライド） 
  .sec-mv_left {
    border-radius: var(--slideradius);
    height: 40vh;
  }
    */

  /* 右（テキストスライド） 
  .sec-mv_right {
    border-radius: var(--slideradius);
    height: auto;

    --titp: 8px 20px;
    --titfz: 1.6rem;
    --titta: center;

    --titAfz: 1.9rem;
    --titAm: 0;
  }
    

  .sec-mv_right:before {
    border-radius: var(--slideradius);
  }
    */

  .sec-mv_center .splide__slide {
    align-items: center;
    gap: 20px;
    padding: 0;
    text-align: center;
  }

  .sec-mv_center {
    top: 30%;

    --titta: center;
    --titm: 10px auto 0;
    --titp: 8px 30px;
    --titfz: 1.8rem;

    --titAfz: 2.5rem;
  }
}

/*----------------------------------------
  moviie
----------------------------------------*/
.sec-movie {
  position: relative;

  --titAm: 0 0 20px;
  --titCc: var(--Dgreen);
}

.sec-movie_inner {
  width: var(--base_width);
  margin: 0 auto;
}

.sec-movie:before,
.sec-movie:after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  width: 35vw;
  height: auto;
  background-image: url("../images/siba.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background: var(--green);
  opacity: 0.3;

  --radius: 100vw;
}

.sec-movie:before {
  top: 0;
  left: 0;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 0 0 var(--radius) 0;
}

.sec-movie:after {
  bottom: 0;
  right: 0;
  aspect-ratio: 1/1;
  border-radius: var(--radius) 0 0 0;
}

/* youtube */
.flexfit_movie {
  --gap: 20px;
  margin: 0 auto 30px;
}

/* バナー max2*/
.flexnum_bnr2 {
  justify-content: center;
  margin: 100px auto 0;
  --num: 2;
  --gap: 25px;
}

.flexnum_bnr2 a img {
  max-width: none;
  width: 100%;
  height: auto;
}

.flexnum_bnr2 figure {
  width: fit-content;
  width: 100%;
}

.flexnum_bnr2 figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  font-size: 1.8rem;
  text-align: center;
  font-weight: var(--bold);
}

.flexnum_bnr2 figure figcaption:after {
  content: "arrow_forward";
  font-family: var(--icons);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  aspect-ratio: 1/1;
  width: 30px;
  height: auto;
  padding: 0 0 0 10px;
  border-left: 1px solid color-mix(in srgb, var(--white) 30%, var(--white) 0%);
  font-size: 1.3rem;
  font-weight: normal;
}

/* バナー max3*/
.flexfit_bnr {
  --gap: 20px;
  justify-content: center;
  margin: 80px auto 0;
}

@media screen and (max-width: 520px) {
  .sec-movie {
    position: relative;

    --titAm: 0 0 10px;
  }

  .sec-movie_inner {
    width: 90%;
  }

  /* 装飾 */
  .sec-movie:before,
  .sec-movie:after {
    width: 60vw;
    height: 100vw;

    --radius: 50px;
  }
  /* youtube */
  .flexfit_movie {
    --gap: 20px;
  }
  /* バナー */
  .flexnum_bnr2 {
    width: 90%;
    margin: 40px auto 0;
    --num: 1;
    --gap: 10px;
  }

  .flexnum_bnr2 figure figcaption {
    font-size: 1.4rem;
    text-align: left;
  }

  .flexfit_bnr {
    --gap: 10px;
    margin: 40px auto 0;
  }
}

/*----------------------------------------
  news
----------------------------------------*/
.sec-news {
  background: var(--Lgray);
  display: grid;
  grid-template-columns: 1fr 250px;
  grid-template-areas:
    "titB btnA"
    "ul ul";
  align-items: start;

  --btnAm: 50px 0 0;
}

.flexnum_news4 {
  grid-area: ul;
  --num: 4;
  --gap: 30px;
}
.flexnum_news3 {
  grid-area: ul;
  --num: 3;
  --gap: 25px;
}

[class*="flexnum_news"] li a {
  display: flex;
  flex-flow: column;
  gap: 6px;
}

[class*="flexnum_news"] picture {
  display: block;
  margin: 0 0 10px;
  aspect-ratio: 3/4;
  width: 100%;
  height: auto;
  background: var(--white);
  overflow: hidden;
}

[class*="flexnum_news"] p {
  font-weight: var(--bold);
}

@media screen and (max-width: 520px) {
  .sec-news {
    grid-template-columns: 1fr;
    grid-template-areas:
      "titB"
      "ul"
      "btnA";
    --btnAm: 40px auto 0;
  }

  .flexnum_news4 {
    --num: 1;
    --gap: 10px;
  }

  .flexnum_news3 {
    --num: 1;
    --gap: 20px;
  }

  [class*="flexnum_news"] li a {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: repeat(2, auto) 1fr;
    grid-template-areas:
      "pic time"
      "pic em"
      "pic p";
    align-items: start;
    gap: 6px 15px;
  }
  [class*="flexnum_news"] li a picture {
    grid-area: pic;
    aspect-ratio: auto;
    margin: 0;
  }
  [class*="flexnum_news"] li a time {
    grid-area: time;
  }
  [class*="flexnum_news"] li a em {
    grid-area: em;
  }
  [class*="flexnum_news"] li a p {
    grid-area: p;
  }
}

/*----------------------------------------
  concept
----------------------------------------*/
.sec-concept {
  background: var(--Lgreen) url(../images/top_bg01.webp) no-repeat top right/ auto 100%;

  --titCc: var(--Dgreen);

  --btnAm: 40px 0 0;
}

.sec-concept-slide {
  padding-bottom: 100px;
  background: var(--Lgreen);
}

.sec-concept-slide picture img {
  width: 430px;
  height: auto;
  aspect-ratio: 640/480;
  object-fit: cover;
}

@media screen and (max-width: 520px) {
  .sec-concept {
    background-position: center;
    --btnAm: 30px 0 0;
  }

  .sec-concept-slide {
    padding-bottom: 50px;
  }
}

/*----------------------------------------
  faclities1
----------------------------------------*/
.sec-facility1 {
  background: var(--Dgreen) url(../images/top_bg02.webp) no-repeat center top / 100% auto;
  color: var(--white);

  --titBc: var(--white);
  --titBic: var(--white);
}

.altern_facility1 {
  --firstchild: 55%; /*子メディア幅*/

  --titAm: 0 0 20px;
  --titAc: var(--white);
  --titAfz: 2.2rem;

  --titCc: var(--yellow);
  --titCts: none;

  --btnAbg: var(--white);
  --btnAc: var(--green);
  --btnAm: 30px 0 0;
}

.altern_facility1 .text figure {
  margin-top: 50px;
}

@media screen and (max-width: 520px) {
  .sec-facility1 {
  }

  .altern_facility1 {
    --firstchild: 100%; /*子メディア幅*/

    --titAm: 0 0 15px;
    --titAfz: 1.8rem;

    --btnAm: 15px 0 0;
  }
}

/*----------------------------------------
  faclities2
----------------------------------------*/
.sec-facility2 {
  background: var(--Lgray);
  --titBic: var(--ocher);
}

.altern_facility2 {
  --firstchild: 55%; /*子メディア幅*/

  --titAm: 0;

  --btnAbg: var(--ocher);
  --btnAm: 20px 0 0;
}

.altern_facility2 .logo {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 5px 15px;
  margin: 0 0 20px;
}

.altern_facility2 .logo img {
  width: auto;
  height: 40px;
}

.facility2_wrap {
  margin: 15px 0 0;
  padding: 20px;
  background: var(--black);
  color: var(--white);
}
.facility2_wrap dt {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 15px;
}
.facility2_wrap dd {
  font-size: 1.4rem;
}

@media screen and (max-width: 520px) {
  .sec-facility2 {
  }

  .sec-facility2 .tit_B i {
    top: -0.5em;
    line-height: 0.8;
  }

  .altern_facility2 {
    --firstchild: 100%; /*子メディア幅*/

    --titAm: 0;

    --btnAbg: var(--ocher);
    --btnAm: 15px 0 0;
  }

  .altern_facility2 .logo {
    margin: 0 0 15px;
  }
  .altern_facility2 .logo img {
    height: 30px;
  }

  .facility2_wrap dt {
    font-size: 1.8rem;
  }
}

/*----------------------------------------
  access
----------------------------------------*/
.sec-access {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-access .logo {
  width: 320px;
  margin: 0 0 15px;
}

.sec-access dl dt {
  font-size: 1.1em;
  margin: 0 0 10px;
}

.sec-access dl dd {
  font-size: 0.9em;
}

.sec-access .map {
  flex: none;
  width: 50%;
}

.sec-access .map iframe {
  aspect-ratio: 16/9;
  width: 100%;
}

@media screen and (max-width: 520px) {
  .sec-access {
    flex-flow: column;
    gap: 30px;
    padding: 30px 0;
  }

  .sec-access .logo {
    width: 240px;
    margin: 0 0 10px;
  }

  .sec-access .map {
    flex: none;
    width: 100%;
  }
}

/*==================================================
 紀州ゴルフセンター
==================================================*/

/*----------------------------------------
  mv
----------------------------------------*/
.page-mv {
  --radius: 0;
}
.box-mv {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 0 0 auto;
}

.box-mv figure {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius) 0 0 0;
  overflow: hidden;
}
.box-mv figure:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gray);
  opacity: 0.3;
  mix-blend-mode: multiply;
}

.box-mv .text {
  z-index: 5;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 45px;
  padding: 140px var(--over-width-half);
  color: var(--white);
  font-size: 3.4rem;
  font-weight: var(--bold);
}

.box-mv .logo img {
  order: 1;
  width: auto;
  height: 75px;
  border: 10px solid var(--white);
}

.box-mv h2 {
  order: 2;
  text-shadow: var(--textshadow);
}

.box-mv h1 {
  order: 3;
  padding: 15px 50px 15px var(--over-width-half);
  margin-left: calc(-1 * var(--over-width-half));
  background: color-mix(in srgb, var(--black) 80%, var(--black) 0%);
  background: var(--black);
  border-radius: 0 100px 100px 0;
  font-size: 2.8rem;
}

.page-mv .splide-infinity {
  margin-top: -60px;
}

.page-mv .splide-infinity img {
  aspect-ratio: 640/480;
  width: 100%;
  border: 1px solid var(--white);
  border-bottom: none;
}

@media screen and (max-width: 520px) {
  .box-mv {
    position: relative;
    margin: 0 0 0 auto;
  }

  .page-mv::before {
    border-width: 15px;
  }

  .box-mv figure {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
  }

  .box-mv .text {
    gap: 20px;
    padding: 30px 15px;
    color: var(--white);
    font-size: 1.9rem;
    font-weight: var(--bold);
  }

  .box-mv .logo img {
    height: 40px;
  }

  .box-mv h1 {
    order: 3;
    padding: 10px 20px 10px 30px;
    margin-left: -30px;
    font-size: 1.6rem;
  }

  .page-mv .splide-infinity {
    margin-top: -2vw;
  }
}

/*----------------------------------------
  news
----------------------------------------*/

/*----------------------------------------
  facility
  .sec-facility1を流用
----------------------------------------*/
.box-trackman {
  padding: 40px 5vw 40px 1vw;
  display: flex;
  align-items: center;
  gap: 0px;
  background: #110b0f;
  color: var(--white);

  --titAc: var(--white);
  --titAm: 0 0 15px;

  --btnAm: 30px 0 0;
  --btnAbg: var(--white);
  --btnAc: var(--black);
}

.box-trackman picture {
  flex: none;
  width: 55%;
}

.box-trackman dl {
  margin: 20px 0 0;
  padding: 20px;
  border: 1px solid var(--white);
}
.box-trackman dl dt {
  font-size: 1.1em;
  font-weight: bold;
  margin: 0 0 5px;
}

.sec-facility3 {
  background: var(--Dgreen);
  color: var(--white);

  --titBc: var(--white);
  --titBic: var(--white);
}

.sec-facility3 .sec-facility3_inner {
  width: var(--base_width);
  margin: 0 auto 100px;
}

@media screen and (max-width: 520px) {
  .box-trackman {
    padding: 40px 5%;
    flex-flow: column;
    gap: 15px;

    --btnAm: 30px auto 0;
  }

  .box-trackman picture {
    flex: none;
    width: 100%;
  }

  .sec-facility3 .sec-facility3_inner {
    width: 90%;
    margin: 0 auto 40px;
  }
}

/*----------------------------------------
  price 
----------------------------------------*/
.sec-price {
  background: var(--Lgray);

  --titAm: 45px 0 30px;

  --titDm: 80px auto calc(var(--titDhen) + 10px);
  --titDp: 15px;
  --titDbg: var(--Dgreen);
  --titDhen: 20px;
}

.flexnum_price2 {
  --num: 2;
  --gap: 50px;
}

dl[class*="price_"] {
  padding: 30px;
  border: 1px solid var(--gray);
  border-radius: 5px;
  background: var(--white);
  --btnAm: 40px auto 10px;
}

dl[class*="price_"] dt {
  margin: 0 0 15px;
  font-size: 2rem;
  font-weight: var(--bold);
}

dl[class*="price_"]:not(.price_D) .indent {
  font-size: 0.8em;
}

dl[class*="price_"] h4 {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  padding: 5px 20px;
  background: linear-gradient(to right, var(--gradgold));
  color: var(--white);
  font-size: 2rem;
  font-weight: var(--bold);
}
dl[class*="price_"] h4 small {
  font-weight: normal;
}
dl[class*="price_"] strong {
  font-weight: var(--bold);
  font-size: 1.1em;
}

dl[class*="price_"] .btn_cta2 {
  max-width: min(80%, 360px);
  margin: 30px auto 0;
}

dl.price_A {
  border-color: var(--Dred);
}
dl.price_D {
  border-color: var(--gold);
  background: color-mix(in srgb, var(--gold) 5%, var(--white) 5%);
}
dl.price_E {
  border-color: var(--Dblue);
}
dl.price_F {
  border-color: var(--green);
}
dl.price_F .btn_cta2 {
  background: var(--green);
}

.yen_large {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px dashed var(--gray);
  font-weight: var(--bold);
  line-height: 1;
}
.yen_large:first-of-type {
  margin-top: 20px;
  border-top: 1px dashed var(--gray);
}
.yen_large:last-of-type {
  margin-bottom: 20px;
}
.yen_large .fzs {
  font-size: 3rem;
}
.yen_large .fzl {
  font-size: 6.6rem;
}
.yen_large .fzt {
  font-size: 1.8rem;
}

.yen_middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px dashed var(--gray);
  font-weight: var(--bold);
  line-height: 1;
}
.yen_middle:first-of-type {
  margin-top: 20px;
  border-top: 1px dashed var(--gray);
}
.yen_middle:last-of-type {
  margin-bottom: 20px;
}
.yen_middle .fzs {
  font-size: 2.4rem;
  line-height: 1.3;
}
.yen_middle .fzl {
  font-size: 6.6rem;
}
.yen_middle .fzm {
  font-size: 4rem;
}

/*4列テーブル */
.table_price4 {
  --gaps: 1px;

  --num: 3;
  --gap: 10px;
}

.table_price4 dl {
  text-align: center;
  font-weight: var(--bold);
}

/*3列テーブル */
.table_price3 {
  --gaps: 1px;

  --num: 2;
  --gap: 10px;
}

.table_price3 dl {
  text-align: center;
  font-weight: var(--bold);
}

.table_price3 dl.td dd.Dred {
  background: color-mix(in srgb, var(--gold) 8%, var(--white) 100%);
}

/*共通*/
[class*="table_price"] dl {
  color: var(--white);
}

[class*="table_price"] dl dd {
  padding: 15px;
}

[class*="table_price"] .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* テーブル1列目 見出し */
[class*="table_price"] dl.th dd {
  border-radius: 10px 10px 0 0;
  font-size: 1.8rem;
}

[class*="table_price"] dl.th dd.bg_Dredgold {
  background: linear-gradient(-45deg, var(--gold) 50%, var(--Dred) 50%);
}

/* テーブルｎ列目 内容 */

/* グレイセル  */
[class*="table_price"] dl.td dt {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  background: var(--gray);
  color: var(--white);
  font-size: 1.8rem;
}
[class*="table_price"] dl.td dt small {
  font-size: 1.4rem;
  font-weight: normal;
}

/* 内容セル */
[class*="table_price"] dl.td dd {
  border-width: 2px;
  border-style: solid;
  font-size: 2.4rem;
  line-height: 1.1;
}

[class*="table_price"] dl.td dd:not([class*="bg_"]) {
  background: var(--white);
}
[class*="table_price"] dl.td dd:is(.Dblue, .bg_Dblue) {
  border-color: var(--Dblue);
}
[class*="table_price"] dl.td dd:is(.Dred, .bg_Dred) {
  border-color: var(--Dred);
}
[class*="table_price"] dl.td dd:is(.gold, .bg_gold) {
  border-color: var(--gold);
}

[class*="table_price"] dl.td dd small {
  font-size: 1.6rem;
}

[class*="table_price"] .fzl {
  font-size: 4.3rem;
  line-height: 1.3;
}
[class*="table_price"] .fzm {
  font-size: 3.2rem;
}
[class*="table_price"] .fzs {
  font-size: 2.4rem;
}

@media screen and (max-width: 520px) {
  .sec-price {
    background: var(--Lgray);

    --titDm: 40px auto calc(var(--titDhen) + 10px);
    --titDp: 15px;

    --titAm: 20px 0;
  }

  .flexnum_price2 {
    --num: 1;
    --gap: 15px;
  }

  dl[class*="price_"] h4 {
    flex-flow: column;
    gap: 0;
    margin: 20px auto 15px;
    padding: 10px;
    font-size: 1.8rem;
  }
  dl[class*="price_"] strong {
    font-size: 1em;
  }

  dl[class*="price_"] .btn_cta2 {
    font-size: 1.6rem;
    max-width: 100%;
    padding: 10px;
  }

  .yen_large .fzs {
    font-size: 2rem;
  }
  .yen_large .fzl {
    font-size: 4rem;
  }

  .yen_middle .fzs {
    font-size: 2rem;
    line-height: 1.3;
  }
  .yen_middle .fzl {
    font-size: 4rem;
  }
  .yen_middle .fzm {
    font-size: 2.4rem;
  }

  .yen_large div:last-of-type {
    margin-left: auto;
  }

  /*4列テーブル */
  .table_price4 {
    --gaps: 1px;

    --num: 3;
    --gap: 1px;
  }

  .table_price4 dl {
    display: flex;
    flex-flow: wrap;
    text-align: center;
    font-weight: var(--bold);
  }

  /*3列テーブル */
  .table_price3 {
    --gaps: 1px;

    --num: 2;
    --gap: 1px;
  }
  .table_price3 dl {
    display: flex;
    flex-flow: wrap;
  }

  .table_price3 dl.td dd.Dred {
    background: color-mix(in srgb, var(--gold) 8%, var(--white) 100%);
  }

  /*共通*/
  [class*="table_price"] dl dt {
    width: 100%;
  }

  [class*="table_price"] dl dd {
    flex: 1;
    padding: 10px 1px;
  }

  [class*="table_price"] .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  /* テーブル1列目 見出し */
  [class*="table_price"] dl.th dd {
    font-size: 1.5rem;
  }

  /* テーブルｎ列目 内容 */

  /* グレイセル  */
  [class*="table_price"] dl.td dt {
    font-size: 1.6rem;
  }
  [class*="table_price"] dl.td dt small {
    font-size: 1.4rem;
    font-weight: normal;
  }

  /* 内容セル */
  [class*="table_price"] dl.td dd {
    font-size: 1.6rem;
  }

  [class*="table_price"] dl.td dd small {
    font-size: 1.2rem;
  }

  [class*="table_price"] .fzl {
    font-size: 2.4rem;
  }
  [class*="table_price"] .fzm {
    font-size: 1.6rem;
  }
  [class*="table_price"] .fzs {
    font-size: 1.6rem;
  }
}

/*----------------------------------------
  flow
----------------------------------------*/
.sec-flow {
}

.sec-flow:before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: url(../images/sisetu_img11.webp) no-repeat center / cover;
}

.flexnum_flow3 {
  --num: 3;
  --gap: 2.5vw;
}

.flexnum_flow3 + .flexnum_flow3 {
  margin-top: 50px;
}

.flexnum_flow3 li {
  padding: 30px;
  background: var(--white);
  box-shadow: var(--dorpshadow);
}

.flexnum_flow3 li h3 {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--Dgreen);
  color: var(--Dgreen);
  font-weight: var(--bold);
}

.flexnum_flow3 li h3 > * {
  line-height: 1;
}

.flexnum_flow3 li h3 small {
  margin: 0 8px 0 0;
  font-size: 2.4rem;
}
.flexnum_flow3 li h3 i {
  margin: 0 3px 0 0;
  font-size: 3.8rem;
}
.flexnum_flow3 li h3 b {
  font-size: 2.6rem;
}

@media screen and (max-width: 520px) {
  .flexnum_flow3 {
    --num: 1;
    --gap: 15px;
  }

  .sec-flow:before {
    aspect-ratio: 912/1160;
    width: 50%;
    height: auto;
  }
}

/*----------------------------------------
  app
----------------------------------------*/
.sec-app {
  padding-top: 40px;
  background: var(--green) url(../images/sisetu_bg01.webp) no-repeat top left/ auto 100%;
  color: var(--white);

  --titBm: 0 0 40px;
  --titBc: var(--white);
  --titBic: var(--white);
}

.horizon_app {
  align-items: flex-end;
  --gap: 50px;
  --firstchild: 350px;
}

.horizon_app .text {
  margin: 0 0 80px;
}

.flexnum_app {
  --num: 3;
  --gap: 20px;
}

.flexnum_app li {
  position: relative;
  border: 1px solid var(--white);
  background: color-mix(in srgb, var(--Dgreen) 30%, var(--white) 0%);
  padding: 15px;
  margin: 4rem 0 0;
  counter-increment: number;
  font-size: 1.4rem;
}
.flexnum_app li:before {
  position: absolute;
  bottom: 98%;
  right: 0;
  content: "POINT" counter(number, decimal-leading-zero);
  font-family: var(--font_en);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}

.flexnum_app li strong {
  display: block;
  color: var(--yellow);
  font-weight: bold;
  font-family: var(--font_jp2);
  font-size: 1.6rem;
}

.dl-app {
  display: flex;
  justify-content: space-between;
  background: var(--white);
  color: var(--black);
  padding: 20px 40px;
  margin: 35px auto 0;
}
.dl-app a {
  flex: 1;
  text-align: center;
}
.dl-app a img {
  display: block;
  width: auto;
  height: 72px;
  margin: 5px auto;
}

@media screen and (max-width: 520px) {
  .horizon_app {
    align-items: flex-end;
    --gap: 0;
    --firstchild: 150px;
  }

  .horizon_app .text {
    margin: 0 0 50px;
  }

  .horizon_app picture {
    position: absolute;
    top: 15px;
    right: 0;
  }

  .flexnum_app {
    --num: 1;
    --gap: 10px;
  }

  .dl-app {
    gap: 5px;
    font-size: 1rem;
    line-height: 1.3;
    padding: 20px 8px;
  }
  .dl-app a img {
    height: 44px;
  }
}

/*----------------------------------------
  bnr 
----------------------------------------*/
.sec-bnr {
  padding-bottom: 100px;
}

@media screen and (max-width: 520px) {
  .sec-bnr {
    padding-bottom: 50px;
  }
}

/*----------------------------------------
  golfshop
----------------------------------------*/
.sec-golfshop {
  --titBic: var(--Dblue);
  background: url(../images/sisetu_bg02.jpg) no-repeat center / cover;
}

.sec-golfshop_inner {
  padding: 30px 130px 130px;
  background: color-mix(in srgb, var(--white) 40%, var(--white) 40%);
}

.horizon_golfshop {
  --horizonff: row-reverse;
  --firstchild: 250px;
}

.sec-golfshop dl {
  --titAc: var(--Dblue);
  --titAm: 40px 0 10px;
}

.flexnum_golfshop {
  margin: 40px auto 0;
  --num: 3;
  --gap: 15px;
}

@media screen and (max-width: 520px) {
  .sec-golfshop_inner {
    padding: 20px;
  }

  .sec-golfshop_inner .tit_B i {
    font-size: 5rem;
  }

  .horizon_golfshop {
    --horizonff: column;
    --firstchild: 100%;
  }

  .sec-golfshop dl {
    --titAm: 20px 0 10px;
  }

  .flexnum_golfshop {
    margin: 30px auto 0;
    --num: 2;
    --gap: 1px;
  }
}

/*----------------------------------------
  ban
----------------------------------------*/

/*==================================================
 ブリヂストンゴルフアカデミー
==================================================*/
.main-bsga {
  --titBic: var(--blue);

  --btnAbg: var(--blue);
}

/*----------------------------------------
choice
----------------------------------------*/
.sec-choice {
  z-index: 5;
  padding-top: 100px;
  padding-bottom: 1px;
  background: var(--Lblue);

  --titfz: 4rem;
  --titff: row;
  --titjc: center;
  --titta: center;
  --titm: 0 auto 30px;
  --titgap: 0;
}

.flexnum_choice4 {
  margin: 60px auto 40px;
  font-weight: var(--bold);
  --num: 4;
  --gap: 40px;
}

.flexnum_choice4 li {
  position: relative;
}
.flexnum_choice4 li + li:before {
  position: absolute;
  top: 0;
  left: calc(-1 * var(--gap) / 2);
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: color-mix(in srgb, var(--blue) 15%, var(--gray) 15%);
  box-shadow: 1px 0 0 color-mix(in srgb, var(--white) 100%, var(--white) 100%);
}

.flexnum_choice4 picture {
  position: relative;
  aspect-ratio: 280/199;
  width: 100%;
}
.flexnum_choice4 picture:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  aspect-ratio: 1/1;
  width: 80%;
  height: auto;
  background: var(--white);
  border-radius: 50vw;
}
.flexnum_choice4 picture img {
  position: relative;
  z-index: 5;
}

.flexnum_choice4 h3 {
  margin: 15px 0 0;
}

.box-choice {
  width: 100%;
  margin: 15px auto -100px;
  padding: 40px 15px;
  background: var(--blue);
  color: var(--white);
  font-size: 3.6rem;
  font-weight: var(--bold);
  text-align: center;
  box-shadow: var(--dorpshadow);
}

@media screen and (max-width: 520px) {
  .sec-choice {
    padding-top: 50px;

    --titff: row wrap;
    --titfz: 2.6rem;
    --titta: center;
    --titm: 0 auto 20px;
  }

  .flexnum_choice4 {
    margin: 0 auto 10px;
    --num: 1;
    --gap: 0;
  }

  .flexnum_choice4 li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
  }

  .flexnum_choice4 li + li:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    box-shadow: 0 1px 0 color-mix(in srgb, var(--white) 100%, var(--white) 100%);
  }

  .flexnum_choice4 picture {
    flex: none;
    width: 130px;
  }

  .flexnum_choice4 h3 {
    margin: 0;
  }

  .box-choice {
    padding: 15px;
    border: 3px solid var(--white);
    font-size: 2rem;
  }
}

/*----------------------------------------
  about
----------------------------------------*/
.sec-about {
  z-index: 1;
  display: flex;
  flex-flow: column;
  gap: 30px;
  padding-top: 170px;
  padding-bottom: 80px;
  background: url(../images/school_img01.png) no-repeat bottom right / 60vw auto,
    linear-gradient(to bottom, var(--gradblue));
  color: var(--white);

  --titAfz: 2.8rem;
  --titAc: var(--white);
  --titAm: 0;
}

.sec-about .logo img {
  width: auto;
  height: 75px;
  border: 10px solid var(--white);
}

.sec-about .post-about {
  position: relative;
  background: var(--white);
  width: 40%;
  margin: 40px 0 0;
  padding: 20px;
  color: var(--Dblue);
  font-size: 2rem;
  font-weight: var(--bold);
  box-shadow: var(--dorpshadow);
}
.sec-about .post-about:before {
  position: absolute;
  bottom: 82%;
  right: 15px;
  content: "PICK UP";
  display: block;
  color: var(--Dblue);
  font-size: 6rem;
  font-family: var(--font_en);
  font-style: italic;
  line-height: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 520px) {
  .sec-about {
    z-index: 1;
    display: flex;
    flex-flow: column;
    gap: 30px;
    padding-top: 130px;
    padding-bottom: 25vw;
    background: url(../images/school_img01.png) no-repeat bottom right / 60vw auto,
      linear-gradient(to bottom, var(--gradblue));
    color: var(--white);

    --titAfz: 2.2rem;
    --titAc: var(--white);
    --titAm: 0;
  }

  .sec-about .logo img {
    height: 60px;
  }

  .sec-about .post-about {
    width: 85%;
    margin: 15px 0;
    padding: 20px;
    font-size: 1.7rem;
  }
  .sec-about .post-about:before {
    font-size: 3.5rem;
    bottom: 98%;
  }
}

/*----------------------------------------
  reason
----------------------------------------*/
.sec-reason {
  background: var(--Lgray);
}

.flexnum_reason3 {
  --num: 3;
  --gap: 30px;
}

.flexnum_reason3 li {
  counter-increment: number;
  display: flex;
  flex-flow: column;
  gap: 20px;
  padding: 0 0 20px;
  border-radius: 20px 20px 0 0;
  background: var(--white);
  overflow: hidden;
}

.flexnum_reason3 i {
  display: block;
  padding: 5px 40px;
  background: var(--Dblue);
  color: var(--white);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: var(--bold);
}
.flexnum_reason3 i:after {
  content: counter(number, decimal-leading-zero);
  display: inline-block;
  padding: 0 0 0 10px;
  font-size: 2em;
}

.flexnum_reason3 picture {
  display: block;
  padding: 0 20px;
}

.flexnum_reason3 h3 {
  padding: 0 20px;
  font-size: 2rem;
  font-weight: var(--bold);
}

.flexnum_reason3 p {
  padding: 0 20px;
}

@media screen and (max-width: 520px) {
  .flexnum_reason3 {
    --num: 2;
    --gap: 5px;
  }

  .flexnum_reason3 li {
    gap: 15px;
  }

  .flexnum_reason3 i {
    padding: 5px 20px;
    font-size: 1.5rem;
    text-align: center;
  }
  .flexnum_reason3 i:after {
    font-size: 2em;
  }

  .flexnum_reason3 picture {
    padding: 0 5px;
  }

  .flexnum_reason3 h3 {
    padding: 0 10px;
    font-size: 1.5rem;
  }

  .flexnum_reason3 p {
    padding: 0 10px;
    font-size: 1.4rem;
  }
}

/*----------------------------------------
  benefits
----------------------------------------*/
.altern_benefits {
  --gaps: 70px;
  --gap: 40px;
  --firstchild: 600px;

  --titAfz: 2.8rem;
  --titAm: 0 0 20px;
}

.altern_benefits > li {
  counter-increment: number;
}

.altern_benefits i {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 40px -40px;
  padding-left: 40px;
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
  font-size: 2.8rem;
  line-height: 1;
  font-family: var(--font_en);
  font-weight: var(--bold);
}
.altern_benefits > li:nth-child(even) i {
  margin: 0 -40px 40px 0;
  padding-left: 0;
  padding-right: 40px;
}

.altern_benefits i:after {
  content: counter(number, decimal-leading-zero);
  font-size: 9.4rem;
  line-height: 0.7;
  font-style: italic;
  white-space: nowrap;
}

@media screen and (max-width: 520px) {
  .altern_benefits {
    --gaps: 40px;
    --gap: 0;
    --firstchild: 100%;

    --titAfz: 2rem;
    --titAm: 0 0 15px;
  }

  .altern_benefits i {
    margin: 10px 0px 15px;
    padding-left: 40px;
    font-size: 2rem;
  }
  .altern_benefits > li:nth-child(even) i {
    margin: 10px 0px 15px;
    padding-left: 40px;
    padding-right: 0;
  }

  .altern_benefits i:after {
    font-size: 6rem;
  }
}

/*----------------------------------------
  trial
----------------------------------------*/
.sec-trial {
  background: url(../images/school_bg01.webp) no-repeat right bottom / cover;
}
.sec-trial:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  opacity: 0.5;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-trial_inner {
  width: 80%;
  margin: 0px auto;
  position: relative;
  z-index: 3;

  --titAfz: 2rem;
  --titAc: var(--white);

  --titDbg: var(--blue);
  --titDm: 0 auto 40px;
  --titDp: 20px 10px;
}

@media screen and (max-width: 520px) {
  .sec-trial_inner {
    width: 100%;

    --titAfz: 1.5rem;

    --titDm: 0 auto 30px;
    --titDp: 20px 15px;
  }
}

/*----------------------------------------
  instructor
----------------------------------------*/

.flexnum_staff4 {
  --num: 4;
  --gap: 50px;
}

.flexnum_staff4 h3 {
  margin: 15px 0;
  padding: 5px 20px;
  border-left: 5px solid var(--blue);
  font-size: 1.8rem;
  font-weight: var(--bold);
}

.flexnum_staff4 ol {
  display: flex;
  gap: 5px;
  margin: 15px 0;
}

.flexnum_staff4 ol li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  aspect-ratio: 1/1;
  width: 1.7em;
  height: auto;
  border-radius: 50px;
  background: var(--gray);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

.flexnum_staff4 ol li.on {
  background: var(--blue);
}

.flexnum_staff4 p {
  font-size: 1.3rem;
}

@media screen and (max-width: 520px) {
  .flexnum_staff4 {
    --num: 2;
    --gap: 30px;
  }
  .flexnum_staff4 h3 {
    padding: 5px 10px;
  }

  .flexnum_staff4 ol {
    flex-flow: wrap;
    gap: 5px;
  }

  .flexnum_staff4 ol li {
    font-size: 1.3rem;
  }
}

/*----------------------------------------
  voice
----------------------------------------*/
.sec-voice {
  background: var(--Lblue);
}

.list_voice {
  display: flex;
  flex-flow: column;
  gap: 30px;
}

.list_voice > * {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 50px;
}

.list_voice > *:nth-child(even) {
  margin-right: 0;
  margin-left: 50px;
}

.balloon {
  width: 70%;
  position: relative;
  margin: 0 0 0 auto;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
  flex-grow: 1;
  font-size: 1.4rem;
}
.balloon:after {
  position: absolute;
  top: 50%;
  right: 99%;
  transform: translateY(-50%);
  content: "";
  --hen: 25px;
  background: var(--white);
  height: calc(tan(60deg) * var(--hen) / 2);
  width: var(--hen);
  clip-path: polygon(0 50%, 100% 0, 100% 100%); /*左*/
}

.balloon strong {
  display: block;
  margin: 0 0 15px;
  color: var(--Dblue);
  font-size: 1.4em;
  font-weight: var(--bold);
}

.list_voice .fig {
  flex: none;
  width: 110px;
}

.list_voice figure {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  margin: 20px auto 5px;
  background: var(--blue);
  border-radius: 100px;
  font-size: 1.4rem;
  text-align: center;
  overflow: hidden;
}
.list_voice small {
  display: block;
  text-align: center;
}

@media screen and (max-width: 520px) {
  .sec-voice {
    --titBm: 0 0 20px;

    --titAm: 0 0 15px;
    --titAfz: 1.5rem;
  }
  .list_voice {
    gap: 0;
  }

  .list_voice > * {
    flex-flow: column;
    gap: 15px;
    margin-right: 0;
  }

  .list_voice > *:nth-child(even) {
    margin-right: 0;
    margin-left: 0;
  }

  .balloon {
    width: 100%;
    padding: 20px;
  }
  .balloon:after {
    position: absolute;
    top: auto;
    bottom: 100%;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    content: "";
    --hen: 16px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%); /*上*/
  }

  .balloon strong {
    font-size: 1.2em;
  }

  .list_voice .fig {
    flex: none;
    width: 80px;
  }

  .list_voice figure {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    margin: 20px auto 5px;
    background: var(--blue);
    border-radius: 100px;
    font-size: 1.4rem;
    text-align: center;
    overflow: hidden;
  }
  .list_voice small {
    display: block;
    text-align: center;
  }
}

/*----------------------------------------
  lesson
----------------------------------------*/
.sec-lesson {
  --titBic: var(--green);
}

.sec-lesson picture {
  display: block;
  margin: 20px 0;
}

.sp_scroll picture {
  margin-top: 0;
}

.sp_scroll i {
  display: none;
}

@keyframes slide-and-back {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width: 520px) {
  .sp_scroll {
    position: relative;
    overflow-x: auto;
  }

  .sp_scroll > * {
    width: 200%;
  }

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

  .sp_scroll i {
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    margin: 0 0 5px;
    padding: 3px 20px;
    border-radius: 5px;
    background: var(--gray);
    color: var(--white);
    font-size: 1.2rem;
  }

  .sp_scroll i:after {
    display: block;
    content: "swipe";
    font-family: var(--icons);
    color: var(--white);
    font-size: 1.8rem;

    animation-name: slide-and-back;
    animation-duration: 2s; /* アニメーションの時間を2秒に設定 */
    animation-timing-function: ease-in-out; /* 動きを滑らかにする */
    animation-iteration-count: infinite; /* 無限に繰り返す */
  }
}

/*----------------------------------------
  price
----------------------------------------*/

/*----------------------------------------
  program
----------------------------------------*/
.program_inner {
  width: 80%;
  margin: 0 auto;

  --titDm: 0 auto calc(var(--titDhen) + 10px);
  --titDp: 20px 10px;
}

.horizon_program {
  align-items: center;
  margin: 0 0 40px;
  --gap: 60px; /*横gap*/
  --horizonff: row; /*並び*/
  --firstchild: 35%; /*メディア幅*/

  --titAfz: 2rem;
  --titAm: 0 0 20px;
}

@media screen and (max-width: 520px) {
  .program_inner {
    width: 100%;
    margin: 0 auto;

    --titDm: 0 auto calc(var(--titDhen) + 10px);
    --titDp: 20px 10px;
  }

  .horizon_program {
    align-items: center;
    margin: 0 0 40px;
    --gap: 10px; /*横gap*/
    --horizonff: row wrap; /*並び*/
    --firstchild: 100%; /*メディア幅*/

    --titAfz: 1.8rem;
  }

  .horizon_program picture {
    width: 150px;
    margin: 0 auto;
  }
}

/*----------------------------------------
  recruit
----------------------------------------*/
.sec-recruit {
  background: var(--Lgreen) url(../images/school_bg02.webp) no-repeat right top / auto 100%;

  --titAm: 0 0 20px;
  --titAfz: 2.2rem;

  --titBic: var(--green);

  --btnAbg: var(--Dgreen);
  --btnAm: 50px 0 0;
}

@media screen and (max-width: 520px) {
  .sec-recruit {
    --titAm: 0 0 20px;
    --titAfz: 1.8rem;

    --btnAm: 30px 0 0;
  }
}

/*==================================================
 カスタム投稿関連
==================================================*/
.art-news {
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 100px;
}

.art-news aside {
  flex: none;
  width: 250px;
  padding: 0 0 10px;
}

.art-news aside h2 {
  padding: 15px 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--Dgreen) 20%, var(--white) 0%);
  box-shadow: 0 1px 0 0 var(--white);

  --titBm: 0;
}
.art-news aside h2.tit_B i {
  font-size: 5rem;
  top: -0.3em;
  left: 0;
}

.art-news aside a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 20px;
  margin: 0 0 1px;
  border-bottom: 1px solid color-mix(in srgb, var(--Dgreen) 20%, var(--white) 0%);
  background: color-mix(in srgb, var(--Dgreen) 5%, var(--white) 0%);
}
.art-news aside a:after {
  content: "arrow_forward";
  font-family: var(--icons);
  font-weight: normal;
  opacity: 0.8;
  font-size: 0.8em;
}

.art-news aside a:hover,
.art-news aside a.current {
  color: var(--green);
}

.sec-newsdetail {
  flex: 1;

  --titfz: 2.4rem;
  --titjc: flex-start;
  --titai: flex-start;
  --titm: 60px 0;
  --titta: left;
}

.sec-newsdetail .category_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec-newsdetail .time {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sec-newsdetail .category {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
}

.sec-newsdetail img {
  margin-top: 1em;
  margin-bottom: 1em;
}
.sec-newsdetail p {
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1.8;
}

.sec-newslist {
  flex: 1;
}

@media screen and (max-width: 520px) {
  .art-news {
    flex-flow: column-reverse;
    gap: 80px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .art-news aside {
    width: 100%;
    font-size: 1.5rem;
  }

  .art-news aside h2 {
    padding: 15px 15px;
    border-bottom: 1px solid color-mix(in srgb, var(--Dgreen) 20%, var(--white) 0%);
    box-shadow: 0 1px 0 0 var(--white);

    --titBm: 0;
  }
  .art-news aside h2.tit_B i {
    font-size: 3.8rem;
    top: -0.1em;
    left: 0;
  }

  .art-news aside a {
    padding: 15px;
  }

  .sec-newsdetail {
    flex: 1;

    --titfz: 2.2rem;
    --titm: 30px 0;
  }

  .art-news + .sec-news .tit_B i {
    font-size: 5.3rem;
    top: 0.2em;
  }
}

/*==================================================
 固定ページ（管理画面より投稿）
==================================================*/
.sec-page :is(h2, h3, h4, h5, h6) {
  font-weight: var(--bold);
  margin: 2em 0 1em;
}

.sec-page h2 {
  font-size: 1.6em;
}
.sec-page h3 {
  font-size: 1.5em;
}
.sec-page h4 {
  font-size: 1.4em;
}
.sec-page h5 {
  font-size: 1.3em;
}
.sec-page h6 {
  font-size: 1.2em;
}

.sec-page strong {
  font-weight: var(--bold);
  font-size: 1.1em;
}

.sec-page ol {
  list-style-type: decimal;
  margin: 1em 2em;
}
.sec-page ul {
  list-style: disc;
  margin: 1em 2em;
}
.sec-page :is(ol, ul) > li,
.sec-page p {
  margin: 0.5em 0;
}

.sec-page .table {
  width: 100%;
  margin: 1em 0 2em;
}

.sec-page .table table * {
  border: none;
}

.sec-page .table table :is(th, td) {
  padding: 20px;
  border-bottom: 1px solid var(--gray);
}

.sec-page .table table strong {
  display: block;
  width: 250px;
}

.sec-page iframe {
  display: block;
  aspect-ratio: 16/9;
  margin: 1em 0;
}

.sec-page p a {
  color: var(--green);
  text-decoration: underline;
}
.sec-page p a:hover {
  text-decoration: none;
}

.sec-page h2.tit_B {
  margin-top: 0;
}

@media screen and (max-width: 520px) {
  .sec-page h2 {
    font-size: 1.4em;
  }
  .sec-page h3 {
    font-size: 1.3em;
  }
  .sec-page h4 {
    font-size: 1.2em;
  }
  .sec-page h5 {
    font-size: 1.1em;
  }
  .sec-page h6 {
    font-size: 1em;
  }

  .sec-page .table {
    border-top: 1px solid var(--gray);
  }
  .sec-page .table :is(table, tbody, tr, th, td, table strong) {
    display: block;
    width: 100%;
  }

  .sec-page .table table :is(th, td) {
    padding: 20px;
    border-bottom: 1px solid var(--gray);
  }
}

/*==================================================
 CTA
==================================================*/
.sec-cta {
  background: var(--Lgreen);
  text-align: center;

  --titAm: 0 auto 30px;
}

.cta_bnr {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--green);
  box-shadow: 0 0 0 2px var(--white);
}
.cta_bnr > * {
  flex: 1;
}
.cta_bnr dt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: var(--green);
  color: var(--white);
  font-weight: var(--bold);
  font-size: 2.4rem;
}
.cta_bnr dd {
  padding: 30px 20px;
  color: var(--green);
}

.cta_bnr a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 0 15px;
  font-size: 4.2rem;
  font-weight: var(--bold);
}
.cta_bnr a:before {
  content: "";
  display: block;
  width: var(--size);
  height: auto;
  aspect-ratio: var(--ar);
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: currentColor;
  --ar: 1/1;
  --size: 1.2em;
  --mask: url(../images/icon_tel.svg) center center / contain no-repeat;
}

.sec-cta p {
  display: inline-block;
  color: var(--gray);
  font-size: 1.5rem;
  text-align: left;
}

@media screen and (max-width: 520px) {
  .cta_bnr {
    flex-flow: column;
  }

  .cta_bnr dt {
    padding: 20px;
    font-size: 2rem;
  }
  .cta_bnr dd {
    padding: 20px;
  }

  .cta_bnr a {
    font-size: 3.2rem;
  }

  .sec-cta p {
    display: inline-block;
    color: var(--gray);
    font-size: 1.3rem;
    text-align: left;
  }
}
