/* common
----------------------------------*/
.sp {
  display: none !important;
}

.sp_ib {
  display: none !important;
}

.sp_min {
  display: none !important;
}

.inner {
  max-width: 1060px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 100%;
    margin: 0;
  }
}

table {
  width: 100%;
  table-layout: fixed;
}

td,
th {
  font-weight: normal;
  text-align: left;
}

.noLink a,
.noLink a:hover,
.noLink a img,
.noLink a:hover img {
  opacity: 0.6 !important;
  cursor: inherit;
}

.text_wh {
  color: #fff !important;
}

.hvUnderbar a {
  display: inline;
  line-height: 1.6;
  background: linear-gradient(transparent calc(100% - 1px), #fff calc(100% - 1px), #fff 100%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: 0.3s all;
}

.hvUnderbarBk a {
  display: inline;
  line-height: 1.6;
  background: linear-gradient(transparent calc(100% - 1px), #58564a calc(100% - 1px), #58564a 100%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: 0.3s all;
}

.hvUnderbarMenu a {
  display: inline;
  line-height: 1.6;
  background: linear-gradient(transparent calc(100% - 1px), #007a7f calc(100% - 1px), #007a7f 100%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: 0.3s all;
}

.hvUnderbar a:hover,
.hvUnderbarBk a:hover,
.hvUnderbarMenu a:hover {
  text-decoration: none;
  background-size: 100% 100%;
}

.hvUnderbarRevWh a {
  display: inline;
  line-height: 1.6;
  background: linear-gradient(transparent calc(100% - 1px), #fff calc(100% - 1px), #fff 100%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 0.3s all;
  background-position: 50%;
}

.hvUnderbarRevBk a {
  display: inline;
  line-height: 1.6;
  background: linear-gradient(transparent calc(100% - 1px), #58564a calc(100% - 1px), #58564a 100%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 0.3s all;
  background-position: 50%;
}

.hvUnderbarRevWh a:hover,
.hvUnderbarRevBk a:hover {
  text-decoration: none;
  background-size: 0% 100%;
}

@media screen and (max-width: 1000px) {
  .inner {
    max-width: 100%;
    padding: 0 35px;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_ib {
    display: inline-block !important;
  }
  .inner {
    max-width: 100%;
    min-height: 0;
    padding: 0 15px;
  }
}
@media screen and (max-width: 374px) {
  .sp_min {
    display: block;
  }
}
.upIn,
.load_upIn {
  opacity: 0;
}
.upIn.onAnim,
.load_upIn.onAnim {
  -webkit-animation: upin 0.7s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
          animation: upin 0.7s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
}

.rhIn,
.load_rhIn {
  opacity: 0;
}
.rhIn.onAnim,
.load_rhIn.onAnim {
  -webkit-animation: rhin 0.7s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
          animation: rhin 0.7s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
}

.lhIn,
.load_lhIn {
  opacity: 0;
}
.lhIn.onAnim,
.load_lhIn.onAnim {
  -webkit-animation: lhin 0.7s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
          animation: lhin 0.7s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
}

.smallIn,
.load_smallIn {
  opacity: 0;
  transform: scale(1.05);
  transform-origin: top center;
}
.smallIn.onAnim,
.load_smallIn.onAnim {
  -webkit-animation: smallin 0.7s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
          animation: smallin 0.7s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
}

@-webkit-keyframes upin {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes upin {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes rhin {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rhin {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes lhin {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lhin {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes smallin {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes smallin {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
.D01 {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}

.D02 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.D03 {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.D04 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}

.D05 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}

.D06 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.D07 {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}

.D08 {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
  transition-delay: 0.8s !important;
}

.D09 {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

.D10 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
  transition-delay: 1s !important;
}

.D11 {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
  transition-delay: 1.1s !important;
}

.D12 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.D13 {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
  transition-delay: 1.3s !important;
}

.D14 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
  transition-delay: 1.4s !important;
}

.D15 {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.D16 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
  transition-delay: 1.6s !important;
}

.D17 {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
  transition-delay: 1.7s !important;
}

.D18 {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
  transition-delay: 1.8s !important;
}

.D19 {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important;
  transition-delay: 1.9s !important;
}

.D20 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
  transition-delay: 2s !important;
}

.D21 {
  -webkit-animation-delay: 2.1s !important;
          animation-delay: 2.1s !important;
  transition-delay: 2.1s !important;
}

.D22 {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
  transition-delay: 2.2s !important;
}

.D23 {
  -webkit-animation-delay: 2.3s !important;
          animation-delay: 2.3s !important;
  transition-delay: 2.3s !important;
}

.D24 {
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
  transition-delay: 2.4s !important;
}

.D25 {
  -webkit-animation-delay: 2.5s !important;
          animation-delay: 2.5s !important;
  transition-delay: 2.5s !important;
}

.D26 {
  -webkit-animation-delay: 2.6s !important;
          animation-delay: 2.6s !important;
  transition-delay: 2.6s !important;
}

.D27 {
  -webkit-animation-delay: 2.7s !important;
          animation-delay: 2.7s !important;
  transition-delay: 2.7s !important;
}

.D28 {
  -webkit-animation-delay: 2.8s !important;
          animation-delay: 2.8s !important;
  transition-delay: 2.8s !important;
}

.D29 {
  -webkit-animation-delay: 2.9s !important;
          animation-delay: 2.9s !important;
  transition-delay: 2.9s !important;
}

.D30 {
  -webkit-animation-delay: 3s !important;
          animation-delay: 3s !important;
  transition-delay: 3s !important;
}

body.loaded {
  position: relative;
}
body.loaded.open {
  position: fixed;
  z-index: 1;
}

/* ---------------------------
	For WP
--------------------------- */
.has-themepink-background-color {
  background-color: #ea5a14;
}

.has-themepink-color {
  color: #ea5a14;
}

/* ---------------------------
	Loader
--------------------------- */
#changer {
  position: fixed;
  z-index: 20000;
  width: 100%;
  height: 100vh;
  top: min(6.7741935484vw, 84px);
  left: 0;
  display: grid;
  grid-template-rows: repeat(7, 1fr);
}
#changer span {
  display: block;
  width: 200vw;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 25%, rgb(255, 255, 255) 75%, rgba(255, 255, 255, 0) 100%);
}

@media screen and (max-width: 767px) {
  #changer {
    top: 60px;
  }
}
.loaderOut {
  opacity: 1;
  transform: translateX(-50vw);
}

.loaded .loaderOut {
  -webkit-animation: slideIn 0.5s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
          animation: slideIn 0.5s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
}

.active.loaded .loaderOut {
  opacity: 0;
  -webkit-animation: slideOut 0.5s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
          animation: slideOut 0.5s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
}

@-webkit-keyframes slideIn {
  0% {
    opacity: 1;
    transform: translateX(-50vw);
  }
  100%, to {
    opacity: 0;
    transform: translateX(200vw);
  }
}

@keyframes slideIn {
  0% {
    opacity: 1;
    transform: translateX(-50vw);
  }
  100%, to {
    opacity: 0;
    transform: translateX(200vw);
  }
}
@-webkit-keyframes slideOut {
  0% {
    opacity: 0;
    transform: translateX(-200vw);
  }
  100%, to {
    opacity: 1;
    transform: translateX(-50vw);
  }
}
@keyframes slideOut {
  0% {
    opacity: 0;
    transform: translateX(-200vw);
  }
  100%, to {
    opacity: 1;
    transform: translateX(-50vw);
  }
}
/* ---------------------------
	Header
--------------------------- */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  height: min(6.7741935484vw, 84px);
  background: #fff;
  padding: 0 min(2.4193548387vw, 30px);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: min(28.2258064516vw, 350px);
}
header nav {
  display: flex;
  align-items: center;
}
header nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s color;
  height: min(6.7741935484vw, 84px);
  padding: 0 0.3em 0;
  font-size: min(1.0483870968vw, 13px);
  box-sizing: border-box;
  position: relative;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  header nav a:hover {
    color: #ea5a14;
  }
}
header.able nav a {
  pointer-events: all;
}
header div.linkWrap {
  position: relative;
}
header div.linkWrap p.position {
  display: block;
  height: min(0.4032258065vw, 5px);
  background: #ea5a14;
  position: absolute;
  bottom: 0;
  z-index: 20;
  transition: 0.3s all;
}
header ul {
  display: flex;
  align-items: center;
  font-size: min(0.9677419355vw, 12px);
  font-weight: 700;
  position: relative;
}
header ul li ~ li {
  margin-left: min(1.935483871vw, 24px);
}
header .link_fb {
  margin-left: min(2.4193548387vw, 30px);
}
header.active {
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.15));
}
header #trigger {
  display: none;
}

.link_fb {
  width: min(2.7419354839vw, 34px);
  transition: 0.3s all;
}
.link_fb svg .cir {
  fill: #1877f2;
}
.link_fb svg .txt {
  fill: #fff;
}
@media screen and (min-width: 769px) {
  .link_fb:hover {
    transform: scale(1.2);
  }
  .link_fb:hover svg .cir {
    fill: #1055af;
  }
}

.link_fb_sp svg .cir {
  fill: #1877f2;
}
.link_fb_sp svg .txt {
  fill: #fff;
}

@media screen and (max-width: 767px) {
  header {
    height: 11.7333333333vw;
    background: #fff;
    padding: 0 0 0 4vw;
  }
  header .logo {
    width: 56vw;
  }
  header nav {
    display: none;
  }
  header #trigger {
    display: block;
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    background: #ea5a14;
    position: relative;
  }
  header #trigger span {
    display: block;
    width: 6.4vw;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 5.8666666667vw;
    left: 2.6666666667vw;
    z-index: 15;
    transition: 0.3s all;
  }
  header #trigger span:first-child {
    top: calc(5.8666666667vw - 1.6vw);
  }
  header #trigger span:last-child {
    top: calc(5.8666666667vw + 1.6vw);
  }
  header #trigger.active span:first-child {
    top: 5.8666666667vw;
    transform: rotate(-135deg);
  }
  header #trigger.active span:last-child {
    top: 5.8666666667vw;
    transform: rotate(-45deg);
  }
  header #trigger.active span:nth-child(2) {
    opacity: 0;
  }
  .link_fb {
    width: 6.9333333333vw;
  }
}
/* ---------------------------
	grobal menu
--------------------------- */
div.menuBox {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: calc(100vh - 11.7333333333vw);
  background: #fff;
  z-index: 9999;
  background: #ea5a14;
  padding: 4vw 4vw 8vw;
  box-sizing: border-box;
  overflow-y: auto;
  transition: 0.3s top;
  opacity: 0;
}
div.menuBox.active {
  top: 11.7333333333vw;
}
div.menuBox.app {
  opacity: 1;
}
div.menuBox ul.spMenu {
  width: 100%;
}
div.menuBox ul.spMenu li ~ li {
  margin-top: 10px;
}
div.menuBox ul.spMenu li a {
  display: flex;
  align-items: center;
  border-radius: 3px;
  padding: 0 4vw 0 0;
  height: 16vw;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  position: relative;
}
div.menuBox ul.spMenu li a svg {
  width: 13.3333333333vw;
  margin-right: 2.6666666667vw;
}
div.menuBox ul.spMenu li a svg path,
div.menuBox ul.spMenu li a svg polygon,
div.menuBox ul.spMenu li a svg rect {
  transition: 0.3s all;
  fill: #ea5a14;
}
div.menuBox ul.spMenu li a::after {
  content: "";
  display: block;
  width: 7.4666666667vw;
  height: 7.4666666667vw;
  border-radius: 50%;
  background: #ea5a14 url(/img/common/arr_btn.svg) calc(50% + 1px) center no-repeat;
  background-size: 1.8666666667vw 3.7333333333vw;
  bottom: calc(50% - 3.7333333333vw);
  position: absolute;
  right: 4vw;
  z-index: 10;
}
div.menuBox ul.spMenu li h2 {
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1;
}
div.menuBox ul.spMenu li h2 + p {
  font-size: 2.1333333333vw;
  color: #ea5a14;
  font-weight: 500;
  margin-top: 0.3em;
}
div.menuBox div.btnBox {
  margin-top: 8vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
div.menuBox ul.infoMenu li ~ li {
  margin-top: 4vw;
}
div.menuBox ul.infoMenu li a {
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 3.2vw;
}
div.menuBox ul.infoMenu li a::before {
  content: "";
  width: 1.8666666667vw;
  height: 2.6666666667vw;
  background: url(/img/common/arr_btn.svg) calc(50% + 1px) center no-repeat;
  background-size: 1.8666666667vw 2.6666666667vw;
  margin-right: 0.5em;
}

/* ---------------------------
	footer
--------------------------- */
footer {
  background: #f7f8f8;
  padding: min(8.064516129vw, 100px) min(2.4193548387vw, 30px) min(1.6129032258vw, 20px);
}
footer div.fNav {
  display: none;
}
footer div.footer_btm {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer div.footer_btm ul.footerMenu {
  display: flex;
  margin-top: min(9.6774193548vw, 120px);
  font-size: min(0.9677419355vw, 12px);
  font-weight: 700;
}
footer div.footer_btm ul.footerMenu li ~ li {
  margin-left: 3em;
}
footer div.footer_btm ul.footerMenu a {
  transition: 0.3s color;
}
@media screen and (min-width: 769px) {
  footer div.footer_btm ul.footerMenu a:hover {
    color: #ea5a14;
  }
}
footer div.footer_btm .cpright {
  font-size: min(0.8870967742vw, 11px);
  font-weight: 400;
  margin-top: 0.8em;
}
footer h2 {
  font-size: min(2.1774193548vw, 27px);
  font-weight: 700;
}
footer h2 + p {
  font-size: min(1.2096774194vw, 15px);
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 4.2666666667vw 4vw 6.6666666667vw;
  }
  footer div.fNav {
    display: block;
    margin: 4vw auto;
    padding: 2.6666666667vw 0;
    border-top: 1px solid #b5b5b6;
    border-bottom: 1px solid #b5b5b6;
  }
  footer div.fNav ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.6666666667vw 0;
  }
  footer div.fNav ul li {
    box-sizing: border-box;
    position: relative;
  }
  footer div.fNav ul li:nth-child(4) {
    letter-spacing: -0.02em;
  }
  footer div.fNav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: center;
    transition: 0.3s all;
    font-size: 3.4666666667vw;
    line-height: 1;
    padding-bottom: 1.0666666667vw;
    border-radius: 5px;
  }
  footer div.fNav ul li a svg {
    width: 100%;
    margin-bottom: 0.8vw;
  }
  footer div.fNav path,
footer div.fNav polygon,
footer div.fNav rect {
    transition: 0.3s all;
    fill: #58564a;
  }
  footer div.footer_btm ul.footerMenu {
    margin-top: 8vw;
    font-size: 2.9333333333vw;
  }
  footer div.footer_btm .cpright {
    font-size: 2.6666666667vw;
  }
  footer h2 {
    font-size: 4vw;
  }
  footer h2 + p {
    font-size: 3.2vw;
  }
}
#HOME footer div.fNav ul li#fNav_Home a,
#Activities footer div.fNav ul li#fNav_Activities a,
#Schedule footer div.fNav ul li#fNav_Scj a,
#Gallery footer div.fNav ul li#fNav_Gallery a,
#Profile footer div.fNav ul li#fNav_Profile a,
#News footer div.fNav ul li#fNav_News a,
#Membership footer div.fNav ul li#fNav_Member a,
#Memberonly footer div.fNav ul li#fNav_MemOnly a {
  color: #ea5a14;
}
#HOME footer div.fNav ul li#fNav_Home a path,
#HOME footer div.fNav ul li#fNav_Home a polygon,
#HOME footer div.fNav ul li#fNav_Home a rect,
#Activities footer div.fNav ul li#fNav_Activities a path,
#Activities footer div.fNav ul li#fNav_Activities a polygon,
#Activities footer div.fNav ul li#fNav_Activities a rect,
#Schedule footer div.fNav ul li#fNav_Scj a path,
#Schedule footer div.fNav ul li#fNav_Scj a polygon,
#Schedule footer div.fNav ul li#fNav_Scj a rect,
#Gallery footer div.fNav ul li#fNav_Gallery a path,
#Gallery footer div.fNav ul li#fNav_Gallery a polygon,
#Gallery footer div.fNav ul li#fNav_Gallery a rect,
#Profile footer div.fNav ul li#fNav_Profile a path,
#Profile footer div.fNav ul li#fNav_Profile a polygon,
#Profile footer div.fNav ul li#fNav_Profile a rect,
#News footer div.fNav ul li#fNav_News a path,
#News footer div.fNav ul li#fNav_News a polygon,
#News footer div.fNav ul li#fNav_News a rect,
#Membership footer div.fNav ul li#fNav_Member a path,
#Membership footer div.fNav ul li#fNav_Member a polygon,
#Membership footer div.fNav ul li#fNav_Member a rect,
#Memberonly footer div.fNav ul li#fNav_MemOnly a path,
#Memberonly footer div.fNav ul li#fNav_MemOnly a polygon,
#Memberonly footer div.fNav ul li#fNav_MemOnly a rect {
  fill: #ea5a14;
}

/* ---------------------------
	common parts
--------------------------- */
#contFixWrap {
  position: relative;
}

.telLink {
  pointer-events: none;
}

div.hlWrap {
  text-align: center;
}
div.hlWrap > div {
  background: url(/img/hl_line.png) center bottom repeat-x;
  display: inline-block;
  background-size: min(9.5967741935vw, 119px) auto;
  padding-bottom: min(1.2096774194vw, 15px);
  background-image: linear-gradient(to right, #e9d600, #e9d600 min(0.4838709677vw, 6px), transparent min(0.4838709677vw, 6px), transparent min(1.4516129032vw, 18px), #e9d600 min(1.4516129032vw, 18px), #e9d600 min(1.935483871vw, 24px));
  background-size: min(1.935483871vw, 24px) min(0.3225806452vw, 4px);
  background-position: center bottom;
  background-repeat: repeat-x;
}
div.hlWrap h2 {
  font-size: min(2.3387096774vw, 29px);
  font-weight: 700;
  line-height: 1;
  color: #ea5a14;
}
div.hlWrap h2 + p {
  font-size: min(0.8064516129vw, 10px);
  font-weight: 500;
  color: #e9d600;
  margin-top: 0.5em;
}

.btn_type01 a {
  margin: min(4.0322580645vw, 50px) auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(22.5806451613vw, 280px);
  height: min(4.8387096774vw, 60px);
  border: 1px solid #ea5a14;
  color: #ea5a14;
  border-radius: min(4.8387096774vw, 60px);
  transition: 0.3s all;
}
.btn_type01 a::after {
  content: "";
  width: min(0.8064516129vw, 10px);
  height: min(0.8870967742vw, 11px);
  background: url(/img/common/icon_btn_arr.svg) 0 0 no-repeat;
  background-size: min(0.8064516129vw, 10px) min(0.8870967742vw, 11px);
  margin-left: min(0.8064516129vw, 10px);
}
@media screen and (min-width: 769px) {
  .btn_type01 a:hover {
    background: #ea5a14;
    color: #fff;
  }
  .btn_type01 a:hover::after {
    background-image: url(/img/common/icon_btn_arr_wh.svg);
  }
}
.btn_type01.ylw a {
  color: #e9d600;
  border-color: #e9d600;
}
.btn_type01.ylw a::after {
  background-image: url(/img/common/icon_btn_arr_ylw.svg);
}
@media screen and (min-width: 769px) {
  .btn_type01.ylw a:hover {
    background: #e9d600;
    color: #fff;
  }
  .btn_type01.ylw a:hover::after {
    background-image: url(/img/common/icon_btn_arr_wh.svg);
  }
}

.btn_type02 a {
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 60px;
  border: 1px solid #ea5a14;
  color: #ea5a14;
  border-radius: 9px;
  transition: 0.3s all;
}
@media screen and (min-width: 769px) {
  .btn_type02 a:hover {
    background: #ea5a14;
    color: #fff;
  }
  .btn_type02 a:hover::after {
    background-image: url(/img/icon_btn_arr_wh.svg);
  }
}

@media screen and (max-width: 767px) {
  .telLink {
    pointer-events: all;
    text-decoration: underline;
  }
  div.hlWrap > div {
    padding-bottom: 1.3333333333vw;
    background-image: linear-gradient(to right, #e9d600, #e9d600 1.0666666667vw, transparent 1.0666666667vw, transparent 3.2vw, #e9d600 3.2vw, #e9d600 4.2666666667vw);
    background-size: 2.1333333333vw 0.2666666667vw;
  }
  div.hlWrap h2 {
    font-size: 5.8666666667vw;
  }
  div.hlWrap h2 + p {
    font-size: 2.4vw;
  }
  .btn_type01 a {
    margin: 8vw auto 0;
    width: 100%;
    height: 10.6666666667vw;
    border-radius: 5px;
  }
  .btn_type01 a::after {
    width: 2.1333333333vw;
    height: 2.4vw;
    background: url(/img/common/icon_btn_arr.svg) 0 0 no-repeat;
    background-size: 2.1333333333vw 2.4vw;
    margin-left: 2.6666666667vw;
  }
  .btn_type01 ~ .btn_type01 a {
    margin-top: 4vw;
  }
  .btn_type02 a {
    margin: 30px auto 0;
    width: 100%;
    height: 40px;
    border-radius: 5px;
  }
}
/* ---------------------------
	SUB common parts
--------------------------- */
.color_pink {
  color: #ea5a14;
}

/*------------------ activites ----------------*/
ul.articleList {
  margin-top: min(4.8387096774vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.4193548387vw, 30px) min(1.6129032258vw, 20px);
}
ul.articleList li a {
  transition: 0.3s opacity;
}
@media screen and (min-width: 769px) {
  ul.articleList li a:hover {
    opacity: 0.7;
  }
  ul.articleList li a:hover img {
    transform: scale(1.05);
  }
}
ul.articleList figure {
  border-radius: min(0.8064516129vw, 10px);
  overflow: hidden;
}
ul.articleList figure img {
  transition: 0.3s all;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
ul.articleList .date {
  color: #58564a;
  font-size: min(1.0483870968vw, 13px);
  color: #ea5a14;
  font-weight: 500;
  margin-top: min(1.2096774194vw, 15px);
  line-height: 1;
}
ul.articleList div.noteBox {
  margin-top: min(0.8064516129vw, 10px);
  font-size: min(1.2096774194vw, 15px);
  line-height: 1.5;
}
ul.articleList div.noteBox p ~ p {
  margin-top: 1.8em;
}

#Gallery ul.articleList {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  ul.articleList {
    margin-top: 8vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
  }
  ul.articleList figure {
    border-radius: 1.3333333333vw;
  }
  ul.articleList .date {
    margin-top: 2.6666666667vw;
    font-size: 2.6666666667vw;
  }
  ul.articleList div.noteBox {
    margin-top: 1.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
/*# sourceMappingURL=layout.css.map */