#sec_01 {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: url(../img/main/sec_01_background.png) no-repeat center / cover;
}

#sec_01 .wrap {
  width: 1200px;
  height: 820px;
  background: url(../img/main/sec_01_item_01.png) no-repeat center / 100% 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#sec_01 .wrap .inner {
  width: auto;
  height: auto;
  text-align: center;
}

#sec_01 .wrap .inner h2 {
  font-family: "G_B";
  font-weight: bold;
  font-size: 30px;
  color: #FBF5E9;
  margin-bottom: 20px;
}

#sec_01 .wrap .inner h3 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 80px;
  color: #fff;
  text-shadow: 0px 2px 5px #000;
  margin-bottom: 20px;
}

#sec_01 .wrap .inner h3 span {
  color: #CCE2A3;
}

#sec_01 .wrap .inner h4 {
  font-family: "EM_L";
  font-weight: 100;
  font-size: 20px;
  color: #FBF5E9;
  margin-bottom: 10px;
}

#sec_01 .wrap .inner img {
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

#line {
  width: 100%;
  height: 80px;
  background: url(../img/main/line.png) no-repeat center / cover;
}

#line .item {
  width: 100%;
  height: 100%;
  background: url(../img/main/line_item.png) repeat-x left / cover;
  animation: line 30s linear infinite;
}

@keyframes line {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2348px 0;
  }
}

#sec_02 {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/main/sec_02_backgroun_01.png) no-repeat center / cover;
  position: relative;
  flex-wrap: wrap;
}

#sec_02 h2 {
  font-family: "EM_M";
  font-weight: normal;
  font-size: 50px;
  color: #fff;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

#sec_02 h2 span {
  font-family: "EM_B";
  font-weight: bold;
}

#sec_02 .wrap {
  width: 100%;
  max-width: 450px;
  height: 100%;
  max-height: 450px;
  background: url(../img/main/sec_02_backgroun_02.png) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 0;
  overflow: hidden;
  border-radius: 50%;
}

#sec_02 .wrap .inner {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_02 .wrap .inner .t_box {
  width: 50%;
  height: 100%;
  display: flex;
} 

#sec_02 .wrap .inner .t_box_1 {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}

#sec_02 .wrap .inner .t_box_2 {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: right;
}

#sec_02 .wrap .inner .t_box h2 {
  font-family: "EM_M";
  font-weight: normal;
  font-size: 30px;
  color: #FBF5E9;
}

#sec_02 .wrap .inner .t_box h3 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 60px;
  color: #FBF5E9;
}

#sec_02 .point {
  width: 450px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

#sec_02 .point2 {
  z-index: 2;
  animation: point 3s infinite ease-in-out;
}

@keyframes point {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

#sec_03 {
  width: 100%;
  height: 100vh;
  background: url(../img/main/sec_03_backgorund.png) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_03 .wrap {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: url(../img/main/sec_03_item_08.png) no-repeat center / cover;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-top: 100px;
}

#sec_03 .wrap h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 60px;
  color: #005B3E;
  margin-bottom: 20px;
  text-shadow: 0px 1px 1px #000;
}

#sec_03 .wrap h3 {
  font-family: "EM_L";
  font-weight: 100;
  font-size: 30px;
  color: #343434;
  margin-bottom: 50px;
}

#sec_03 .wrap .inner {
  width: 1100px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec_03 .wrap .inner .box {
  width: auto;
  height: auto;
  position: relative;
}

#sec_03 .wrap .inner .box img {
  width: auto;
  height: auto;
}

#sec_03 .wrap .inner .box .active {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}

#sec_03 .wrap .inner .box:hover .active {
  opacity: 1;
}

#sec_03 .wrap .food {
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 3;
}

#sec_04 {
  width: 100%;
  height: 100vh;
  background: url(../img/main/sec_04_background.png) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#sec_04 .wrap {
  width: 100%;
  max-width: 1550px;
  height: auto;
}

#sec_04 .wrap .top {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 75px;
}

#sec_04 .wrap .top img {
  width: auto;
  height: auto;
}

#sec_04 .wrap .top h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #005B3E;
  text-shadow: 0px 1px 1px #000;
  text-align: right;
}

#sec_04 .wrap .top h2 span {
  color: #CCE2A3;
}

#sec_04 .wrap .bottom {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec_04 .wrap .bottom .box {
  width: 350px;
  height: 460px;
  padding: 20px;
  background: url(../img/main/sec_04_item_02.png) no-repeat center / cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#sec_04 .wrap .bottom .box_w {
  background: url(../img/main/sec_04_item_03.png) no-repeat center / cover;
  border: 3px solid #005B3E;
}

#sec_04 .wrap .bottom .box h3 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 60px;
  color: #FBF5E9;
  text-align: left;
}

#sec_04 .wrap .bottom .box p {
  font-family: "EM_L";
  font-weight: 100;
  font-size: 20px;
  color: #FBF5E9;
  text-align: right;
}

#sec_04 .wrap .bottom .box_w h3 {
  color: #005B3E;
}

#sec_04 .wrap .bottom .box_w p {
  color: #343434;
}

#sec_04 .food {
  position: absolute;
  width: 32%;
  height: auto;
  left: 0;
  top: 0;
}

#sec_05 {
  width: 100%;
  height: auto;
  background: url(../img/main/sec_05_background.png) no-repeat center / cover;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

#sec_05 img {
  display: block;
}

#sec_05 .title {
  width: auto;
  height: auto;
  margin: 0 auto 20px;
}

#sec_05 h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #FBF5E9;
  margin-bottom: 90px;
}

#sec_05 h2 span {
  color: #C8AB86;
}

#sec_05 .bubble {
  width: 1300px;
  height: 255px;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

#sec_05 .bubble img {
  position: absolute;
  width: auto;
  height: auto;
}

#sec_05 .bubble .bubble_1 {
  left: 0;
  top: 0;
  animation: bubble_1 0.6s infinite ease-in;
}

#sec_05 .bubble .bubble_2 {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  animation: bubble_2 1s infinite ease-in;
}

#sec_05 .bubble .bubble_3 {
  right: 0;
  top: 0;
  animation: bubble_1 0.8s infinite ease-in;
}

@keyframes bubble_1 {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes bubble_2 {
  0% {
    transform: translate(-50%, 0%);
  }
  50% {
    transform: translate(-50%, 5%)
  }
  100% {
    transform: translate(-50%, 0%);
  }
}

#sec_05 .box {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

#sec_05 .box img {
  width: auto;
  height: auto;
  cursor: pointer;
}

#img_line {
  width: 100%;
  height: 250px;
}

#img_line .item {
  width: 100%;
  height: 100%;
  background: url(../img/main/img_line.png) repeat-x left / cover;
  animation: line 30s linear infinite;
}

#sec_06 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background: url(../img/main/sec_06_background.png) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_06 .wrap {
  width: 100%;
  max-width: 1720px;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#sec_06 .wrap .box {
  width: 500px;
  height: 100%;
  display: flex;
  justify-content: center;
}

#sec_06 .wrap .box img {
  width: 100%;
  height: auto;
}

#sec_06 .wrap .box_1 {
  align-items: flex-end;
  animation: circle 3s infinite ease-in-out;
}

#sec_06 .wrap .box_2 {
  align-items: flex-start;
  animation: circle 5s infinite ease-in-out;
}

#sec_06 .wrap .box_3 {
  align-items: center;
  animation: circle 4s infinite ease-in-out;
}

#sec_06 .wrap h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 80px;
  color: #343434;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

#sec_06 .wrap h2 span {
  color: #005B3E;
}

@keyframes circle {
  0% {
    transform: translateY(0%);
  }
  35% {
    transform: translateY(5%);
  }
  70% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(0%);
  }
}

#sec_07 {
  width: 100%;
  height: auto;
  background: url(../img/main/sec_07_background.png) no-repeat center / cover;
  padding: 100px 0;
  text-align: center;
}

#sec_07 h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #fff;
  text-shadow: 0px 1px 1px #000;
  margin-bottom: 30px;
}

#sec_07 h2 span {
  color: #FBF5E9;
}

#sec_07 .count_wrap {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 100px;
  color: #fff;
  margin-bottom: 30px;
}

#sec_07 .count_wrap span {
  color: #FBF5E9;
}

#sec_07 .box {
  width: 600px;
  height: auto;
  padding: 25px 0;
  margin: 0 auto;
  border-radius: 100px;
  background: #FBF5E9;
  border: 1px solid #db0000;
  text-align: center;
}

#sec_07 .box h3 {
  font-family: "EM_M";
  font-weight: normal;
  font-size: 30px;
  color: #576535;
}

#sec_07 .box h4 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #db0000;
}

#sec_08 {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FBF5E9;
}

#sec_08 .box {
  width: 33.3333%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 50px;
  transition: all 0.3s;
  overflow: hidden;
}

#sec_08 .box:hover {
  overflow: unset;
  position: unset;
  background: rgba(000,000,000,0.3);
}

#sec_08 .box:hover img {
  z-index: -1;
}

/* #sec_08:hover .box:not(:hover) img {
  width: 0;
  transition: width 3s;
} */

#sec_08 .box h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #FBF5E9;
}

#sec_08 .box h2 span {
  font-family: "EM_L";
  font-weight: 100;
  font-size: 30px;
  color: #FBF5E9;
  transition: all 0.3s;
  width: 100%;
  margin-top: 30px;
  display: none;
}

#sec_08 .box:hover h2 span {
  display: block;
}

#sec_08 .box img {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  transition: all 0.3s;
  object-fit: cover;
}

#sec_08 .box_2 {
  border-left: 3px solid #FBF5E9;
  border-right: 3px solid #FBF5E9;
}

#sec_08 .item {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  cursor: none;
  pointer-events: none;
}

#sec_09 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background: url(../img/main/sec_09_background.png) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#sec_09 .wrap {
  width: 100%;
  max-width: 1660px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E9D4BA;
}

#sec_09 .wrap .box {
  width: 100%;
  max-width: 43%;
  height: 720px;
  background: url(../img/main/sec_09_item_01.png) no-repeat center / cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#sec_09 .wrap .box .t_box {
  width: 100%;
  height: auto;
  padding: 50px;
  background: #C8AB86;
}

#sec_09 .wrap .box .t_box h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #FBF5E9;
  margin-bottom: 25px;
}

#sec_09 .wrap .box .t_box p {
  font-family: "EM_L";
  font-weight: 100;
  font-size: 25px;
  color: #fff;
}

#sec_09 .wrap .slide {
  width: 100%;
  max-width: 57.3%;
  height: auto;
}

#sec_09 .wrap .slide img {
  width: auto;
  height: auto;
  max-width: 510px;
  margin: 0 15px;
}

#sec_10 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 100px 0;
  background: #005B3E;
}

#sec_10 .wrap {
  width: 100%;
  max-width: 80%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#sec_10 .wrap h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #FBF5E9;
  margin-right: 190px;
  white-space: nowrap;
}

#sec_10 .wrap h2 span {
  color: #C8AB86;
}

#sec_10 .wrap .item {
  width: 100%;
  max-width: 55%;
  height: 116px;
  background: url(../img/main/sec_10_item_02.png) repeat-x left / cover;
  animation: line 20s linear infinite;
}

#sec_10 .food {
  position: absolute;
  width: 27%;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  left: -150px;
}

#sec_11 {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 100px;
}

#sec_11 .left_box {
  width: 100%;
  max-width: 60%;
  height: 820px;
  background: url(../img/main/sec_11_background_01.png) no-repeat center / cover;
  padding: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#sec_11 .left_box .box {
  width: 100%;
  height: auto;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.8);
}

#sec_11 .left_box .box img {
  width: auto;
  height: auto;
}

#sec_11 .right_box {
  width: 100%;
  max-width: 50%;
  height: 820px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 100px;
  background: url(../img/main/sec_11_background_02.png) no-repeat center / cover;
}

#sec_11 .right_box h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #C8AB86;
  margin-bottom: 100px;
}

#sec_11 .right_box h2 span {
  color: #343434;
}

#sec_11 .right_box .box {
  width: 100%;
  height: auto;
  padding: 50px;
  border-radius: 50px;
  background: rgba(165,120,57,0.5);
  text-align: center;
}

#sec_11 .right_box .box h3 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #FBF5E9;
  margin-bottom: 25px;
}

#sec_11 .right_box .box h3 span:first-of-type {
  color: #343434;
}

#sec_11 .right_box .box h3 span:last-of-type {
  color: #db0000;
}

#sec_11 .right_box .box p {
  font-family: "EM_L";
  font-weight: 100;
  font-size: 30px;
  color: #343434;
}

#sec_12 {
  width: 100%;
  height: auto;
  padding: 150px 0;
  text-align: center;
}

#sec_12 h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #343434;
  margin-bottom: 100px;
}

#sec_12 h2 span {
  color: #A57839;
}

#sec_12 img {
  width: auto;
  height: auto;
}

#sec_plus_1 {
  width: 100%;
  height: auto;
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBF5E9;
}

#sec_plus_1 h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #005B3E;
}

#sec_plus_1 h2 span {
  position: relative;
  z-index: 2;
}

#sec_plus_1 h2 span::after {
  content: "";
  width: 105%;
  height: 105%;
  background: #CCE2A3;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#sec_plus_2 {
  width: 100%;
  height: auto;
  background: url(../img/main/sec_plus_2_background.png) no-repeat center / cover;
  padding: 100px 0;
  text-align: center;
}

#sec_plus_2 h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 30px;
  color: #005B3E;
  margin-bottom: 10px;
}

#sec_plus_2 h2 span {
  color: #db0000;
}

#sec_plus_2 h3 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #005B3E;
  margin-bottom: 50px;
}

#sec_plus_2 h3 span {
  color: #db0000;
}

#sec_plus_2 .wrap {
  width: 100%;
  max-width: 1400px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  display: flex;
  margin: 0 auto;
}

#sec_plus_2 .wrap .box {
  width: auto;
  height: auto;
  position: relative;
  z-index: 2;
}

#sec_plus_2 .wrap .box img {
  width: auto;
  height: auto;
}

#sec_plus_2 .wrap .box img.item {
  position: absolute;
}

#sec_plus_2 .wrap .box1 img.item {
  top: -12%;
  left: -14%;
}

#sec_plus_2 .wrap .box2 img.item {
  top: 0;
  right: -5%;
}

#sec_plus_2 .wrap .box3 img.item {
  top: 6%;
  right: 5%;
}

#sec_plus_2 .wrap .box4 img.item {
  right: 0px;
  bottom: 7.5%;
}

#sec_plus_2 .wrap .box5 img.item {
  top: 24%;
  left: 4%;
}

#sec_plus_2 .wrap .box6 img.item {
  top: -10%;
  right: -11%;
  z-index: -1;
}

#sec_plus_3 {
  width: 100%;
  height: auto;
  padding: 25px 0;
  background: #005B3E;
  text-align: center;
}

#sec_plus_3 h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 55px;
  color: #fff;
  margin-bottom: 10px;
}

#sec_plus_3 h2 span {
  position: relative;
  z-index: 2;
}

#sec_plus_3 h2 span::after {
  content: "";
  width: 103%;
  height: 103%;
  background: #db0000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#sec_plus_3 h3 {
  font-family: "EM_M";
  font-weight: normal;
  font-size: 35px;
  color: #fff;
}

#sec_plus_4 {
  width: 100%;
  height: auto;
  background: url(../img/main/sec_plus_4_bg.gif) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_plus_4 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FCF7EF;
  text-align: center;
}

#sec_plus_4 .wrap h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 90px;
  color: #005B3E;
  margin-bottom: 60px;
}

#sec_plus_4 .wrap .box_1 {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  margin-bottom: 70px;
}

#sec_plus_4 .wrap .box_1 img {
  width: auto;
  height: auto;
}

#sec_plus_4 .wrap .box_2 {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

#sec_plus_4 .wrap .box_2 img {
  width: auto;
  height: auto;
}

#sec_plus_4 .wrap .box_2 h3 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 60px;
  color: #005B3E;
  margin-bottom: 20px;
}

#sec_plus_4 .wrap .box_2 h4 {
  font-family: "EM_L";
  font-weight: 100;
  font-size: 60px;
  color: #005B3E;
}

#sec_plus_5 {
  width: 100%;
  height: auto;
  background: url(../img/main/sec_plus_5_background.png) no-repeat center / cover;
  text-align: center;
  padding-bottom: 100px;
}

#sec_plus_5 h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 70px;
  background: #005B3E;
  padding: 30px 50px;
  margin: 0 auto 50px;
  color: #fff;
  width: fit-content;
  height: auto;
  border-radius: 0 0 20px 20px;
}

#sec_plus_5 h2 span {
  color: #FBE58F;
}

#sec_plus_5 .wrap {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}

#sec_plus_5 .wrap img {
  width: auto;
  height: auto;
}

#sec_plus_6 {
  width: 100%;
  height: auto;
  background: url(../img/main/sec_plus_6_background.png) no-repeat center / cover;
  padding: 100px 0;
}

#sec_plus_6 h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #343434;
  text-align: center;
  margin-bottom: 50px;
}

#sec_plus_6 h2 span {
  color: #005B3E;
}

#sec_plus_6 form {
  width: 100%;
  max-width: 1400px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #005B3E;
  margin: 0 auto;
}

#sec_plus_6 form h3 {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 25px 0;
  font-family: "EM_L";
  font-weight: 100;
  font-size: 40px;
  color: #fff;
  background: #005B3E;
}

#sec_plus_6 form h3 span {
  padding: 5px;
  display: inline-block;
  background: #db0000;
  font-family: "EM_B";
  font-weight: bold;
}

#sec_plus_6 form .wrap {
  width: 100%;
  height: auto;
  padding: 50px 100px;
}

#sec_plus_6 form .wrap label {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "EM_M";
  font-weight: normal;
  font-size: 36px;
  color: #005B3E;
  margin-bottom: 20px;
}

#sec_plus_6 form .wrap label input,
#sec_plus_6 form .wrap label select {
  width: 100%;
  max-width: 850px;
  height: 70px;
  padding: 0 10px;
  border: 1px solid #005B3E;
  background: #fff;
  font-family: "EM_M";
  font-weight: normal;
  color: #343434;
}

#sec_plus_6 form .wrap .agree_box {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 50px;
}

#sec_plus_6 form .wrap .agree_box input {
  width: 20px;
  height: 20px;
  margin: 0;
}

#sec_plus_6 form .wrap .agree_box  label {
  font-family: "EM_M";
  font-weight: normal;
  font-size: 20px;
  color: #005B3E;
  width: fit-content;
  margin: 0;
}

#sec_plus_6 form .wrap input[type="submit"] {
  width: 100%;
  max-width: 250px;
  height: 50px;
  background: #005B3E;
  color: #fff;
  font-family: "EM_B";
  font-weight: bold;
  font-size: 36px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  #sec_04 .wrap {
    max-width: 90%;
  }

  #sec_04 .wrap .top img {
    width: 450px;
  }

  #sec_04 .wrap .bottom .box {
    width: 24%;
  }

  #sec_06 .wrap {
    max-width: 90%;
  }

  #sec_06 .wrap .box {
    width: 30%;
  }

  #sec_11 .left_box .box img {
    width: 70%;
  }

  #sec_11 .right_box h2 {
    font-size: 42px;
  }

  #sec_11 .right_box .box h3 {
    font-size: 36px;
  }

  #sec_11 .right_box .box p {
    font-size: 24px;
  }

  #sec_11 .right_box .box p br {
    display: none;
  }
}

@media (max-width: 1400px) {
  #sec_02 .wrap .inner .t_box h2 {
    font-size: 24px;
  }

  #sec_02 .wrap .inner .t_box h3 {
    font-size: 48px;
  }

  #sec_02 .wrap .inner {
    max-width: 90%;
  }

  #sec_04 .wrap .top img {
    width: 400px;
  }

  #sec_04 .wrap .top h2 {
    font-size: 42px;
  }

  #sec_04 .wrap .bottom {
    flex-wrap: wrap;
  }

  #sec_04 .wrap .bottom .box {
    width: 49%;
    margin-bottom: 2%;
  }

  #sec_04 .wrap .bottom .box:nth-of-type(n+3) {
    margin-bottom: 0;
  }

  #sec_04 {
    height: auto;
    padding: 50px 0;
  }

  #sec_05 .title {
    width: 500px;
  }

  #sec_05 h2 {
    font-size: 42px;
  }

  #sec_05 .bubble img {
    width: 200px;
  }

  #sec_05 .bubble {
    width: 1000px;
    height: 200px;
  }

  #sec_05 .box {
    max-width: 90%;
  }

  #sec_05 .box a {
    display: block;
    width: 48%;
    height: auto;
  }

  #sec_05 .box a img {
    width: 100%;
  }

  #sec_06 .wrap h2 {
    font-size: 62px;
  }

  #sec_06 .wrap {
    height: 570px;
  }

  #sec_07 h2 {
    font-size: 36px;
  }

  #sec_08 .box h2 {
    font-size: 42px;
  }

  #sec_08 .box h2 span {
    font-size: 24px;
  }

  #sec_08 .item {
    width: 300px;
  }

  #sec_10 .wrap {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  #sec_10 .wrap h2 {
    margin: 0;
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
  }

  #sec_10 .wrap .item {
    max-width: 100%;
    height: 150px;
  }

  #sec_10 .food {
    top: 0;
    transform: unset;
  }

  #sec_11 .left_box {
    height: 700px;
  }

  #sec_11 .right_box {
    height: 700px;
  }

  #sec_11 .right_box h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  #sec_11 .right_box .box h3 {
    font-size: 24px;
  }

  #sec_11 .right_box .box p {
    font-size: 18px;
  }

  #sec_11 .right_box .box {
    border-radius: 30px;
  }

  #sec_12 img {
    width: 90%;
  }

  #sec_plus_4 .wrap {
    max-width: 90%;
  }

  #sec_plus_4 .wrap h2 {
    font-size: 62px;
    margin-bottom: 50px;
  }

  #sec_plus_4 .wrap .box_1 img {
    width: 400px;
  }

  #sec_plus_4 .wrap .box_1 {
    gap: 50px;
    margin-bottom: 50px;
  }

  #sec_plus_4 .wrap .box_2 img {
    width: 200px;
  }

  #sec_plus_4 .wrap .box_2 h3 {
    font-size: 36px;
  }

  #sec_plus_4 .wrap .box_2 h4 {
    font-size: 28px;
  }

  #sec_plus_5 .wrap {
    flex-wrap: wrap;
  }

  #sec_plus_6 form {
    max-width: 90%;
  }

  #sec_plus_6 form .wrap label input, #sec_plus_6 form .wrap label select {
    max-width: 75%;
  }
}

@media (max-width: 1200px) {
  #sec_01 .wrap {
    width: 900px;
    height: 615px;
  }

  #sec_01 .wrap .inner img {
    width: 400px;
  }

  #sec_01 .wrap .inner h2 {
    font-size: 24px;
  }

  #sec_01 .wrap .inner h3 {
    font-size: 62px;
  }

  #sec_01 .wrap .inner h4 {
    font-size: 18px;
  }

  #sec_02 .point {
    width: 350px;
  }

  #sec_02 .wrap {
    max-width: 350px;
    max-height: 350px;
  }  

  #sec_02 .wrap .inner .t_box h2 {
    font-size: 20px;
  }

  #sec_02 .wrap .inner .t_box h3 {
    font-size: 36px;
  }

  #sec_02 h2 {
    font-size: 32px;
    top: 15%;
  }

  #sec_03 .wrap h2 {
    font-size: 48px;
  }

  #sec_03 .wrap h3 {
    font-size: 24px;
  }

  #sec_03 .wrap .inner .box img {
    width: 250px;
  }

  #sec_03 .wrap .inner {
    width: 800px;
  }

  #sec_03 .wrap {
    max-width: 90%;
  }

  #sec_05 .title {
    width: 400px;
  }

  #sec_05 h2 {
    font-size: 36px;
  }

  #sec_05 .bubble img {
    width: 160px;
  }

  #sec_05 .bubble {
    width: 900px;
    height: 175px;
  }

  #img_line {
    height: 200px;
  }

  #sec_08 .box h2 {
    font-size: 32px;
  }

  #sec_08 .box h2 span {
    font-size: 20px;
  }

  #sec_09 .wrap .box .t_box h2 {
    font-size: 32px;
  }

  #sec_09 .wrap .box .t_box p {
    font-size: 20px;
  }

  #sec_10 .food {
    width: 35%;
  }

  #sec_11 .left_box {
    max-width: 100%;
    height: auto;
  }

  #sec_11 .right_box {
    position: unset;
    max-width: 100%;
    height: auto;
    padding: 50px;
  }

  #sec_11 .right_box .box {
    text-align: right;
  }

  #sec_11 .right_box .box p br {
    display: block;
  }

  #sec_11 .left_box .box img {
    width: 80%;
  }

  #sec_11 {
    padding-bottom: 0;
  }

  #sec_12 h2 {
    font-size: 42px;
    margin-bottom: 50px;
  }

  #sec_plus_2 h2 {
    font-size: 24px;
  }

  #sec_plus_2 h3 {
    font-size: 42px;
  }

  #sec_plus_2 .wrap .box img {
    width: 300px;
  }

  #sec_plus_2 .wrap .box1 img.item {
    width: 45%;
  }

  #sec_plus_2 .wrap .box2 img.item {
    width: 25%;
  }

  #sec_plus_2 .wrap .box3 img.item {
    width: 20%;
  }

  #sec_plus_2 .wrap .box4 img.item {
    width: 20%;
  }

  #sec_plus_2 .wrap .box5 img.item {
    width: 23%;
  }

  #sec_plus_2 .wrap .box6 img.item {
    width: 48%;
  }

  #sec_plus_3 h2 {
    font-size: 42px;
  }

  #sec_plus_4 .wrap h2 {
    font-size: 42px;
  }

  #sec_plus_4 .wrap .box_1 img {
    width: 100%;
  }

  #sec_plus_4 .wrap .box_1 {
    max-width: 300px;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto 50px;
  }

  #sec_plus_4 .wrap .box_2 img {
    width: 150px;
  }

  #sec_plus_4 .wrap .box_2 h3 {
    font-size: 24px;
  }

  #sec_plus_4 .wrap .box_2 h4 {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  #sec_01 .wrap {
    width: 100%;
    background-size: cover;
  }

  #line {
    height: 50px;
  }

  #sec_02 {
    height: 700px;
  }

  #sec_02 h2 {
    top: 10%;
  }

  #sec_03 .wrap h2 {
    font-size: 36px;
  }

  #sec_03 .wrap h3 {
    font-size: 20px;
  }

  #sec_03 .wrap .inner .box img {
    width: 200px;
  }

  #sec_03 .wrap .inner {
    width: 620px;
  }

  #sec_03 .wrap .food {
    width: 450px;
  }

  #sec_03 {
    height: 650px;
  }

  #sec_04 .food {
    width: 42%;
  }

  #sec_04 .wrap .top img {
    width: 300px;
  }

  #sec_04 .wrap .top h2 {
    font-size: 28px;
  }

  #sec_04 .wrap .bottom .box p {
    font-size: 18px;
  }

  #sec_04 .wrap .bottom .box h3 {
    font-size: 42px;
  }

  #sec_04 .wrap .bottom .box {
    height: 350px;
  }

  #sec_05 .bubble .bubble_1 {
    top: unset;
    bottom: 0;
  }

  #sec_05 .bubble .bubble_3 {
    top: unset;
    bottom: 0;
  }

  #sec_05 .bubble {
    width: 90%;
  }

  #sec_06 .wrap {
    height: 450px;
  }

  #sec_06 .wrap h2 {
    font-size: 48px;
    white-space: nowrap;
  }

  #sec_07 .count_wrap {
    font-size: 70px;
  }

  #sec_08 {
    height: auto;
  }

  #sec_08 .box {
    width: 100%;
    height: 300px;
  }

  #sec_08 {
    flex-wrap: wrap;
  }

  #sec_08 .box_2 {
    border-left: 0;
    border-right: 0;
    border-top: 3px solid #FBF5E9;
    border-bottom: 3px solid #FBF5E9;
  }

  #sec_08 .box img {
    height: 100%;
  }

  #sec_08 .item {
    width: 200px;
    right: 10%;
    transform: unset;
    left: unset;
  }

  #sec_09 .wrap {
    flex-wrap: wrap;
    padding: 50px 0;
  }

  #sec_09 .wrap .box {
    height: 400px;
    max-width: 100%;
  }

  #sec_09 .wrap .box .t_box {
    padding: 30px;
  }

  #sec_09 .wrap .box .t_box h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  #sec_09 .wrap .box .t_box p {
    font-size: 18px;
  }

  #sec_09 .wrap .slide {
    max-width: 100%;
  }

  #sec_09 {
    padding: 50px 0;
  }

  #sec_12 {
    padding: 100px 0;
  }

  #sec_plus_2 h2 {
    font-size: 20px;
  }

  #sec_plus_2 h3 {
    font-size: 32px;
  }

  #sec_plus_2 .wrap .box img {
    width: 200px;
  }

  #sec_plus_4 .wrap h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  #sec_plus_4 .wrap .box_2 {
    gap: 30px;
    flex-wrap: wrap;
  }

  #sec_plus_4 .wrap .box_2 img {
    width: 150px;
    order: 1;
  }

  #sec_plus_4 .wrap .box_2 .inner {
    width: 100%;
  }

  #sec_plus_5 h2 {
    font-size: 36px;
  }

  #sec_plus_5 .wrap {
    gap: 30px;
  }

  #sec_plus_5 .wrap img {
    width: 90%;
  }

  #sec_plus_6 h2 {
    font-size: 36px;
  }

  #sec_plus_6 form h3 {
    font-size: 24px;
  }

  #sec_plus_6 form .wrap {
    padding: 50px;
  }

  #sec_plus_6 form .wrap label {
    font-size: 20px;
  }

  #sec_plus_6 form .wrap label input, #sec_plus_6 form .wrap label select {
    height: 40px;
  }

  #sec_plus_6 form .wrap .agree_box label {
    font-size: 16px;
  }

  #sec_plus_6 form .wrap input[type="submit"] {
    max-width: 200px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 700px) {
  #sec_02 .wrap {
    padding: 50px 0;
  }

  #sec_03 .wrap .inner {
    width: 450px;
    flex-wrap: wrap;
    justify-content: center;
  }

  #sec_03 .wrap .inner .box:first-of-type {
    margin-right: 30px;
  }

  #sec_03 {
    height: 850px;
  }

  #sec_04 .wrap .top {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

  #sec_04 .wrap .top h2 {
    width: 100%;
    margin-top: 20px;
  }

  #sec_04 .wrap .bottom .box p {
    font-size: 16px;
  }

  #sec_04 .wrap .bottom .box h3 {
    font-size: 36px;
  }

  #sec_05 .title {
    width: 300px;
  }

  #sec_05 h2 {
    font-size: 28px;
  }

  #sec_05 .bubble img {
    width: 30%;
  }

  #sec_05 .box {
    flex-wrap: wrap;
  }

  #sec_05 .box a {
    width: 100%;
  }

  #sec_05 .box a:first-of-type {
    margin-bottom: 30px;
  }

  #sec_06 .wrap {
    flex-wrap: wrap;
    height: auto;
  }

  #sec_06 .wrap .box {
    width: 32%;
    order: 1;
  }

  #sec_06 .wrap .box_1 {
    align-items: center;
    justify-content: flex-end;
  }

  #sec_06 .wrap .box_2 {
    align-items: center;
    justify-content: flex-start;
  }

  #sec_06 .wrap .box_3 {
    align-items: center;
    justify-content: flex-end;
  }

  #sec_06 .wrap h2 {
    width: 100%;
    position: unset;
    transform: unset;
    margin: 0 auto 30px;
  }

  #sec_07 h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  #sec_07 .count_wrap {
    font-size: 42px;
  }

  #sec_07 .box {
    width: 90%;
  }

  #sec_07 .box h3 {
    font-size: 20px;
  }

  #sec_07 .box h4 {
    font-size: 36px;
  }

  #sec_08 .box {
    padding: 30px;
  }

  #sec_08 .box h2 {
    font-size: 28px;
  }

  #sec_08 .box h2 span {
    font-size: 18px;
  }

  #sec_08 .item {
    width: 150px;
  }

  #sec_10 .wrap h2 {
    font-size: 36px;
  }

  #sec_10 .food {
    left: -12%;
  }

  #sec_11 .right_box h2 {
    font-size: 28px;
  }

  #sec_11 .right_box .box h3 {
    font-size: 20px;
  }

  #sec_12 h2 {
    font-size: 28px;
  }

  #sec_plus_1 h2 {
    font-size: 36px;
  }

  #sec_plus_3 h2 {
    font-size: 36px;
  }

  #sec_plus_3 h3 {
    font-size: 24px;
  }

  #sec_plus_4 .wrap h2 {
    font-size: 30px;
  }

  #sec_plus_4 .wrap .box_1 {
    max-width: 300px;
  }

  #sec_plus_4 .wrap .box_2 h3 {
    font-size: 20px;
  }

  #sec_plus_4 .wrap .box_2 h4 {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  #sec_01 .wrap .inner h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  #sec_01 .wrap .inner h3 {
    font-size: 48px;
    margin-bottom: 10px;
  }

  #sec_01 .wrap .inner h4 {
    font-size: 14px;
  }

  #sec_01 .wrap .inner img {
    width: 90%;
  }

  #line {
    height: 40px;
  }

  #sec_02 .point {
    width: 250px;
  }

  #sec_02 .wrap {
    max-width: 250px;
    max-height: 250px;
  }  

  #sec_02 .wrap .inner {
    flex-wrap: wrap;
  }

  #sec_02 .wrap .inner .t_box {
    width: 100%;
    height: 50%;
  }

  #sec_02 .wrap .inner .t_box_1 {
    align-items: flex-start;
    justify-content: flex-start;
  }

  #sec_02 .wrap .inner .t_box_2 {
    align-items: flex-end;
    justify-content: flex-end;
  }

  #sec_02 {
    height: 600px;
  }

  #sec_02 .wrap .inner .t_box h2 {
    font-size: 18px;
  }

  #sec_02 .wrap .inner .t_box h3 {
    font-size: 28px;
  }

  #sec_02 h2 {
    font-size: 20px;
    top: 90px;
  }

  #sec_03 .wrap {
    padding-top: 50px;
  }

  #sec_03 .wrap h2 {
    font-size: 28px;
  }

  #sec_03 .wrap h3 {
    font-size: 16px;
  }

  #sec_03 .wrap .inner {
    width: 350px;
  }

  #sec_03 .wrap .inner .box img {
    width: 160px;
  }

  #sec_03 .wrap .food {
    width: 350px;
  }

  #sec_03 {
    height: 650px;
  }

  #sec_04 .wrap .top img {
    width: 200px;
  }

  #sec_04 .wrap .top h2 {
    font-size: 24px;
  }

  #sec_04 .wrap .bottom .box {
    width: 100%;
    margin-bottom: 0;
    margin-top: 10px;
    height: 250px;
  }

  #sec_04 .wrap .bottom .box:first-of-type {
    margin-top: 0;
  }

  #sec_05 .title {
    width: 250px;
  }

  #sec_05 h2 {
    font-size: 20px;
  }

  #sec_05 {
    padding: 50px 0;
  }

  #sec_05 .bubble {
    height: 85px;
  }

  #img_line {
    height: 150px;
  }

  #sec_06 .wrap h2 {
    font-size: 32px;
  }

  #sec_06 .wrap {
    justify-content: center;
  }

  #sec_06 .wrap .box {
    width: 49%;
  }
  
  #sec_06 .wrap .box:first-of-type {
    margin-right: 2%;
  }

  #sec_07 h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  #sec_07 .box h3 {
    font-size: 16px;
  }

  #sec_07 .box h4 {
    font-size: 24px;
  }

  #sec_07 .box {
    padding: 15px 0;
  }

  #sec_08 .box h2 {
    font-size: 20px;
  }

  #sec_08 .box h2 span {
    font-size: 16px;
    margin-top: 15px;
  }

  #sec_08 .item {
    width: 100px;
  }

  #sec_08 .box {
    height: 200px;
  }

  #sec_10 .wrap h2 {
    font-size: 24px;
  }

  #sec_10 .food {
    width: 45%;
  }

  #sec_10 .wrap .item {
    height: 120px;
  }

  #sec_10 {
    padding: 50px 0;
  }

  #sec_11 .left_box {
    padding: 30px;
  }

  #sec_11 .left_box .box {
    padding: 30px 0;
  }

  #sec_11 .right_box h2 {
    font-size: 24px;
  }

  #sec_11 .right_box {
    padding: 30px;
  }

  #sec_11 .right_box .box {
    padding: 30px;
  }

  #sec_11 .right_box .box h3 {
    font-size: 18px;
  }

  #sec_11 .right_box .box p {
    font-size: 16px;
  }

  #sec_11 .right_box .box p br {
    display: none;
  }

  #sec_12 {
    padding: 50px 0;
  }

  #sec_12 h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  #sec_plus_1 h2 {
    font-size: 24px;
  }

  #sec_plus_1 {
    padding: 50px 0;
  }

  #sec_plus_2 h2 {
    font-size: 18px;
  }

  #sec_plus_2 h3 {
    font-size: 24px;
  }

  #sec_plus_2 .wrap {
    gap: 20px;
  }

  #sec_plus_2 .wrap .box img {
    width: 100%;
  }

  #sec_plus_2 .wrap .box {
    width: 40%;
  }

  #sec_plus_3 h2 {
    font-size: 24px;
  }

  #sec_plus_3 h3 {
    font-size: 20px;
  }

  #sec_plus_4 .wrap {
    padding: 50px 0;
  }

  #sec_plus_4 .wrap h2 {
    font-size: 30px;
  }

  #sec_plus_4 .wrap .box_1 {
    max-width: 300px;
  }

  #sec_plus_4 .wrap .box_2 h3 {
    font-size: 20px;
  }

  #sec_plus_4 .wrap .box_2 h4 {
    font-size: 20px;
  }

  #sec_plus_4 .wrap .box_2 img {
    width: 120px;
  }

  #sec_plus_5 h2 {
    font-size: 24px;
    padding: 15px 30px;
  }

  #sec_plus_6 {
    padding: 50px 0;
  }

  #sec_plus_6 h2 {
    font-size: 24px;
  }

  #sec_plus_6 form h3 {
    font-size: 16px;
    padding: 10px;
  }

  #sec_plus_6 form h3 span {
    padding: 2px;
  }

  #sec_plus_6 form .wrap {
    padding: 30px;
  }

  #sec_plus_6 form .wrap label {
    font-size: 14px;
    margin-bottom: 10px;
  }

  #sec_plus_6 form .wrap label input, #sec_plus_6 form .wrap label select {
    height: 25px;
  }

  #sec_plus_6 form .wrap .agree_box input {
    width: 15px;
    height: 15px;
  }

  #sec_plus_6 form .wrap .agree_box label {
    font-size: 12px;
  }

  #sec_plus_6 form .wrap .agree_box {
    margin-bottom: 30px;
  }

  #sec_plus_6 form .wrap input[type="submit"] {
    max-width: 120px;
    height: 30px;
    font-size: 16px;
    border-radius: 5px;
  }
}

@media (max-width: 400px) {
  #sec_02 h2 {
    font-size: 18px;
  }

  #sec_03 .wrap h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  #sec_03 .wrap h3 {
    font-size: 12px;
  }

  #sec_03 .wrap .inner {
    width: 280px;
  }

  #sec_03 .wrap .inner .box:first-of-type {
    margin-right: 15px;
  }

  #sec_03 .wrap .inner .box img {
    width: 130px;
  }

  #sec_03 .wrap .food {
    width: 280px;
  }

  #sec_03 {
    height: 540px;
  }

  #sec_04 .wrap .top img {
    width: 160px;
  }

  #sec_04 .food {
    width: 48%;
  }

  #sec_04 .wrap .top h2 {
    font-size: 20px;
  }

  #sec_04 .wrap .bottom .box p {
    font-size: 14px;
  }

  #sec_04 .wrap .bottom .box h3 {
    font-size: 24px;
  }

  #sec_04 .wrap .bottom .box {
    height: 220px;
  }

  #img_line {
    height: 100px;
  }

  #sec_06 {
    padding: 50px 0;
  }

  #sec_06 .wrap h2 {
    font-size: 24px;
  }

  #sec_07 {
    padding: 50px 0;
  }

  #sec_07 h2 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  #sec_07 .count_wrap {
    font-size: 28px;
  }

  #sec_08 .box h2 {
    font-size: 18px;
  }

  #sec_08 .box h2 span {
    font-size: 14px;
  }

  #sec_09 .wrap .box .t_box h2 {
    font-size: 20px;
  }

  #sec_09 .wrap .box .t_box p {
    font-size: 16px;
  }

  #sec_10 .wrap h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  #sec_10 .wrap .item {
    height: 100px;
  }

  #sec_10 .food {
    width: 40%;
  }

  #sec_11 .left_box .box img {
    width: 90%;
  }

  #sec_11 .right_box h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  #sec_11 .right_box .box h3 {
    font-size: 16px;
  }

  #sec_11 .right_box .box p {
    font-size: 14px;
  }

  #sec_11 .right_box .box {
    border-radius: 10px;
  }

  #sec_plus_1 h2 {
    font-size: 20px;
  }

  #sec_plus_2 {
    padding: 50px 0;
  }

  #sec_plus_2 h2 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  #sec_plus_2 h3 {
    font-size: 18px;
  }

  #sec_plus_3 h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  #sec_plus_3 h3 {
    font-size: 16px;
  }

  #sec_plus_4 .wrap h2 {
    font-size: 30px;
  }

  #sec_plus_4 .wrap .box_1 {
    max-width: 250px;
    margin: 0 auto 30px;
  }

  #sec_plus_4 .wrap .box_2 h3 {
    font-size: 20px;
  }

  #sec_plus_4 .wrap .box_2 h4 {
    font-size: 20px;
  }

  #sec_plus_4 .wrap .box_2 img {
    width: 150px;
  }

  #sec_plus_5 h2 {
    font-size: 18px;
    border-radius: 0 0 10px 10px;
  }

  #sec_plus_5 {
    padding-bottom: 50px;
  }

  #sec_plus_6 h2 {
    font-size: 20px;
  }

  #sec_plus_6 form h3 {
    font-size: 14px;
  }

  #sec_plus_6 form .wrap {
    padding: 20px;
  }

  #sec_plus_6 form .wrap label input, #sec_plus_6 form .wrap label select {
    max-width: 70%;
    padding: 0 5px;
  }

  #sec_plus_6 form .wrap label {
    font-size: 12px;
  }

  #sec_plus_6 form .wrap .agree_box label {
    font-size: 10px;
  }

  #sec_plus_6 form .wrap .agree_box input {
    width: 10px;
    height: 10px;
  }

  #sec_plus_6 form .wrap .agree_box {
    gap: 5px;
  }

  #sec_plus_6 form {
    border-radius: 10px;
  }

  #sec_plus_6 form .wrap input[type="submit"] {
    width: 100%;
    max-width: 100px;
    height: 25px;
    font-size: 14px;
  }
}