/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* BREAKPOINT */
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* BREAKPOINT */
/* CUSTOM VARIABLE */
/* BASE VARIABLE */
/* FONT-FAMILY */
/* FONT SIZE */
/* RESET CSS*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.h1, .h2, .h3, h1, h2, h3 {
  margin: 0;
  padding: 0;
}

.h4, .h5, .h6, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a:focus {
  color: inherit;
  text-decoration: none;
}

.bold {
  font-weight: bold;
}

.bg-set {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* OPACITY & HOVER UNDERLINE */
.hvO {
  -webkit-transition: 0.15s ease opacity;
  -moz-transition: 0.15s ease opacity;
  -ms-transition: 0.15s ease opacity;
  -o-transition: 0.15s ease opacity;
  transition: 0.15s ease opacity;
}

.hvO:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.hvU:hover {
  text-decoration: underline;
}

/* CONTAINER */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x:1.5rem;
  --bs-gutter-y:0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1224px;
  }
}

@media (min-width: 1599px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}

.bigCont {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1250px) {
  .bigCont {
    padding: 0 4%;
  }
}

.cont {
  max-width: 976px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .cont {
    max-width: 90%;
  }
}

/* Float */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* Sink */
.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

/* Icon Down */
@-webkit-keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

/* Icon Down */
.hvr-icon-down {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-down .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hvr-icon-down:hover .hvr-icon, .hvr-icon-down:focus .hvr-icon, .hvr-icon-down:active .hvr-icon {
  -webkit-animation-name: hvr-icon-down;
  animation-name: hvr-icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  color: white;
}

.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Grow Shadow */
.hvr-grow-shadow {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}

.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.heading {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

@media screen and (min-width: 1599px) {
  .heading {
    margin-bottom: 2.5rem;
  }
}

.heading h2 {
  background: linear-gradient(to bottom, #ef8200 50%, #124B7B 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 1599px) {
  .heading h2 {
    font-size: 100px;
  }
}

@media screen and (max-width: 1199px) {
  .heading h2 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .heading h2 {
    font-size: 10.5vw;
  }
}

.heading p {
  font-weight: bold;
  font-size: 2rem;
  color: #124B7B;
}

@media screen and (min-width: 1599px) {
  .heading p {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1199px) {
  .heading p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .heading p {
    font-size: 4.25vw;
  }
}

.btnBox.viewMore {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 991px) {
  .btnBox.viewMore {
    justify-content: center;
  }
}

.btnBox.viewMore a {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 900;
  position: relative;
  width: 240px;
  color: #000;
  border-bottom: 2px solid #000;
  line-height: 1;
  padding-bottom: 6px;
  transition: all 0.3s ease;
  padding-left: 0;
}

@media screen and (min-width: 1599px) {
  .btnBox.viewMore a {
    padding-bottom: 12px;
    width: 260px;
  }
}

@media screen and (max-width: 991px) {
  .btnBox.viewMore a {
    width: 175px;
  }
}

.btnBox.viewMore a:hover {
  padding-left: 8px;
}

.btnBox.viewMore a:before {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -4px;
  width: 2px;
  height: 20px;
  background-color: #000;
  transform: rotate(-45deg);
}

@media screen and (min-width: 1599px) {
  .btnBox.viewMore a:before {
    height: 28px;
  }
}

/* CUSTOM VARIABLE */
/* BASE VARIABLE */
* {
  text-decoration: none !important;
}

.btnFixed {
  position: absolute;
}

#header {
  height: 100px;
  border-top-width: 5px;
}

#header.fixed {
  position: unset;
}

#header .inner {
  padding-left: 15px;
  padding-right: 15px;
}

#header .inner .leftSide {
  width: 200px;
}

#header .inner .leftSide .logo p {
  font-size: 16px;
}

#header .inner .rightSide .k-meal {
  width: 150px;
  margin-right: 30px;
}

#header .inner .rightSide nav li {
  margin-left: 30px;
}

#header .inner .rightSide nav li a {
  font-size: 12px;
  padding-bottom: 5px;
}

#header .inner .rightSide nav li a img.nav1 {
  height: 32px;
}

#header .inner .rightSide nav li a img.nav2 {
  height: 39px;
}

#header .inner .rightSide nav li a img.nav3 {
  height: 44px;
}

#header .inner .rightSide nav li a img.nav4 {
  height: 35px;
}

#header .inner .rightSide nav li a img.nav5 {
  height: 24px;
}

#header .inner .rightSide nav li a span {
  margin-top: 10px;
  height: 31px;
  word-break: keep-all;
}

#header .inner .rightSide nav li:last-child span {
  margin-top: 15px;
}

#header .inner .rightSide .telp {
  margin-left: 30px;
  width: 220px;
}

#header .inner .rightSide .telp p {
  font-size: 11px;
}

.cont {
  max-width: 90%;
}

#mainvisual {
  margin-top: 0;
}

#mainvisual .catchcopy img {
  width: 50%;
}

#main.topPage #rss .notice {
  max-width: 750px;
}

#main.topPage #rss .event {
  padding: 0;
}

#main.topPage #rss .event .item .title-top {
  align-items: center;
}

#main.topPage #rss .event .item .title-top h2 {
  font-weight: bold;
}

#main.topPage #rss .event .item ul li a {
  padding: 40px;
}

#main.topPage #rss .event .item ul li a .imgSide {
  height: 300px;
}

#main.topPage #rss .latest {
  margin-top: 60px;
}

#main.topPage #rss .latest .swiper-wrapper .swiper-slide {
  width: 225px !important;
  height: 260px;
  padding: 15px;
  padding-bottom: 10px;
}

#main.topPage #rss .latest .swiper-wrapper .swiper-slide .img {
  height: 140px;
}

#main.topPage #message {
  padding: 60px 0 100px;
}

#main.topPage #message .inner .titleSection {
  width: 530px;
  height: 122px;
  font-size: 50px;
}

#main.topPage #message .inner .content {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#main.topPage #message .inner .content .img {
  width: 250px;
  margin-right: 60px;
}

#main.topPage #message .inner .content .text {
  flex: 1;
  width: auto;
  padding: 30px;
  top: 0;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
}

#main.topPage #message .inner .content .text img {
  right: -30px;
  top: -60px;
  width: 250px;
}

#main.topPage #message .inner .content .text .title {
  font-size: 28px;
  margin-bottom: 20px;
}

#main.topPage #message .inner .content .text .desc {
  padding-left: 20px;
  font-size: 15px;
}

#main.topPage #bento {
  padding: 60px 0 100px;
}

#main.topPage #bento .titleSec {
  margin-bottom: 30px;
}

#main.topPage #bento .titleSec h2 {
  font-size: 60px;
}

#main.topPage #bento .titleSec h2 span {
  font-size: 45px;
}

#main.topPage #bento .titleSec img {
  width: 500px;
  top: -20px;
}

#main.topPage #bento .inner {
  padding: 30px;
  padding-bottom: 100px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-width: 3px;
}

#main.topPage #bento .inner .left {
  padding: 30px;
}

#main.topPage #bento .inner .left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

#main.topPage #bento .inner .left .desc {
  margin-bottom: 30px;
  padding-left: 20px;
  font-size: 16px;
}

#main.topPage #bento .inner .left a {
  position: relative;
  bottom: auto;
  left: auto;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

#main.topPage #bento .inner .left a span {
  font-size: 20px;
}

#main.topPage #about {
  padding: 40px 0 60px;
}

#main.topPage #about .k-meal {
  padding: 30px;
  margin-bottom: 30px;
}

#main.topPage #about .k-meal .left,
#main.topPage #about .k-meal .right {
  width: 27.5%;
}

#main.topPage #about .k-meal .center .red p {
  font-size: 24px;
}

#main.topPage #about .k-meal .center .red span {
  font-size: 14px;
}

#main.topPage #about .k-meal .center h3 {
  font-size: 28px;
  line-height: 1.5;
  font-weight: bold;
}

#main.topPage #about .k-meal .center h1 {
  margin: 10px 0 15px;
}

#main.topPage #about .k-meal .center h1 img {
  width: 230px;
}

#main.topPage #about .k-meal .center .desc {
  font-size: 14px;
}

#main.topPage #about .profile {
  margin-bottom: 30px;
  border-width: 3px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  padding: 30px 30px 80px;
}

#main.topPage #about .profile h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

#main.topPage #about .profile div table tr th {
  width: 275px;
  font-size: 18px;
  padding: 15px;
}

#main.topPage #about .profile div table tr td {
  font-size: 18px;
  padding: 15px 0;
  padding-right: 15px;
}

#main.topPage #about .profile div table tr td img {
  height: 18px;
}

#main.topPage #about .contactBtn a {
  padding: 15px;
  margin: 0 15px;
  height: 130px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  padding-right: 15px;
}

#main.topPage #about .contactBtn a.contact .icon {
  width: 40px;
  font-size: 50px;
}

#main.topPage #about .contactBtn a.contact .text img {
  width: 85%;
}

#main.topPage #about .contactBtn a.contact .text p {
  font-size: 20px;
  margin-bottom: 15px;
}

#main.topPage #about .contactBtn a.contact .text span {
  font-size: 20px;
  margin-top: 15px;
}

#main.topPage #about .contactBtn a.message {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

#main.topPage #about .contactBtn a.message .icon {
  width: 50px;
  font-size: 45px;
  margin-right: 20px;
}

#main.topPage #about .contactBtn a.message .text {
  -webkit-box-flex: unset;
  -moz-box-flex: unset;
  -webkit-flex: unset;
  -ms-flex: unset;
  flex: unset;
}

#main.topPage #about .contactBtn a.message .text p {
  font-size: 22px;
}

.pageTop {
  position: absolute;
}

/*# sourceMappingURL=print.css.map */