@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;
}

/* -------------------------------
	header
-------------------------------- */
/* 基本サイズ */
#header {
  width: 100%;
  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: 137px;
  }
}
.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 15%;
  }
  .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: rgba(255, 255, 255, 0.8);
  }
}
@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: 110px;
  }
}
/* -------------------------------
	メインメニュー
-------------------------------- */
#gNavi {
  --gnavi-yohaku: min(calc(20px + 48 * (100vw - 992px) / 928), 48px);
  display: none;
}
@media print, screen and (min-width: 992px) {
  #gNavi {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.list-gnav {
  font-size: min(calc(14px + 4 * (100vw - 992px) / 608), 18px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0 var(--gnavi-yohaku);
}
.list-gnav > li > button {
  display: none;
}
.list-gnav > li .parent-link {
  display: none;
}
.list-gnav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-gnav a {
  text-decoration: none;
}
.list-gnav > li > a {
  letter-spacing: 0.06em;
  line-height: 2;
  display: block;
  position: relative;
  transition: color .3s ease;
}
.list-gnav > li > a::before {
  content: '';
  position: absolute;
  bottom: calc(50% + 0.75em);
  left: 50%;
  width: 1.611112em;
  height: 0.833334em;
  margin-left: -0.80556em;
  transform: scale(0);
  background: url("../images/common/gnavi_active.png") no-repeat center center/contain;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.list-gnav > li > a:hover, .list-gnav > li.active > a {
  color: #0abab5;
}
.list-gnav > li > a:hover::before, .list-gnav > li.active > a::before {
  transform: scaleX(1);
  visibility: visible;
}

/* サブメニュー */
.list-gnav > li:has(> div) > a {
  padding-right: 1.35em;
}
.list-gnav > li:has(> div) > a::after {
  content: "\f107";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.88888em;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -.4em;
}

.list-gnav > li {
  position: relative;
}
.list-gnav > li > div {
  display: none;
  position: absolute;
  left: 50%;
  padding-top: 30px;
  transform: translateX(-50%);
}
.list-gnav > li > div > ul {
  min-width: 100%;
  padding: .5em;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.015);
  background-color: #fff;
}
.list-gnav > li > div > ul > li > a {
  font-size: 0.88888em;
  display: block;
  padding: 0.5em 1em;
  border-radius: 10px;
  transition: color 0.3s ease, background 0.3s ease;
}
.list-gnav > li > div > ul > li > a:hover, .list-gnav > li > div > ul > li.active > a {
  color: #fff;
  background-color: #0abab5;
}

.gnavi_contact {
  padding-left: var(--gnavi-yohaku);
}
.gnavi_contact .btn {
  font-size: min(calc(14px + 4 * (100vw - 992px) / 608), 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.11112em;
  height: 2.66667em;
  padding: 0;
  border-radius: 10em;
  border: solid 1px #0abab5;
  transition: color 0.3s ease, background 0.3s ease;
}
.gnavi_contact .btn i {
  color: #0abab5;
  font-size: 1em;
  margin-right: 0.25em;
  transition: color 0.3s ease;
}
.gnavi_contact .btn:hover {
  color: #fff;
  background-color: #0abab5;
}
.gnavi_contact .btn:hover i {
  color: #fff;
}

.gnavi_sns {
  padding-left: var(--gnavi-yohaku);
}
.gnavi_sns > ul {
  font-size: 30px;
  line-height: 1;
  letter-spacing: normal;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1em);
  align-items: center;
  gap: 0 0.66667em;
}
.gnavi_sns > ul > li > a {
  transition: opacity 0.3s ease;
}
.gnavi_sns > ul > li > a:hover {
  opacity: 0.65;
}

.gnavi_golf_school {
  padding-left: var(--gnavi-yohaku);
  margin-left: var(--gnavi-yohaku);
  border-left: solid 1px #bfbfbf;
  display: flex;
  align-items: center;
}
.gnavi_golf_school .btn-line-1 {
  font-size: min(calc(14px + 4 * (100vw - 992px) / 608), 18px);
}
.gnavi_golf_school .btn-line-1 i {
  color: #2764ba;
  font-size: 1.11112em;
}

/* -------------------------------
	main
-------------------------------- */
/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  height: min(calc(180px + 220 * (100vw - 375px) / 1225), 400px);
  display: flex;
  align-items: center;
  margin-top: 50px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  .main_ttl {
    margin-top: 137px;
  }
}
.main_ttl > .bg {
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  overflow: hidden;
  position: absolute;
  inset: 0 clamp(15px, 2.5vw, 40px) 0 36%;
  z-index: -1;
  pointer-events: none;
}
.main_ttl > .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_ttl h2 {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.main_ttl h2 > .fs-jp {
  font-weight: 500;
  font-size: min(calc(25px + 20 * (100vw - 375px) / 1225), 45px);
  display: block;
  position: relative;
  z-index: 0;
}
.main_ttl h2 > .fs-jp::after {
  content: attr(data-txt);
  color: #fff;
  text-stroke: 0.1em #fff;
  -webkit-text-stroke: 0.1em #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}
.main_ttl h2 > .fs-en {
  color: #0abab5;
  font-weight: 500;
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
  display: block;
  padding-left: 2em;
  margin-top: .5em;
  position: relative;
}
.main_ttl h2 > .fs-en::before {
  content: "";
  position: absolute;
  left: 0.25em;
  top: 50%;
  width: 1.25em;
  height: 1px;
  background-color: currentColor;
}

/* -------------------------------
	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);
}

/* -------------------------------
	スクロールバー
-------------------------------- */
div, .scrollbar {
  scrollbar-color: #0abab5 #E4EDED;
  scrollbar-width: thin;
}
div::-webkit-scrollbar, .scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
div::-webkit-scrollbar-track, .scrollbar::-webkit-scrollbar-track {
  background: #E4EDED;
}
div::-webkit-scrollbar-thumb, .scrollbar::-webkit-scrollbar-thumb {
  background: #0abab5;
}

/* -------------------------------
	サイドメニュー
-------------------------------- */
#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: #462e38;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  padding: 1em 0 1em 2.5em;
  position: relative;
  transition: color 0.3s ease;
}
.list-sidenav > li > a::before {
  content: "\e903";
  position: absolute;
  top: 50%;
  left: 0.5em;
  color: #E4EFEE;
  font-family: 'icomoon' !important;
  font-size: 1.3em;
  line-height: 1;
  margin-top: -.5em;
  transition: color 0.3s ease;
}
.list-sidenav > li.active > a, .list-sidenav > li > a:hover {
  color: #0abab5;
}
.list-sidenav > li.active > a::before, .list-sidenav > li > a:hover::before {
  color: #0abab5;
}
.list-sidenav > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-sidenav > li > ul > li {
  padding-left: 2.5em;
  margin-bottom: 0.5em;
}
.list-sidenav > li > ul > li > a {
  font-size: 0.88888em;
  line-height: 2;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  position: relative;
}
.list-sidenav > li > ul > li > a::before {
  content: "-";
  position: absolute;
  left: -1em;
}
.list-sidenav > li > ul > li.active > a, .list-sidenav > li > ul > li > a:hover {
  color: #0abab5;
}

.sidebar_contact {
  margin: 20px 15px;
}
.sidebar_contact .btn {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.66667em;
  padding: 0;
  border-radius: 10em;
  border: solid 1px #0abab5;
  transition: color 0.3s ease, background 0.3s ease;
}
.sidebar_contact .btn i {
  color: #0abab5;
  font-size: 1em;
  margin-right: 0.25em;
  transition: color 0.3s ease;
}
.sidebar_contact .btn:hover {
  color: #fff;
  background-color: #0abab5;
}
.sidebar_contact .btn:hover i {
  color: #fff;
}

.sidebar_sns {
  margin: 20px 15px;
}
.sidebar_sns > ul {
  font-size: 40px;
  line-height: 1;
  letter-spacing: normal;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1em);
  align-items: center;
  justify-content: center;
  gap: 0 0.66667em;
}
.sidebar_sns > ul > li > a {
  transition: opacity 0.3s ease;
}
.sidebar_sns > ul > li > a:hover {
  opacity: 0.65;
}

.sidebar_golf_school {
  text-align: center;
  margin: 20px 15px;
  padding-top: 20px;
  border-top: solid 1px #bfbfbf;
}
.sidebar_golf_school .btn-line-1 {
  font-size: 18px;
}
.sidebar_golf_school .btn-line-1 i {
  color: #2764ba;
  font-size: 1.11112em;
}

/* -------------------------------
	半透明
-------------------------------- */
.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: #0abab5;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #0abab5;
}
#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: 3px;
  width: 100%;
  color: #0abab5;
  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);
}

/* -------------------------------
	footer
-------------------------------- */
#footer {
  color: #fff;
  padding-top: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
  padding-bottom: 40px;
  background-color: #0abab5;
  page-break-inside: avoid;
  overflow: hidden;
}

.footer_content {
  width: 100%;
}
.footer_content h2 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  display: grid;
  grid-template-columns: 6.10714em auto;
  align-items: center;
  justify-content: center;
  gap: 0 0.71428em;
}
.footer_content h2 .txt small {
  font-size: 0.57142em;
}
.footer_content p {
  text-align: center;
}
.footer_content p a {
  color: #fff;
  text-decoration: none;
}
@media print, screen and (min-width: 992px) {
  .footer_content h2 {
    font-size: min(calc(20px + 8 * (100vw - 992px) / 608), 28px);
    justify-content: flex-start;
  }
  .footer_content p {
    text-align: left;
  }
}

.f_navi {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .f_navi {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    justify-content: center;
    margin: 32px 0;
  }
}
@media print, screen and (min-width: 992px) {
  .f_navi {
    justify-content: flex-end;
    margin: 0;
  }
}

.foot_navi_list {
  font-size: 18px;
  letter-spacing: 0.06em;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0 60px;
}
.foot_navi_list a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  position: relative;
}
.foot_navi_list a::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;
}
.foot_navi_list a:hover::after {
  transform: scaleX(1);
  visibility: visible;
}
.foot_navi_list > li > ul {
  padding: 0;
  list-style: none;
}
.foot_navi_list > li > ul > li {
  font-weight: 400;
  font-size: 0.77777em;
  padding-left: 1em;
  margin-top: 0.5em;
  position: relative;
}
.foot_navi_list > li > ul > li::before {
  content: "-";
  position: absolute;
  left: 0;
}

.foot_navi_list_2 {
  font-size: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 11.11112em);
  gap: 8px;
}
.foot_navi_list_2 > li .btn {
  color: #fff;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 1.77777em;
  border-radius: 10em;
  border: solid 1px #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.foot_navi_list_2 > li .btn i {
  margin-right: 0.5em;
}
.foot_navi_list_2 > li .btn:hover {
  color: #0abab5;
  background-color: #fff;
}

.foot_bottom {
  margin-top: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
  padding-top: 40px;
  border-top: solid 1px #fff;
  display: grid;
  gap: 30px;
}
@media print, screen and (min-width: 992px) {
  .foot_bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 0;
  }
}

.foot_bottom_sns {
  text-align: center;
}
.foot_bottom_sns .ttl {
  margin-bottom: 15px;
}
.foot_bottom_sns .column > ul {
  font-size: 40px;
  line-height: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 2em);
  gap: 8px;
  justify-content: center;
}
.foot_bottom_sns .column > ul > li > a {
  line-height: 1;
  text-align: center;
  width: 100%;
  height: 2em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #fff;
}
.foot_bottom_sns .column > ul > li > a img {
  width: 1em;
}
@media print, screen and (min-width: 992px) {
  .foot_bottom_sns {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
  }
  .foot_bottom_sns .ttl {
    text-align: left;
  }
  .foot_bottom_sns .column > ul {
    font-size: 30px;
  }
}

.foot_bottom_link > ul {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot_bottom_link > ul > li > a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  transition: opacity 0.3s ease;
}
.foot_bottom_link > ul > li > a::before {
  content: "\e902";
  font-family: 'icomoon' !important;
  display: block;
  margin-right: 0.5em;
}
.foot_bottom_link > ul > li > a:hover {
  opacity: 0.65;
}
@media print, screen and (min-width: 992px) {
  .foot_bottom_link {
    padding-left: clamp(30px, 5.5vw, 88px);
  }
  .foot_bottom_link > ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5em clamp(30px, 4vw, 64px);
  }
}

.copyright {
  font-size: 14px;
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .copyright {
    margin-left: auto;
  }
}

@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";
}

/* 印刷用 */
@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=screen.css.map */
