@charset "UTF-8";
header {
  top: 100vh;
  max-height: 1000px;
  position: absolute;
}
.fixed header {
  position: fixed;
  top: 0px;
}

.mt10 {
  margin-top: 10px;
}

@media screen and (orientation: portrait) {
  /* iPad 縦向きの場合のスタイル */
  header {
    top: 1000px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    top: 0;
    position: fixed;
  }
}
.fixed .wrapper {
  padding-top: 0;
}

.mainslide {
  position: relative;
  height: 100vh;
  max-height: 1000px;
}
.mainslide .txtarea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  /* height: 70vh;*/
  text-align: center;
  background-color: rgba(51, 51, 51, 0.8);
  z-index: 0;
  color: #fff;
  padding: 45px 65px;
}
.mainslide .txtarea .open {
  font-size: 24px;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin: 0 10px 50px;
}
.mainslide .txtarea .open p {
  font-size: 24px;
}
.mainslide .txtarea .open p + p {
  letter-spacing: 0.3em;
  padding: 10px 0 0;
  border-top: 1px solid #fff;
  font-size: 16px;
  margin: 0;
}
.mainslide .txtarea .title img {
  width: 100%;
}
.mainslide .txtarea .title p {
  margin-top: 20px;
  letter-spacing: 0.5em;
  font-size: 16px;
}
.mainslide .txtarea .copy {
  margin-top: 50px;
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
}
.mainslide .txtarea .copy::before {
  display: block;
  margin: 0 auto;
  content: "";
  width: 100px;
  height: 5px;
  background-color: #fff;
  margin-bottom: 50px;
}
.mainslide .txtarea .copy span {
  padding-top: 15px;
  display: block;
  font-size: 18px;
}

.mainslide .slick-slide > * {
  height: 100vh;
  max-height: 1000px;
  width: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mainslide .s1 > * {
  background-image: url(../images/main1.jpg);
}

.mainslide .s2 > * {
  background-image: url(../images/main2_2.jpg);
}

.mainslide .s3 > * {
  background-image: url(../images/main3.jpg);
}

.mainslide .s4 > * {
  background-image: url(../images/main4_20230512.jpg);
}

.mainslide .s5 > * {
  background-image: url(../images/main5_20230512.jpg);
}

#main_visual {
  position: relative;
}

.mainslide .arrow {
  position: absolute;
  top: 50%;
  display: block;
  transform: translateY(-50%);
  color: #000;
  z-index: 3;
  font-weight: bold;
  font-size: 50px;
  opacity: 0.5;
  cursor: pointer;
}

.mainslide .prev.arrow {
  left: 20px;
}

.mainslide .next.arrow {
  right: 20px;
}

.covid_sec {
  background: url(../images/covid_bg.jpg) repeat-y;
  background-position: center;
  padding: 76px 0px 1px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .covid_sec {
    padding: 0;
  }
}
.covid_sec .container {
  display: flex;
  flex-direction: row;
  height: 250px;
  justify-content: space-between;
  align-items: flex-end;
  margin: 30px auto;
}
@media only screen and (max-width: 767px) {
  .covid_sec .container {
    flex-direction: column;
    height: auto;
    width: 90%;
  }
}
.covid_sec .container .atack_01,
.covid_sec .container .atack_02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 47%;
}
@media only screen and (max-width: 767px) {
  .covid_sec .container .atack_01,
  .covid_sec .container .atack_02 {
    width: 100%;
  }
}
.covid_sec .container .atack_01 a,
.covid_sec .container .atack_02 a {
  margin-top: 15px;
}
.covid_sec .container .atack_01 .txt {
  width: calc(100% - 170px);
}
.covid_sec .container .atack_01 a {
  background: linear-gradient(135deg, #7dbf40 0%, #008c9a 100%);
}
.covid_sec .container .atack_01 img {
  width: 150px;
  height: auto;
  margin-top: 20px;
}
.covid_sec .container .atack_02 img {
  width: 100%;
  max-width: 553px;
  margin: 0 auto;
}
.covid_sec .container .atack_02 a {
  background: #059edb;
}
@media only screen and (max-width: 767px) {
  .covid_sec .container .atack_02 {
    margin-top: 20px;
  }
}
.covid_sec .container .txt {
  color: #10225e;
  font-size: 19px;
}
.covid_sec .container .txt span {
  color: #fe8900;
  font-size: 25px;
}
@media only screen and (max-width: 767px) {
  .covid_sec .container .txt {
    font-size: 14px;
    margin: 20px auto;
  }
  .covid_sec .container .txt span {
    font-size: 18px;
  }
}
.covid_sec .container a {
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  padding: 15px;
  width: 580px;
  position: relative;
  font-size: 25px;
  padding-left: 25px;
}
.covid_sec .container a::after {
  position: absolute;
  content: url(../images/img_arrow_right.png);
  right: 20px;
  top: calc(50% - 13px);
}
@media only screen and (max-width: 767px) {
  .covid_sec .container a {
    width: 100%;
    font-size: 18px;
    margin-bottom: 20px;
    padding: 10px;
  }
}
.covid_sec .manbou {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.3em;
}
.covid_sec .manbou a {
  color: #f00;
}
@media only screen and (max-width: 767px) {
  .covid_sec .manbou {
    width: 90%;
    margin: 0 auto 30px;
    font-size: 1.1em;
  }
}

/*---------------------------------------------
slide sec
----------------------------------------------*/
.slide-sec .row {
  height: auto;
  /*		max-height: 700px;
  		display: flex !important;
  		flex-direction: column;
  		justify-content: center;*/
}
.slide-sec .arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 75px;
  height: 75px;
  border-top: 2px solid #585050;
  border-right: 2px solid #585050;
  z-index: 1;
}
.slide-sec .arrow.next {
  right: 150px;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 1660px) {
  .slide-sec .arrow.next {
    right: 20px;
  }
}
.slide-sec .arrow.prev {
  left: 150px;
  transform: translateY(-50%) rotate(-135deg);
}
@media only screen and (max-width: 1660px) {
  .slide-sec .arrow.prev {
    left: 20px;
  }
}
.slide-sec .num {
  margin-bottom: 10px;
}
.slide-sec .num img {
  height: auto;
  width: 40%;
  max-width: 250px;
}
.slide-sec .ttl {
  font-size: 2.5rem;
  line-height: 2;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #585050;
  text-shadow: 0px 0px 3px rgb(255, 255, 255);
}
.slide-sec p {
  font-size: 1.8rem;
  line-height: 2;
  color: #B7A97D;
  text-shadow: 0px 0px 3px rgb(255, 255, 255), 0px 0px 3px rgb(255, 255, 255);
}

.slide-sec .pointslide {
  min-width: 1200px;
}
.slide-sec .pointslide #point .container {
  padding: 20px;
  display: flex;
  height: 70vh;
  max-height: 700px;
  align-content: center;
  align-items: center;
}

.slide-sec .slick-slide {
  height: 70vh;
  max-height: 700px;
  min-width: 1200px;
  width: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  line-height: 0;
  font-size: 0;
}

.slide-sec .s1 {
  background-image: url(../images/slide1.jpg);
}

.slide-sec .s2 {
  background-image: url(../images/slide2.jpg);
}

.slide-sec .s3 {
  background-image: url(../images/slide3_202306.jpg);
}

.slide-sec .s4 {
  background-image: url(../images/slide4.jpg);
}

.mainslide .slide_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
}
.mainslide .slide_logo h1 {
  width: 100%;
}
.mainslide .slide_logo h1 img {
  width: 100%;
}

.mainslide .slide_logo2 {
  position: absolute;
  top: 3%;
  left: 3%;
  width: 300px;
}
.mainslide .slide_logo2 h1 {
  width: 100%;
}
.mainslide .slide_logo2 h1 img {
  width: 100%;
}

.mainslide .slide_txt {
  font-size: 30px;
  color: #FFF;
  /*color: #059986;*/
  font-weight: bold;
  opacity: 0;
  background: rgba(51, 51, 51, 0.8);
  padding: 3px 40px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
}

.mainslide .s1 .slide_text_area {
  position: absolute;
  bottom: 10%;
  right: 7%;
}

.mainslide .s2 .slide_text_area {
  position: absolute;
  bottom: 10%;
  right: 7%;
}

.mainslide .s3 .slide_text_area {
  position: absolute;
  bottom: 10%;
  right: 7%;
}

.mainslide .s4 .slide_text_area {
  position: absolute;
  bottom: 10%;
  right: 7%;
}

.mainslide .s5 .slide_text_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  white-space: nowrap;
}

@media only screen and (max-width: 1400px) {
  .mainslide .slide_txt {
    font-size: 26px;
  }
  .mainslide .s5 .slide_txt {
    font-size: 24px;
  }
  .mainslide .txtarea .title p {
    letter-spacing: 0.4em;
  }
}
@media only screen and (max-width: 1200px) {
  .slide-sec .container {
    width: 1100px;
    padding: 0 50px;
  }
  .slide-sec .row {
    height: 500px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  }
  .slide-sec .arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    border-top: 2px solid #585050;
    border-right: 2px solid #585050;
    z-index: 1;
  }
  .slide-sec .arrow.next {
    right: 10px;
    transform: translateY(-50%) rotate(45deg);
  }
  .slide-sec .arrow.prev {
    left: 10px;
    transform: translateY(-50%) rotate(-135deg);
  }
  .slide-sec .num {
    margin-bottom: 25px;
  }
  .slide-sec .num img {
    height: 70px;
    width: auto;
  }
  .slide-sec .ttl {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .slide-sec p {
    font-size: 16px;
  }
  .slide-sec .s2 .ttl {
    font-size: 26px;
    line-height: 1.7;
  }
  .slide-sec .pointslide {
    min-width: 1200px;
  }
  .slide-sec .slick-slide {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .mainslide {
    height: auto;
  }
  .mainslide .txtarea {
    top: 35%;
    width: 80%;
    height: auto;
    padding: 20px 15px;
  }
  .mainslide .txtarea .open {
    letter-spacing: 0.2em;
    font-weight: 500;
    margin: 0 0px 20px;
  }
  .mainslide .txtarea .open p {
    font-size: 18px;
    line-height: 1.3;
  }
  .mainslide .txtarea .open p + p {
    letter-spacing: 0.3em;
    padding: 10px 0 0;
    border-top: 1px solid #fff;
    font-size: 12px;
    margin: 0;
  }
  .mainslide .txtarea .title p {
    margin-top: 5px;
    letter-spacing: 0.3em;
    font-size: 12px;
  }
  .mainslide .txtarea .copy {
    margin-top: 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
  }
  .mainslide .txtarea .copy::before {
    width: 50px;
    height: 3px;
    margin-bottom: 25px;
  }
  .mainslide .txtarea .copy span {
    padding-top: 10px;
    display: block;
    font-size: 13px;
  }
  .mainslide .slick-slide > * {
    height: auto;
    width: 100%;
    display: block;
    padding-top: 135.2864583333%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center center;
    line-height: 0;
    font-size: 0;
  }
  .mainslide .s1 > * {
    background-image: url(../images/sp-main1.jpg);
  }
  .mainslide .s2 > * {
    background-image: url(../images/sp-main2_2.jpg);
  }
  .mainslide .s3 > * {
    background-image: url(../images/sp-main3.jpg);
  }
  .mainslide .s4 > * {
    background-image: url(../images/sp-main4_20230512.jpg);
  }
  .mainslide .s5 > * {
    background-image: url(../images/sp-main5_20220926.jpg);
  }
  /*slide sec*/
  .slide-sec {
    padding: 0px 0 0 0;
  }
  .slide-sec .container {
    width: 100%;
  }
  .slide-sec .row {
    height: auto;
    display: block;
  }
  .slide-sec .arrow {
    position: absolute;
    top: 30%;
    width: 36px;
    height: 36px;
    border-width: 1px;
  }
  .slide-sec .arrow.next {
    right: 15px;
    transform: translateY(0%) rotate(45deg);
  }
  .slide-sec .arrow.prev {
    left: 15px;
    transform: translateY(0%) rotate(-135deg);
  }
  .slide-sec .num {
    margin-bottom: 35px;
  }
  .slide-sec .num img {
    margin: 0 auto;
    height: 44px;
    width: auto;
  }
  .slide-sec .ttl {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .slide-sec p {
    letter-spacing: 0.05em;
    font-size: 14px;
    line-height: 2;
    color: #B7A97D;
    margin: 0 30px;
  }
  .slide-sec .s2 .ttl {
    font-size: 18px;
    line-height: 2;
  }
  .slide-sec .pointslide {
    min-width: auto;
  }
  .slide-sec .pointslide #point .container {
    display: block;
    padding: 10px 20px 0;
  }
  .slide-sec .slick-slide {
    height: auto;
    min-width: auto;
    background-size: 100% auto;
    background-position: top center;
    padding-top: 7%;
  }
  .slide-sec .s1 {
    background-image: url(../images/sp-slide1.jpg);
  }
  .slide-sec .s2 {
    background-image: url(../images/sp-slide2.jpg);
  }
  .slide-sec .s3 {
    background-image: url(../images/sp-slide3_202306.jpg);
  }
  .slide-sec .s4 {
    background-image: url(../images/sp-slide4.jpg);
  }
  /*slide_txt*/
  .slide_text_area {
    width: 80%;
  }
  .mainslide .slide_logo {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
  }
  .mainslide .slide_logo2 {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
  }
  .mainslide .slide_txt {
    font-size: 16px;
    /*color: #059986;*/
    color: #FFF;
    font-weight: bold;
    opacity: 0;
    background: rgba(51, 51, 51, 0.8);
    padding: 3px 20px;
    width: 100%;
    text-align: center;
    line-height: 1.7em;
  }
  .mainslide .s1 .slide_text_area {
    position: absolute;
    bottom: 5%;
    right: 50%;
    transform: translateX(50%);
  }
  .mainslide .s2 .slide_text_area {
    position: absolute;
    bottom: 5%;
    right: 50%;
    transform: translateX(50%);
  }
  .mainslide .s3 .slide_text_area {
    position: absolute;
    bottom: 5%;
    right: 50%;
    transform: translateX(50%);
  }
  .mainslide .s4 .slide_text_area {
    position: absolute;
    bottom: 5%;
    right: 50%;
    transform: translateX(50%);
  }
  .mainslide .s5 .slide_text_area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
  .mainslide .s5 .slide_txt {
    font-size: 18px;
  }
}
/*--------------------------------------------
menu sec
---------------------------------------------*/
.menu-sec {
  padding: 0 5px;
}
.menu-sec ul li {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 10px 5px 0;
  transition: all 0.2s;
}
.menu-sec ul li:hover a::before {
  transform: scale(1.1);
}
.menu-sec ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.menu-sec ul li a::before {
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.menu-sec ul li .panel {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;*/
  background: #585050;
  background: linear-gradient(to bottom, rgba(88, 80, 80, 0.6) 0%, rgba(51, 51, 51, 0.6) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#88585050", endColorstr="#88333333",GradientType=0 );
  color: #EBDBA9;
  text-shadow: 0 0 10px #585050, 0 0 10px #585050, 0 0 10px #585050;
  width: 200px;
  height: 120px;
  max-height: 232px;
  position: relative;
}
.menu-sec ul li .panel ::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
}
.menu-sec ul li .panel span {
  font-size: 10px;
  font-family: "Maru Folk Regular";
  color: #fff;
  letter-spacing: 0.05em;
}
.menu-sec ul li:first-child {
  width: calc(50% - 10px);
  height: 40vh;
  max-height: 400px;
}
.menu-sec ul li:first-child a::before {
  background-image: url(../images/bg-menu01@2x.jpg);
}
.menu-sec ul li:first-child .panel {
  max-height: 200px;
  font-size: 1.8rem;
}
.menu-sec ul li:nth-child(2) {
  width: calc(50% - 10px);
  height: 40vh;
  max-height: 400px;
}
.menu-sec ul li:nth-child(2) a::before {
  background-image: url(../images/bg-menu02@2x_202306.jpg);
}
.menu-sec ul li:nth-child(2) .panel {
  max-height: 200px;
  font-size: 1.8rem;
}
.menu-sec ul li:nth-child(3) {
  width: calc(50% - 10px);
  height: 40vh;
  max-height: 400px;
}
.menu-sec ul li:nth-child(3) a::before {
  background-image: url(../images/bg-menu03@2x.jpg);
}
.menu-sec ul li:nth-child(3) .panel {
  max-height: 200px;
  font-size: 1.8rem;
}
.menu-sec ul li:nth-child(4) {
  width: calc(50% - 10px);
  height: 40vh;
  max-height: 400px;
}
.menu-sec ul li:nth-child(4) a::before {
  background-image: url(../images/bg-menu04@2x.jpg);
}
.menu-sec ul li:nth-child(4) .panel {
  max-height: 200px;
  font-size: 1.8rem;
}
.menu-sec ul li:nth-child(5) {
  width: calc(50% - 10px);
  height: 40vh;
  max-height: 400px;
  margin: 10px 5px 10px;
}
.menu-sec ul li:nth-child(5) a::before {
  background-image: url(../images/bg-menu06@2x.jpg);
}
.menu-sec ul li:nth-child(5) .panel {
  max-height: 200px;
  font-size: 1.8rem;
}
.menu-sec ul li:nth-child(6) {
  width: calc(50% - 10px);
  height: 40vh;
  max-height: 400px;
  margin: 10px 5px 10px;
}
.menu-sec ul li:nth-child(6) a::before {
  background-image: url(../images/bg-menu07@2x.jpg);
}
.menu-sec ul li:nth-child(6) .panel {
  max-height: 200px;
  font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
  .menu-sec {
    padding: 0;
  }
  .menu-sec ul li {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 0px 5px;
  }
  .menu-sec ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .menu-sec ul li .panel {
    font-size: 16px;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;*/
    background: #585050;
    background: linear-gradient(to bottom, rgba(88, 80, 80, 0.6) 0%, rgba(51, 51, 51, 0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#88585050", endColorstr="#88333333",GradientType=0 );
    color: #EBDBA9;
    text-shadow: 0 0 10px #585050, 0 0 10px #585050, 0 0 10px #585050;
    width: 115px;
    height: 60px;
    position: relative;
  }
  .menu-sec ul li .panel ::before {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
  }
  .menu-sec ul li .panel span {
    font-size: 6px;
  }
  .menu-sec ul li:first-child {
    background-image: url(../images/sp-bg-menu01@2x.jpg);
    width: 100%;
    height: 200px;
  }
  .menu-sec ul li:nth-child(2) {
    background-image: url(../images/sp-bg-menu02@2x.jpg);
    width: 100%;
    height: 200px;
  }
  .menu-sec ul li:nth-child(3) {
    background-image: url(../images/sp-bg-menu03@2x.jpg);
    width: 100%;
    height: 200px;
  }
  .menu-sec ul li:nth-child(4) {
    background-image: url(../images/sp-bg-menu04@2x.jpg);
    width: 100%;
    height: 200px;
  }
  .menu-sec ul li:nth-child(5) {
    background-image: url(../images/sp-bg-menu05@2x.jpg);
    width: 100%;
    height: 200px;
    margin: 0 0px 5px;
  }
  .menu-sec ul li:nth-child(6) {
    background-image: url(../images/sp-bg-menu06@2x.jpg);
    width: 100%;
    height: 200px;
    margin: 0;
  }
  .menu-sec ul li:nth-child(7) {
    background-image: url(../images/sp-bg-menu07@2x.jpg);
    width: 100%;
    height: 200px;
  }
}
/*---------------------------------------------
plan sec
----------------------------------------------*/
.plan-sec {
  padding: 76px 10px 60px;
  width: 350px;
  overflow: hidden;
}
.plan-sec .row {
  display: block;
}
.plan-sec h3 {
  color: #585050;
  font-size: 24px;
  background: linear-gradient(to bottom, #ebdba9 0%, rgba(235, 219, 169, 0.56) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffebdba9", endColorstr="#88ebdba9",GradientType=0 );
  width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 65px;
  background-color: rgba(255, 255, 255, 0.56);
  position: relative;
}
.plan-sec h3 span {
  display: block;
  margin-top: 10px;
  display: block;
  color: #B7A97D;
  font-family: "Maru Folk Regular";
  font-size: 12px;
}
.plan-sec h3::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  border: 1px solid #B7A97D;
  width: 100%;
  height: 100%;
}
.plan-sec .arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 75px;
  height: 75px;
  border-top: 2px solid #585050;
  border-right: 2px solid #585050;
  z-index: 1;
}
.plan-sec .arrow.next {
  right: -100px;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 1660px) {
  .plan-sec .arrow.next {
    right: -40px;
  }
}
.plan-sec .arrow.prev {
  left: -100px;
  transform: translateY(-50%) rotate(-135deg);
}
@media only screen and (max-width: 1660px) {
  .plan-sec .arrow.prev {
    left: -40px;
  }
}
.plan-sec .planlist .box {
  padding: 0;
}
.plan-sec .planlist .box > div {
  padding: 0px 16px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: stretch;
  flex-direction: column;
}
.plan-sec .planlist .box img {
  width: 100%;
}
.plan-sec .planlist .box p {
  padding: 20px 0 0;
  font-size: 14px;
  line-height: 1.5;
}
.plan-sec .planlist .box p.plan_txt {
  padding-top: 0;
  font-size: 12px;
}
.plan-sec .planlist .box a {
  border: 1px solid #585050;
  display: block;
  text-align: center;
  line-height: 50px;
  color: #585050;
  text-decoration: none;
}
.plan-sec .planlist .box a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.plan-sec .slick-slide {
  width: 100%;
  display: block;
}
.plan-sec .slide-items {
  width: 100%;
  height: 100%;
}
.plan-sec .slide-items img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* スマホ用だったものをPC用に上書き */
.plan-sec {
  padding: 53px 0px 45px;
}
.plan-sec .container {
  width: 350px !important;
}
.plan-sec #plan {
  width: 100%;
}
.plan-sec .row {
  height: auto;
  display: block;
  padding: 0 40px !important;
}
.plan-sec h3 {
  font-size: 18px;
  width: auto;
  margin: 0 60px;
  height: 60px;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.56);
  position: relative;
}
.plan-sec h3 span {
  margin-top: 5px;
  display: block;
  color: #B7A97D;
  font-family: "Maru Folk Regular";
  font-size: 10px;
}
.plan-sec h3::before {
  left: -5px;
  top: -5px;
}
.plan-sec .arrow {
  position: absolute;
  top: 20%;
  width: 36px;
  height: 36px;
  border-width: 1px;
}
.plan-sec .arrow.next {
  right: -10px;
  transform: translateY(-20%) rotate(45deg);
}
.plan-sec .arrow.prev {
  left: -10px;
  transform: translateY(-20%) rotate(-135deg);
}
.plan-sec .planlist .box {
  padding: 0;
}
.plan-sec .planlist .box > div {
  padding: 0px 16px;
}
.plan-sec .planlist .box > div img {
  max-width: none;
  width: 100%;
  height: auto;
}
.plan-sec .planlist .box p {
  padding: 20px 0 0;
  font-size: 16px;
  line-height: 1.5;
}
.plan-sec .planlist .box p.plan_txt {
  font-size: 14px;
}
.plan-sec .planlist .box a {
  border: 1px solid #585050;
  display: block;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
}
.plan-sec .planlist .box a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.plan-sec .slick-slide {
  width: 100%;
  display: block;
}

/*---------------------------------------------
restaurant sec
----------------------------------------------*/
.restaurant-sec {
  padding: 76px 0px 0px;
}
.restaurant-sec .row {
  display: block;
}
.restaurant-sec h3 {
  color: #585050;
  font-size: 24px;
  background: linear-gradient(to bottom, rgb(235, 219, 169) 0%, rgba(235, 219, 169, 0.56) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ebdba9", endColorstr="#8febdba9",GradientType=0 );
  color: #585050;
  width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 65px;
  background-color: rgba(255, 255, 255, 0.56);
  position: relative;
}
.restaurant-sec h3 span {
  display: block;
  margin-top: 10px;
  display: block;
  color: #B7A97D;
  font-family: "Maru Folk Regular";
  font-size: 12px;
}
.restaurant-sec h3::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  border: 1px solid #B7A97D;
  width: 100%;
  height: 100%;
}
.restaurant-sec .restlist > div {
  width: 50%;
  padding: 0 0 80px;
  text-align: center;
}
.restaurant-sec .restlist > div .img {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.restaurant-sec .restlist > div .ttl {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.restaurant-sec .restlist > div p {
  color: #585050;
  font-size: 18px;
  line-height: 2;
  text-align: center;
}
.restaurant-sec .restlist > div:first-child {
  background-color: #F3EAEA;
}
.restaurant-sec .restlist > div:first-child .img {
  background-image: url(../images/bg-rest01.jpg);
}
.restaurant-sec .restlist > div:first-child .ttl img {
  width: auto;
  height: 84px;
}
.restaurant-sec .restlist > div:last-child {
  background: url(../images/bg-sushi.png) repeat center center;
}
.restaurant-sec .restlist > div:last-child .img {
  background-image: url(../images/bg-rest02.jpg);
}
.restaurant-sec .restlist > div:last-child .ttl img {
  width: auto;
  height: 47px;
}
.restaurant-sec .restlist > div a {
  width: 280px;
  background-color: #fff;
  border: 1px solid #B7A97D;
  display: block;
  margin: 30px auto 0;
  display: block;
  text-align: center;
  line-height: 50px;
  color: #B7A97D;
  text-decoration: none;
}
.restaurant-sec .restlist > div a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 767px) {
  .restaurant-sec {
    padding: 45px 0px 0px;
  }
  .restaurant-sec h3 {
    font-size: 18px;
    width: auto;
    margin: 0 60px;
    height: 60px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.56);
    position: relative;
  }
  .restaurant-sec h3 span {
    margin-top: 5px;
    display: block;
    color: #B7A97D;
    font-family: "Maru Folk Regular";
    font-size: 10px;
  }
  .restaurant-sec h3::before {
    left: -5px;
    top: -5px;
  }
  .restaurant-sec .restlist {
    display: block;
  }
  .restaurant-sec .restlist > div {
    width: 100%;
    padding: 0 0 30px;
    text-align: center;
  }
  .restaurant-sec .restlist > div .img {
    height: auto;
    padding-top: 41.40625%;
  }
  .restaurant-sec .restlist > div .ttl {
    padding: 20px 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .restaurant-sec .restlist > div p {
    font-size: 14px;
  }
  .restaurant-sec .restlist > div:first-child .ttl img {
    width: auto;
    height: 50px;
  }
  .restaurant-sec .restlist > div:last-child .ttl img {
    width: auto;
    height: 30px;
  }
  .restaurant-sec .restlist > div a {
    max-width: 260px;
    margin: 20px auto 0;
    line-height: 40px;
  }
}
/*---------------------------------------------
event sec
----------------------------------------------*/
.warning-sec {
  padding: 176px 0px 0;
  background: url("../images/bg-plan_white.jpg") center center;
}
.warning-sec .row {
  width: 80%;
  max-width: 830px;
  margin: 0 auto;
}
.warning-sec h4 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.warning-sec .bold {
  font-weight: bold;
  text-align: center;
  border: 3px red double;
  padding: 20px 0;
}
.warning-sec .bold h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
.warning-sec .bold a {
  color: #E78B58;
}
.warning-sec .bold + p {
  margin: 10px 0 0 0;
  font-size: 17px;
}
.warning-sec ul {
  width: 90%;
  margin: 10px auto 0;
}
.warning-sec ul li {
  padding-left: 1rem;
  text-indent: -1rem;
  display: block;
  text-align: left;
  font-size: 0.9em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .warning-sec {
    padding: 50px 0 0;
  }
  .warning-sec h4 {
    font-size: 20px;
  }
  .warning-sec .row {
    width: 100%;
  }
  .warning-sec .bold {
    padding: 20px;
  }
  .warning-sec .bold h5 {
    font-size: 16px;
  }
  .warning-sec .bold + p {
    font-size: 13px;
  }
  .warning-sec ul {
    width: 100%;
  }
  .warning-sec ul li {
    font-size: 13px;
  }
}

/*---------------------------------------------
event sec
----------------------------------------------*/
.event-sec {
  padding: 176px 0px 70px;
  background: url("../images/bg-plan_white.jpg") center center;
}
.event-sec .row {
  display: block;
}
.event-sec .inner {
  max-width: 2000px;
  margin: 0 auto;
  padding: 50px 0 50px;
  /*overflow: hidden;*/
}
.event-sec h3 {
  color: #585050;
  font-size: 24px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.56) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#8fffffff", endColorstr="#ffffff",GradientType=0 );
  width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 30px;
  position: relative;
}
.event-sec h3 span {
  display: block;
  margin-top: 10px;
  display: block;
  color: #B7A97D;
  font-family: "Maru Folk Regular";
  font-size: 12px;
}
.event-sec h3::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  border: 1px solid #585050;
  width: 100%;
  height: 100%;
}

.eventlist {
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.eventlist .arrow {
  position: absolute;
  top: 50%;
  width: 77px;
  height: 77px;
  z-index: 1;
}
.eventlist .arrow:before {
  margin-top: 40px;
  display: block;
  content: "";
  width: 54px;
  height: 54px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.eventlist .arrow.next {
  right: -20px;
}
.eventlist .arrow.next:before {
  transform: translateY(-50%) rotate(45deg);
  margin-right: 30px;
}
@media only screen and (max-width: 1660px) {
  .eventlist .arrow.next {
    right: -20px;
  }
}
.eventlist .arrow.prev {
  left: -20px;
}
.eventlist .arrow.prev:before {
  transform: translateY(-50%) rotate(-135deg);
  margin-left: 20px;
}
@media only screen and (max-width: 1660px) {
  .eventlist .arrow.prev {
    left: -20px;
  }
}
.eventlist .slick-list {
  overflow: visible;
}
.eventlist .box {
  width: 30%;
  margin-right: 42px;
}
.eventlist .box:nth-child(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .eventlist .box {
    width: 48%;
    margin: 0;
  }
}
.eventlist .box a {
  outline: none;
  display: block;
  text-decoration: none;
}
.eventlist .box a div {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 767px) {
  .eventlist .box a div {
    margin: 0 auto 10px;
  }
}
.eventlist .box a div img {
  width: 100%;
  height: auto;
}
.eventlist .box p {
  padding: 0px 0 0px;
  font-size: 14px;
  line-height: 1.5;
}
.eventlist .box p span {
  display: block;
  font-size: 14px;
}
.eventlist .box.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding: 0;
}

.more button {
  background: linear-gradient(to bottom, #585050 0%, #333333 100%);
  border: none;
  cursor: pointer;
  outline: none;
  color: #fff;
  padding: 0;
  line-height: 40px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: 0.1s ease-in-out;
}
.more button:hover {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  transform: translateY(3px);
}

.slick-slide {
  display: block;
}

@media only screen and (max-width: 767px) {
  .event-sec {
    padding: 45px 0px 25px;
  }
  .event-sec .row {
    height: auto;
    display: block !important;
    padding: 0 40px !important;
  }
  .event-sec .inner {
    padding: 0px 0 50px;
    margin-top: 30px;
  }
  .event-sec h3 {
    font-size: 18px;
    width: auto;
    margin: 0 60px;
    height: 60px;
    margin-bottom: 0px;
  }
  .event-sec h3 span {
    margin-top: 5px;
    font-size: 10px;
  }
  .event-sec h3::before {
    left: -5px;
    top: -5px;
  }
  .event-sec .eventlist {
    width: auto;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .event-sec .eventlist {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .event-sec .eventlist .arrow {
    top: 60%;
    width: 54px;
    height: 54px;
  }
  .event-sec .eventlist .arrow:before {
    border-width: 1px;
    width: 36px;
    height: 36px;
    margin-top: 25px;
  }
  .event-sec .eventlist .arrow.next {
    right: -55px;
  }
  .event-sec .eventlist .arrow.next:before {
    transform: translateY(-50%) rotate(45deg);
  }
  .event-sec .eventlist .arrow.prev {
    left: -55px;
  }
  .event-sec .eventlist .arrow.prev:before {
    transform: translateY(-50%) rotate(-135deg);
  }
  .event-sec .eventlist .slick-list {
    overflow: hidden;
  }
  .event-sec .eventlist .box {
    padding: 0;
  }
  .event-sec .eventlist .box > div {
    padding: 0px 16px;
  }
  .event-sec .eventlist .box p {
    padding: 20px 0;
    font-size: 16px;
    line-height: 1.5;
  }
  .event-sec .eventlist .box a {
    /*img{
    	max-width: none;
    	width: 100%;
    	height: auto;
    }*/
  }
  .event-sec .eventlist .box a div {
    position: relative;
    width: 100%;
    height: auto;
  }
  .event-sec .slick-slide {
    width: 100%;
    display: block;
  }
}
/* top slide Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.slick-dots {
  position: absolute;
  bottom: -80px;
  display: inline-block !important;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots.thin {
  bottom: 20px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: auto;
  height: 15px;
  margin: 0 6px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 15px;
  height: 15px;
  padding: 0px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: 0;
  outline: none;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li.slick-active button {
  border: 2px solid #585050;
  background-color: #585050;
}

@media screen and (max-width: 767px) {
  .slick-dots {
    bottom: -40px;
  }
  .slick-dots li {
    margin: 0 4px;
  }
  .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0px;
  }
}
.news-plan-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/*---------------------------------------------
info sec
----------------------------------------------*/
.event-sec .row {
  display: flex !important;
}
.event-sec .row .newsarea {
  width: 70%;
  padding-right: 12px;
}
@media only screen and (max-width: 767px) {
  .event-sec .row .newsarea {
    width: 100%;
    padding: 0;
  }
}
.event-sec .row .newsarea .inner {
  background-color: #fff;
  padding: 24px 12px;
  margin-top: 30px;
  width: 100%;
  float: left;
}
.event-sec .row .newsarea h3 {
  font-size: 24px;
  background: linear-gradient(to bottom, rgb(235, 219, 169) 0%, rgba(235, 219, 169, 0.56) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ebdba9", endColorstr="#8febdba9",GradientType=0 );
  color: #585050;
  width: calc(80% - 10px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.56);
  position: relative;
}
.event-sec .row .newsarea h3 span {
  display: block;
  margin-top: 10px;
  display: block;
  color: #B7A97D;
  font-family: "Maru Folk Regular";
  font-size: 12px;
}
.event-sec .row .newsarea h3::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  border: 1px solid #B7A97D;
  width: 100%;
  height: 100%;
}
.event-sec .row .newsarea .frame {
  height: 370px;
  overflow: auto;
  padding: 0 10px;
}
.event-sec .row .newsarea .frame dl {
  display: block;
}
.event-sec .row .fbarea {
  width: 30%;
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  .event-sec .row .fbarea {
    width: 100%;
    padding: 0;
    margin-top: 30px;
    text-align: center;
  }
  .event-sec .row .fbarea .twitter-timeline #twitter-widget-0 {
    height: 300px !important;
    border-radius: 12px;
  }
}
.event-sec .row .fbarea .fb_iframe_widget {
  width: 100%;
}
.event-sec .row .fbarea .fb_iframe_widget span, .event-sec .row .fbarea .fb_iframe_widget iframe {
  width: 100% !important;
}
.event-sec .row .fbarea #insta_ph {
  background: #fff;
}
.event-sec .row .fbarea #insta_ph > img {
  margin: 0 auto;
  display: block;
}
.event-sec .row .fbarea #insta_ph ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
}
.event-sec .row .fbarea #insta_ph ul li {
  width: 48%;
  margin-bottom: 10px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.event-sec .row .fbarea #insta_ph ul li a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eee;
}
.event-sec .row .fbarea #insta_ph ul li:last-child {
  display: none;
}
@media only screen and (max-width: 767px) {
  .event-sec .row .fbarea #insta_ph ul li {
    width: 32%;
  }
  .event-sec .row .fbarea #insta_ph ul li:last-child {
    display: block;
  }
}
.event-sec .row .fbarea .sns {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 20px;
}
.event-sec .row .fbarea .table_check img {
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .news-plan-wrap {
    flex-direction: column;
  }
  .event-sec .row .newsarea .inner {
    width: 100%;
  }
  .plan-sec {
    width: 100%;
  }
  .plan-sec .container {
    width: 100% !important;
  }
  .plan-sec .planlist .box > div {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .info-sec {
    padding: 70px 15px;
    background: url(../images/sp-bg-info.jpg) no-repeat center;
    background-size: cover;
  }
  .info-sec .row {
    display: block !important;
  }
  .info-sec .row > div {
    width: auto;
  }
  .info-sec .row .newsarea {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .info-sec .row .newsarea .inner {
    padding: 24px 12px;
    height: auto;
  }
  .info-sec .row .newsarea h3 {
    font-size: 18px;
    width: calc(100% - 10px);
    height: 60px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.56);
    position: relative;
  }
  .info-sec .row .newsarea h3 span {
    margin-top: 5px;
    font-size: 10px;
  }
  .info-sec .row .newsarea h3::before {
    left: -5px;
    top: -5px;
  }
  .info-sec .row .newsarea .frame {
    height: 280px;
    overflow: auto;
    padding: 0 10px;
  }
  .info-sec .row .fbarea {
    padding: 0 0px;
    text-align: center;
  }
  .info-sec .row .fbarea .fb_iframe_widget {
    width: 100%;
  }
  .info-sec .row .fbarea .fb_iframe_widget iframe {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
/*---------------------------------------------
access sec
----------------------------------------------*/
.access-sec {
  padding: 76px 0px 70px;
  background: rgb(88, 80, 80);
  background: linear-gradient(to bottom, rgb(88, 80, 80) 0%, rgb(51, 51, 51) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#585050", endColorstr="#333333",GradientType=0 );
}
.access-sec h3 {
  color: #585050;
  font-size: 24px;
  background: linear-gradient(to bottom, rgb(235, 219, 169) 0%, rgba(235, 219, 169, 0.56) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ebdba9", endColorstr="#8febdba9",GradientType=0 );
  width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 30px;
  position: relative;
}
.access-sec h3 span {
  display: block;
  margin-top: 10px;
  display: block;
  color: #fff;
  font-family: "Maru Folk Regular";
  font-size: 12px;
}
.access-sec h3::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
}
.access-sec p {
  letter-spacing: 0.3em;
  font-weight: 500;
  text-align: center;
  color: #fff;
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 40px;
}
.access-sec p span {
  font-size: 24px;
}
.access-sec .btnarea {
  padding: 50px 0 0;
  text-align: center;
}
.access-sec .btnarea a {
  font-size: 16px;
  letter-spacing: 0.3em;
  width: 280px;
  font-weight: 500;
  border: 1px solid #EBDBA9;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  color: #EBDBA9;
  text-decoration: none;
}
.access-sec .btnarea a:hover {
  background-color: rgba(235, 219, 169, 0.5);
}

@media screen and (max-width: 767px) {
  .access-sec {
    padding: 30px 0px;
  }
  .access-sec h3 {
    font-size: 18px;
    width: auto;
    margin: 0 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .access-sec h3 span {
    margin-top: 5px;
    font-size: 10px;
  }
  .access-sec h3::before {
    left: -5px;
    top: -5px;
  }
  .access-sec p {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  .access-sec p span {
    font-size: 24px;
  }
  .access-sec .map iframe {
    height: 240px;
  }
  .access-sec .btnarea {
    padding: 30px 0 0;
    text-align: center;
  }
  .access-sec .btnarea a {
    font-size: 16px;
    letter-spacing: 0.3em;
    width: auto;
    line-height: 40px;
    margin: 0 60px;
    display: block;
  }
}
/*slide*/
/* ----------------------------------------------
* Generated by Animista on 2020-12-15 19:2:49
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation tracking-in-expand
* ----------------------------------------
*/
@keyframes tracking-in-expand {
  0% {
    opacity: 0;
    letter-spacing: -0.5em;
  }
  15% {
    opacity: 0.6;
  }
  30% {
    opacity: 1;
    letter-spacing: inherit;
  }
  100% {
    opacity: 1;
    letter-spacing: inherit;
  }
}
.slick-active .slide_txt.tracking-in-expand {
  animation: tracking-in-expand 9s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}/*# sourceMappingURL=top.css.map */