@charset "utf-8";

/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background: #1D1B18;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

body.bg_white {
  background: #FFF;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-style: normal;
}

.zen {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}

.no-save {
  pointer-events: none;
}

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


@media screen and (max-width: 768px) {

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

LP

---------------------------------------------------------------------------------------------*/

.link_btn {
  color: #FFF;
  background: #1D1B18;
  border-radius: 6px;
  width: 240px;
  height: 46px;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  opacity: 1;
  transition: .3s;
}

.link_btn.yellow {
  color: #DCBF76;
}

.link_btn.popup {
  color: #1D1B18;
  background: #FFF;
}

.link_btn:hover {
  opacity: .6;
}

.link_btn::after {
  position: absolute;
  content: "";
  background: url("../img/arrow_link_btn.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 5px;
  height: 10px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  /* transition: .3s; */
}

.link_btn.popup::after {
  position: absolute;
  content: "";
  background: url("../img/arrow_link_btn_b.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 5px;
  height: 10px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/* .link_btn:hover:after {
  right: 10px;
} */

.mv_cont {
  width: 100%;
  height: 100vh;
  /* background: url("../img/bg_mv.jpg") no-repeat; */
  /* background-size: cover; */
  /* background-position: center; */
  position: relative;
  overflow: hidden;
}

.mv_cont::after {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, rgba(29,27,24,1) 0%, rgba(255,255,255,0) 100%);
  /* background: url("../img/mv_gra.webp") no-repeat; */
  /* background-size: 100%; */
  /* background-position: bottom; */
  width: 100%;
  height: 250px;
  bottom: 0;
  left: 0;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  pointer-events: none;
  display: block;
}

.mv_cont_box  {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #FFF;
  z-index: 1;
}

.head_logo {
  max-width: 155px;
  margin-bottom: 25px;
}

.mv_copy {
  font-size: 5.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.mv_read {
  font-size: 2.8rem;
  font-weight: bold;
}

.mv_image {
  margin-top: 140px;
}

.mv_image img {
  display: block;
}

.mv_image img:first-child {
  max-width: 400px;
  width: 80%;
  margin-right: 40px;
}

.mv_image img:last-child {
  max-width: 288px;
  width: 75%;
}

.main_cont {
  width: 100%;
  padding: 80px 0;
}

.main_cont.bg_read {
  background: url("../img/bg_read.webp") no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  color: #FFF;
  position: relative;
}

.main_cont.bg_read::before {
  position: absolute;
  content: "";
  background: url("../img/bg_top_gra.png");
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 0;
}

.main_cont.bg_read::after {
  position: absolute;
  content: "";
  background: url("../img/bg_bottom_gra.png");
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.read_main_txt {
  text-align: center;
  position: absolute;
  font-size: 1.8rem;
  line-height: 2.2;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}

.message_wrap {
  max-width: 1280px;
  width: 85%;
  margin: auto;
}

.message_box {
  color: #FFF;
  margin-bottom: 120px;
}

.message_image_box01 {
  max-width: 550px;
  margin-right: 80px;
}

.message_image_box02 {
  max-width: 550px;
  margin-left: 40px;
}

.message_image_box01 img,
.message_image_box02 img {
  max-width: 450px;
  width: 100%;
  display: block;
}

.message_image_box01 img:last-child {
  margin-left: 90px;
  margin-top: 30px;
}

.message_image_box02 img:first-child {
  margin-left: 90px;
  margin-bottom: 30px;
}

.message_txt_box {
  position: relative;
}

.message_copy {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.message_copy span {
  font-size: 11rem;
  font-weight: 500;
  opacity: .2;
  color: #E0AD37;
}

.message_main {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  padding-top: 90px;
  margin-left: 20px;
}

.message_read {
  font-size: 1.4rem;
  line-height: 1.8; 
  margin-bottom: 30px;
  margin-left: 20px;
}

.message_btn {
  background: #FFF;
  color: #1D1B18;
  font-size: 2.4rem;
  font-weight: 500;
  width: 135px;
  height: 40px;
  border-radius: 20px;
  margin-left: 20px;
  opacity: 1;
  transition: .3s;
}

.message_btn:hover {
  opacity: .6;
}

.message_btn p {
  position: relative;
  padding-left: 28px;
}

.message_btn p::before {
  position: absolute;
  content: "";
  background: url("../img/ico_message_btn.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.message_bottom_box {
  max-width: 830px;
  margin: auto;
}

.message_bottom_left,
.message_bottom_right {
  color: #FFF;
  max-width: 380px;
}

.message_bottom_left p {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.message_bottom_left img {
  max-width: 365px;
  margin: auto;
}

.message_bottom_left span {
  display: block;
  text-align: center;
  font-size: 4.6rem;
  font-weight: 500;
  margin-top: 25px;
}

.message_bottom_right {
  margin-left: 70px;
}

.message_bottom_right p {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  margin-top: 30px;
}

.message_bottom_right p span {
  font-size: 2rem;
  display: inline-block;
  margin-right: 30px;
}

.message_bottom_right p small {
  display: inline-block;
  font-size: 48%;
  margin-left: 10px;
}

.message_list {
  font-size: 1.1rem;
  color: #FFF;
  line-height: 1.5;
  margin-top: 30px;
}

.message_list li {
  padding-left: 1em;
  text-indent: -1em;
}

.main_cont.bg_shop {
  background: url("../img/bg_shop.webp") no-repeat;
  background-size: cover;
  background-position: center;
  color: #1D1B18;  
}

.shop_wrap {
  max-width: 1130px;
  width: 85%;
  margin: auto;
}

.cont_tit span {
  font-size: 4rem;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.cont_sub_tit {
  font-size: 1.4rem;
  text-align: center;
}

.shop_image_box {
  width: 100%;
  margin: 40px auto;
}

.shop_image_box img {
  max-width: 260px;
  width: 100%;
}

.shop_info_box {
  font-size: 1.4rem;
  text-align: center;
}

.shop_info_box p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.shop_info_box p a {
  opacity: 1;
  transition: .3s;
}

.shop_info_box p a:hover {
  opacity: .6;
}

.underline-animate {
  position: relative;
  display: inline-block;
  text-decoration: none;
  --underline-width: 0%;
}

.underline-animate::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: var(--underline-width);
  background-color: currentColor;
  transform-origin: left;
}

.shop_info_box span {
  font-size: 3.2rem;
  font-weight: bold;
}

.main_cont.bg_product {
  background: url("../img/bg_product.webp") no-repeat;
  background-size: cover;
  background-position: center;
  color: #1D1B18;
}

.product_wrap {
  max-width: 880px;
  width: 85%;
  margin: auto;
}

.product_info_box {
  margin-top: 60px;
}

.product_info_left {
  max-width: 410px;
  width: 100%;
}

.product_info_right {
  max-width: 410px;
  width: 90%;
}

.product_box {
  max-width: 182px;
  width: 100%;
}

.product_sub {
  font-size: 1.6rem;
  font-weight: 500;
}

.product_main {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.product_info {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.product_txt_sub {
  font-size: 1.2rem;
}

.redfox {
  max-width: 228px;
  width: 90%;
  display: block;
  margin: auto;
  margin-bottom: 35px;
}

.product_btn_wrap {
  width: 100%;
  margin-top: 30px;
}

.faq_wrap {
  max-width: 780px;
  width: 85%;
  margin: auto;
}

.cont_tit {
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #1D1B18;
}

.cont_tit.medium {
  font-weight: 500;
}

.cont_tit.white {
  color: #FFF;
}

.accordion-item {
  margin-bottom: 20px;
}

.accordion-header {
  width: 100%;
  background: #FFF;
  border-radius: 10px;
  padding: 18px;
  color: #1D1B18;
  transition: .3s;
  transition-delay: 0.8s;
}

.accordion-header.active {
  border-radius: 10px 10px 0 0;
  transition: .3s;
}

.accordion-header img {
  transition: .3s;
}

.accordion-header.active img {
  transform: rotate(180deg);
}

.faq_initial {
  font-size: 2rem;
}

.faq_head {
  font-size: 1.6rem;
  margin-left: 12px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  background: #EBEBEB;
  border-radius: 0 0 10px 10px;
  transition: max-height 0.4s ease-out, padding 0.3s ease-out;
}

.answer_box {
  margin-top: 3px;
}

.answer_box a {
  font-size: 1.4rem;
  text-decoration: underline;
  margin-left: 12px;
}

.answer_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 20px;
  margin-left: 12px;
}

.top_movie_cont {
  max-width: 1130px;
  width: 85%;
  margin: auto;
  padding: 80px 0;
}

.top_movie_box {
  width: calc(100% / 3 - 25px);
}

.top_movie_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.top_movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.top_movie_tit {
  color: #FFF;
  font-size: 4.2rem;
  text-align: center;
  opacity: 1;
  margin-bottom: 30px;
}

.top_movie_head {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #E0AD37;
  opacity: .2;
  text-align: center;
}

.top_movie_area .slick-prev {
  top: 60%;
  left: -5%;
}

.top_movie_area .slick-next {
  top: 60%;
  right: -5%;
}

.top_movie_area .slick-dots li.slick-active button:before {
  opacity: 1;
  background: #E0AD37;
}

.top_coming {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.play-button {
  width: 65px;
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.play-button img {
  width: 100%;
}

.iframe-container {
  pointer-events: none;
}

.slick-current .iframe-container {
  pointer-events: auto;
}

.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  cursor: pointer;
  background: rgba(0,0,0,0); /* 完全透過 */
}

@media screen and (min-width: 769px) and (max-width: 1024px) {

  .product_info_box {
    display: block !important;
  }

  .product_info_left {
    display: block;
    margin: auto;
    margin-bottom: 30px;
  }

  .product_info_right {
    margin: auto;
  }

  .message_box {
    display: block !important;
  }

  .message_txt_box {
    margin-bottom: 40px;
  }

  .shop_image_box {
    max-width: 450px;
  }
  
  .shop_image_box img {
    max-width: 450px;
    width: 100%;
  }

}

@media screen and (max-width: 768px) {

  .message_btn {
    margin-left: 0;
  }

  .shop_info_box p a:hover {
    opacity: 1;
  }

  .head_logo {
    max-width: 120px;
    margin: 30px auto;
  }

  .mv_copy {
    font-size: 3rem;
    text-align: center;
  }

  .mv_read {
    font-size: 1.8rem;
    text-align: center;
  }

  .mv_image {
    width: 90%;
    margin: auto;
    margin-top: 70px;
    flex-flow: column;
    align-items: center !important;
    justify-content: center !important;
  }

  .mv_image img:first-child {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .main_cont {
    padding: 40px 0 60px 0;
  }

  .main_cont.bg_read {
    background: url("../img/bg_read_sp.webp") no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 490px;
  }
  
  .read_main_txt {
    width: 80%;
    text-align: center;
    position: absolute;
    font-size: 1.6rem;
    line-height: 2.5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

  .cont_tit.medium {
    font-size: 4rem;
  }

  .main_cont.bg_shop {
    background: url("../img/bg_shop_sp.webp") no-repeat;
    background-size: cover;
    background-position: center;
  }

  .product_info_right {
    margin: auto;
    margin-top: 30px;
  }

  .product_box {
    margin-bottom: 25px;
  }

  .answer_box {
    width: 90%;
  }

  .cont_sub_tit {
    line-height: 1.5;
  }

  .shop_slider li img {
    max-width: 100%;
    width: 100%;
  }

  .message_box {
    position: relative;
    margin-bottom: 75px;
  }

  .message_box.sp_flex_column_reverse {
    display: flex;
    flex-flow: column-reverse;
  }

  .message_box.sp_flex_column {
    display: flex;
    flex-flow: column;
  }

  .message_image_box01 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .message_image_box02 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .message_txt_box,.message_image_box02 {
    width: 100%;
    margin-bottom: 30px;
  }

  .message_image_box01 img:first-child,
  .message_image_box02 img:first-child {
    margin: auto;
    margin-left: -9%;
    margin-bottom: 30px;
  }

  .message_image_box01 img:last-child,
  .message_image_box02 img:last-child {
    margin: auto;
  }

  .message_copy {
    left: -5%;
  }

  .message_copy span {
    font-size: 7.6rem;
  }

  .message_main {
    font-size: 3rem;
    padding-top: 60px;
    margin-left: 0;
  }

  .message_read {
    margin-left: 0;
  }

  .message_bottom_left, .message_bottom_right {
    max-width: 100%;
    width: 100%;
  }

  .message_bottom_left p {
    font-size: 1.8rem;
  }

  .message_bottom_left img {
    max-width: 230px;
    width: 80%;
    margin: auto;
    display: block;
  }

  .message_bottom_left span {
    font-size: 4rem;
  }

  .message_bottom_right {
    margin-top: 30px;
    margin-left: 0;
  }

  .product_info_left {
    max-width: 100%;
  }

  .redfox {
    margin-bottom: 20px;
  }

  .product_main {
    margin-bottom: 8px;
  }

  .product_info {
    margin-bottom: 10px;
  }

  #shop .cont_tit {
    margin-bottom: 15px;
  }

  .shop_image_box {
    margin: 40px auto 60px auto;
  }

  .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 7px;
  }

  .slick-dots li button:before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 6px;
    opacity: 1;
    background: #FFF;
  }

  .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #1D1B18;
  }

  .play-button {
    width: 50px;
  }

}

/*---------------------------------------------------------------------------------------------

ポップアップ

---------------------------------------------------------------------------------------------*/

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.popup-overlay.active {
  z-index: 99;
  display: flex;
  opacity: 1;
}

.popup-content {
  position: absolute;
  background: #1D1B18;
  padding: 50px;
  max-width: 960px;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 1;
  transition: .3s;
}

.close-btn:hover {
  opacity: .6;
}

.pop_mov {
  max-width: 520px;
  width: 100%;
  margin-right: 35px;
}

.pop_info {
  position: relative;
  color: #FFF;
}

.pop_info .message_copy span {
  font-size: 7.4rem;
}

.pop_info .message_main {
  font-size: 2rem;
  line-height: 1.6;
  padding-top: 65px;
}

@media screen and (max-width: 768px) {

  .popup-content {
    padding: 30px 20px;
  }
  .pop_mov {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .pop_mov iframe {
    height: 150px !important;
  }
  .pop_info {
    width: 100%;
  }
  .pop_info .message_copy {
    left: 0;
  }

  .pop_info .message_read {
    margin-bottom: 0;
  }

}

/*---------------------------------------------------------------------------------------------

ショップ

---------------------------------------------------------------------------------------------*/

.main_cont.bg_white {
  background: #FFF;
}

.main_cont.bg_award {
  background: #E6E4E1;
}

.main_cont.bg_service {
  background: url("../img/bg_service.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

.main_cont.bg_about {
  background: url("../img/bg_about.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

.dealer_wrap {
  max-width: 760px;
  width: 85%;
  margin: auto;
}

.shop_tit {
  font-size: 6rem;
  font-weight: 500;
  color: #DCBF76;
  text-align: center;
  margin-bottom: 60px;
}

.shop_tit.white {
  color: #FFF;
}

.shop_tit.black {
  color: #1D1B18;
}

.service_box {
  color: #FFF;
  margin-bottom: 40px;
}

.service_image {
  max-width: 330px;
  width: 100%;
}

.service_txt {
  max-width: 390px;
  width: 100%;
}

.service_txt h3 {
  font-size: 2rem;
  padding-left: 25px;
  position: relative;
  margin-bottom: 20px;
}

.service_txt h3::before {
  position: absolute;
  content: "ー";
  width: 15px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.service_txt p {
  font-size: 1.4rem;
  line-height: 1.8;
}

.service_bar {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  color: #1D1B18;
  background: #FFF;
  margin-bottom: 20px;
}

.service_bar p { 
  font-size: 2rem;
  font-weight: bold;
}

.service_bar p span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-right: 5px;
}

.award_list {
  font-size: 1.4rem;
  font-weight: 500;
  max-width: 520px;
  width: 100%;
  margin: auto;
  margin-bottom: 60px;
}

.award_list li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 15px;
}

.award_list li:last-child {
  margin-bottom: 0;
}

.award_image {
  max-width: 500px;
  width: 100%;
  margin: auto;
}

.link_btn_back {
  color: #FFF;
  background: #1D1B18;
  border-radius: 6px;
  width: 240px;
  height: 46px;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  opacity: 1;
  transition: .3s;
}

.link_btn_back:hover {
  opacity: .6;
}

.link_btn_back::after {
  position: absolute;
  content: "";
  background: url(../img/arrow_back_btn.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 5px;
  height: 10px;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  /* transition: .3s; */
}

/* .link_btn_back:hover:after {
  left: 10px;
} */

.owner_photo {
  max-width: 230px;
  width: 48%;
  margin-right: 50px;
}

.owner_info p {
  font-size: 1.8rem;
}

.owner_info span {
  font-size: 1rem;
  display: block;
  text-align: center;
  letter-spacing: .02em;
  margin-top: 5px;
}

.owner_info a {
  display: block;
  margin: auto;
  margin-top: 20px;
  text-align: center;
}

.owner_info a img {
  transform: scale(1);
  transition: .3s;
}

.owner_info a:hover img {
  transform: scale(1.2);
}

.owner_txt {
  margin: 40px auto;
}

.owner_txt h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.owner_txt p {
  font-size: 1.4rem;
  line-height: 1.8;
}

.shop_logo_box {
  max-width: 305px;
  width: 90%;
  margin: auto;
  margin-bottom: 60px;
}

.shop_logo_box span {
  font-size: 1.4rem;
  display: block;
  margin-top: 30px;
  text-align: center;
}

.gallery {
  display: flex;
  align-items: center;
  gap: 7px;
}
.main-image {
  width: 504px;
  height: 333px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.main-image img.fade-in {
  opacity: 1;
}
/* .thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 118px);
  grid-template-rows: repeat(2, 78px);
  gap: 7px;
} */
.thumbnails {
  display: flex;
  height: 333px;
  flex-flow: column;
  flex-wrap: wrap;
}
.thumbnail {
  width: 118px;
  height: 78px;
  margin-right: 7px;
  margin-bottom: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  transition: .3s;
}
.thumbnails .thumbnail:nth-of-type(4),
.thumbnails .thumbnail:nth-of-type(8) {
  margin-bottom: 0;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbnail.active {
  opacity: .6;
}

.gallery_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 40px;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {

  .service_image {
    max-width: 230px;
  }
  
}

@media screen and (max-width: 768px) {

  .service_image {
    max-width: 100%;
  }

  .service_txt {
    max-width: 100%;
    margin-top: 20px;
  }

  .service_bar {
    height: auto;
    padding: 15px 20px;
  }

  .service_bar p {
    text-align: center;
  }

  .service_bar p span {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .owner_txt h3 {
    text-align: left;
  }

  .gallery {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .main-image {
    width: 100%;
    height: 210px;
  }

  .thumbnails {
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 24%);
    grid-template-rows: repeat(2, 50px);
    gap: 5px;
  }
  .thumbnail {
    width: 100%;
    height: 50px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .shop_logo_box {
    text-align: center;
    margin-bottom: 40px;
  }
  .shop_logo_box img {
    max-width: 190px;
  }
  .owner_photo {
    width: 56%;
    margin-right: 35px;
  }

}


/*---------------------------------------------------------------------------------------------

製品ページ

---------------------------------------------------------------------------------------------*/

.main_cont.bg_product_info01,
.main_cont.bg_product_info02 {
  width: 100%;
  position: relative;
}

.main_cont.bg_product_info01::before {
  position: absolute;
  content: "";
  background: url(../img/bg_product_gra01.webp);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 305px;
  top: 0;
  left: 0;
  z-index: 0;
}

.main_cont.bg_product_info02::before {
  position: absolute;
  content: "";
  background: url(../img/bg_product_gra02.webp);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 305px;
  top: 0;
  left: 0;
  z-index: 0;
}

.product_mv_cont {
  width: 100%;
  height: 100vh;
  background: #000;
  position: relative;
}

.product_mv_cont::before {
  position: absolute;
  content: "";
  background: url("../img/bg_product_mv.webp") no-repeat;
  background-size: 50%;
  background-position: top left;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.product_logo {
  max-width: 150px;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
}

.product_logo a {
  display: block;
}

.product_image {
  position: absolute;
  max-width: 374px;
  bottom: 20%;
  left: 10%;
}

.product_mv_wrap {
  width: 100%;
  padding: 45px 0px;
  position: relative;
  z-index: 1;
}

.product_mv_main {
  width: 50%;
  margin-right: 90px;
  color: #FFF;
}

.product_main_logo {
  max-width: 432px;
  width: 100%;
  margin: auto;
}

.product_mv_tit {
  text-align: center;
  font-size: 4.8rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.product_mv_sub {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}

.product_mv_arrow {
  max-width: 220px;
  margin: 15px auto;
}

.product_mv_copy {
  width: 90%;
  background: #FFF;
  border-radius: 8px;
  padding: 8px;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
  margin-bottom: 10px;
}

.product_mv_copy span {
  color: #C6000C;
}

.product_mv_point {
  font-size: 2rem;
  font-weight: bold;
  align-items: flex-end;
  line-height: 1;
}

.product_mv_point p {
  padding-bottom: .2em;
}

.reason_txt p {
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: .1em;
}

.reason_txt p span {
  font-size: 4.8rem;
  font-weight: bold;
}

/* .product_mv_point p:first-child {
  padding-bottom: .2em;
}

.product_mv_point span {
  font-size: 4.8rem;
  font-weight: bold;
}

.product_mv_point p:last-child {
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: .1em;
} */

.point_list {
  max-width: 400px;
  width: 100%;
  margin: auto;
  margin-top: 25px;
}

.point_list li {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.point_list li:last-child {
  font-size: 1.6rem;
}

.point_list li span {
  background: #444444;
  width: 42px;
  height: 42px;
  border-radius: 21px;
  font-size: 2.6rem;
  font-weight: 500;
  margin-right: 10px;
}

.product_nav {
  position: fixed;
  width: 100%;
  color: #FFF;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.nav_txt {
  font-size: 3rem;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}

.nav_txt span {
  font-size: 2.4rem;
  display: inline-block;
  margin-right: 10px;
}

.nav_left .nav_txt::before {
  position: absolute;
  content: "";
  background: url("../img/image_product_nav01.webp") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 32px;
  height: 52px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.nav_left .nav_txt::after {
  position: absolute;
  content: "";
  background: url("../img/arrow_product_nav.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 18px;
  height: 9px;
  top: 60%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

.nav_left:hover .nav_txt::after {
  top: 75%;
}

.nav_right .nav_txt::before {
  position: absolute;
  content: "";
  background: url("../img/image_product_nav02.webp") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 32px;
  height: 52px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.nav_right .nav_txt::after {
  position: absolute;
  content: "";
  background: url("../img/arrow_product_nav.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 18px;
  height: 9px;
  top: 60%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

.nav_right:hover .nav_txt::after {
  top: 75%;
}

.nav_wrap {
  width: 50%;
}

.nav_left {
  width: 100%;
  background: linear-gradient(180deg, rgba(142,0,9,1) 0%, rgba(198,0,12,1) 100%);
  padding: 7px;
  opacity: 1;
  transition: .3s;
}

.nav_right {
  width: 100%;
  background: linear-gradient(180deg, rgba(13,31,52,1) 0%, rgba(18,52,85,1) 100%);
  padding: 7px;
  opacity: 1;
  transition: .3s;
}

.main_cont.bg_movie {
  background: url("../img/bg_movie.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

.product_cont_wrap {
  max-width: 1100px;
  width: 85%;
  margin: auto;
}

.intro_box_left {
  max-width: 235px;
  width: 90%;
}

.intro_box_right {
  max-width: 405px;
  width: 100%;
  margin-left: 40px;
}

.intro_name {
  margin-bottom: 20px;
}

.intro_name span {
  color: #003459;
  font-size: 1.6rem;
  font-weight: 500;
}

.intro_name p {
  color: #003459;
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 10px;
}

.intro_message {
  margin-bottom: 20px;
}

.intro_message p:first-child {
  color: #003459;
  font-size: 1.6rem;
  font-weight: bold;
}

.intro_message p:last-child {
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.intro_profile p:first-child {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}

.intro_profile p:last-child {
  font-size: 1.2rem;
  line-height: 1.5;
}

.intro_link_box {
  margin-top: 80px;
}

.intro_link_wrap {
  max-width: 480px;
  width: 100%;
  position: relative;
  opacity: 1;
  transition: .3s;
}

.intro_link_wrap:hover {
  opacity: .6;
}

.detail_link_btn {
  max-width: 340px;
  width: 80%;
  height: 64px;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.detail_link_btn span {
  font-size: 2rem;
  font-weight: bold;
  color: #FFF;
  padding-right: 16px;
  position: relative;
}

.detail_link_btn span::after {
  position: absolute;
  content: "";
  background: url("../img/arrow_product_btn.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 8px;
  height: 16px;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

.intro_link_wrap:hover .detail_link_btn span::after {
  right: -3%;
}

.product_movie_tit {
  text-align: center;
  font-size: 4rem;
  font-weight: 500;
  color: #003459;
  margin-bottom: 40px;
}

.product_movie .product_movie_box:nth-of-type(2) {
  margin-left: 30px;
  margin-right: 30px;
}

.product_movie_box {
  position: relative;
  max-width: 285px;
  min-height: 275px;
  width: 100%;
  background: #FFF;
  padding: 0;
}

.product_movie_caption {
  padding: 20px;
  width: 100%;
}

.movie_top_label {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 10px;
}

.movie_bottom_label {
  font-size: 1.2rem;
  font-weight: 500;
}

.movie_wrap {
  width: 100%;
  margin: 0 auto;
  /* transform: scale(1); */
  /* transition: .3s; */
}

/* .movie_wrap:hover {
  transform: scale(1.05);
} */

.movie_tit {
  font-size: 1.2rem;
  text-align: center;
}

.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 30px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-prev {
  left: -12%;
}

.slick-next {
  right: -12%;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.product_info_tit {
  width: 45%;
  font-size: 6rem;
  color: #FFF;
  position: relative;
}

.product_info_tit span {
  font-size: 4.2rem;
  display: block;
  margin-bottom: 10px;
}

.product_detail_box {
  margin-top: 90px;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.product_info_image {
  max-width: 460px;
  width: 100%;
  margin-top: -180px;
}

.product_info_image div {
  max-width: 213px;
  width: 100%;
}

.product_info_image p {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 10px;
}

.product_info_txt {
  max-width: 540px;
  width: 45%;
}

.product_info_data {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.info_point_box {
  width: 100%;
  margin-top: 30px;
  padding: 20px;
  border: 2px solid #C6000C;
  border-radius: 14px;
}

.info_point_box.blue {
  border: 2px solid #003459;
}

.info_point_box p {
  background: #C6000C;
  text-align: center;
  width: 100%;
  height: 34px;
  border-radius: 17px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFF;
  margin-bottom: 15px;
}

.info_point_box.blue p {
  background: #003459;
}

.info_point_list {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}

.info_point_coution {
  font-size: 1.2rem;
  line-height: 1.5;
}

.info_point_list li,
.info_point_coution li {
  padding-left: 1em;
  text-indent: -1em;
}

.product_detail_main_head {
  font-size: 2.8rem;
  font-weight: bold;
  color: #C6000C;
  margin-bottom: 20px;
}

.product_detail_main_head.type02 {
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
  color: #003459;
}

.product_detail_main_txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.product_detail_main_txt.type02 {
  text-align: center;
}

.detail_evidence_box {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 80px;
}

.detail_matrix {
  width: 100%;
  margin: 20px auto 10px auto;
}

.detail_matrix p {
  height: 30px;
  font-size: 1.6rem;
  font-weight: 500;
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #C6000C;
  border-radius: 15px;
  margin-right: 5px;
}

.detail_matrix span {
  width: 1.6rem;
  font-weight: bold;
  color: #C6000C;
}

.detail_evidence_left {
  max-width: 730px;
  width: 100%;
}

.detail_evidence_right {
  max-width: 330px;
  width: 100%;
}

.evidence_bar {
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background: linear-gradient(90deg, rgba(227,227,227,1) 0%, rgba(227,227,227,1) 50%, rgba(255,255,255,1) 100%);
  margin-bottom: 30px;
}

.evidence_graph_box,
.evidence_graph_box02 {
  width: 100%;
  margin-top: 20px;
}

.evidence_graph_box img:first-child {
  margin-right: 40px;
}

.evidence_copy {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #C6000C;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-top: 2px solid #C6000C;
  border-bottom: 2px solid #C6000C;
}

.evidence_coution {
  font-size: 1.2rem;
}

.evidence_coution li {
  line-height: 1.8;
  padding-left: 7em;
  text-indent: -7em;
}

.pb0 {
  padding-bottom: 0;
}

@media screen and (min-width: 1281px) {

  .main_cont.bg_product_info01::before,
  .main_cont.bg_product_info02::before {
    max-height: 280px;
  }

}

@media screen and (max-width: 1280px) {

  .detail_evidence_box {
    display: block !important;
  }

  .detail_evidence_left {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .detail_evidence_right {
    max-width: 100%;
  }

  .product_info_tit {
    font-size: 5rem;
  }

}

@media screen and (min-width: 769px) and (max-width: 1024px) {

  .product_mv_main {
    margin-right: 40px;
  }

  .product_mv_point {
    flex-wrap: wrap;
    text-align: center;
  }

  /* .product_mv_point {
    font-size: 1.8rem;
  } */

  /* .product_mv_point p:first-child {
    padding-bottom: 0;
  }

  .product_mv_point p:last-child {
    font-size: 2rem;
    padding-bottom: 0;
  }

  .product_mv_point span {
    font-size: 2rem;
  } */

  .product_image {
    width: 30%;
  }

  .product_info_image {
    margin: auto;
    margin-top: 0;
  }

  .product_info_txt {
    max-width: 100%;
    width: 100%;
  }

  .main_cont.bg_product_info01::before,
  .main_cont.bg_product_info02::before {
    background-size: cover;
  }

  .product_detail_box {
    display: block !important;
  }

  .product_movie {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .product_movie_box {
    max-width: 100%;
    width: 45%;
    margin-bottom: 20px;
  }

  .nav_txt {
    font-size: 2rem;
  }

  .movie_wrap iframe {
    height: 200px;
  }

  .product_movie .product_movie_box:nth-of-type(2) {
    margin-left: 0;
    margin-right: 0;
  }
  
}

@media screen and (max-width: 768px) {

  .mb0 {
    margin-bottom: 0 !important;
  }

  .product_mv_cont::before {
    background: url(../img/bg_product_mv_sp.webp) no-repeat;
    background-size: 100%;
    background-position: top center;
  }

  .main_cont.bg_product_info01::before,
  .main_cont.bg_product_info02::before {
    height: 220px;
  }

  .product_detail_box {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .product_info_tit {
    width: 100%;
    font-size: 4rem;
  }

  .product_info_tit span {
    font-size: 2.8rem;
  }

  .product_info_image {
    margin-top: 0;
  }

  .product_info_txt {
    width: 100%;
    margin-top: 20px;
  }

  .product_detail_main_txt.type02 {
    text-align: left;
  }

  .product_mv_cont {
    height: 100%;
    overflow: hidden;
  }

  .product_logo {
    max-width: 85px;
    top: 10px;
    left: 10px;
  }

  .product_image {
    position: relative;
    max-width: 282px;
    width: 95%;
    margin: auto;
    left: 0;
  }

  .product_mv_wrap {
    width: 85%;
    margin: auto;
  }

  .product_mv_main {
    width: 100%;
    margin-right: 0;
    padding-top: 75px;
  }

  .product_main_logo {
    width: 90%;
  }

  .product_mv_tit {
    width: calc(100% + 1em);
    text-align: left;
    font-size: 4.8rem;
    margin-bottom: 20px;
    letter-spacing: .05em;
  }

  .product_mv_sub {
    font-size: 1.5rem;
  }

  .product_mv_copy {
    width: 100%;
    font-size: 1.7rem;
  }

  .product_mv_point {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 20px;
  }

  .product_mv_point span,
  .product_mv_point p:last-child {
    display: inline-block;
  }

  .point_list li {
    font-size: 1.6rem;
  }

  .point_list li:last-child {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .point_list li span {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 2.4rem;
  }

  .nav_txt {
    font-size: 1.6rem;
    padding-left: 15px;
    padding-right: 0;
    padding-bottom: 10px;
  }

  .nav_right .nav_txt {
    padding-left: 25px;
  }

  .nav_txt span {
    font-size: 1.2rem;
    display: block;
    margin-right: 0;
    margin-bottom: 1px;
  }

  .nav_left .nav_txt::before {
    width: 38px;
    height: 58px;
    left: -20%;
  }

  .nav_right .nav_txt::before {
    width: 38px;
    height: 58px;
    left: -10%;
  }

  .nav_left .nav_txt::after,
  .nav_right .nav_txt::after {
    width: 10px;
    height: 5px;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .product_cont_wrap.no_margin {
    width: 100%;
  }

  .main_cont.bg_movie {
    background: url("../img/bg_movie_sp.webp") no-repeat;
    background-size: cover;
    background-position: center;
  }

  .product_movie {
    width: 90%;
    margin: auto;
  }

  .product_movie .product_movie_box:nth-of-type(2) {
    margin-left: 0px;
    margin-right: 0px;
  }

  .product_movie_box {
    max-width: 100%;
    margin-top: 35px;
  }

  .product_intro_box {
    width: 85%;
    margin: auto;
  }

  .intro_box_left {
    margin: auto;
    margin-bottom: 30px;
  }

  .intro_box_right {
    margin-left: 0;
  }

  .intro_name {
    text-align: center;
  }

  .intro_link_box {
    margin-top: 60px;
  }

  .pb0 {
    padding-bottom: 0 !important;
  }

  .product_detail_main_head {
    text-align: center;
    line-height: 1.6;
  }

  .detail_matrix {
    justify-content: center !important;
  }

  .evidence_bar {
    height: 66px;
    line-height: 1.3;
  }

  .detail_evidence_right {
    margin-top: 40px;
  }

  .evidence_graph_box01 img,
  .evidence_graph_box02 img {
    width: 100%;
  }

  .evidence_graph_box02 img {
    margin-bottom: 20px;
  }

  .evidence_graph_box02 img:nth-of-type(2),
  .evidence_graph_box02 img:last-of-type {
    width: 82%;
  }

  .product_mv_arrow {
    margin: 30px auto;
  }

  .evidence_graph_box img:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }

}


/*---------------------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------------------------*/

.foot_cont {
  width: 100%;
  padding: 60px 0 110px 0;
  color: #FFF;
}

.foot_cont.bg_blue {
  background: #003459;
}

.foot_nav {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}

.foot_logo {
  margin-right: 80px;
}

.foot_logo img {
  max-width: 105px;
}

.foot_logo p {
  font-size: 2.4rem;
  margin-bottom: 5px;
}

.foot_logo span {
  font-size: 1.2rem;
  font-weight: bold;
}

.foot_link {
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 48px;
  position: relative;
  text-decoration: none;
  padding-bottom: 4px;
}

.foot_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #FFF; /* アンダーラインの色 */
  transition: width 0.3s ease-in-out;
}

.foot_link:hover::after {
  width: 100%;
}

.foot_copy {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {

  .foot_cont {
    padding: 60px 0 50px 0;
  }

  .foot_logo {
    margin: auto;
    margin-bottom: 40px;
    text-align: center;

  }

  .foot_logo img {
    max-width: 140px;
  }

  .foot_link {
    display: block;
    text-align: center;
    font-size: 2.4rem;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .foot_copy {
    font-size: 1.2rem;
  }

  .pt0 {
    padding-top: 0 !important;
  }

}

.video-overlay{
	display: none;
}
.popup-overlay{
	display: flex;
	visibility: hidden;
	transition-property: opacity, visibility;
}
.popup-overlay.isShow{
	opacity: 1;
	visibility: visible;
}
@media screen and (max-width: 768px) {
	.video-overlay{
		display: block;
	}
	.video-overlay.isPlay{
		display: none;
	}
}