@charset "UTF-8";
/* -------------------------------
	default
-------------------------------- */
:root {
  --app-h: 100vh;
  --app-w: 100vw;
  --app-lh-base: 1.75;
}

@supports (height: 100dvh) {
  :root {
    --app-h: 100dvh;
    --app-w: 100dvw;
  }
}
html {
  font-size: 100%;
  /* 16px */
}
@media print, screen and (min-width: 992px) {
  html {
    font-size: 100%;
    /* 16px */
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  line-height: var(--app-lh-base);
  letter-spacing: 0.1em;
}

.fs-en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* -------------------------------
	ローディング
-------------------------------- */
.loader {
  display: none;
}

/* -------------------------------
	見出しタグ調整
-------------------------------- */
h1, .h1 {
  font-size: 1.9rem;
  /* 30px相当 */
}

h2, .h2 {
  font-size: 1.69rem;
  /* 27px相当 */
}

h3, .h3 {
  font-size: 1.5rem;
  /* 24px相当 */
}

h4, .h4 {
  font-size: 1.33rem;
  /* 21px相当 */
}

h5, .h5 {
  font-size: 1.19rem;
  /* 19px相当 */
}

h6, .h6 {
  font-size: 1.05rem;
  /* 17px相当 */
}

@media screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 2.21rem;
    /* 35px相当 */
  }

  h2, .h2 {
    font-size: 1.97rem;
    /* 32px相当 */
  }

  h3, .h3 {
    font-size: 1.75rem;
    /* 28px相当 */
  }

  h4, .h4 {
    font-size: 1.56rem;
    /* 25px相当 */
  }

  h5, .h5 {
    font-size: 1.38rem;
    /* 22px相当 */
  }

  h6, .h6 {
    font-size: 1.23rem;
    /* 20px相当 */
  }
}
@media screen and (min-width: 992px) {
  h1, .h1 {
    font-size: 2.37rem;
    /* 38px相当 */
  }

  h2, .h2 {
    font-size: 2.11rem;
    /* 34px相当 */
  }

  h3, .h3 {
    font-size: 1.88rem;
    /* 30px相当 */
  }

  h4, .h4 {
    font-size: 1.67rem;
    /* 27px相当 */
  }

  h5, .h5 {
    font-size: 1.48rem;
    /* 24px相当 */
  }

  h6, .h6 {
    font-size: 1.32rem;
    /* 21px相当 */
  }
}
@media screen and (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.53rem;
    /* 40px相当 */
  }

  h2, .h2 {
    font-size: 2.25rem;
    /* 36px相当 */
  }

  h3, .h3 {
    font-size: 2rem;
    /* 32px相当 */
  }

  h4, .h4 {
    font-size: 1.78rem;
    /* 28px相当 */
  }

  h5, .h5 {
    font-size: 1.58rem;
    /* 25px相当 */
  }

  h6, .h6 {
    font-size: 1.4rem;
    /* 22px相当 */
  }
}
h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

p, ol, ul, dl, table {
  margin-bottom: calc(var(--app-lh-base) * 1rem);
}
p + h3, p + h4, p + h5, p + h6, ol + h3, ol + h4, ol + h5, ol + h6, ul + h3, ul + h4, ul + h5, ul + h6, dl + h3, dl + h4, dl + h5, dl + h6, table + h3, table + h4, table + h5, table + h6 {
  margin-top: calc(var(--app-lh-base) * 2rem);
}
p:last-child, ol:last-child, ul:last-child, dl:last-child, table:last-child {
  margin-bottom: 0;
}

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

ul {
  padding-left: 1.5em;
}

ol {
  padding-left: 2em;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

body {
  color: #222;
}

/* -------------------------------
	header
-------------------------------- */
/* 基本サイズ */
#header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
@media print {
  #header {
    position: absolute;
  }
}
#header .container-fluid {
  padding-left: clamp(15px, 2.5vw, 40px);
  padding-right: clamp(15px, 2.5vw, 40px);
}

/* ---  --- */
.row-head {
  display: flex;
  align-items: center;
  height: 50px;
}
@media print, screen and (min-width: 992px) {
  .row-head {
    height: 130px;
  }
}
.row-head .logo h1 {
  font-size: 1rem;
  line-height: normal;
  padding: 0;
  margin: 0;
}
.row-head .logo h1 img {
  height: 40px;
}
@media print, screen and (min-width: 992px) {
  .row-head .logo {
    flex: 0 0 25%;
  }
  .row-head .logo h1 img {
    height: auto;
  }
}
@media print, screen and (min-width: 992px) {
  .row-head .head_contents {
    display: block;
    flex: 1 1 0;
  }
}

@media screen {
  #header {
    transition: background 0.3s ease;
  }

  .fixed-nav #header {
    background-color: white;
  }
}
@media screen and (min-width: 992px) {
  .row-head {
    transition: height 0.3s ease;
  }
  .row-head .logo h1 {
    width: 100%;
    transition: width 0.3s ease;
  }

  .fixed-nav .row-head {
    height: 80px;
  }
  .fixed-nav .row-head .logo h1 {
    width: 200px;
  }
}
/* ---  --- */
.headnavi {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .headnavi {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .headnavi > ul {
    font-size: min(calc(13px + 3 * (100vw - 992px) / 608), 16px);
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0 2em;
    margin-right: 2em;
  }
  .headnavi > ul ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .headnavi > ul a {
    text-decoration: none;
  }
  .headnavi > ul > li > a {
    color: #222;
    font-weight: 500;
    line-height: 2;
    display: block;
    padding: 0;
    border: none;
    position: relative;
  }
  .headnavi > ul > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    background-color: currentColor;
    transition: transform .3s ease, visibility .3s ease;
    visibility: hidden;
  }
  .headnavi > ul > li > a:hover:after, .headnavi > ul > li.active > a:after, .headnavi > ul > li > a.active:after {
    transform: scaleX(1);
    visibility: visible;
  }
  .headnavi .headnavi_index {
    flex: 0 0 100px;
  }
}

/* -------------------------------
	footer
-------------------------------- */
#footer {
  color: #fff;
  padding: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px) 0;
  background-color: #2764ba;
  page-break-inside: avoid;
}

.footer_content {
  text-align: center;
  width: 100%;
}
.footer_content h2 {
  font-size: 1rem;
  text-align: center;
  padding: 0 15%;
}
.footer_content p {
  text-align: center;
}
.footer_content .telphone {
  font-size: 28px;
  margin: 0;
}
.footer_content .txt01 {
  font-size: 14px;
}
.footer_content .txt02 {
  color: #2764ba;
  font-size: 14px;
  display: inline-block;
  padding: 0.25em 1.5em;
  border-radius: 20em;
  background-color: #FFED00;
}
@media print, screen and (min-width: 992px) {
  .footer_content {
    text-align: left;
  }
  .footer_content h2 {
    text-align: left;
    padding: 0;
  }
  .footer_content p {
    text-align: left;
  }
}

.copyright {
  font-size: 13px;
  text-align: center;
}

/* -------------------------------
	サイドメニュー
-------------------------------- */
#sidebar {
  position: fixed;
  top: 0px;
  bottom: 0;
  right: -280px;
  width: 280px;
  text-align: left;
  padding-top: 50px;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 9900;
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
@media print, screen and (min-width: 992px) {
  #sidebar {
    display: none !important;
  }
}

.list-sidenav {
  font-size: 18px;
  list-style: none;
  padding: 15px;
  margin: 0;
  width: 100%;
}
.list-sidenav > li {
  text-align: left;
  border-bottom: solid 1px #EBE0E5;
  position: relative;
}
.list-sidenav > li > a {
  color: #929292;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  padding: 1em 0 1em 1em;
  position: relative;
  transition: color 0.3s ease;
}
.list-sidenav > li.active > a, .list-sidenav > li > a:hover, .list-sidenav > li > a.active {
  color: #2764ba;
}

.sidebar_index {
  text-align: center;
  width: 200px;
  margin: 30px auto;
}

/* -------------------------------
	半透明
-------------------------------- */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 20;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 992px) {
  .overlay {
    display: none;
  }
}

/* -------------------------------
	三本線
-------------------------------- */
.menuWrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}
@media print, screen and (min-width: 992px) {
  .menuWrapper {
    display: none;
  }
}

#menuButton {
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 2px;
  margin: auto;
  background: #2764ba;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #2764ba;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -9px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 9px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  color: #2764ba;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
}

/* アニメーション */
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/* -------------------------------
	table
-------------------------------- */
table {
  line-height: 1.5;
}

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #D7DFDE;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #D7DFDE;
}
.table-design-1 > tbody > tr > th, .table-design-1 > tbody > tr > td {
  padding: 1.5em 0;
}
.table-design-1 > tbody > tr > th {
  padding-left: 1em;
}
.table-design-1 > tbody > tr > td {
  padding-left: 2em;
}

.table-design-2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #D7DFDE;
  border-left: 1px solid #D7DFDE;
}
.table-design-2 > thead > tr > th, .table-design-2 > thead > tr > td {
  text-align: center;
  padding: 1em;
  border-right: 1px solid #D7DFDE;
  border-bottom: 1px solid #D7DFDE;
  background-color: #BAEFED;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #D7DFDE;
  border-bottom: 1px solid #D7DFDE;
}
.table-design-2 > tbody > tr > th {
  background: #DEFDFC;
}
.table-design-2 > tbody > tr > td {
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .table-inline colgroup {
    display: none !important;
  }
  .table-inline > tbody > tr {
    width: 100%;
    display: block;
  }
  .table-inline > tbody > tr > th, .table-inline > tbody > tr > td {
    width: 100% !important;
    display: block;
  }

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-icon-1 {
  line-height: 1.5;
  list-style: none;
  padding: 0;
}
.list-icon-1 > li {
  padding-left: 2em;
  margin-bottom: 0.5em;
  position: relative;
}
.list-icon-1 > li i {
  font-size: 1.5em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0px;
}
.list-icon-1 > li:last-child {
  margin-bottom: 0;
}

.list-underline-1 {
  list-style: none;
  padding: 0;
}
.list-underline-1 > li {
  padding-left: 1.25em;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  border-bottom: solid 1px #BBCBCA;
  position: relative;
}
.list-underline-1 > li::before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.65);
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
.hr {
  height: 0;
  border-top: dashed 1px rgba(10, 186, 181, 0.5);
}

/* -------------------------------
	figure
-------------------------------- */
.link_figure, a:has(figure) {
  color: inherit;
  text-decoration: none;
}
.link_figure:hover, a:has(figure):hover {
  text-decoration: none;
}

figure {
  margin-bottom: 0;
  height: 100%;
  position: relative;
  z-index: 0;
}

/* -------------------------------
	画像関連
-------------------------------- */
/* フォントの縦幅に合わせる(svg) */
.img-font {
  width: auto;
  height: 1em;
}

/* 画像回り込み */
img.aligncenter, img.alignright, img.alignleft {
  display: block;
  margin: 0 auto;
}

@media print, screen and (min-width: 768px) {
  img.alignright {
    max-width: 38%;
    margin-left: 30px;
    display: inline;
  }
  img.alignleft {
    max-width: 38%;
    margin-right: 30px;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.alignleft {
    max-width: 100%;
  }
}
/* 画像を枠に収める */
.photo-ofi {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photo-ofi.cover img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* objectの位置 */
.object-lt {
  object-position: left top;
}

.object-lb {
  object-position: left bottom;
}

.object-rt {
  object-position: right top;
}

.object-rb {
  object-position: right bottom;
}

.object-cc {
  object-position: center center;
}

@media print, screen and (min-width: 576px) {
  .object-sm-lt {
    object-position: left top;
  }

  .object-sm-lb {
    object-position: left bottom;
  }

  .object-sm-rt {
    object-position: right top;
  }

  .object-sm-rb {
    object-position: right bottom;
  }

  .object-sm-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 768px) {
  .object-md-lt {
    object-position: left top;
  }

  .object-md-lb {
    object-position: left bottom;
  }

  .object-md-rt {
    object-position: right top;
  }

  .object-md-rb {
    object-position: right bottom;
  }

  .object-md-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 992px) {
  .object-lg-lt {
    object-position: left top;
  }

  .object-lg-lb {
    object-position: left bottom;
  }

  .object-lg-rt {
    object-position: right top;
  }

  .object-lg-rb {
    object-position: right bottom;
  }

  .object-lg-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1200px) {
  .object-xl-lt {
    object-position: left top;
  }

  .object-xl-lb {
    object-position: left bottom;
  }

  .object-xl-rt {
    object-position: right top;
  }

  .object-xl-rb {
    object-position: right bottom;
  }

  .object-xl-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1600px) {
  .object-xxl-lt {
    object-position: left top;
  }

  .object-xxl-lb {
    object-position: left bottom;
  }

  .object-xxl-rt {
    object-position: right top;
  }

  .object-xxl-rb {
    object-position: right bottom;
  }

  .object-xxl-cc {
    object-position: center center;
  }
}
/**/
.photo img, .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-radius-30, .photo-radius-30 img {
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
}

/* -------------------------------
	画像拡大
-------------------------------- */
a[data-lightbox]:after {
  content: "\f00e";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  color: #222;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  width: 2em;
  border-radius: 50%;
  margin-top: -1em;
  margin-left: -1em;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity .3s ease;
}
a[data-lightbox]:hover:after {
  opacity: 1;
}

/* -------------------------------
	btn
-------------------------------- */
.btn-icon-l, .btn-icon-r {
  position: relative;
}
.btn-icon-l i, .btn-icon-r i {
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
}

.btn-icon-l {
  padding-left: 2em;
}
.btn-icon-l i {
  left: 1.2em;
}

.btn-icon-r {
  padding-right: 2em;
}
.btn-icon-r i {
  right: 1.2em;
}

.btn-line-1 {
  line-height: 2;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.btn-line-1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left bottom;
  background-color: currentColor;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.btn-line-1:hover::after {
  transform: scaleX(1);
  visibility: visible;
}

.btn-1 {
  color: #fff;
  text-decoration: none;
  padding: 0.625em;
  padding-left: 1.25em;
  border-radius: 2px;
  min-width: 15em;
  display: inline-grid;
  align-items: center;
  grid-template-columns: 1fr 2.5em;
  box-shadow: 0px 5px 7px 0px rgba(153, 167, 167, 0.2);
  background-color: #27bab5;
  transition: all 0.3s ease;
}
.btn-1 > .txt {
  display: block;
  transition: letter-spacing 0.3s ease;
}
.btn-1 > .icon {
  color: #27bab5;
  line-height: 1;
  letter-spacing: normal;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  border-radius: 2px;
  background-color: #fff;
}
.btn-1.success {
  background-color: #2764ba;
  box-shadow: 0px 5px 7px 0px rgba(153, 158, 167, 0.2);
}
.btn-1.success > .icon {
  color: #2764ba;
}
.btn-1:hover {
  color: #fff;
}
.btn-1:hover > .txt {
  letter-spacing: 0.15em;
}
.btn-1:hover > .icon i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

.btn-map {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-map:hover {
  opacity: 0.65;
}

/* file icon */
.link-icon {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.link-icon::before, .link-icon::after {
  content: "";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1em;
}
.link-icon[href$=".pdf"]::before {
  content: "\f1c1";
}
.link-icon[href$=".xls"]::before, .link-icon[href$=".xlsx"]::before {
  content: "\f1c3";
}
.link-icon[href$=".doc"]::before, .link-icon[href$=".docx"]::before {
  content: "\f1c2";
}
.link-icon[target="_blank"]::before {
  display: none;
}
.link-icon[target="_blank"]::after {
  content: "\f35d";
  font-size: 0.75em;
  margin-left: 0.5em;
}
.link-icon:hover {
  opacity: 0.65;
}

@keyframes arrow-out-in {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* -------------------------------
	box
-------------------------------- */
.box-flex-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-flex-column__inner {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

/* -------------------------------
	googlemap
-------------------------------- */
.googlemap {
  position: relative;
  padding-top: 66.666%;
  /*これが縦横比*/
  height: 0;
  background-color: #f8f8f8;
  overflow: hidden;
  z-index: 0;
}
.googlemap:before {
  color: #ccc;
  font-size: 20px;
  content: "google map";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    padding-top: 560px;
  }
}

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  font-weight: 600;
  font-family: "Kodchasan", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
}
.telphone small {
  font-size: 0.75em;
}
.telphone i {
  font-size: 0.8333em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/* -------------------------------
	splide
-------------------------------- */
.splide_gallery .splide__arrow--prev, .splide_gallery .splide__arrow--next {
  font-size: 1rem;
  display: grid;
  place-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #01b4ed;
  position: absolute;
  top: 50%;
  margin-top: -2em;
  z-index: 20;
}
.splide_gallery .splide__arrow--prev svg, .splide_gallery .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.splide_gallery .splide__arrow--prev {
  left: -1em;
}
.splide_gallery .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.splide_gallery .splide__arrow--next {
  right: -1em;
}
.splide_gallery .splide__arrow:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.splide_gallery .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.splide_gallery .splide__pagination {
  font-size: 0;
  gap: 3px 5px;
  margin-top: 7px;
}
.splide_gallery .splide__pagination__page {
  width: 10px;
  height: 10px;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: #efefef;
}
.splide_gallery .splide__pagination__page.is-active {
  background-color: #01b4ed;
  pointer-events: auto;
}
.splide_gallery .splide-wrapper {
  position: relative;
}

/* -------------------------------
	common
-------------------------------- */
/* --▼color-- */
.bg-cr-1 {
  background-color: #f7fffe;
}

.bg-cr-2 {
  background-color: #f0fcfb;
}

.bg-cr-3 {
  background-color: #e0f8f8;
}

/* --▼text-- */
.text-kome {
  padding-left: 1.2em;
  position: relative;
}
.text-kome::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* --▼font -- */
.fs-xxs {
  font-size: 0.75em !important;
}

.fs-sm {
  font-size: 0.875em !important;
}

.fs-md {
  font-size: 1.125em !important;
}

.fs-lg {
  font-size: 1.250em !important;
}

.f-feature {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}

.fw4 {
  font-weight: 400 !important;
}

.fw5 {
  font-weight: 500 !important;
}

.fw7 {
  font-weight: 700 !important;
}

.fwn {
  font-weight: 400 !important;
}

.fwb {
  font-weight: 700 !important;
}

/* --▼margin-- */
/* space */
.mt-50 {
  margin-top: min(calc(30px + 20 * (100vw - 375px) / 1225), 50px);
}

.mb-50 {
  margin-bottom: min(calc(30px + 20 * (100vw - 375px) / 1225), 50px);
}

.mtb-50 {
  margin-top: min(calc(30px + 20 * (100vw - 375px) / 1225), 50px);
  margin-bottom: min(calc(30px + 20 * (100vw - 375px) / 1225), 50px);
}

.mt-60 {
  margin-top: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
}

.mb-60 {
  margin-bottom: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
}

.mtb-60 {
  margin-top: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
  margin-bottom: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
}

.mt-70 {
  margin-top: min(calc(35px + 35 * (100vw - 375px) / 1225), 70px);
}

.mb-70 {
  margin-bottom: min(calc(35px + 35 * (100vw - 375px) / 1225), 70px);
}

.mtb-70 {
  margin-top: min(calc(35px + 35 * (100vw - 375px) / 1225), 70px);
  margin-bottom: min(calc(35px + 35 * (100vw - 375px) / 1225), 70px);
}

.mt-80 {
  margin-top: min(calc(40px + 40 * (100vw - 375px) / 1225), 80px);
}

.mb-80 {
  margin-bottom: min(calc(40px + 40 * (100vw - 375px) / 1225), 80px);
}

.mtb-80 {
  margin-top: min(calc(40px + 40 * (100vw - 375px) / 1225), 80px);
  margin-bottom: min(calc(40px + 40 * (100vw - 375px) / 1225), 80px);
}

.mt-90 {
  margin-top: min(calc(45px + 45 * (100vw - 375px) / 1225), 90px);
}

.mb-90 {
  margin-bottom: min(calc(45px + 45 * (100vw - 375px) / 1225), 90px);
}

.mtb-90 {
  margin-top: min(calc(45px + 45 * (100vw - 375px) / 1225), 90px);
  margin-bottom: min(calc(45px + 45 * (100vw - 375px) / 1225), 90px);
}

.mt-100 {
  margin-top: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
}

.mb-100 {
  margin-bottom: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
}

.mtb-100 {
  margin-top: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
  margin-bottom: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
}

.mt-120 {
  margin-top: min(calc(60px + 60 * (100vw - 375px) / 1225), 120px);
}

.mb-120 {
  margin-bottom: min(calc(60px + 60 * (100vw - 375px) / 1225), 120px);
}

.mtb-120 {
  margin-top: min(calc(60px + 60 * (100vw - 375px) / 1225), 120px);
  margin-bottom: min(calc(60px + 60 * (100vw - 375px) / 1225), 120px);
}

.mt-140 {
  margin-top: min(calc(70px + 70 * (100vw - 375px) / 1225), 140px);
}

.mb-140 {
  margin-bottom: min(calc(70px + 70 * (100vw - 375px) / 1225), 140px);
}

.mtb-140 {
  margin-top: min(calc(70px + 70 * (100vw - 375px) / 1225), 140px);
  margin-bottom: min(calc(70px + 70 * (100vw - 375px) / 1225), 140px);
}

.pt-50 {
  padding-top: min(calc(30px + 20 * (100vw - 375px) / 1225), 50px);
}

.pb-50 {
  padding-bottom: min(calc(30px + 20 * (100vw - 375px) / 1225), 50px);
}

.ptb-50 {
  padding-top: min(calc(30px + 20 * (100vw - 375px) / 1225), 50px);
  padding-bottom: min(calc(30px + 20 * (100vw - 375px) / 1225), 50px);
}

.pt-60 {
  padding-top: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
}

.pb-60 {
  padding-bottom: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
}

.ptb-60 {
  padding-top: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
  padding-bottom: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
}

.pt-70 {
  padding-top: min(calc(35px + 35 * (100vw - 375px) / 1225), 70px);
}

.pb-70 {
  padding-bottom: min(calc(35px + 35 * (100vw - 375px) / 1225), 70px);
}

.ptb-70 {
  padding-top: min(calc(35px + 35 * (100vw - 375px) / 1225), 70px);
  padding-bottom: min(calc(35px + 35 * (100vw - 375px) / 1225), 70px);
}

.pt-80 {
  padding-top: min(calc(40px + 40 * (100vw - 375px) / 1225), 80px);
}

.pb-80 {
  padding-bottom: min(calc(40px + 40 * (100vw - 375px) / 1225), 80px);
}

.ptb-80 {
  padding-top: min(calc(40px + 40 * (100vw - 375px) / 1225), 80px);
  padding-bottom: min(calc(40px + 40 * (100vw - 375px) / 1225), 80px);
}

.pt-90 {
  padding-top: min(calc(45px + 45 * (100vw - 375px) / 1225), 90px);
}

.pb-90 {
  padding-bottom: min(calc(45px + 45 * (100vw - 375px) / 1225), 90px);
}

.ptb-90 {
  padding-top: min(calc(45px + 45 * (100vw - 375px) / 1225), 90px);
  padding-bottom: min(calc(45px + 45 * (100vw - 375px) / 1225), 90px);
}

.pt-100 {
  padding-top: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
}

.pb-100 {
  padding-bottom: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
}

.ptb-100 {
  padding-top: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
  padding-bottom: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
}

.pt-120 {
  padding-top: min(calc(60px + 60 * (100vw - 375px) / 1225), 120px);
}

.pb-120 {
  padding-bottom: min(calc(60px + 60 * (100vw - 375px) / 1225), 120px);
}

.ptb-120 {
  padding-top: min(calc(60px + 60 * (100vw - 375px) / 1225), 120px);
  padding-bottom: min(calc(60px + 60 * (100vw - 375px) / 1225), 120px);
}

.pt-140 {
  padding-top: min(calc(70px + 70 * (100vw - 375px) / 1225), 140px);
}

.pb-140 {
  padding-bottom: min(calc(70px + 70 * (100vw - 375px) / 1225), 140px);
}

.ptb-140 {
  padding-top: min(calc(70px + 70 * (100vw - 375px) / 1225), 140px);
  padding-bottom: min(calc(70px + 70 * (100vw - 375px) / 1225), 140px);
}

/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  padding-left: 0.75em;
  position: relative;
}
.title-1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.25em;
  height: 100%;
  border-radius: 1em;
  background-color: #2764ba;
}

.title-2 {
  line-height: 1.5;
  padding-left: 2em;
  position: relative;
}
.title-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  background: url("../images/common/icon001.svg") no-repeat center center/contain;
}

.title-3 {
  line-height: 1.5;
  text-align: center;
}
.title-3::after {
  content: "";
  width: 2.2em;
  height: 1px;
  display: block;
  margin: 0.75em auto 0;
  background-color: currentColor;
  opacity: 0.5;
}

.title-hh-1 {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}
.title-hh-1 > .fs-en {
  color: #2764ba;
  font-size: min(calc(30px + 18 * (100vw - 375px) / 1225), 48px);
  letter-spacing: 0.04em;
  line-height: normal;
  display: block;
}
.title-hh-1 > .fs-jp {
  color: #462e38;
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1225), 24px);
  display: block;
  margin-top: 0.5em;
}

/* -------------------------------
	bootstrap
-------------------------------- */
:root {
  --container-padding: 30px;
  --edge: calc(var(--container-padding) / -2);
}
@media print, screen and (min-width: 768px) {
  :root {
    --container-padding: clamp(30px, 8.125vw, 130px);
    --edge: calc(var(--container-padding) / -2);
  }
}
@media print, screen and (min-width: 1600px) {
  :root {
    --edge: calc((1470px - 100vw) / 2);
  }
}

.container-fluid-xl {
  width: 100%;
  max-width: 1600px;
  padding-left: calc(var(--container-padding) / 2);
  padding-right: calc(var(--container-padding) / 2);
  margin-left: auto;
  margin-right: auto;
}

/* --- row --- */
.row-gallery {
  margin-left: calc(-5px - 10 * (100vw - 375px) / 1125);
  margin-right: calc(-5px - 10 * (100vw - 375px) / 1125);
  gap: calc(10px + 20 * (100vw - 375px) / 1125);
}
.row-gallery > [class^="col"], .row-gallery > [class*=" col"] {
  padding-left: calc(5px + 10 * (100vw - 375px) / 1125);
  padding-right: calc(5px + 10 * (100vw - 375px) / 1125);
}
@media print, screen and (min-width: 1500px) {
  .row-gallery {
    margin-left: -15px;
    margin-right: -15px;
    gap: 30px 0;
  }
  .row-gallery > [class^="col"], .row-gallery > [class*=" col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* --- gap --- */
.gap-y-10 {
  gap: 10px 0;
}

.gap-y-20 {
  gap: 20px 0;
}

.gap-y-30 {
  gap: 30px 0;
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 10;
}
#pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
#pagetop img {
  width: clamp(36px, 3.4375vw, 66px);
}

/* -------------------------------
-------------------------------- */
/* ---  --- */
.golf_head {
  margin-top: 50px;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  .golf_head {
    margin-top: 130px;
  }
}

@media print, screen and (min-width: 992px) {
  .golf_head_img {
    position: absolute;
    inset: 0;
    z-index: -1;
    -webkit-mask-image: url("../images/golf-school/golf_head_mask.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
    mask-image: url("../images/golf-school/golf_head_mask.svg");
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: 100% 100%;
  }
  .golf_head_img img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.golf_head_content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: min(calc(30px + 90 * (100vw - 375px) / 608), 1225px) 0;
}
.golf_head_content .inner {
  margin: auto 0;
}
.golf_head_content .inner .subtxt1 {
  color: #2764ba;
  font-weight: 700;
  font-size: min(calc(15px + 5 * (100vw - 375px) / 1225), 20px);
  margin-bottom: 1em;
  padding: 0.5em 2em;
  border-radius: 0.5em;
  display: inline-block;
  background-color: #FFED00;
}
.golf_head_content .inner h2 {
  font-size: min(calc(20px + 25 * (100vw - 375px) / 1225), 45px);
  line-height: 1.75;
  text-shadow: 1px  1px 0 #fff, -1px  1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 1px  0   0 #fff, -1px  0   0 #fff, 0    1px 0 #fff, 0   -1px 0 #fff;
}
.golf_head_content .inner h2 strong {
  font-size: 1.3em;
}

.golf_head_row {
  letter-spacing: normal;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.golf_head_row .golf_head_row_col {
  border: solid 1px #2764ba;
  padding: 20px 10px;
  background-color: #fff;
}
.golf_head_row .golf_head_row_col .icon {
  width: min(calc(80px * (var(--ww-item) / 230)), 80px);
  aspect-ratio: 1/1;
  margin: 0 auto 10px;
}
.golf_head_row .golf_head_row_col .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.golf_head_row .golf_head_row_col .ttl {
  color: #2764ba;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  margin-bottom: 1em;
}
.golf_head_row .golf_head_row_col .column {
  font-size: 11px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .golf_head_row {
    grid-template-columns: repeat(4, clamp(160px, 20vw, 230px));
  }
  .golf_head_row .golf_head_row_col {
    border: solid 1px #2764ba;
    padding: 20px 10px;
  }
  .golf_head_row .golf_head_row_col .ttl {
    font-size: min(calc(17px * (var(--ww-item) / 230)), 17px);
  }
  .golf_head_row .golf_head_row_col .column {
    font-size: min(calc(14px * (var(--ww-item) / 230)), 14px);
  }
}

/* ---  --- */
.table-responsive table {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .table-responsive table {
    white-space: nowrap;
  }
}

.golf_schedule_table_1 {
  text-align: center;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #C2C6CC;
  border-left: 1px solid #C2C6CC;
}
.golf_schedule_table_1 > thead > tr > th, .golf_schedule_table_1 > thead > tr > td {
  text-align: center;
  padding: 1em;
  border-right: 1px solid #C2C6CC;
  border-bottom: 1px solid #C2C6CC;
  background-color: #C8DAF3;
}
.golf_schedule_table_1 > tbody > tr > th, .golf_schedule_table_1 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #C2C6CC;
  border-bottom: 1px solid #C2C6CC;
}
.golf_schedule_table_1 > tbody > tr > th {
  white-space: nowrap;
  background: #E6EEF9;
}
.golf_schedule_table_1 > tbody > tr > td {
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .golf_schedule_table_1 {
    font-size: min(calc(13px + 3 * (100vw - 768px) / 832), 16px);
  }
}

/* ---  --- */
.golf_price {
  background-color: #EBF1FA;
  overflow: hidden;
}
.golf_price .txt01 {
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1225), 20px);
  text-align: center;
}
.golf_price .txt01 strong {
  font-size: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .golf_price .title-hh-1 {
    text-align: left;
  }
}

.golf_price_row {
  --col:1;
  --gap:20px;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media print, screen and (min-width: 768px) {
  .golf_price_row {
    --col:2;
    --gap:30px;
    justify-content: center;
  }
}
@media print, screen and (min-width: 992px) {
  .golf_price_row {
    --col:3;
    --gap:30px;
  }
}
.golf_price_row .golf_price_row_col {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}

.golf_price_item {
  padding: clamp(20px, calc(40px * (var(--ww-item) / 470)), 40px) clamp(15px, calc(30px * (var(--ww-item) / 470)), 30px);
  border-radius: 16px;
  height: 100%;
  background-color: #fff;
}
.golf_price_item .plan-badge {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  padding: 0.25em 2em;
  border-radius: 10em;
  margin-bottom: 1.5rem;
  background-color: #2764ba;
}
.golf_price_item .plan-title {
  font-size: clamp(16px, calc(26px * (var(--ww-item) / 470)), 26px);
  margin: 0 0 0.5rem;
}
.golf_price_item .plan-subtitle {
  font-size: clamp(13px, calc(16px * (var(--ww-item) / 470)), 16px);
  margin: 0;
}
.golf_price_item .price-container {
  font-size: clamp(25px, calc(50px * (var(--ww-item) / 470)), 50px);
  line-height: normal;
  text-align: center;
  padding: 0.75em 0;
  margin-bottom: 0.75em;
  border-bottom: solid 1px #ccc;
}
.golf_price_item .price-container .currency {
  font-size: 0.72em;
}
.golf_price_item .price-container .amount {
  font-weight: 700;
}
.golf_price_item .price-container .period {
  font-size: 0.64em;
}
.golf_price_item .price-container .period .tax-label {
  font-size: 0.8125em;
}
.golf_price_item .plan-info {
  font-weight: 700;
  font-size: clamp(14px, calc(16px * (var(--ww-item) / 470)), 16px);
}
.golf_price_item .plan-info i {
  color: #2764ba;
}
.golf_price_item .features_list {
  font-size: clamp(14px, calc(16px * (var(--ww-item) / 470)), 16px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.golf_price_item .features_list > li {
  padding-left: 1.25em;
  margin-top: 0.5em;
  position: relative;
}
.golf_price_item .features_list > li::before {
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  transform: scale(0.75);
}

.golf_price_column h3 {
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .golf_price_column .list-icon-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em 2em;
  }
}

/* ---  --- */
.golf_environment_column h3 {
  text-align: center;
}
.golf_environment_column .golf_environment_price {
  color: #2764ba;
  font-size: min(calc(25px + 25 * (100vw - 375px) / 1225), 50px);
  line-height: normal;
  text-align: center;
}
.golf_environment_column .golf_environment_price .currency {
  font-size: 0.72em;
}
.golf_environment_column .golf_environment_price .amount {
  font-weight: 700;
}
.golf_environment_column .golf_environment_price .period {
  font-size: 0.64em;
}
.golf_environment_column .golf_environment_price .period .tax-label {
  font-size: 0.8125em;
}

.golf_environment_image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(calc(10px + 20 * (100vw - 375px) / 1225), 30px);
  max-width: 1220px;
  margin: 0 auto;
}

/* ---  --- */
.golf_instructor {
  padding: min(calc(20px + 20 * (100vw - 375px) / 1225), 40px) 0;
  background-color: #011e47;
  background-image: url("../images/common/bg002.png");
}
.golf_instructor .golf_instructor_inner {
  padding: min(calc(20px + 40 * (100vw - 375px) / 1225), 60px);
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  background-color: #fff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.golf_instructor_column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.golf_instructor_column .inner {
  margin: auto 0;
}
.golf_instructor_column .inner h2 .tag {
  font-size: 16px;
  display: block;
}
@media print, screen and (min-width: 992px) {
  .golf_instructor_column .inner {
    padding-left: min(calc(30px + 65 * (100vw - 992px) / 608), 95px);
  }
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.ttf?33x09a") format("truetype"), url("../fonts/icomoon/icomoon.woff?33x09a") format("woff"), url("../fonts/icomoon/icomoon.svg?33x09a#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
i[class^="icon-"], i[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icon001:before {
  content: "\e900";
}

.icon-icon002:before {
  content: "\e901";
}

.icon-icon003:before {
  content: "\e902";
}

.icon-icon004:before {
  content: "\e903";
}

/* =============================
 * フェード（上下左右）
 * ============================= */
@media screen {
  .amn-fade-up,
  .amn-fade-down,
  .amn-fade-left,
  .amn-fade-right {
    --translate-y: 50px;
    --translate-y-on: 0;
    --translate-x: 100px;
    --translate-x-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }

  .amn-fade-up {
    transform: translateY(var(--translate-y));
  }
  .amn-fade-up.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }

  .amn-fade-down {
    transform: translateY(calc(var(--translate-y) * -1));
  }
  .amn-fade-down.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }

  .amn-fade-left {
    transform: translateX(var(--translate-x));
  }
  .amn-fade-left.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }

  .amn-fade-right {
    transform: translateX(calc(var(--translate-x) * -1));
  }
  .amn-fade-right.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }

  .amn-span-up {
    opacity: 0;
  }
  .amn-span-up .is-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform;
  }
  .amn-span-up.is-active {
    opacity: 1;
  }
  .amn-span-up.is-active .is-span {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen {
  .amn-blur-1 {
    --duration: 1s;
    --easing: ease-out;
    opacity: 0;
    filter: blur(1em);
    transition: opacity var(--duration) var(--easing), filter var(--duration) var(--easing);
  }
  .amn-blur-1.is-active {
    opacity: 1;
    filter: blur(0);
  }
}
/* =============================
 * 行要素の段階表示
 * ============================= */
@media screen {
  .js-row-1 > * {
    --translate-y: 50px;
    --translate-y-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transform: translateY(var(--translate-y));
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }
  .js-row-1 > *.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
@media screen and (min-width: 768px) {
  .js-row-md-up > * {
    --translate-y: 50px;
    --translate-y-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transform: translateY(var(--translate-y));
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }
  .js-row-md-up > *.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
/* =============================
 * マスクエフェクト
 * ============================= */
@media screen {
  .amn-lr-open {
    --mask-duration: 0.5s cubic-bezier(.9,.09,.67,.93);
    opacity: 0;
    mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 100% 50%;
    -webkit-mask-position: 100% 50%;
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
    transition: mask-position var(--mask-duration);
  }
  .amn-lr-open.is-active {
    opacity: 1;
    mask-position: 0% 50%;
    -webkit-mask-position: 0% 50%;
  }
}
/* =============================
 * マスクアップ
 * ============================= */
@media screen {
  .amn-mask-up {
    --duration: 1s;
    --easing: ease;
    display: inline-block;
    opacity: 0;
    overflow: hidden;
  }
  .amn-mask-up > .is-span {
    display: inline-block;
    transform: translateY(101%);
    transition: transform var(--duration) var(--easing);
  }
  .amn-mask-up.is-active {
    opacity: 1;
  }
  .amn-mask-up.is-active > .is-span {
    transform: translateY(0%);
  }
}
/* =============================
 * マーカー
 * ============================= */
@media screen {
  .amn-marker-yellow {
    --mark-bg: rgba(254,239,68,1);
    --mark-duration: 3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, var(--mark-bg) 50%, var(--mark-bg) 90%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat;
    background-size: 200% 1em;
    background-position: 200% 0.5em;
    transition: background var(--mark-duration);
    display: inline;
  }
  .amn-marker-yellow.is-active {
    background-position: 100% 0.5em;
  }
}
/* =====================================================
 * シャッターエフェクト（CSS変数版）
 * ===================================================== */
@media screen {
  .amn-shutter {
    --shutter-bg: #73b400;
    --shutter-duration: 0.5s;
    --shutter-easing: cubic-bezier(.62,0,.46,1.01);
    --shutter-delay: 0.7s;
    opacity: 0;
    position: relative;
    z-index: 0;
  }
  .amn-shutter .shutter__element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--shutter-bg);
    z-index: 10;
    transform: scale(0, 1);
  }
  .amn-shutter .shutter__contents {
    opacity: 0;
    height: 100%;
  }
  .amn-shutter.lr.is-active {
    opacity: 1;
  }
  .amn-shutter.lr.is-active .shutter__element {
    animation: shutter2_lr_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_lr_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.lr.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
  .amn-shutter.rl.is-active {
    opacity: 1;
  }
  .amn-shutter.rl.is-active .shutter__element {
    animation: shutter2_rl_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_rl_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.rl.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
}
@keyframes shutter2_lr_1 {
  from {
    transform: scale(0, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_lr_2 {
  from {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_1 {
  from {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_2 {
  from {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_contents {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 印刷用 */
@page {
  margin: 10mm 4mm 10mm 4mm;
}
@media print {
  body {
    min-width: 1500px !important;
  }

  .container {
    min-width: 1200px !important;
  }

  .container-fluid-xl {
    min-width: 1500px !important;
  }

  .row {
    overflow: visible !important;
  }

  [class^="col"], [class*=" col"], [class^="col-"], [class*=" col-"] {
    page-break-inside: avoid;
  }

  #pagetop {
    opacity: 0;
    visibility: hidden;
  }

  .page-break {
    page-break-inside: avoid;
    page-break-after: avoid;
  }
}
/* firefox　ハック */
@-moz-document url-prefix() {
  @page {
    margin: auto;
  }
}

/*# sourceMappingURL=golf-school.css.map */
