@charset "UTF-8";

/* ---- 全体 ---- */

img:hover {
  opacity: 0.5;
}
body {
  margin: 0;
  font-family: sans-serif;
  word-wrap: break-word;
}
a {
  text-decoration: none;
  color: black;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ---- よくある質問 ---- */

.grid {
  display: grid;
  display: -ms-grid;
  grid-template-columns: auto auto;
  -ms-grid-rows: 40% 40% 40%;
  -ms-grid-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );
  margin-bottom: 5vw;
}
.x2 {
  display: grid;
  display: -ms-grid;
  grid-row-start: 3;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 3;
}
.grid div {
  margin: 4px;
  padding: 3px;
  background-color: yellowgreen;
}
.grid a {
color: white;
}

/* ---- 枠線 ---- */
    
.frame_yellowgreen {
  margin: 4% 0;
  padding: 2%;
  border: solid 1px yellowgreen;
}
.frame_yellowgreen1 {
  margin: 4% 0;
  padding: 2%;
  border: solid 1px yellowgreen;
}
.frame_yellowgreen2 {
  margin: 6% 0;
  padding: 2%;
  border: solid 3px yellowgreen;
}
.frame_2color {
  border: solid 3px #990000;
  outline: solid 3px yellowgreen;
  outline-offset: 0px;
  margin: 6px 3px;
  padding: 0 2%;
}

/* ---- 部分 ---- */

.guide {
  background-image: url(image/check.jpg);
  margin: 0 0 5% 0;
  padding: 2%;
  content-visibility: auto;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.guide p {
  margin: 15px;
}
.guide.lazyloaded {
  opacity: 1;
}
.guide.lazyloaded:hover {
  opacity: 0.4;
}
.icon_right {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  margin-top: -5%;
  position: relative;
  top: 1vh;
}
.gototop {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
}
.gototop img {
  position: fixed;
  right: 2vw;
  bottom: 20vh;
  width: 7vw;
  height: auto;
}
.gotoyoutube {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.gotoyoutube a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  transform   : scale(1.0, 1.2);
  text-align: center;
  color: white;
  background: crimson;
  position: fixed;
  top: 20vh;
  padding: 1.5% 0.75% 1.5%;
}
.up {
  position: relative;
}
.copy {
  text-align: right;
  color: white;
}
.gray_mono {
  color: gray;
  font-size: 14px;
}
.pc_none {
  display: none;
}
.sp_none_text {
  padding: 2% 1%;
  width: 100%;
  color: gray;
}
.week_text {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  top: 5vh;
}
.week_text2 {
  position: relative;
  left: 0.5vw;
}
.icon_sns {
  display: flex;
  justify-content: space-between;
  margin: 0 1%;
}

/* ---- 予約 ---- */

.yoyakubox {
  width: 100%;
  border: solid 3px yellowgreen;
}
.box-title {
  width: auto;
  background: yellowgreen;
  padding: 2%;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
}
.botton a {
  display: block;
  text-decoration: none;
  width: 80%;
  padding: 2%;
  margin: 0 auto;
  color: white;
  background: green;
  color: white;
  text-align: center;
}
.emegreen {
  color: #00aa6e;
  text-align: center;
  margin: 2% 15%;
}
.under {
  color: #00aa6e;
  ruby-position: under;
}
.image_text2 {
  display: block;
  width: 100%;
  padding: 1% 2%;
}

/* ----ドロップダウンメニュー ---- */

.drop {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  margin: 2% 12%;
  padding: 0 2%;
}
.logo > a {
  text-decoration: none;
  color: #333;
}
.dropmenu ul {
  list-style: none;
  text-align: right;
  margin: 0;
  padding: 0;
}
.dropmenu li {
  display: inline-block;
  padding: 0 10px;
}
.dropmenu {
  text-decoration: none;
  font-size: 12px;
  color: #333333;
}
.underline.active, .underline:hover {
  border-bottom: 3px solid green;
}


/* 親メニュー */
nav > ul > li {
  position: relative;
  list-style-type: none;
}
nav a {
  color: #0bd;
  text-decoration: none;
  }

/* 子メニュー */
.sub-menu {
  position: absolute;
  width: 180px;
  background: #efefef;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  z-index: 2 !important;
  right: -2vw;
}
.sub-menu a {
  color: white;
  font-size: 12px;
  width: 152px;
  margin: 4px;
  padding: 8px;
  display: block;
  background: #33cccc;
  list-style-type: none;
  text-align: center;
}
.sub-menu a:hover {
  color: white;
  list-style-type: none;
}


/* 子メニュー表示 */
.menu-item-has-children:hover ul, .menu-item-has-children ul.focused {
  opacity: 1;
  visibility: visible;
  list-style-type: none;
}
li.menu-item-has-children li a:hover, li.menu-item-has-children li a:focus {
  list-style-type: none;
}
.menu-item-has-children:hover div, .menu-item-has-children div.focused {
  opacity: 1;
  visibility: visible;
  list-style-type: none;
}

.menu-item-has-children {
  position: relative;
}


/* メガメニュー */
 
.gnav-wrapper {
  position: absolute;
  width: 54vw;
  right: -1vw;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  z-index: 2 !important;
}
 
.gnav {
  display: grid;
  display: -ms-grid;
  grid-template-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );
  -ms-grid-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );
  list-style-type: none;
  width: 54vw;
}

.gnav li {
  margin: 0;
  padding: 15px 0;
  text-align: center;
  transition: all .3s ease-in-out;
}

.ho {
  color: black;
  font-size: 15px;
  background: skyblue;
}
.ha {
  color:  black;
  font-size: 14px;
  background: orchid;
}
.da {
  color:  black;
  font-size: 14px;
  background: yellowgreen;
}
.ho:hover {
  color: white;
  background: skyblue;
}
.ha:hover {
  color: white;
  background: orchid;
}
.da:hover {
  color: white;
  background: yellowgreen;
}
.ho:after, .ha:after, .da:after {
  content: "＞";
}
.ho:hover:after, .ha:hover:after, .da:hover:after {
  content: "∨";
}

.gnav a {
  padding: 0 30px;
  margin: 0;
}
.gnav > li:hover .megamenu {
  max-height: 999px;
  opacity: 1;
  padding: 0;
}
 
.megamenu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  width: 54vw;
  position: absolute;
  top: 50px;
  right: 0vw;
  transition: all .1s ease-in;
  z-index: 99;
}
 
.megamenu-week1 {
  display: grid;
  display: -ms-grid;
  grid-template-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );

  -ms-grid-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );
  -ms-grid-rows: 45% 45% 10%;
  list-style-type: none;
  margin: 0 2px;
  padding: 0 2px;
  background: skyblue;
}
.megamenu-week2 {
  display: grid;
  display: -ms-grid;
  grid-template-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );

  -ms-grid-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );
  -ms-grid-rows: 45% 45% 10%;
  list-style-type: none;
  margin: 0 2px;
  padding: 0 2px;
  background: orchid;
}
.megamenu-week3 {
  display: grid;
  display: -ms-grid;
  grid-template-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );

  -ms-grid-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );
  -ms-grid-rows: 45% 45% 10%;
  list-style-type: none;
  margin: 0 2px;
  padding: 0 2px;
  background: yellowgreen;
}
 
.megamenu-week li, .megamenu-week2 li, .megamenu-week3 li {
  width: 100%;
}

.whitebox {
  background: white;
  margin: 0 3%;
  padding: 4% 0 4% 2%;
}

.megamenu-day {
  list-style-type: none;
  color: white;
  font-size: 16px;
  background: #4c6cb3;
  margin: 0 3%;
  padding: 4% 0;
}

.tour-link {
  margin: 2% 1% 5% 2%;
  padding: 0;
  text-align: left;
  margin-left: 1.2em;
  text-indent: -3.2em;
}
.tour-link a {
  color: yellowgreen;
  font-size: 	18px;
  font-weight: bold;
}

.kayou {
  display: grid;
  display: -ms-grid;
  grid-row-start:3;
  grid-row-end:4;
  grid-column-start:1;
  grid-column-end:4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.kayou  p {
  color: black;
  font-size: 16px;
  background: white;
  text-align: right;
  padding: 0.5%;
  margin: 0 1%;
}

/* 位置調整 */
.sub-menu2 {
  position: absolute;
  width: 180px;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  z-index: 2 !important;
}
.row > li {
  margin: 2% 0;
}

/* ---- 見出し・テキスト ---- */

.p_title1 {
  background-image: url(image/p_title1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: green;
  text-align: center;
  padding: 0 0 0.5% 0;
  margin: 2vh 0;
}
.pc_title2 {
  background-image: url(image/p_title2.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: green;
  text-align: left;
  padding: 2% 0 2% 5%;
}
.sp_title1 {
  display: none;
}
.sp_title2 {
  display: none;
}
.pc_insta {
  background-image: url(image/co_insta.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: green;
  text-align: center;
  margin: 0 10% 0 10%;
}
.sp_insta {
  display: none;
}

.yellowgreen {
  color: #7BAA17;
  margin-bottom: 3%;
}
.yellowgreen_icon {
  color: #7BAA17;
}
.yellowgreen_center {
  color: #7BAA17;
  font-weight: bold;
}
.gray {
  color: gray;
  padding: 0 0 1px;
}
.gray2 {
  color: gray;
  padding: 0 0 2%;
}
.gray3 {
  color: gray;
  padding: 0;
}
.gray li {
  list-style: none;
}
.gray li:before {
  content: "★";
}
.gray_center {
  color: gray;
  text-align: center;
}
.gray1line {
  color: gray;
  padding: 10px;
  border-bottom: solid 2px yellowgreen;
}
.purple {
  color: purple;
  margin-bottom: 3%;
}
.black {
  color: black;
}
.white {
  font-size: 16px;
  color: white;
}
.white_bg_green {
  font-size: 16px;
  color: white;
  background-color: green;
  padding: 2px 5px;
}
.white_yasumi {
  color: white;
}
.white_bg_gray {
  color: white;
  border-top: solid 2px black;
  border-bottom: solid 2px  black;
  text-align: center;
  padding: 10px;
  background-color: gray;
}
.white_bg_yellowgreen {
  color: white;
  text-align: center;
  margin: 5% 0 0 0;
  padding: 2%;
  background-color: yellowgreen;
}
.other {
  text-align: right;
  color: gray;
  margin: 0 0 2%;
}
.other a {
  color: gray;
}
.center {
  background-color: 	white;
  text-align: center;
}
.box_textleft {
  text-align: left;
  color: white;
  padding: 7px;
}
.box_textright {
  text-align: right;
  color: white;
  padding: 7px;
}
.tour_concept {
  margin: 0 2.5%
}

/* ---- フッター ---- */

.footer_grid {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 25% 25% 50%;
  -ms-grid-columns: 25% 25% 50%;
}
.footer {
  width: auto;
  padding: 2%;
}
.footer p {
  line-height: 12px;
}
.footer_menu {
  color: white;
  font-size: 12px;
}
.footer_menu a {
  color: white;
  font-size: 12px;
}
.footer_menu a:hover {
  opacity: 0.5;
}
.right {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
}

/* ---- カラー背景領域 ---- */

.white_day {
  background-color: 	white;
  margin: 0;
  padding: 1% 15%;
}
.white_day_sp {
  background-color: 	white;
  margin: 0;
  padding: 0 15%;
}
.white_day_down {
  background-color: 	white;
  margin: 0;
  padding: 2% 15%;
}
.lightgreen {
  background-color: 	#DAEAD0;
  margin: 0;
  padding: 1% 20% 2%;
}
.lightgreen_sp {
  background-color: 	#DAEAD0;
  margin: 0;
  padding: 2% 20%;
}
.lightgreen_day {
  background-color: 	#DAEAD0;
  margin: 0;
  padding: 1% 15%;
}
.lightgreen_slide {
  background-color: 	#DAEAD0;
  padding: 0 12%;
  z-index: 0 !important;
}
.palegreen {
  background-color: mintcream;
  margin: 0;
  padding: 2%;
}
.green {
  background-color: green;
  margin: 0;
  padding: 2% 10%;
}
.lightbrown {
  background-color: antiquewhite;
  margin: 0;
  padding: 1% 15% 2%;
}

/* ---- 画像のみ ---- */

.gridx2 {
  display: grid;
  display: -ms-grid;
  grid-template-rows: auto;
  grid-template-columns: 50% 50%;
  -ms-grid-rows: auto;
  -ms-grid-columns: 50% 50%;
}
.gridx2_img {
  background-image: url(image/check.jpg);
  text-align: center;
  color: white;
  margin: 3% 3% 8%;
  padding: 5%;
  content-visibility: auto;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.gridx2 div.lazyloaded {
  opacity: 1;
} 
.gridx2 div.lazyloaded:hover {
  opacity: 0.4;
}

.gridx3 {
  display: grid;
  display: -ms-grid;
  grid-template-rows: auto;
  grid-template-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );
  -ms-grid-rows: auto;
  -ms-grid-columns: calc( 100% / 3 ) calc( 100% / 3 ) calc( 100% / 3 );
}
.gridx3_img {
  background-image: url(image/check.jpg);
  text-align: center;
  color: white;
  margin: 3% 3% 8%;
  padding: 5%;
  content-visibility: auto;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.gridx3 div.lazyloaded {
  opacity: 1;
} 
.gridx3 div.lazyloaded:hover {
  opacity: 0.4;
}

.gridx4 {
  display: grid;
  display: -ms-grid;
  grid-template-rows: auto;
  grid-template-columns: 25% 25% 25% 25%;
  -ms-grid-rows: auto;
  -ms-grid-columns: 25% 25% 25% 25%;
}
.gridx4_img {
  background-image: url(image/check.jpg);
  text-align: center;
  color: white;
  margin: 3% 3% 8%;
  padding: 5%;
  content-visibility: auto;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.gridx4 div.lazyloaded {
  opacity: 1;
} 
.gridx4 div.lazyloaded:hover {
  opacity: 0.4;
}

.box {
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: auto;
  background-image: url(image/check.jpg);
  margin: 0;
  width: 100%;
  content-visibility: auto;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.box.lazyloaded {
  opacity: 1;
} 
.box.lazyloaded:hover {
  opacity: 0.4;
}
.banner_res {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  line-height: auto;
  background: darkblue;
  margin: 10% auto 3%;
  padding: 5%;
  width: 100%;
}

/* ---- 画像とテキスト縦並び ---- */

.items {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  justify-content: center;
}
.item8 {
  width: 100%;
  justify-content: center;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.item8 > div {
  width: 25%;
  padding: 10px;
}
.image_text {
  display: block;
  width: 100%;
  padding: 1% 5%;
}
.image_text:hover {
  opacity: 0.5;
}
.items_re {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  width: 100%;
}
.image_re {
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 2%;
}
.image_re img {
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.image_re.lazyloaded img.lazyloaded{
  opacity: 1;
}
.image_re.lazyloaded img.lazyloaded:hover {
  opacity: 0.4;
}
.text_re {
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 2%;
}
.text-title {
  margin: 0 0 8px;
  color: gray;
  margin: 5% 0;
}
.image {
  padding: 1%;
}
.image img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  content-visibility: auto;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.image.lazyloaded img.lazyloaded {
  opacity: 1;
}
.image.lazyloaded img.lazyloaded:hover {
  opacity: 0.4;
}
.image_none {
  margin: 0 2%;
  padding: 2%;
}
.image_none img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  content-visibility: auto;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.image_none.lazyloaded img.lazyloaded {
  opacity: 1;
}
.image_none.lazyloaded img.lazyloaded:hover {
  opacity: 0.4;
}
.text {
  display: block;
  width: 100%;
  color: gray;
}

/* ---- 画像とテキスト横並び ---- */

.image_text_row-reverse {
  display: -webkit-flex;
  display: flex;
  margin: 0 0 3px;
}
.image_text_row-reverse:nth-child(odd) {
  flex-direction: row-reverse;
}
.image_text_row-reverse2 {
  display: -webkit-flex;
  display: flex;
  margin: 0 0 3px;
}
.image_text_row-reverse2:nth-child(odd) {
  flex-direction: row-reverse;
}
.image_row-reverse {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  padding: 0 5px;
}
.image_row-reverse img {
  width: 100%;
  padding: 0 5px;
  content-visibility: auto;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.image_row-reverse.lazyloaded img.lazyloaded {
  opacity: 1;
}
.image_row-reverse.lazyloaded img.lazyloaded:hover {
  opacity: 0.4;
}
.image_text_row {
  display: -webkit-flex;
  display: flex;
  margin: 0 5px;
}
.image_text_row:nth-child(odd) {
  flex-direction: row;
}
.image_row {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  padding: 0 5px;
}
.image_row img {
  width: 100%;
  padding: 0 5px;
  content-visibility: auto;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.image_row.lazyloaded img.lazyloaded {
  opacity: 1;
}
.image_row.lazyloaded img.lazyloaded:hover {
  opacity: 0.4;
}
.image_text_row_small {
  display: -webkit-flex;
  display: flex;
  margin: 1% 5px;
}
.image_text_row_small:nth-child(odd) {
  flex-direction: row;
}
.image_row_small {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0 5px;
}
.image_row_small img {
  max-width: 100%;
  padding: 0 5px;
  content-visibility: auto;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.image_row_small.lazyloaded img.lazyloaded {
  opacity: 1;
}
.image_row_small.lazyloaded img.lazyloaded:hover {
  opacity: 0.4;
}


/*! Flickity v2.3.0 https://flickity.metafizzy.co------------スライド----------- */

.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 440px !important;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}
.flickity-button:hover {
  background: white;
  cursor: pointer;
}
.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}
.flickity-button:active {
  opacity: 0.6;
}
.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}
.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}
.flickity-prev-next-button.previous {
  left: 10px;
}
.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}
.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: 5px;
  right: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
  line-height: 1;
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}
.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* external css: flickity.css */

.gallery {
  width: 100%;
}
.gallery-cell {
  width: 70%;
  height: 440px;
  counter-increment: gallery-cell;
  z-index: 0 !important;
}
.gallery img {
  height: 440px;
  width: 100%;
}
.gallery video {
  height: 440px;
  width: 100%;
}

/* 商品一覧ページは画像のみ*/

.guide_list {
  background-image: url(image/check.jpg);
  z-index: 1 !important;
}
.guide_list h2 {
  text-align: center;
  color: white;
  position: relative;
  top: 9vw;
  z-index: 1 !important;
}