@charset "utf-8";
/*top page css*/

#top .cts_ttl {
  color: var(--mainColor);
  text-align: center;
  font-size: 28px;
  line-height: 1.4em;
  font-weight: 600;
  letter-spacing: .1em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
}
/*メインビジュアル*/
#top #kv {
  width: calc(100% - 24px);
  margin: 12px 12px 22px 12px;
  padding: 0;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#top #kv .movie {
  width: 100%;
  height: 680px;
  overflow: hidden;
  position: relative;
  border-radius: 40px;
}
#top #kv .movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .scroll_down {
  position: absolute;
  left: -40px;
  top: 0;
  transform: translate(-100%,0);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: .1em;
  padding-bottom: 120px;
  color: rgba(255,255,255,.6);
}
#top .scroll_down:before {
  content: '';
  width: 1px;
  height: 110px;
  background: rgba(255,255,255,.5);
  position: absolute;
  left: calc(50% - 4px);
  bottom: 0;
  z-index: 1;
}
#top .scroll_down:after {
  content: '';
  width: 11px;
  height: 7px;
  background: url("../images/icon/pulldown_wht.png") no-repeat center / contain;
  position: absolute;
  left: calc(50% - 9px);
  bottom: 0;
  z-index: 2;
}
#top #kv .slider {
  position: relative;
}
#top #kv .copy {
  display: inline-block;
  width: 96%;
  max-width: 1200px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translate(-50%, 0);
}
#top #kv .copy h2 {
	color: #fff;
	font-size: 60px;
  line-height: 1.2em;
	font-weight: 500;
	margin: 0;
	padding: 0;
	letter-spacing: 0.02em;
  display: inline;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,.8));
}
#top #kv .copy p {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	margin: 20px 0 0 5px;
	padding: 0;
	letter-spacing: 0.1em;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,.8));
}
#top #kv .copy a {
	display: inline-block;
  text-decoration: none;
  color: #fff;
  width: auto;
}
#top #kv .copy a:after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #fff url(../images/icon/arrow_dark.png) no-repeat center / 14px auto;
  margin: 0 0 0 5px;
  transition: .3s;
}
#top #kv .copy a:hover:after {
  background: var(--mainColor) url(../images/icon/btn_arrow.png) no-repeat left 22px center / 14px auto;
  opacity: 1;
}
#top #kv .copy a:hover {
  opacity: 1;
}

#top #kv .slick-slide img {
  display: block;
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
}
#top #kv .cntl_wrap {
  max-width: 1180px;
  width: calc(100% - 30px);
  margin: 0;
  position: absolute;
  right: 28px;
  bottom: 30px;
  justify-content: flex-end;
  z-index: 55;
  pointer-events: none;
}
#top #kv .slide_controller {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  padding: 0 50px 0 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .3);
  backdrop-filter: blur(12px);
  width: auto;
  height: 26px;
  pointer-events: all;
  position: relative;
}
#top #kv #video_btn.slide_controller {
  padding: 0;
}
.play_btn {
  position: absolute;
  right: 0;
  top: 0;
}
.play_btn button {
  width: 26px;
  height: 26px;
  border-radius: 26px;
  border: none;
  background: rgba(255,255,255,.5);
  text-indent: -9999px;
  cursor: pointer;
  position: relative;
  display: block;
}
.play_btn button.slick_pause:before,
.play_btn button.slick_pause.paused:before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.play_btn button.slick_pause:before {
  background: url("../images/icon/icon_pause.png") no-repeat center / contain;
}
.play_btn button.slick_pause.paused:before {
  background: url("../images/icon/icon_play.png") no-repeat center / contain;
}

#top .reservation .wrap {
  position: relative;
}

#top .recommend {
  margin-top: 80px;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
}
#top .recommend .bnr {
  width: calc((100% - 40px)/2);
  position: relative;
}
#top .recommend .bnr img {
  border-radius: 10px;
}
#top .recommend .bnr .btn {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
  animation: btnHover-out .3s ease-out forwards;
}
#top .recommend .bnr .btn:after {
  content: '';
  width: 12px;
  height: 5px;
  background: url(../images/icon/arrow_dark.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease-out;
  z-index: 2;
}
#top .recommend .bnr a:hover {
  opacity: 1;
}
#top .recommend .bnr a:hover .btn {
  animation: btnHover .3s ease-out forwards;
}
#top .recommend .bnr a:hover .btn:after {
  animation: btnArrow .3s ease-out .1s forwards;
}

#event {
  margin-top: 100px;
}
#event .wrap {
  padding: 80px 0 0;
  position: relative;
}
#event .wrap:before {
  content: '';
  width: 100vw;
  height: 100%;
  background: url("../images/bgi_pt02.jpg") no-repeat center / cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  border-radius: 0 10px 10px 0;
}
#event .cts_ttl {
  text-align: left;
  letter-spacing: 0;
  margin: 0 0 15px;
}
#event .event_list {
  width: 100%;
  padding-bottom: 70px;
  position: relative;
}
#event .event_list .list_wrap {
  justify-content: flex-start;
  gap: 40px 60px;
  padding: 0 100px 0 0;
}
#event .event_list .list_wrap .list_box {
  width: calc((100% - 60px*3)/4);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
}
#event .event_list .list_wrap .list_box a {
  display: block;
  text-decoration: none;
}
#event .event_list .list_wrap .list_box a .eyecatch {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  transition: .5s;
  position: relative;
}
#event .event_list .list_wrap .list_box a .eyecatch:before {
  content: '';
  display: block;
  padding-top: 100%;
}
#event .event_list .list_wrap .list_box a .eyecatch img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#event .event_list .list_wrap .list_box a:hover,
#event .event_list .list_wrap .list_box a:hover img {
  opacity: 1;
}
#event .event_list .list_wrap .list_box a:hover .eyecatch {
  border-radius: 230px;
  opacity: 1;
}
#event .event_list .list_wrap .list_box a .cts {
  width: 100%;
  padding: 10px 0 0 0;
  position: relative;
}
#event .event_list .list_wrap .list_box a .btn {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%,-50%);
  z-index: 2;
  pointer-events: all;
  cursor: pointer;
}
#event .event_list .list_wrap .list_box a .btn:before {
  content: '';
  width: 70px;
  height: 70px;
  border-radius: 70px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: var(--mainColor);
  z-index: 2;
  animation: eventHover-out .3s ease-out forwards;
}
#event .event_list .list_wrap .list_box a .btn:after {
  content: '';
  width: 20px;
  height: 9px;
  background: url("../images/icon/btn_circle_arrow_wht.png") no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
}
#event .event_list .list_wrap .list_box a:hover .btn:before {
  animation: eventHover .3s ease-out forwards;
}
@keyframes eventHover {
  0% {
    width: 70px;
    height: 70px;
  }
  99.9999%, 100% {
    width: 90px;
    height: 90px;
  }
}
@keyframes eventHover-out {
  0% {
    width: 90px;
    height: 90px;
  }
  99.9999%, 100% {
    width: 70px;
    height: 70px;
  }
}
#event .event_list .list_wrap .list_box a:hover .btn:after {
  animation: btnArrow .3s ease-out forwards;
}
#event .event_list .list_wrap .list_box a .cts h3 {
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 800;
  margin: 10px 0;
}
#event .event_list .list_wrap .list_box a .cts p {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 600;
}
#event .event_list a.btn_circle {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
  z-index: 10;
}
#event .event_info {
  position: relative;
  padding: 90px 100px 90px 0;
  justify-content: flex-start;
  align-items: center;
}
#event .event_info:before {
  content: '';
  width: 100vw;
  height: 100%;
  /*background: rgba(255,255,255,.3);*/
  background: url("../images/bgi_pt01.jpg") no-repeat center / cover;
  margin-left: calc(50% - 50vw);
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 0 10px 0;
  z-index: -1;
}
#event .event_info .title_box {
  width: 310px;
  padding-right: 20px;
}
#event .event_info .title_box h2 {
  font-size: 50px;
  line-height: 1.2em;
  font-weight: 400;
  color: var(--mainColor);
}
#event .event_info .title_box h2 span {
  display: block;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 600;
}
#event .event_info .post_list {
  width: calc(100% - 310px);
}
#event .event_info .post_list .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

#top #service {
  position: relative;
  overflow: clip;
  overflow-y: visible;
}
#top #service:before {
  content: '';
  width: 100vw;
  height: 100%;
  background: url("../images/bgi_pt02_long.jpg") no-repeat center / cover;
  position: absolute;
  left: 0;
  top: -424px;
  z-index: -2;
}
#top #service .wrap {
  padding: 110px 0 50px;
}
#top #service .service_box {
  justify-content: flex-start;
  align-items: center;
}
#top #service .service_box .contents {
  width: 100%;
  position: relative;
  justify-content: flex-start;
  padding: 110px 0 0 0;
}
#top #service .service_box:first-of-type .contents {
  padding-top: 0;
}
#top #service .service_box .contents .inner {
  width: 56%;
  padding: 50px 20px 100px 60px;
  position: relative;
}
#top #service .service_box .contents .inner:before {
  content: '';
  width: 890px;
  height: 100%;
  border-radius: 10px;
  /*background: rgba(255,255,255,.7);*/
  background: url("../images/bgi_pt01.jpg") no-repeat center / cover;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#top #service .service_box .contents .indent {
  padding-left: 40px;
}
#top #service .service_box .contents h2.en {
  color: #897d55;
  font-size: 80px;
  line-height: 1em;
  font-weight: 400;
  letter-spacing: .05em;
  margin: 0 0 45px;
  text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
}
#top #service .service_box .contents h2.en.sml {
  font-size: 70px;
}
#top #service .service_box .contents h2.jp {
  color: var(--mainColor);
  font-size: 28px;
  line-height: 1.4em;
  font-weight: 600;
  letter-spacing: .2em;
  margin: 0 0 20px;
}
#top #service .service_box .contents p {
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 600;
}
#top #service .service_box .img_wrap {
  justify-content: flex-start;
  align-items: flex-end;
  gap: 30px;
  margin: 45px 0 0 0;
}
#top #service .service_box .img_wrap .images {
  width: 310px;
  max-width: calc(100% - 170px);
  border-radius: 10px;
  overflow: hidden;
}
#top #service .service_box .contents .s_image {
  width: 50%;
  margin-right: calc(50% - 50vw);
  flex: 1;
  position: relative;
  transition-delay: .3s;
}
#top #service .service_box .contents.reverse .inner {
  width: 56%;
  padding-left: 0;
}
#top #service .service_box .contents.reverse .inner:before {
  left: unset;
  right: 0;
}
#top #service .service_box .contents .in_image {
  display: none;
}
#top #service .service_box .contents.reverse .s_image {
  margin-right: 0;
  margin-left: calc(50% - 50vw);
  right: unset;
}
#top #service .service_box .s_image img {
  width: 700px;
  height: 700px;
  max-width: none;
  position: absolute;
  left: 0;
  bottom: 10px;
}
#top #service .service_box .contents.reverse .s_image img {
  right: 0;
  left: unset;
}

#top #concept {
  background: var(--mainColor) url("../images/top/concept_bgi.png") no-repeat bottom center / 100% auto;
  color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
  position: relative;
  overflow: hidden;
}
#top #concept .img_des {
  width: 560px;
  height: 560px;
  position: absolute;
  left: -120px;
  top: 0;
  transform: translate(0,calc(40% + 60px));
  transition-delay: .2s;
  z-index: 2;
}
#top #concept .img_des02 {
  width: 450px;
  height: 450px;
  position: absolute;
  right: -80px;
  top: 0;
  transform: translate(0,calc(200% + 60px));
  z-index: 2;
}
#top #concept .img_des.mv_in {
  transform: translate(0,40%);
}
#top #concept .img_des02.mv_in {
  transform: translate(0,200%);
}
#top #concept .wrap {
  padding: 50px 0 120px;
  position: relative;
  z-index: 5;
}
#top #concept .concept_box {
  width: 100%;
  justify-content: flex-start;
  margin: 0 0 120px;
  position: relative;
  color: var(--mainColor);
}
#top #concept .concept_box a.btn_circle {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%,50%);
}
#top #concept .concept_box .images {
  width: 460px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
#top #concept .concept_box .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top #concept .concept_box .cts {
  background: url("../images/bgi_pt02.jpg") no-repeat center / cover;
  width: calc(100% - 460px);
  border-radius: 0 10px 10px 0;
  padding: 70px;
}
#top #concept .concept_box .cts h2 {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 600;
  margin: 0 0 15px;
}
#top #concept .concept_box .cts h3 {
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 600;
  margin: 0 0 8px;
}
#top #concept .concept_box .cts p {
  font-size: 16px;
  line-height: 1.5em;
  text-align: left;
}
#top #concept h3.concept_ttl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 26px;
  line-height: 1.5em;
  font-weight: 600;
  letter-spacing: .3em;
  margin: 0 auto 50px;
}
#top #concept p {
  font-size: 16px;
  line-height: 3.5em;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
}
#top #concept .omotenashi_wrap {
  max-width: var(--ctsWidth);
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 0 0 200px;
}
#top #concept .omotenashi {
  width: 100%;
  max-width: 1000px;
  background: #897d55;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  padding: 45px 20px;
  margin: 0 auto;
  border-radius: 6px;
  position: relative;
}
#top #concept .omotenashi .float_img01 {
  width: 364px;
  height: 364px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-45%, calc(-75% + 60px));
  transition-delay: .2s;
}
#top #concept .omotenashi .float_img01.mv_in {
  transform: translate(-45%, -75%);
}
#top #concept .omotenashi .float_img02 {
  width: 250px;
  height: 250px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-12%, calc(-40% + 60px));
  transition-delay: .2s;
  z-index: 1;
}
#top #concept .omotenashi .float_img02.mv_in {
  transform: translate(-12%, -40%);
}
#top #concept .omotenashi .float_img03 {
  width: 200px;
  height: 200px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(40%, calc(40% + 60px));
  transition-delay: .2s;
  z-index: 2;
}
#top #concept .omotenashi .float_img03.mv_in {
  transform: translate(40%, 40%);
}
#top #concept .omotenashi .logo {
  width: 103px;
}
#top #concept .omotenashi .cts {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}
#top #concept .omotenashi .cts h3 {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 15px;
}
#top #concept .omotenashi .cts p {
  font-size: 14px;
  line-height: 2em;
  text-align: left;
  letter-spacing: 0;
}
#top #concept .omotenashi .cts p:not(:first-of-type) {
  margin-top: .8em;
}
#top #concept .omotenashi .cts .bdr_box {
  width: 100%;
  border: 1px solid #fff;
  padding: 25px 20px;
  margin: 40px 0 0 0;
  position: relative;
}
#top #concept .omotenashi .cts .bdr_box h4 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  width: auto;
  background: #897d55;
  padding: 0 20px;
  position: absolute;
  left: -1px;
  top: 0;
  transform: translate(0, -50%);
}

#top #information {
  background: url("../images/bgi_pt01.jpg") no-repeat center / cover;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
#top #information .img_des {
  width: 260px;
  height: 260px;
  position: absolute;
  right: 40px;
  top: 0;
  transform: translate(0,calc(-100% + 40px));
  z-index: 5;
}
#top #information .wrap {
  padding: 110px 0 30px;
  position: relative;
}
#top #information .cts_ttl {
  margin-bottom: 20px;
}
/* #top .reservation {
  background: var(--mainColor);
}
#top .reservation.btm {
  background: none;
}
#top .recommend {
  position: relative;
}
#top .recommend:before {
  content: '';
  width: 105vw;
  height: 80px;
  background: var(--mainColor);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
} */

/* ========================================================================================================
   1349px以下
   ========================================================================================================*/
@media screen and (max-width: 1349px) {
  #event .event_list a.btn_circle {
    transform: translate(-10px, 50%);
  }
  #top #concept .concept_box a.btn_circle {
    transform: translate(0, 70%);
  }
}


/* ========================================================================================================
   999px以下
   ========================================================================================================*/
@media screen and (max-width: 999px) {
  #top #service .service_box .contents,
  #top #service .service_box:first-of-type .contents {
    align-items: flex-start;
    flex-direction: column-reverse;
    padding: 30% 0 0 0;
  }
  #top #service .service_box .contents .inner {
    width: 100%;
    padding: 50px 25% 70px 20px;
  }
  #top #service .service_box .contents.reverse .inner {
    width: 100%;
    padding: 50px 20px 70px 25%;
  }
  #top #service .service_box .s_image {
    display: none;
  }
  #top #service .service_box .contents .in_image.fade {
    display: block;
    position: absolute;
    right: -12%;
    top: 0;
    width: 100%;
    max-width: 500px;
    z-index: -1;
    transform: translate(0, calc(-50% + 60px));
  }
  #top #service .service_box .contents.reverse .in_image {
    right: unset;
    left: -12%;
  }
  #top #service .service_box .contents .in_image.fade.mv_in {
    transform: translate(0, -50%);
  }
  #top #service .service_box .in_image img {
    width: 100%;
    height: auto;
  }
  #top #service .service_box .contents h2.en,
  #top #service .service_box .contents h2.jp {
    text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
  }
  #top #service .service_box .img_wrap {
    justify-content: flex-start;
  }
  #top #service .service_box .contents, #top #service .service_box:first-of-type .contents {
    padding: 290px 0 0 0;
  }
  #top #concept .img_des {
    width: 50%;
    height: auto;
    transform: translate(0, calc(130% + 60px));
  }
  #top #concept .img_des.mv_in {
    transform: translate(0, 130%);
  }
  #top #concept .img_des02 {
    width: 36%;
    height: auto;
    transform: translate(0, calc(300% + 60px));
  }
  #top #concept .img_des02.mv_in {
    transform: translate(0, 300%);
  }
  #top #information .img_des {
    width: 25%;
  }
  #event .event_info .title_box {
    width: 100%;
    padding-right: 0;
    margin: 0 0 30px;
  }
  #event .event_info .post_list {
    width: 100%;
  }
  #top #concept .omotenashi .float_img02 {
    width: 22%;
    height: auto;
    transform: translate(-12%, calc(-30% + 60px));
  }
  #top #concept .omotenashi .float_img02.mv_in {
    transform: translate(-12%, -30%);
  }
  #top #concept .omotenashi .float_img03 {
    width: 16%;
    height: auto;
    transform: translate(40%, calc(60% + 60px));
  }
  #top #concept .omotenashi .float_img03.mv_in {
    transform: translate(40%, 60%);
  }
  
  
}
/* ========================================================================================================
   767px以下
   ========================================================================================================*/
@media screen and (max-width: 767px) {
  #top .cts_ttl {
    font-size: 21px;
  }
  #top #kv {
    width: calc(100% - 12px);
    margin: 6px 6px 10px 6px;
    border-radius: 0;
  }
  #top #kv .movie {
    height: 480px;
    border-radius: 20px;
  }
  #top #kv .cts_wrap .scroll {
    display: none;
  }
  #top #kv .cts_wrap {
    justify-content: center;
    gap: 15px;
    margin-top: 80px;
    padding-left: 0;
  }
  #top #kv .slick-slide img {
    height: auto;
    border-radius: 20px;
  }
  #top #kv .slick-slider {
    padding-bottom: 36px;
  }
  #top #kv .cntl_wrap {
    bottom: 0;
    justify-content: center;
    width: 100%;
    right: 0;
  }
  #top #kv .movie .cntl_wrap {
    justify-content: flex-end;
    padding: 0 10px 10px 0;
  }
  #top #kv .copy {
    width: 90%;
    bottom: 25px;
  }
  #top #kv .copy h2 {
    font-size: 7vw;
  }
  #top #kv .copy p {
    font-size: 3vw;
    margin: 2px 0 0 5px;
  }
  #top #kv .copy a:after {
    content: none;
  }
  #top .recommend {
    margin-top: 15px;
    gap: 25px;
  }
  #top .recommend .bnr {
    width: 100%;
  }
  #top .recommend .bnr img {
    border-radius: 5px;
  }
  #event {
    margin-top: 40px;
  }
  #event .wrap {
    padding: 40px 0 0;
  }
  #event .event_list {
    padding-bottom: 40px;
  }
  #event .event_list .list_wrap {
    gap: 40px 20px;
    padding: 0 20px 0 0;
  }
  #event .event_list .list_wrap .list_box {
    width: calc((100% - 20px) / 2);
  }
  #event .event_list .list_wrap .list_box a .eyecatch {
    border-radius: 100%;
  }
  #event .event_list .list_wrap .list_box a .eyecatch img {
    width: 100%;
    height: 100%;
  }
  #event .event_list a.btn_circle {
    position: relative;
    right: 0;
    bottom: unset;
    transform: translate(0, 0);
    margin: 40px auto 0;
  }
  #event .event_list .list_wrap .list_box a .btn {
    width: 35px;
    height: 35px;
    top: 0;
    right: 0;
    transform: translate(0, -100%);
  }
  #event .event_list .list_wrap .list_box a .btn:before {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    animation: none;
  }
  #event .event_list .list_wrap .list_box a .btn:after {
    width: 14px;
    height: 5px;
    animation: none;
  }
  #event .event_list .list_wrap .list_box a .cts h3 {
    font-size: 14px;
    margin: 5px 0;
  }
  #event .event_list .list_wrap .list_box a .cts p {
    font-size: 12px;
  }
  #event .event_list .list_wrap .list_box a:hover .btn:before {
    animation: none;
  }
  #event .event_info {
    padding: 40px 20px 40px 0;
  }
  #event .event_info .title_box h2 {
    font-size: 32px;
  }
  #event .event_info .title_box h2 span {
    font-size: 12px;
    margin-top: 8px;
  }
  #event .event_info .post_list .title {
    -webkit-line-clamp: 2;
    width: 100%;
    font-size: 14px;
  }
  #event .event_info:after {
    content: '';
    width: 100vw;
    height: 100%;
    margin-right: calc(50% - 50vw);
    position: absolute;
    right: 0;
    top: 0;
    z-index: -2;
    background: url(../images/bgi_pt02_long.jpg) no-repeat center / cover;
  }
  #top #service:before {
    top: 0;
  }
  #top #service .wrap {
    padding: 0 0 50px;
  }
  #top #service .service_box .contents {
    width: 100%;
  }
  #top #service .service_box.reverse .contents {
    width: 100%;
  }
  #top #service .service_box .contents .inner {
    width: 100%;
    padding: 20px 20px 50px 0;
  }
  #top #service .service_box .contents .inner:before {
    content: '';
    width: 100vw;
    height: 100%;
    left: unset;
    right: 0;
    border-radius: 0 10px 10px 0;
  }
  #top #service .service_box .contents.reverse .inner {
    padding: 20px 0 50px 20px;
  }
  #top #service .service_box .contents.reverse .inner:before {
    width: 100vw;
    left: 0;
    right: unset;
    border-radius: 10px 0 0 10px;
  }
  #top #service .service_box .contents,
  #top #service .service_box:first-of-type .contents {
    padding: 90% 0 0 0;
  }
  #top #service .service_box .contents .in_image.fade {
    transform: translate(0, calc(-80% + 60px));
  }
  #top #service .service_box .contents .in_image.fade.mv_in {
    transform: translate(0, -80%);
  }
  #top #service .service_box .contents h2.en {
    font-size: 40px;
    margin: 0 0 20px;
  }
  #top #service .service_box .contents h2.en.sml {
    font-size: 35px;
    text-align: right;
  }
  #top #service .service_box .contents h2.jp {
    font-size: 20px;
    margin: 0 0 15px;
  }
  #top #service .service_box .contents p {
    font-size: 14px;
  }
  #top #service .service_box .contents .indent {
    padding-left: 0;
  }
  #top #service .service_box .img_wrap {
    gap: 20px;
    margin: 25px 0 0 0;
  }
  #top #service .service_box .img_wrap .images {
    max-width: calc(100% - 125px);
  }
  #top #concept .wrap {
    padding: 50px 0 35%;
  }
  #top #concept .concept_box .images {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  #top #concept .concept_box .cts {
    width: 100%;
    padding: 25px;
    border-radius: 0 0 10px 10px;
  }
  #top #concept .concept_box .cts h2 {
    font-size: 18px;
    margin: 0 0 10px;
  }
  #top #concept .concept_box .cts h3 {
    font-size: 16px;
    margin: 0 0 8px;
  }
  #top #concept .concept_box .cts p {
    font-size: 14px;
  }
  #top #concept .concept_box a.btn_circle {
    position: relative;
    right: unset;
    bottom: unset;
    transform: translate(0, 0);
    margin: 20px auto 0;
  }
  #top #concept .img_des {
    width: 60%;
    height: auto;
    left: -14%;
    top: 0;
    transform: translate(0, calc(264% + 60px));
  }
  #top #concept .img_des.mv_in {
    transform: translate(0, 264%);
  }
  #top #concept .img_des02 {
    width: 40%;
    height: auto;
    transform: translate(0, calc(540% + 60px));
    right: -20px;
  }
  #top #concept .img_des02.mv_in {
    transform: translate(0, 540%);
  }
  #top #concept h3.concept_ttl {
    font-size: 18px;
    margin: 0 auto 30px;
  }
  #top #concept p {
    font-size: 14px;
    line-height: 2.5em;
    letter-spacing: 0;
  }
  #top #concept .omotenashi_wrap {
    max-width: 100%;
    width: 100%;
    padding: 0 0 16%;
  }
  #top #concept .omotenashi {
    width: 100%;
    background: #897d55;
    color: #fff;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 60px 20px;
    margin: 0 auto;
    border-radius: 0;
  }
  #top #concept .omotenashi .logo {
    width: 18%;
    max-width: 80px;
  }
  #top #concept .omotenashi .cts {
    width: 100%;
  }
  #top #concept .omotenashi .cts h3 {
    font-size: 20px;
    text-align: center;
  }
  #top #concept .omotenashi .cts .bdr_box h4 {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #top #concept .omotenashi .cts p {
    font-size: 14px;
    line-height: 1.5em;
  }
  #top #concept .omotenashi .cts p:not(:first-of-type) {
    margin-top: 1.5em;
    font-size: 14px;
    text-align: left;
  }
  #top #concept .omotenashi .float_img01 {
    width: 35%;
    height: auto;
    left: 0;
    top: 0;
    transform: translate(-8%, calc(-105% + 60px));
  }
  #top #concept .omotenashi .float_img01.mv_in {
    transform: translate(-8%, -105%);
  }
  #top #concept .omotenashi .float_img02 {
    width: 28%;
    right: inherit;
    left: 0;
    transform: translate(80%, calc(-60% + 60px));
  }
  #top #concept .omotenashi .float_img02.mv_in {
    transform: translate(80%, -60%);
  }
  #top #concept .omotenashi .float_img03 {
    width: 28%;
    top: inherit;
    bottom: 0;
    transform: translate(-20px, calc(30% + 60px));
  }
  #top #concept .omotenashi .float_img03.mv_in {
    transform: translate(-20px, 30%);
  }
  #top #information .img_des {
    width: 32%;
    height: auto;
    right: 0;
    transform: translate(0, -90%);
  }
  #top #information .wrap {
    padding: 60px 0 30px;
  }
  #top #information .cts_ttl {
    text-align: left;
  }
  #top #information .post_list {
    width: 100%;
  }  
  #top #information .post_list .title {
    -webkit-line-clamp: 2;
    width: 100%;
    font-size: 14px;
  }
  #top #f_contact .cts_bnr {
    padding: 40px 0 60px;
  }
  #top #f_contact .cts_bnr .bnr_list {
    gap: 20px 15px;
  }
  #top #f_contact .cts_bnr .bnr_list .bnr_box {
    width: calc((100% - 15px) / 2);
  }
  #top #f_contact .cts_bnr .bnr_list .bnr_box .img {
    height: 70px;
  }
  #top #f_contact .cts_bnr .bnr_list .bnr_box h2 {
    font-size: 13px;
    padding-right: 20px;
  }
  #top #f_contact .cts_bnr .bnr_list .bnr_box p {
    font-size: 11px;
    line-height: 1.6em;
  }
  #top #concept {
    background: var(--mainColor) url(../images/top/concept_bgi_sp.png) no-repeat bottom center / 100% auto;
  }
  #top .recommend:before {
    height: 40px;
  }
  
  
}
/* ========================================================================================================
   499px以下
   ========================================================================================================*/
@media screen and (max-width: 499px) {

}