@charset "UTF-8";
/* CSS Document */
.contents_all {
  margin: 0 auto;
  max-width: 980px;
}

@media (max-width: 980px) {
  .contents_all {
    margin: 0 20px;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .contents_all {
    margin: 0 15px;
    overflow: hidden;
  }
  .flex div:nth-of-type(2n) {
    padding-top: 0;
    margin-left: initial;
    margin: 0 auto;
  }
}
/********************************************
*******************************************/
/*******************************************
ローディング
********************************************/
#splash {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  top: 0;
}

@media (max-width: 350px) {
  #splash {
    display: none;
  }
}
#splash_logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash .text {
  margin-bottom: 20px;
  margin-left: -12px;
  color: #e96c0e;
  font-weight: 600;
}

#splash_logo img {
  width: 50px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transfrom: translateY(0);
  }
}
/********************************************
*******************************************/
.section1 {
  padding-bottom: calc(10vw + 10px);
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.section1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #fff1ed; /* 三角を白にする */
  border-left: 100vw solid transparent;
}

.section2 {
  padding-bottom: calc(10vw + 10px);
  position: relative;
  overflow: hidden;
  background-color: #fff1ed;
}

.section2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #fff; /* 三角を白にする */
  border-left: 100vw solid transparent;
}

@media (max-width: 400px) {
  .background_tri {
    background: #fff;
  }
  .background_tri:before {
    border: none;
  }
}
/********************************************
*******************************************/
.image_main {
  position: relative;
  background-size: cover;
  background-image: url("../images/campaign_images/mftokyo2021/mftokyo2021.jpg");
  background-position: center 40%;
  height: 350px;
  width: 100%;
}
@media (max-width: 767px) {
  .image_main {
    height: initial;
  }
}
@media (min-width: 2000px) {
  .image_main {
    max-width: 1500px;
    margin: 0 auto;
  }
}
.image_main.image_main.mftokyo2025 {
  background-image: url("../images/campaign_images/mf_tokyo2025_main_img.webp");
}

.image_main_grd {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.image_main_grd.mftokyo2025 {
  background: linear-gradient(rgba(1, 57, 125, 0.2), rgba(1, 57, 125, 0.5));
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.image_back_position {
  position: relative;
  margin: 0 auto;
  padding: 50px 0;
  max-width: 980px;
  height: 100%;
}
@media (max-width: 767px) {
  .image_back_position {
    padding: 0;
  }
}
.image_back_position .image_main_comment {
  position: relative;
  z-index: 11;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}
.image_back_position .image_main_comment.font_fam_m {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media (max-width: 767px) {
  .image_back_position .image_main_comment.font_fam_m {
    padding: 116px 20px 30px 20px;
  }
}
.image_back_position .image_main_comment p {
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

.mftokyo2025__title--lg {
  font-size: 2.5rem;
}
.mftokyo2025__title--md {
  font-size: 2rem;
}
.mftokyo2025__title--sm {
  font-size: 1.5rem;
}

.font--white {
  color: #fff;
}

.font--black {
  color: #000;
}

.font--orange {
  color: #e96c0e;
}

.font--navy {
  color: #000750;
}

.font--red {
  color: #6e1800;
}

.image_main_grd_right {
  display: none;
}
@media (min-width: 2000px) {
  .image_main_grd_right {
    background: linear-gradient(to left, rgb(255, 255, 255), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 350px;
    z-index: 12;
    display: block;
  }
}

.image_main_grd_left {
  display: none;
}
@media (min-width: 2000px) {
  .image_main_grd_left {
    background: linear-gradient(to right, rgb(255, 255, 255), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 350px;
    z-index: 13;
    display: block;
  }
}

.image_main_logo {
  top: 30%;
  left: 100px;
  position: absolute;
  width: 300px;
  height: auto;
  z-index: 12;
}
@media (max-width: 767px) {
  .image_main_logo {
    top: 10%;
    left: 10px;
    position: absolute;
    width: 300px;
    height: auto;
    z-index: 12;
  }
}

h1.point_title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #292929;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  h1.point_title {
    margin-top: 30px;
  }
}

h2.point_title {
  font-size: 22px;
  font-weight: 900;
  color: #292929;
  border-bottom: 2px solid #737373;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.point_border {
  border-bottom: 3px solid #e96c0e;
  width: 220px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

p.point_contents {
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  font-weight: 600;
  color: #353535;
  text-align: center;
}
@media (max-width: 767px) {
  p.point_contents {
    text-align: left;
  }
}
p.point_contents.date-text {
  font-size: 22px;
  font-weight: 900;
}
@media (max-width: 767px) {
  p.point_contents.date-text {
    font-size: 18px;
  }
}

.width500 {
  max-width: 500px;
}

.width650 {
  max-width: 650px;
}

/********************************************
押すとちょっと下にいくボタン（横幅jQuery制御）
*******************************************/
.campaign_btn {
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

/*-- amadaボタン --*/
.campaign_btn.amada {
  margin: 0;
  border: 3px solid #e34e24;
  border-radius: 10px;
  background: #fff;
  color: #e34e24;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  transition: 0.3s ease-in;
}

.campaign_btn.amada:hover {
  background: #e34e24;
  color: #fff;
  cursor: pointer;
  transform: translateY(3px);
}

.campaign_btn.amada a {
  color: #e34e24;
  transition: 0.2s ease-in;
}

.campaign_btn.amada:hover a {
  color: #fff;
}

/*-- murataボタン --*/
.campaign_btn.murata {
  margin: 0;
  border: 3px solid #1b8232;
  border-radius: 10px;
  background: #fff;
  color: #1b8232;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  transition: 0.3s ease-in;
}

.campaign_btn.murata:hover {
  background: #1b8232;
  color: #fff;
  cursor: pointer;
  transform: translateY(3px);
}

.campaign_btn.murata a {
  color: #1b8232;
  transition: 0.2s ease-in;
}

.campaign_btn.murata:hover a {
  color: #fff;
}

/*-- trumpfボタン --*/
.campaign_btn.trumpf {
  margin: 0;
  border: 3px solid #0d6cb5;
  border-radius: 10px;
  background: #fff;
  color: #0d6cb5;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  transition: 0.3s ease-in;
}

.campaign_btn.trumpf:hover {
  background: #0d6cb5;
  color: #fff;
  cursor: pointer;
  transform: translateY(3px);
}

.campaign_btn.trumpf a {
  color: #0d6cb5;
  transition: 0.2s ease-in;
}

.campaign_btn.trumpf:hover a {
  color: #fff;
}

/*-- euroボタン --*/
.campaign_btn.euro {
  margin: 0;
  border: 3px solid #05063d;
  border-radius: 10px;
  background: #fff;
  color: #05063d;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  transition: 0.3s ease-in;
}

.campaign_btn.euro:hover {
  background: #05063d;
  color: #fff;
  cursor: pointer;
  transform: translateY(3px);
}

.campaign_btn.euro a {
  color: #05063d;
  transition: 0.2s ease-in;
}

.campaign_btn.euro:hover a {
  color: #fff;
}

/*-- crfhボタン --*/
.campaign_btn.cefh {
  margin: 0;
  border: 3px solid #6e1800;
  border-radius: 10px;
  background: #fff;
  color: #6e1800;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  transition: 0.3s ease-in;
}

.campaign_btn.cefh:hover {
  background: #6e1800;
  color: #fff;
  cursor: pointer;
  transform: translateY(3px);
}

.campaign_btn.cefh a {
  color: #6e1800;
  transition: 0.2s ease-in;
}

.campaign_btn.cefh:hover a {
  color: #fff;
}

/*-- 緑ボタン（横幅jQuery制御） --*/
.campaign_btn.green {
  margin-left: auto;
  margin-right: auto;
  border: 3px solid #156112;
  border-radius: 10px;
  background: #fff;
  color: #156112;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  transition: 0.3s ease-in;
}

.campaign_btn.green:hover {
  background: #156112;
  color: #fff;
  cursor: pointer;
  transform: translateY(3px);
}

.campaign_btn.green a {
  color: #156112;
  transition: 0.2s ease-in;
}

.campaign_btn.green:hover a {
  color: #fff;
}

/*-- オレンジボタン（横幅jQuery制御） --*/
.campaign_btn.orange {
  margin-left: auto;
  margin-right: auto;
  border: 3px solid #e96c0e;
  border-radius: 10px;
  background: #fff;
  color: #156112;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  transition: 0.3s ease-in;
}

.campaign_btn.orange:hover {
  background: #e96c0e;
  color: #fff;
  cursor: pointer;
  transform: translateY(3px);
}

.campaign_btn.orange a {
  color: #e96c0e;
  transition: 0.2s ease-in;
}

.campaign_btn.orange:hover a {
  color: #fff;
}

/********************************************
*******************************************/
.contents_title_set {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #343434;
}

p.contents_title_sub {
  margin: 0;
  font-size: 14px;
  color: #343434;
}

h1.contents_title {
  margin: 0;
  font-size: 26px;
  font-weight: 300;
  color: #343434;
}

h2.contents_title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: #010059;
}

h5.border_left_title {
  border-left: 5px solid #3b1378;
  border-bottom: none;
  background: linear-gradient(-45deg, rgba(0, 71, 99, 0.4), rgba(81, 51, 181, 0.3));
  padding: 5px 0 5px 15px;
  font-size: 20px;
  font-weight: 900;
  color: #3b1378;
}

h5.border_left_title.yellow {
  border-left: 5px solid #ffa200;
  border-bottom: none;
  background: linear-gradient(-45deg, rgba(212, 162, 0, 0.4), rgba(212, 106, 0, 0.3));
  padding: 5px 0 5px 15px;
  font-size: 20px;
  font-weight: 900;
  color: #3d3d3d;
}

h6.border_left_title {
  border-left: 5px solid #3b1378;
  border-bottom: none;
  background: none;
  padding: 5px 0 5px 15px;
  font-size: 20px;
  font-weight: 900;
  color: #3d3d3d;
}

h6.border_left_title.yellow {
  border-left: 5px solid #ffa200;
  border-bottom: none;
  background: none;
  padding: 5px 0 5px 15px;
  font-size: 20px;
  font-weight: 900;
  color: #3d3d3d;
}

/********************************************
*******************************************/
.border_img {
  border: 1px solid #343434;
  height: 200px;
  width: 200px;
  overflow: hidden;
}

.border_img img {
  opacity: 1;
  transition: 0.3s ease-in;
}

.border_img img:hover {
  opacity: 0.8;
  cursor: zoom-in;
  transform: scale(1.2, 1.2);
}

.border_img {
  position: relative;
}

@media (max-width: 767px) {
  .border_img {
    margin: 0 auto;
    padding: 0;
  }
}
.border_img .icon_zoom {
  bottom: 10px;
  right: 10px;
  background: #fff;
  border-radius: 5px;
  color: #343434;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  position: absolute;
}

.border_img .icon_zoom {
  cursor: zoom-in;
}

.box_border {
  border: 1px solid #00152b;
  padding: 20px;
}

/********************************************
*******************************************/
.box_card {
  border-radius: 10px;
  padding: 0 20px 20px 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: 0.6s;
  box-sizing: border-box;
  box-shadow: 0 0 4px #b2b2b2;
  position: relative;
}

.box_card:hover {
  box-shadow: 0 0 20px #b2b2b2;
}

.box_card .img_main {
  width: 40%;
}

.box_card .text {
  min-width: 0;
}

.box_card .images {
  max-width: 100%;
}

.box_card .flex div:nth-of-type(2n) {
  margin-left: initial;
}

.box_card .flex div:nth-of-type(3n) {
  margin-left: initial;
}

/********************************************
*******************************************/
.img_main {
  position: relative;
}

.button_position {
  margin-left: initial;
}

.button_pop {
  margin: 20px auto;
  width: 120px;
  height: 54px;
}

.button_pop a {
  border: 2px solid #00125b;
  border-radius: 3px;
  color: #00125b;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 20px;
  transition: 0.3s ease-in;
}

.button_pop a:hover {
  border: 2px solid #00125b;
  color: #fff;
  background: #00125b;
}

.item_center {
  align-items: center;
}

img.banner {
  border: 1px solid #353535;
  transition: 0.3s;
}

img.banner:hover {
  opacity: 0.6;
  transform: translateY(3px);
  cursor: pointer;
}

a.link--border {
  border-bottom: 1px solid #e96c0e;
  color: #e96c0e;
  transition: 0.3s ease-in;
}

a.link--border:hover {
  border-bottom: 1px solid #00072a;
  color: #00072a;
}

/********************************************
*******************************************/
.image_subA {
  position: relative;
  background-image: url("../campaign/campaign_images/bottom_image.jpg");
  background-position: center 70%;
  background-size: cover;
  height: 300px;
  width: 100%;
}

@media (max-width: 767px) {
  .image_subA {
    height: 200px;
    margin-top: 80px;
  }
}
@media (min-width: 2000px) {
  .image_subA {
    max-width: 1500px;
    margin: 0 auto;
  }
}
.image_subA_grd {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.image_subA_comment {
  position: absolute;
  font-size: 30px;
  font-weight: 800;
  color: #0e0e0e;
  background: #fff;
  padding: 5px 5px 7px 5px;
  /*padding: 15px 40px 15px 40px;*/
  top: 50px;
  left: 50px;
  z-index: 11;
}

@media (max-width: 767px) {
  .image_subA_comment {
    border: 1px solid #353535;
    top: 180px;
    left: 10px;
    font-size: 22px;
  }
}
/********************************************
*******************************************/
.image_contact {
  position: relative;
  background-repeat: repeat;
  background-image: url("../campaign/campaign_images/image_back.jpg");
  background-size: 960px;
  background-position: center 40%;
  height: 300px;
  width: 100%;
}

.image_contact.mftokyo2023 {
  background-size: cover;
  background-image: url("../images/campaign/image_back2023.png");
}

@media (max-width: 767px) {
  .image_contact {
    height: 200px;
    margin-top: 80px;
  }
}
@media (min-width: 2000px) {
  .image_contact {
    max-width: 1500px;
    margin: 0 auto;
  }
}
.image_contact_grd {
  background: linear-gradient(rgba(171, 180, 222, 0.3), rgba(171, 180, 222, 0.9));
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.image_contact_comment {
  position: absolute;
  font-size: 28px;
  font-weight: 600;
  color: #0e0e0e;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 40px 15px 40px;
  border-radius: 3px;
  top: 110px;
  left: calc(50% - 220px);
  z-index: 11;
}

@media (max-width: 767px) {
  .image_contact_comment {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #0e0e0e;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 3px;
    top: 80px;
    left: calc(50% - 135px);
    z-index: 11;
    display: inline;
  }
}
/********************************************
*******************************************/
.form_box {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.form_box a {
  color: #00125a;
  border-bottom: 1px solid #00125a;
  transition: 0.3s ease-in;
}

.form_box a:hover {
  color: #e96c0e;
  border-bottom: 1px solid #e96c0e;
}

/********************************************
*******************************************/
table.campaign_form {
  font-size: 18px;
  text-align: left;
  border-spacing: 20px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  table.campaign_form {
    border-spacing: 10px;
  }
}
table.campaign_form td {
  border-top: 1px solid #353535;
  padding-top: 20px;
}

@media (max-width: 767px) {
  table.campaign_form td {
    padding-top: 10px;
  }
}
table.campaign_form td.none {
  border-top: none;
}

.point {
  margin-left: 10px;
  font-size: 12px;
  background: #ff0000;
  border-radius: 3px;
  padding: 2px 5px 3px 5px;
  color: #fff;
}

table.campaign_form input,
table.campaign_form textarea {
  background: #fff0f4;
  border: 1px solid #343434;
  padding: 5px;
}

@media (max-width: 767px) {
  table.campaign_form input {
    box-sizing: border-box;
    width: 100%;
  }
}
table.campaign_form input:invalid,
table.campaign_form textarea:invalid {
  background: #f2f6ff;
}

table.campaign_form input:valid,
table.campaign_form textarea:valid {
  background: #fff0f4;
}

input.ex_button2,
input.ex_button1 {
  display: inline-block;
  max-width: 180px;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 16px 8px 16px;
  border-radius: 5px;
  position: relative;
  transition: 0.8s;
  box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
}

input.ex_button2 {
  margin-right: 20px;
  background: #2089b3;
  border: 1px solid #2089b3;
  color: #fff;
  font-weight: bold;
}

input.ex_button2:hover {
  background: #093170;
  border: 1px solid #093170;
}

input.ex_button1 {
  background: #fff;
  border: 1px solid #343434;
  font-weight: bold;
}

input.ex_button1:hover {
  background: #e96c0e;
  border: 1px solid #e96c0e;
  color: #fff;
}

/*****************************************************
*****************************************************/
@keyframes left_to_right {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.left_to_right {
  animation-name: left_to_right;
  animation-duration: 2s;
  /*animation-iteration-count: infinite;*/
}

/****************************************************
スライダー
****************************************************/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
  position: relative;
}

.slider .box_card {
  width: 60vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}

.slider .slick-slide {
  transform: scale(0.8); /*左右の画像のサイズを80%に*/
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 6px solid rgba(50, 50, 50, 0.4); /*矢印の色*/
  border-right: 6px solid rgba(50, 50, 50, 0.4); /*矢印の色*/
  height: 40px;
  width: 40px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 10%;
  transform: rotate(-135deg);
  z-index: 40;
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 10%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

/********************************************
margin関係
*******************************************/
.ma_right30 {
  margin-right: 30px;
}

.ma_bottom50 {
  margin-bottom: 50px;
}

.ma_top50_pc {
  margin-top: 50px;
}

.ma_top80 {
  margin-top: 80px;
}

@media (max-width: 767px) {
  .ma_top50_pc {
    margin-top: 0;
  }
}
.text_left {
  text-align: left !important;
}

.fadein_image {
  opacity: 0;
}

/*-- キャンペーン背景 --*/
.back_present {
  position: relative;
  background-repeat: repeat;
  background-image: url("../images/campaign/present_back.jpg");
  background-size: 100%;
  background-position: center 40%;
  width: 100%;
}

/*-- キャンペーンシーポックン --*/
.deco1 {
  position: absolute;
  top: -65px;
  right: calc(50% - 200px);
}

@media (max-width: 767px) {
  .deco1 {
    position: absolute;
    top: -65px;
    right: 20px;
  }
}
/*-- タイトルの日時 --*/
.title_time p {
  line-height: 0.9;
}

.title_time span {
  font-size: 30px;
}

@media (max-width: 767px) {
  .title_time p {
    line-height: 1.2;
    margin-right: 20px;
  }
  .title_time span {
    font-size: 24px;
  }
}
/*-- タイトル部分のバー --*/
.title_bar {
  border-left: 5px solid #fff;
  padding: 5px 0 5px 20px;
  margin-top: 30px;
}

/*-- 動くバー --*/
.cont_backbar {
  position: absolute;
  top: 100px;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 250px;
  z-index: -50;
  transform: skewY(3deg);
  transform-origin: top right;
}

.cont_backbar.navy {
  background: #06153d;
}

.cont_backbar.orange {
  background: #e96c0e;
  transform: skewY(-3deg);
  top: 0;
}

@media (max-width: 767px) {
  .cont_backbar {
    position: absolute;
    top: 180px;
    height: 330px;
  }
}
.figimage_reverse {
  flex-direction: row-reverse;
}

@media (min-width: 768px) {
  .fig_punching img {
    width: 70%;
  }
}
.movie__box--80 {
  width: 80%;
  margin-inline: auto;
  aspect-ratio: 16/9;
}
.movie__box--80 iframe {
  width: 100%;
  height: 100%;
}

.c-photo__slide--pc {
  width: 458px;
  margin-top: 0;
}
.c-photo__slide--pc img {
  max-width: 100%;
}
@media (max-width: 979px) {
  .c-photo__slide--pc {
    display: none;
  }
}

.c-photo__slide--sp {
  max-width: 490px;
  margin-inline: auto;
}
@media (min-width: 980px) {
  .c-photo__slide--sp {
    display: none;
  }
}
.c-photo__slide--sp img {
  max-width: 100%;
}

.gallery__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 768px) {
  .gallery__list {
    display: block;
  }
}

.gallery__list li {
  flex: 1 1 30%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .gallery__list li {
    margin-bottom: 15px;
  }
}

.gallery__list li.amari {
  flex: 0 1 33%;
  box-sizing: border-box;
}

.gallery__list li img {
  transition: transform 0.5s ease;
}

.gallery__list li:hover img {
  transform: scale(1.6);
  z-index: 1;
  position: relative;
  border: 2px solid #ffffff;
}/*# sourceMappingURL=campaign.css.map */