* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fdf5e4;
  font-family: "Noto Sans JP", sans-serif;
  color: #5c2b1b;
  letter-spacing: 0.04em;
  font-weight: 500;
}

p {
  line-height: 1.8;
}

ul, ol {
  list-style: none;
}

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

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}

input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
}

.wrapper {
  overflow: hidden;
}

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

.pc {
  display: block;
}

.sp {
  display: none;
}

.sec_ttl {
  margin-bottom: 40px;
}
.sec_ttl .en {
  color: #c9971a;
  font-size: 14px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.sec_ttl h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #870011;
  text-shadow: 3px 3px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 0 6px 0 rgba(252, 204, 0, 0.55);
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .sec_ttl {
    margin-bottom: 30px;
  }
  .sec_ttl .en {
    margin-bottom: 0;
  }
  .sec_ttl h2 {
    font-size: 27px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(253, 245, 228, 0.9);
  border-bottom: 3px solid #870011;
  box-shadow: 0 3px 0 rgba(252, 200, 3, 0.8);
  z-index: 100;
}
header .inner {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
header .inner h1 img {
  display: block;
  width: 400px;
}
header .inner #menu_btn {
  display: none;
}
header .inner nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .inner nav ul {
  display: flex;
  gap: 10px;
}
header .inner nav ul li a {
  display: block;
  font-weight: 700;
  padding: 12px 15px;
  border-radius: 999px;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  header .inner nav ul li a:hover {
    color: #870011;
    background: #fcc803;
  }
}
header .inner nav .contact_btn a {
  display: block;
  background: linear-gradient(140deg, #870011, #c0121c);
  color: #fff;
  padding: 15px 20px;
  line-height: 1;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 6px 0 #5c000a;
  transform: translateY(-2px);
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  header .inner nav .contact_btn a:hover {
    box-shadow: 0 4px 0 #5c000a;
    transform: translateY(0);
    color: #fcc803;
  }
}

@media (max-width: 1200px) {
  header .inner #menu_btn {
    display: block;
    width: 36px;
    height: 22px;
    position: relative;
    cursor: pointer;
  }
  header .inner #menu_btn span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #870011;
    position: absolute;
    right: 0;
    transition: 0.3s;
  }
  header .inner #menu_btn span:nth-child(1) {
    top: calc(50% - 8px);
  }
  header .inner #menu_btn span:nth-child(2) {
    top: 50%;
  }
  header .inner #menu_btn span:nth-child(3) {
    top: calc(50% + 8px);
  }
  header .inner #menu_btn.open span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  header .inner #menu_btn.open span:nth-child(2) {
    opacity: 0;
  }
  header .inner #menu_btn.open span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
  header .inner nav {
    display: block;
    background: rgba(253, 245, 228, 0.9);
    padding: 40px 60px;
    border-radius: 30px;
    position: fixed;
    top: 100px;
    right: 30px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
  }
  header .inner nav .ttl {
    display: block;
    background: #5c2b1b;
    color: #fcc803;
    border-radius: 99px;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 30px;
  }
  header .inner nav ul {
    flex-direction: column;
    gap: 15px;
  }
  header .inner nav ul li {
    width: 100%;
    text-align: center;
  }
  header .inner nav .contact_btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
  }
  header .inner h1 a img {
    width: 250px;
  }
  header .inner #menu_btn {
    width: 30px;
  }
  header .inner nav {
    width: 90%;
    right: 5%;
    top: 75px;
    display: none;
  }
}
footer {
  background: #5c000a;
  padding: 60px 0;
  color: #fff;
}
footer .inner .row {
  display: flex;
  justify-content: space-between;
}
footer .inner .row .txt .logo {
  margin-bottom: 30px;
}
footer .inner .row .txt .logo img {
  width: 380px;
}
footer .inner .row nav ul {
  display: flex;
  gap: 30px;
}
footer .inner .row nav ul li a {
  font-size: 15px;
}
@media (hover: hover) and (pointer: fine) {
  footer .inner .row nav ul li a:hover {
    color: #fcc803;
  }
}
footer .inner .copy {
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.fixed_bnr {
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  transition: 0.3s;
  z-index: 90;
}
.fixed_bnr a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #870011;
  text-align: center;
  width: 170px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-bottom: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.fixed_bnr a::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../img/icon_cooking.svg) no-repeat center/contain;
  margin-bottom: 10px;
}
.fixed_bnr a .sub {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 8px;
}
.fixed_bnr a .main {
  color: #fcc803;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.fixed_bnr a .btn {
  margin-top: 12px;
  background: #fff;
  color: #870011;
  font-size: 14px;
  line-height: 1;
  border-radius: 99px;
  font-weight: 700;
  padding: 3px 10px;
}
@media (hover: hover) and (pointer: fine) {
  .fixed_bnr a:hover {
    background: #e57c22;
    transform: scale(1.1) rotate(7deg);
  }
}

@media (max-width: 1100px) {
  footer .inner .row {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
  footer .inner .row .txt {
    order: 2;
    text-align: center;
  }
  footer .inner .row nav {
    order: 1;
  }
}
@media (max-width: 900px) {
  .fixed_bnr {
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 30px 0 90px;
  }
  footer .inner .row nav {
    display: none;
  }
  footer .inner .row .txt {
    font-size: 15px;
  }
  footer .inner .row .txt .logo img {
    width: 250px;
  }
  footer .inner .copy {
    margin-top: 30px;
    font-size: 12px;
  }
  .fixed_bnr {
    right: 0;
    bottom: 0;
    width: 100%;
  }
  .fixed_bnr a {
    width: 100%;
    border-radius: 0;
    aspect-ratio: unset;
    padding: 15px;
    flex-direction: row;
  }
  .fixed_bnr a::before {
    margin-bottom: 0;
    margin-right: 10px;
  }
  .fixed_bnr a .sub {
    margin-bottom: 0;
    margin-right: 5px;
  }
  .fixed_bnr a .btn {
    margin-top: 0;
    margin-left: 10px;
  }
}
#mv {
  margin-top: 70px;
}
#mv img {
  width: 100%;
}

#intro {
  background: #870011;
  padding: 50px 0;
}
#intro .inner .sub_ttl {
  background: #fcc803;
  color: #870011;
  padding: 5px 15px;
  border-radius: 999px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  font-weight: 900;
}
#intro .inner h2 {
  font-size: 50px;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 3px 0 #5c000a;
}
#intro .inner h2 span {
  color: #fcc803;
}
#intro .inner ul {
  display: flex;
  justify-content: center;
  gap: 15px;
}
#intro .inner ul li {
  color: #870011;
  background: #fff;
  padding: 6px 18px;
  font-size: 22px;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 999px;
}
#intro .inner ul li:nth-child(2n) {
  background: #fcc803;
}
#intro .inner .desc {
  margin-top: 30px;
  text-align: center;
  font-weight: 700;
  color: #ffe9a8;
  font-size: 18px;
}

#news {
  background: url(../img/flag.svg) repeat-x center top/1300px;
  padding: 100px 0;
}
#news .inner .list .item {
  border: 3px solid #870011;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  box-shadow: 0 4px 0 rgba(135, 0, 17, 0.2);
  background: #fff;
  border-radius: 20px;
}
#news .inner .list .item .date {
  width: 100px;
  color: #8b7355;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
#news .inner .list .item .category {
  padding: 8px 15px;
  border-radius: 99px;
  line-height: 1;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
#news .inner .list .item .category.ev {
  background: #870011;
  color: #fcc803;
}
#news .inner .list .item .category.ws {
  background: #fcc803;
  color: #870011;
}
#news .inner .list .item .ttl {
  font-size: 18px;
  font-weight: 700;
}
#news .inner .list .item:not(:last-child) {
  margin-bottom: 20px;
}

#about {
  border-top: 4px solid #870011;
  background: rgba(252, 200, 3, 0.3);
  padding: 100px 0;
  position: relative;
}
#about::before {
  content: "";
  display: block;
  width: 350px;
  aspect-ratio: 450/183;
  background: url(../img/flag_red.svg) no-repeat top right/contain;
  position: absolute;
  top: 0;
  right: 0;
}
#about .inner {
  position: relative;
}
#about .inner::before {
  content: "";
  display: block;
  width: 250px;
  aspect-ratio: 318/181;
  background: url(../img/character.png) no-repeat center/contain;
  position: absolute;
  top: 30px;
  right: 5%;
}
#about .inner .sec_ttl {
  margin-bottom: 20px;
}
#about .inner .sec_ttl .en {
  color: #5c2b1b;
}
#about .inner .intro {
  font-size: 18px;
}
#about .inner .list {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
#about .inner .list .block {
  width: 48%;
  border: 4px solid;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
#about .inner .list .block .img img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .inner .list .block .txt {
  padding: 25px;
}
#about .inner .list .block .txt .en {
  border-radius: 99px;
  font-size: 14px;
  line-height: 1;
  font-size: 13px;
  padding: 10px 15px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 900;
}
#about .inner .list .block .txt h3 {
  color: #870011;
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
}
#about .inner .list .block .txt .btn {
  margin-top: 20px;
}
#about .inner .list .block .txt .btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  line-height: 1;
  font-weight: 900;
  background: #fcc803;
  color: #870011;
  box-shadow: 0 6px 0 #c9971a;
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateY(-3px);
}
#about .inner .list .block .txt .btn a::after {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 1/1;
  background: url(../img/icon_pdf.svg) no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  #about .inner .list .block .txt .btn a:hover {
    box-shadow: 0 3px 0 #c9971a;
    transform: translateY(0);
  }
}
#about .inner .list .block.pork {
  border-color: #870011;
  box-shadow: 0 8px 0 rgba(135, 0, 17, 0.2);
}
#about .inner .list .block.pork .txt .en {
  background: #870011;
  color: #fcc803;
}
#about .inner .list .block.egg {
  border-color: #c9971a;
  box-shadow: 0 8px 0 rgba(201, 151, 26, 0.2);
}
#about .inner .list .block.egg .txt .en {
  background: #fcc803;
  color: #fff;
}

#workshop {
  border-top: 4px solid #870011;
  background: rgba(229, 124, 34, 0.8) url(../img/ws_bg.png) no-repeat center/cover;
  padding: 100px 0;
  position: relative;
}
#workshop::before {
  content: "";
  display: block;
  width: 350px;
  aspect-ratio: 450/183;
  background: url(../img/flag_yellow.svg) no-repeat top right/contain;
  position: absolute;
  top: 0;
  right: 0;
}
#workshop .inner {
  position: relative;
}
#workshop .inner::before {
  content: "";
  display: block;
  width: 350px;
  aspect-ratio: 982/332;
  background: url(../img/ws_kazari1.svg) no-repeat top right/contain;
  position: absolute;
  top: 30px;
  right: 0;
}
#workshop .inner .sec_ttl h2 {
  font-size: 52px;
}
#workshop .inner .sec_ttl .en {
  color: #fff;
}
#workshop .inner .application {
  background: #fcc803;
  color: #870011;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
}
#workshop .inner .point {
  margin-top: 40px;
}
#workshop .inner .point h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  color: #870011;
  font-size: 24px;
  margin-bottom: 20px;
}
#workshop .inner .point .point_list {
  display: flex;
  justify-content: space-between;
}
#workshop .inner .point .point_list .block {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 32%;
  border: 3px solid #e57c22;
  border-radius: 20px;
  box-shadow: 0 8px 0 rgba(229, 124, 34, 0.3);
}
#workshop .inner .point .point_list .block .num {
  font-size: 30px;
  margin-bottom: 10px;
  color: #e57c22;
  font-weight: 900;
  line-height: 1;
}
#workshop .inner .point .point_list .block .ttl {
  font-size: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  margin-bottom: 10px;
}
#workshop .inner .list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#workshop .inner .list .card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
#workshop .inner .list .card .ttl {
  color: #8b7355;
  font-weight: 700;
  margin-bottom: 10px;
}
#workshop .inner .list .card .txt {
  font-size: 18px;
}
#workshop .inner .list .card .txt .part {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#workshop .inner .list .card .txt .part .label {
  display: inline-block;
  padding: 5px 10px;
  line-height: 1;
  font-weight: 700;
  font-size: 14px;
  border-radius: 99px;
  width: 70px;
  text-align: center;
  margin-right: 10px;
}
#workshop .inner .list .card .txt .part .label.egg {
  background: #fcc803;
  color: #fff;
}
#workshop .inner .list .card .txt .part .label.pork {
  background: #870011;
  color: #fcc803;
}
#workshop .inner .list .card .txt .part:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 10px;
}
#workshop .inner .notice {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
}
#workshop .inner .teacher {
  margin-top: 60px;
  background: #fdf5e4;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  border: 3px solid #e57c22;
}
#workshop .inner .teacher .img {
  width: 150px;
}
#workshop .inner .teacher .txt {
  width: calc(100% - 180px);
}
#workshop .inner .teacher .txt h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #8b7355;
}
#workshop .inner .teacher .txt .name {
  color: #870011;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}
#workshop .inner .teacher .txt .name span {
  font-size: 28px;
  margin-right: 0.5em;
}
#workshop .inner .event_list {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 4%;
}
#workshop .inner .event_list .block {
  width: 48%;
  background: #fdf5e4;
  border-radius: 20px;
  box-shadow: 0 8px 0 #e57c22;
  overflow: hidden;
}
#workshop .inner .event_list .block .img img {
  width: 100%;
  aspect-ratio: 693/553;
  -o-object-fit: cover;
     object-fit: cover;
}
#workshop .inner .event_list .block .txt {
  padding: 20px;
  position: relative;
}
#workshop .inner .event_list .block .txt .icon {
  width: 80px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #e57c22;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-size: 13px;
  line-height: 1.3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  top: 10px;
  right: 10px;
  text-align: center;
  transform: rotate(10deg);
}
#workshop .inner .event_list .block .txt .icon.adult {
  background: #5c2b1b;
}
#workshop .inner .event_list .block .txt .category {
  line-height: 1;
  padding: 8px 15px;
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
}
#workshop .inner .event_list .block .txt .category.egg {
  background: #fcc803;
  color: #fff;
}
#workshop .inner .event_list .block .txt .category.pork {
  background: #870011;
  color: #fcc803;
}
#workshop .inner .event_list .block .txt time {
  display: block;
  color: #8b7355;
  margin-bottom: 10px;
  font-weight: 700;
}
#workshop .inner .event_list .block .txt h3 {
  font-size: 24px;
  line-height: 1.5;
  color: #870011;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 15px;
}
#workshop .inner .event_list .block .txt .omiyage {
  margin-top: 15px;
  background: #fcc803;
  font-weight: 700;
  padding: 5px 10px;
  text-align: center;
  border-radius: 99px;
}
#workshop .inner .cta {
  margin-top: 60px;
  background: #fdf5e4;
  border-radius: 40px;
  padding: 30px;
  text-align: center;
  border: 30px solid #870011;
}
#workshop .inner .cta h2 {
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  margin-bottom: 30px;
  color: #870011;
  text-shadow: 3px 3px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 0 6px 0 rgba(252, 204, 0, 0.55);
}
#workshop .inner .cta .desc {
  font-size: 18px;
}
#workshop .inner .cta .btn {
  margin-top: 30px;
}
#workshop .inner .cta .btn a {
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 25px 40px;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  background: #fcc803;
  color: #870011;
  box-shadow: 0 8px 0 #c9971a;
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateY(-4px);
  margin: 0 auto;
}
@media (hover: hover) and (pointer: fine) {
  #workshop .inner .cta .btn a:hover {
    box-shadow: 0 4px 0 #c9971a;
    transform: translateY(0);
  }
}
#workshop .inner .cta .cta_notice {
  margin-top: 20px;
}

#marche {
  padding: 100px 0;
  background: #94d2e9 url(../img/flag.svg) repeat-x center top/1300px;
  position: relative;
}
#marche::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1600/287;
  background: url(../img/cloud.svg) no-repeat center bottom/100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
#marche .inner {
  position: relative;
  z-index: 2;
}
#marche .inner .sec_ttl h2 {
  color: #708b48;
}
#marche .inner .application {
  background: #5c2b1b;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
}
#marche .inner .info {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#marche .inner .info .card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  min-width: 150px;
}
#marche .inner .info .card .ttl {
  color: #8b7355;
  font-weight: 700;
  margin-bottom: 10px;
}
#marche .inner .info .card .txt {
  font-size: 18px;
}
#marche .inner .info .card .txt span {
  display: inline-block;
  padding: 5px 10px;
  line-height: 1;
  font-weight: 700;
  font-size: 14px;
  border-radius: 99px;
  width: 70px;
  text-align: center;
  margin-right: 10px;
  background: #708b48;
  color: #fff;
}
#marche .inner .feature {
  margin-top: 60px;
}
#marche .inner .feature h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  color: #870011;
  font-size: 24px;
  margin-bottom: 20px;
}
#marche .inner .feature .list {
  display: flex;
  justify-content: space-between;
}
#marche .inner .feature .list .block {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 32%;
  border: 3px solid #708b48;
  border-radius: 20px;
  box-shadow: 0 8px 0 rgba(112, 139, 72, 0.3);
}
#marche .inner .feature .list .block .num {
  font-size: 30px;
  margin-bottom: 10px;
  color: #708b48;
  font-weight: 900;
  line-height: 1;
}
#marche .inner .feature .list .block .ttl {
  font-size: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  margin-bottom: 10px;
}
#marche .inner .cta {
  margin-top: 60px;
  background: #fdf5e4;
  border-radius: 40px;
  padding: 30px;
  text-align: center;
  border: 30px solid #708b48;
}
#marche .inner .cta h2 {
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  margin-bottom: 30px;
  color: #5c2b1b;
  text-shadow: 3px 3px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 0 6px 0 rgba(252, 204, 0, 0.55);
}
#marche .inner .cta .desc {
  font-size: 18px;
}
#marche .inner .cta .btn {
  margin-top: 30px;
}
#marche .inner .cta .btn a {
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 25px 40px;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  background: #fcc803;
  color: #870011;
  box-shadow: 0 8px 0 #c9971a;
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateY(-4px);
  margin: 0 auto;
}
@media (hover: hover) and (pointer: fine) {
  #marche .inner .cta .btn a:hover {
    box-shadow: 0 4px 0 #c9971a;
    transform: translateY(0);
  }
}
#marche .inner .cta .cta_notice {
  margin-top: 20px;
}
#marche .inner .btns {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
#marche .inner .btns .btn a {
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1.5;
  padding: 15px 30px;
  transform: translateY(-3px);
  border-radius: 99px;
  height: 60px;
}
@media (hover: hover) and (pointer: fine) {
  #marche .inner .btns .btn a:hover {
    transform: translate(0);
  }
}
#marche .inner .btns .btn.sns a {
  background: #5c2b1b;
  color: #fff;
  box-shadow: 0 6px 0 #2c1108;
}
@media (hover: hover) and (pointer: fine) {
  #marche .inner .btns .btn.sns a:hover {
    box-shadow: 0 3px 0 #2c1108;
    color: #fcc803;
  }
}
#marche .inner .btns .btn.pdf a {
  background: #708b48;
  color: #fff;
  box-shadow: 0 6px 0 #577130;
  gap: 10px;
}
#marche .inner .btns .btn.pdf a::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../img/icon_pdf_white.svg) no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  #marche .inner .btns .btn.pdf a:hover {
    box-shadow: 0 3px 0 #577130;
    color: #fcc803;
  }
}
#marche .inner .questionnaire {
  margin-top: 80px;
}
#marche .inner .questionnaire h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  margin-bottom: 30px;
  font-size: 30px;
  text-align: center;
}
#marche .inner .questionnaire .desc {
  text-align: center;
}

#bbq {
  background: url(../img/bbq_bg.jpg) no-repeat center/cover;
  padding: 100px 0;
  position: relative;
}
#bbq::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(92, 43, 27, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#bbq .inner {
  position: relative;
  z-index: 2;
}
#bbq .inner::before {
  content: "";
  display: block;
  width: 350px;
  aspect-ratio: 779/325;
  background: url(../img/bbq_kazari.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
}
#bbq .inner .application {
  background: #fcc803;
  color: #870011;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
}
#bbq .inner .intro {
  margin-top: 30px;
  color: #fff;
  text-shadow: 0 0 10px #2c1108;
}
#bbq .inner .btn {
  margin-top: 30px;
}
#bbq .inner .btn a {
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1.5;
  padding: 15px 30px;
  transform: translateY(-3px);
  border-radius: 99px;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  background: #fcc803;
  color: #870011;
  box-shadow: 0 6px 0 #c9971a;
  gap: 10px;
}
#bbq .inner .btn a::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../img/icon_pdf.svg) no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  #bbq .inner .btn a:hover {
    transform: translate(0);
    box-shadow: 0 3px 0 #c9971a;
  }
}
#bbq .inner .bnrs {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
#bbq .inner .bnrs .block {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  width: 31%;
  border: 3px solid #2c1108;
}
#bbq .inner .bnrs .block h3 {
  text-align: center;
  margin-bottom: 15px;
}
#bbq .inner .bnrs .block h3 img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
#bbq .inner .bnrs .block .bnr {
  text-align: center;
}
#bbq .inner .bnrs .block .bnr img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
#bbq .inner .bnrs .block .desc {
  margin-top: 15px;
}
#bbq .inner .list {
  margin-top: 60px;
}
#bbq .inner .list .block {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #2c1108;
  box-shadow: 0 8px 0 rgba(44, 17, 8, 0.3);
}
#bbq .inner .list .block .menu {
  display: flex;
  align-items: center;
}
#bbq .inner .list .block .menu .img {
  width: 50%;
  height: 100%;
}
#bbq .inner .list .block .menu .img img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
#bbq .inner .list .block .menu .txt {
  width: 50%;
  padding: 25px;
}
#bbq .inner .list .block .menu .txt h3 {
  color: #870011;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 15px;
}
#bbq .inner .list .block .menu .txt h3 span {
  color: #fcc803;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
#bbq .inner .list .block .menu .txt dl {
  margin-top: 20px;
}
#bbq .inner .list .block .menu .txt dl dt {
  background: #870011;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
#bbq .inner .list .block .shop {
  padding: 25px;
  display: flex;
  background: #e2dbce;
}
#bbq .inner .list .block .shop .img {
  width: 400px;
}
#bbq .inner .list .block .shop .img img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
#bbq .inner .list .block .shop .txt {
  width: calc(100% - 400px);
  padding-left: 25px;
}
#bbq .inner .list .block .shop .txt h3 {
  color: #870011;
  margin-bottom: 15px;
}
#bbq .inner .list .block .shop .txt .place {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1;
  padding: 4px 12px 4px 8px;
  border-radius: 99px;
  background: #fcc803;
  width: -moz-fit-content;
  width: fit-content;
}
#bbq .inner .list .block .shop .txt .place::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../img/icon_pin.svg) no-repeat center/contain;
}
#bbq .inner .list .block .shop .txt .address {
  font-size: 13px;
  margin-bottom: 15px;
  display: flex;
}
#bbq .inner .list .block .shop .txt .address span {
  flex-shrink: 0;
}
#bbq .inner .list .block .shop .txt .main {
  font-weight: bold;
  font-size: 18px;
  color: #870011;
  margin-bottom: 10px;
}
#bbq .inner .list .block .shop .txt .link {
  margin-top: 20px;
}
#bbq .inner .list .block .shop .txt .link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #870011;
  border-bottom: 2px solid #fcc803;
  font-weight: 700;
}
#bbq .inner .list .block .shop .txt .link a::after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../img/icon_insta.svg) no-repeat center/contain;
}
#bbq .inner .list .block:not(:last-child) {
  margin-bottom: 40px;
}
#bbq .inner .stamp_rally {
  margin-top: 60px;
  background: #fcc803;
  border-radius: 20px;
  padding: 40px;
  color: #5c2b1b;
  box-shadow: 0 8px 0 #c9971a;
}
#bbq .inner .stamp_rally .flag {
  background: #870011;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
#bbq .inner .stamp_rally .catch {
  font-size: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
}
#bbq .inner .stamp_rally .catch span {
  color: #870011;
}
#bbq .inner .stamp_rally h3 {
  color: #870011;
  font-size: 40px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  margin-bottom: 30px;
  text-shadow: 0 4px 0 #fff;
}
#bbq .inner .stamp_rally .row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
#bbq .inner .stamp_rally .row .txt .desc strong {
  color: #870011;
  font-size: 150%;
}
#bbq .inner .stamp_rally .row .txt .desc strong span {
  font-size: 150%;
}
#bbq .inner .stamp_rally .row .txt .btn {
  margin-top: 20px;
}
#bbq .inner .stamp_rally .row .txt .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  padding: 15px 30px;
  transform: translateY(-3px);
  border-radius: 99px;
  height: 60px;
  background: #870011;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 6px 0 #5c000a;
  gap: 10px;
  font-weight: 700;
}
#bbq .inner .stamp_rally .row .txt .btn a::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../img/icon_blank.svg) no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  #bbq .inner .stamp_rally .row .txt .btn a:hover {
    transform: translate(0);
    box-shadow: 0 3px 0 #5c000a;
  }
}
#bbq .inner .stamp_rally .row .txt .coming {
  color: #870011;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 20px;
  font-size: 22px;
}
#bbq .inner .stamp_rally .row .imgs {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
#bbq .inner .stamp_rally .row .imgs .img img {
  border: 6px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: block;
  width: 200px;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

#contact {
  padding: 100px 0;
  background: url(../img/flag.svg) repeat-x center top/1300px;
}
#contact .inner .form_area {
  margin-top: 40px;
  border: 3px solid #870011;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 1080px) {
  #bbq .inner .stamp_rally .row {
    flex-direction: column;
  }
  #bbq .inner .stamp_rally .row .imgs {
    order: 1;
  }
  #bbq .inner .stamp_rally .row .txt {
    order: 2;
  }
}
@media (max-width: 1000px) {
  #about .inner::before {
    content: none;
  }
  #bbq .inner::before {
    top: 80px;
  }
  #bbq .inner .list .block .shop .img {
    width: 300px;
  }
  #bbq .inner .list .block .shop .txt {
    width: calc(100% - 300px);
  }
}
@media (max-width: 900px) {
  #news .inner .list .item {
    flex-wrap: wrap;
    gap: 15px 20px;
  }
  #news .inner .list .item .ttl {
    width: 100%;
  }
  #workshop .inner .point .point_list {
    flex-wrap: wrap;
    gap: 20px;
  }
  #workshop .inner .point .point_list .block {
    width: 100%;
  }
  #marche .inner .feature .list {
    flex-wrap: wrap;
    gap: 20px;
  }
  #marche .inner .feature .list .block {
    width: 100%;
  }
  #marche .inner .btns {
    flex-direction: column;
    align-items: center;
  }
  #bbq .inner .bnrs {
    flex-direction: column;
    gap: 20px;
  }
  #bbq .inner .bnrs .block {
    width: 100%;
  }
  #bbq .inner .bnrs .block .bnr img {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  #mv {
    margin-top: 60px;
  }
  #intro {
    padding: 30px 0;
  }
  #intro .inner .sub_ttl {
    font-size: 14px;
  }
  #intro .inner h2 {
    font-size: min(30px, 7.8vw);
  }
  #intro .inner ul li {
    font-size: 15px;
  }
  #intro .inner .desc {
    font-size: 15px;
  }
  #news {
    padding: 40px 0;
    background-size: 800px;
  }
  #news .inner .list .item .date {
    width: 80px;
  }
  #news .inner .list .item .category {
    font-size: 12px;
  }
  #news .inner .list .item .ttl {
    font-size: 15px;
  }
  #about {
    padding: 50px 0;
  }
  #about::before {
    width: 180px;
  }
  #about .inner .intro {
    font-size: 15px;
  }
  #about .inner .list {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
  #about .inner .list .block {
    width: 100%;
  }
  #about .inner .list .block .txt {
    padding: 20px;
  }
  #about .inner .list .block .txt .en {
    font-size: 12px;
    margin-bottom: 10px;
  }
  #about .inner .list .block .txt h3 {
    font-size: 21px;
  }
  #about .inner .list .block .txt .desc {
    font-size: 15px;
  }
  #about .inner .list .block .txt .btn a {
    padding: 12px 25px;
    font-size: 15px;
  }
  #workshop {
    padding: 50px 0;
  }
  #workshop::before {
    width: 180px;
  }
  #workshop .inner::before {
    width: 190px;
    top: 90px;
  }
  #workshop .inner .sec_ttl h2 {
    font-size: 33px;
  }
  #workshop .inner .point {
    margin-top: 40px;
  }
  #workshop .inner .point h3 {
    font-size: 20px;
  }
  #workshop .inner .point .point_list .block .num {
    font-size: 24px;
  }
  #workshop .inner .point .point_list .block .ttl {
    font-size: 18px;
  }
  #workshop .inner .point .point_list .block .desc {
    font-size: 15px;
  }
  #workshop .inner .list {
    background: #fff;
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 0;
  }
  #workshop .inner .list .card {
    padding: 0;
    background: none;
    border-radius: 0;
  }
  #workshop .inner .list .card .ttl {
    font-size: 15px;
    margin-bottom: 5px;
  }
  #workshop .inner .list .card .txt {
    font-size: 15px;
  }
  #workshop .inner .list .card .txt span {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
  #workshop .inner .list .card .txt span:not(:first-child) {
    margin-top: 10px;
  }
  #workshop .inner .list .card:not(:first-child) {
    padding-top: 10px;
  }
  #workshop .inner .list .card:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 2px dashed rgba(139, 115, 85, 0.5);
  }
  #workshop .inner .teacher {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
  }
  #workshop .inner .teacher .txt {
    width: 100%;
  }
  #workshop .inner .teacher .txt h3 {
    text-align: center;
    margin-bottom: 5px;
  }
  #workshop .inner .teacher .txt .name {
    font-size: 16px;
    text-align: center;
  }
  #workshop .inner .teacher .txt .name span {
    font-size: 22px;
  }
  #workshop .inner .teacher .txt .desc {
    font-size: 15px;
  }
  #workshop .inner .event_list {
    gap: 30px;
  }
  #workshop .inner .event_list .block {
    width: 100%;
  }
  #workshop .inner .event_list .block .txt .icon {
    font-size: 11px;
    top: -5px;
    width: 65px;
  }
  #workshop .inner .event_list .block .txt .category {
    font-size: 14px;
  }
  #workshop .inner .event_list .block .txt time {
    font-size: 15px;
  }
  #workshop .inner .event_list .block .txt h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #workshop .inner .event_list .block .txt .desc {
    font-size: 15px;
  }
  #workshop .inner .event_list .block .txt .omiyage {
    font-size: 15px;
  }
  #workshop .inner .cta {
    border-width: 15px;
    padding: 20px;
    border-radius: 20px;
  }
  #workshop .inner .cta h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  #workshop .inner .cta .desc {
    font-size: 15px;
  }
  #workshop .inner .cta .btn {
    margin-top: 20px;
  }
  #workshop .inner .cta .btn a {
    font-size: 18px;
    padding: 17px 20px;
  }
  #workshop .inner .cta .cta_notice {
    font-size: 14px;
  }
  #marche {
    padding: 50px 0;
    background-size: 800px;
  }
  #marche .inner .info {
    background: #fff;
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 0;
  }
  #marche .inner .info .card {
    padding: 0;
    background: none;
    border-radius: 0;
  }
  #marche .inner .info .card .ttl {
    font-size: 15px;
    margin-bottom: 5px;
  }
  #marche .inner .info .card .txt {
    font-size: 15px;
  }
  #marche .inner .info .card .txt span {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
  #marche .inner .info .card .txt span:not(:first-child) {
    margin-top: 10px;
  }
  #marche .inner .info .card:not(:first-child) {
    padding-top: 10px;
  }
  #marche .inner .info .card:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 2px dashed rgba(139, 115, 85, 0.5);
  }
  #marche .inner .feature {
    margin-top: 40px;
  }
  #marche .inner .feature h3 {
    font-size: 20px;
  }
  #marche .inner .feature .list .block .num {
    font-size: 24px;
  }
  #marche .inner .feature .list .block .ttl {
    font-size: 18px;
  }
  #marche .inner .feature .list .block .desc {
    font-size: 15px;
  }
  #marche .inner .cta {
    border-width: 15px;
    padding: 20px;
    border-radius: 20px;
  }
  #marche .inner .cta h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  #marche .inner .cta .desc {
    font-size: 15px;
  }
  #marche .inner .cta .btn {
    margin-top: 20px;
  }
  #marche .inner .cta .btn a {
    font-size: 18px;
    line-height: 1.4;
    padding: 10px 30px;
  }
  #marche .inner .cta .cta_notice {
    font-size: 14px;
  }
  #marche .inner .btns {
    margin-top: 40px;
    gap: 20px;
  }
  #marche .inner .btns .btn a {
    font-size: 16px;
    padding: 15px 25px;
  }
  #marche .inner .questionnaire {
    margin-top: 60px;
  }
  #marche .inner .questionnaire h3 {
    font-size: 24px;
  }
  #bbq {
    padding: 50px 0;
  }
  #bbq .inner::before {
    width: 220px;
    top: 118px;
  }
  #bbq .inner .sec_ttl h2 {
    font-size: 33px;
  }
  #bbq .inner .intro {
    font-size: 15px;
  }
  #bbq .inner .info {
    background: #fff;
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 0;
  }
  #bbq .inner .info .card {
    padding: 0;
    background: none;
    border-radius: 0;
  }
  #bbq .inner .info .card .ttl {
    font-size: 15px;
    margin-bottom: 5px;
  }
  #bbq .inner .info .card .txt {
    font-size: 15px;
  }
  #bbq .inner .info .card .txt span {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
  #bbq .inner .info .card .txt span:not(:first-child) {
    margin-top: 10px;
  }
  #bbq .inner .info .card:not(:first-child) {
    padding-top: 10px;
  }
  #bbq .inner .info .card:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 2px dashed rgba(139, 115, 85, 0.5);
  }
  #bbq .inner .bnrs .block {
    padding: 20px;
  }
  #bbq .inner .bnrs .block .desc {
    font-size: 15px;
  }
  #bbq .inner .list {
    margin-top: 40px;
  }
  #bbq .inner .list .block .menu {
    flex-direction: column;
  }
  #bbq .inner .list .block .menu .img {
    width: 100%;
  }
  #bbq .inner .list .block .menu .txt {
    width: 100%;
    padding: 20px;
  }
  #bbq .inner .list .block .menu .txt h3 {
    font-size: 18px;
  }
  #bbq .inner .list .block .menu .txt .desc {
    font-size: 14px;
  }
  #bbq .inner .list .block .menu .txt dl dt {
    font-size: 12px;
  }
  #bbq .inner .list .block .menu .txt dl dd {
    font-size: 15px;
  }
  #bbq .inner .list .block .shop {
    flex-direction: column;
    padding: 20px;
  }
  #bbq .inner .list .block .shop .img {
    width: 100%;
  }
  #bbq .inner .list .block .shop .txt {
    width: 100%;
    padding: 20px 0 0;
  }
  #bbq .inner .list .block .shop .txt .desc {
    font-size: 15px;
  }
  #bbq .inner .stamp_rally {
    border-radius: 20px;
    padding: 20px;
  }
  #bbq .inner .stamp_rally .catch {
    font-size: 16px;
  }
  #bbq .inner .stamp_rally h3 {
    font-size: min(26px, 6.8vw);
    margin-bottom: 20px;
  }
  #bbq .inner .stamp_rally .row {
    gap: 20px;
  }
  #bbq .inner .stamp_rally .row .txt .desc {
    font-size: 15px;
  }
  #bbq .inner .stamp_rally .row .txt .desc strong {
    font-size: 120%;
  }
  #bbq .inner .stamp_rally .row .txt .btn a {
    line-height: 1.5;
    font-size: 16px;
    padding: 15px 20px;
  }
  #bbq .inner .stamp_rally .row .txt .coming {
    font-size: 18px;
    margin-top: 10px;
  }
  #contact {
    padding: 50px 0;
    background-size: 800px;
  }
  #contact .inner .desc {
    font-size: 15px;
  }
  #contact .inner .form_area {
    margin-top: 30px;
    padding: 10px 0;
    border-radius: 20px;
  }
  #contact .inner .form_area iframe {
    height: 500px;
  }
}/*# sourceMappingURL=style.css.map */