#sec_01 {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec_01 .background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  height: 101%;
  transform: translate(-50%, -50%);
  pointer-events: none; 
  display: block;
  object-fit: cover;
  z-index: -1;
}

#sec_01 .slide_t,
#sec_01 .slide_b {
  width: 400px;
  height: 100vh;
  background: url(../img/main/sec_01_item_01.png) repeat-y top / cover;
}

#sec_01 .slide_t {
  animation: top 120s linear infinite;
}

#sec_01 .slide_b {
  animation: bottom 120s linear infinite;
}

@keyframes top {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 0 -1000%;
  }
}

@keyframes bottom {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 0 1000%;
  }
}

#sec_01 .title {
  width: auto;
  height: auto;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

#sec_01 .title h2 {
  font-family: "KM_B";
  font-size: 50px;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0px 4px 2px #000;
}

#sec_01 .title h1 {
  width: auto;
  height: auto;
  margin: 0 auto 10px;
}

#sec_01 .title h1 img {
  width: auto;
  height: auto;
}

#sec_01 .title h3 {
  font-family: "KM_B";
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0px 4px 2px #000;
}

#sec_01 .title p {
  width: 350px;
  height: 50px;
  border-radius: 25px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "KM_B";
  font-size: 24px;
  color: #CFAA66;
  margin: 0 auto;
  box-shadow: 0px 4px 2px #000;
}

#sec_01 .title p span {
  color: #E60012;
}

#line {
  width: 100%;
  height: 80px;
  background: url(../img/main/line_bg.png) repeat-x left / cover;
  border-top: 1px solid #CFAA66; 
  border-bottom: 1px solid #CFAA66;
  box-shadow: inset 0 0 10px rgba(000,000,000,0.5); 
  position: relative;
  animation: line 120s linear infinite;
  z-index: 2;
}

#line .box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#line .box img {
  width: auto;
  height: auto;
}

#line .box .smoke {
  width: 374px;
  height: 500px;
  background: url(../img/main/line_item_02.png) repeat-y top / cover;
  position: absolute;
  left: 50%;
  bottom: 150px;
  transform: translateX(-50%);
  animation: smoke 5s ease-in-out infinite;
}

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

@keyframes smoke {
  0% {
    background-position: 0% 0%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    background-position: 0% 100%;
    opacity: 0;
  }
  100% {
    background-position: 0% 100%;
    opacity: 0;
  }
}

#sec_02 {
  width: 100%;
  height: auto;
  background: url(../img/main/sec_02_bg.png) no-repeat center / cover;
  position: relative;
}

#sec_02 .t_box_1 {
  width: auto;
  height: auto;
  padding: 100px 0 50px;
  text-align: center;
}

#sec_02 .t_box_1 .line {
  width: 1px;
  height: 150px;
  margin: 0 auto 50px;
  background: #0D0D0D;
}

#sec_02 .t_box_1 .line:last-of-type {
  margin-bottom: 0;
}

#sec_02 .t_box_1 h2 {
  font-family: "JA";
  font-size: 200px;
  color: #0D0D0D;
  text-shadow: 0px 2px 2px rgba(000,000,000,0.5);
}

#sec_02 .t_box_1 h3 {
  font-family: "KM_B";
  font-size: 50px;
  color: #0D0D0D;
}

#sec_02 .t_box_1 h3 span:first-of-type {
  color: #CFAA66;
}

#sec_02 .t_box_1 h3 span:last-of-type {
  color: #E60012;
}

#sec_02 .t_box_1 p {
  font-family: "KM_B";
  font-size: 20px;
  color: #0D0D0D;
  margin-bottom: 15px;
}

#sec_02 .t_box_1 h4 {
  font-family: "KM_B";
  font-size: 30px;
  color: #0D0D0D;
  margin-bottom: 50px;
}

#sec_02 .item_01 {
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}

#sec_02 .item_02 {
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 180px;
}

#sec_02 .t_box_2 {
  width: auto;
  height: auto;
  text-align: center;
  margin-bottom: 40px;
}

#sec_02 .t_box_2 h2 {
  font-family: "KM_B";
  font-size: 30px;
  color: #0D0D0D;
  margin-bottom: 10px;
}

#sec_02 .t_box_2 h3 {
  font-family: "KM_B";
  font-size: 30px;
  color: #0D0D0D;
}

#sec_02 .t_box_2 h3 span {
  font-family: "JA";
  font-size: 60px;
}

#sec_02 .t_box_2 h3 span:first-of-type {
  color: #2CB24A;
}

#sec_02 .t_box_2 h3 span:last-of-type {
  color: #E60012;
}

#sec_02 .food_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

#sec_02 .food_container .box {
  width: 33.3333%;
  height: 640px;
  overflow: hidden;
  text-align: center;
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

#sec_02 .food_container .box h2 {
  width: 250px;
  height: 50px;
  border-radius: 10px;
  margin: 0 auto 20px;
  font-family: "KM_B";
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_02 .food_container .box_1 h2 {
  background: #0D0D0D;
  color: #fff;
}

#sec_02 .food_container .box_2 h2 {
  background: #fff;
  color: #0D0D0D;
  width: 280px;
}

#sec_02 .food_container .box_2 {
  background: url(../img/main/sec_02_item_06.png) no-repeat center / cover;
}

#sec_02 .food_container .box_3 h2 {
  background: #E60012;
  color: #fff;
}

#sec_02 .food_container .box p {
  width: 100%;
  font-family: "KM_B";
  font-size: 20px;
  color: #0D0D0D;
  margin-bottom: 40px;
}

#sec_02 .food_container .box img {
  width: auto;
  height: auto;
}

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

#sec_03 h2 {
  font-family: "KM_B";
  font-weight: bold;
  font-size: 50px;
  color: #0D0D0D;
  margin-bottom: 100px;
}

#sec_03 h2 span {
  color: #E60012;
}

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

#sec_03 .wrap a {
  width: calc((100% - 100px) / 3);
  height: auto;
  display: block;
}

#sec_03 .wrap a img {
  width: 100%;
  height: auto;
}

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

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

#sec_04 .wrap .main {
  width: 100%;
  height: auto;
  padding: 100px 0;
  text-align: center;
  background: #CFAA66;
  border-radius: 20px;
}

#sec_04 .wrap .main h2 {
  font-family: "KM_B";
  font-size: 50px;
  color: #fff;
  margin-bottom: 30px;
}

#sec_04 .wrap .main h3 {
  width: 635px;
  height: 70px;
  background: #E60012;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-family: "KM_B";
  font-size: 50px;
  color: #fff;
}

#sec_04 .wrap .main img {
  width: auto;
  height: auto;
  margin-bottom: 30px;
}

#sec_04 .wrap .main img:last-of-type {
  margin-bottom: 0;
}

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

#sec_05 .slide_t,
#sec_05 .slide_b {
  width: 500px;
  height: 100vh;
}

#sec_05 .slide_t {
  background: url(../img/main/sec_05_item_03.png) repeat-y center / cover;
  animation: top 120s linear infinite;
}

#sec_05 .slide_b {
  background: url(../img/main/sec_05_item_04.png) repeat-y center / cover;
  animation: bottom 120s linear infinite;
}

#sec_05 .title {
  width: auto;
  height: auto;
  text-align: center;
  flex-shrink: 0;
}

#sec_05 .title h2 {
  font-family: "KM_B";
  font-size: 50px;
  color: #0D0D0D;
  margin-bottom: 20px;
}

#sec_05 .title img {
  width: auto;
  height: auto;
}

#sec_05 .title img.logo {
  margin-bottom: 20px;
}

#sec_05 .title p {
  font-family: "KM_L";
  font-size: 30px;
  color: #0D0D0D;
  margin-bottom: 30px;
}

#sec_06 {
  width: 100%;
  height: auto;
  text-align: center;
  background: #0D0D0D;
  padding: 50px 0;
}

#sec_06 h2 {
  font-family: "KM_B";
  font-size: 50px;
  color: #fff;
  margin-bottom: 30px;
}

#sec_06 .line {
  width: 100%;
  height: 75px;
  background: url(../img/main/sec_06_item_01.png) repeat-x center / cover;
  margin-bottom: 50px;
}

#sec_06 .slide {
  width: 100%;
  max-width: 1400px;
  height: 80px;
  margin: 0 auto;
  background: url(../img/main/sec_06_item_02.png) repeat-x left / cover;
  animation: line 90s linear infinite;
}

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

#sec_07 .wrap {
  width: 100%;
  max-width: 1400px;
  text-align: right;
  margin: 0 auto 150px;
}

#sec_07 .wrap h2 {
  font-family: "KM_B";
  font-size: 50px;
  color: #0D0D0D;
  margin-bottom: 30px;
}

#sec_07 .wrap h2 span {
  color: #E60012;
}

#sec_07 .wrap p {
  font-family: "KM_B";
  font-size: 30px;
  color: #0D0D0D;
}

#sec_07 .slide {
  width: 100%;
  height: 230px;
  position: relative;
  background: url(../img/main/sec_07_item_01.png) repeat-x left / cover;
  animation: line 120s linear infinite;
}

#sec_07 .slide img {
  width: auto;
  height: auto;
  position: absolute;
  left: 18%;
  bottom: 0;
}

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

#sec_08 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

#sec_08 .wrap .box {
  width: auto;
  height: auto;
}

#sec_08 .wrap .box h2 {
  font-family: "KM_L";
  font-size: 30px;
  color: #0D0D0D;
  margin-bottom: 20px;
}

#sec_08 .wrap .box h3 {
  font-family: "KM_B";
  font-size: 80px;
  color: #0D0D0D;
  margin-bottom: 100px;
}

#sec_08 .wrap .box h3 span {
  color: #E60012;
}

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

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

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

#sec_09 h2 {
  font-family: "KM_B";
  font-size: 50px;
  color: #0D0D0D;
  margin-bottom: 50px;
}

#sec_09 h2 span {
  color: #E60012;
}

#sec_09 img {
  width: auto;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  #sec_01 .slide_t, #sec_01 .slide_b {
    width: 300px;
  }

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

  #sec_02 .food_container .box {
    width: 100%;
  }

  #sec_04 .wrap .main img:nth-of-type(n+2) {
    width: 90%;
  }

  #sec_05 .title img {
    width: 600px;
  }

  #sec_05 .title img.logo {
    width: auto;
  }

  #sec_05 .slide_t, #sec_05 .slide_b {
    width: 350px;
  }

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

@media (max-width: 1400px) {
  #sec_02 .item_01 {
    width: 400px;
  }
  
  #sec_02 .item_02 {
    width: 350px;
  }

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

  #sec_04 .wrap .main h3 {
    width: 560px;
    font-size: 42px;
  }

  #sec_04 .wrap .main img {
    width: 900px;
  }

  #sec_04 .wrap .stack-item {
    width: 95%;
  }

  #sec_04 .wrap .stack-item img {
    width: 100%;
  }

  #sec_05 {
    height: 700px;
  }

  #sec_05 .slide_t, #sec_05 .slide_b {
    height: 100%;
  }

  #sec_05 .title img {
    width: 500px;
  }

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

  #sec_05 .title img.logo {
    width: 300px;
  }

  #sec_05 .title p {
    font-size: 24px;
  }

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

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

  #sec_07 .wrap p {
    font-size: 24px;
  }

  #sec_07 .slide img {
    width: 450px;
    left: 5%;
  }

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

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

  #sec_08 .wrap .box h3 {
    font-size: 62px;
  }

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

  #sec_08 .wrap img {
    width: 600px;
  }

  #sec_09 img {
    width: 90%;
  }
}

@media (max-width: 1200px) {
  #sec_01 .slide_t, #sec_01 .slide_b {
    display: none;
  }

  #sec_04 .wrap .main {
    padding: 0;
  }

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

  #sec_04 .wrap .main h3 {
    width: 480px;
    height: 60px;
    font-size: 36px;
  }

  #sec_04 .wrap .main img {
    width: 700px;
  }

  #sec_05 .slide_t, #sec_05 .slide_b {
    width: 250px;
  }

  #sec_05 .title h2 {
    font-size: 30px;
  }

  #sec_05 .title img.logo {
    width: 250px;
  }

  #sec_05 .title p {
    font-size: 20px;
  }

  #sec_05 .title img {
    width: 350px;
  }

  #sec_05 {
    height: 500px;
  }

  #sec_08 .wrap {
    justify-content: center;
    flex-wrap: wrap;
  }

  #sec_08 .wrap .box {
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 30px;
  }

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

  #sec_03 .wrap {
    gap: 30px;
  }

  #sec_03 .wrap a {
    width: calc((100% - 60px) / 3);
  }
}

@media (max-width: 900px) {
  #sec_01 .title h2 {
    font-size: 36px;
  }

  #sec_01 .title h1 img {
    width: 400px;
  }

  #sec_01 .title h3 {
    font-size: 36px;
  }

  #sec_01 .title p {
    width: 300px;
    height: 40px;
    font-size: 18px;
  }

  #line {
    height: 50px;
  }

  #line .box img {
    width: 400px;
  }

  #line .box .smoke {
    width: 268px;
    height: 400px;
  }

  #sec_02 .t_box_1 .line {
    height: 100px;
  }

  #sec_02 .item_01 {
    width: 40%;
  }

  #sec_02 .item_02 {
    width: 30%;
  }

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

  #sec_04 .wrap .main h3 {
    width: 320px;
    height: 45px;
    font-size: 24px;
  }

  #sec_04 .wrap .main img {
    width: 500px;
  }

  #sec_05 .title h2 {
    font-size: 24px;
  }

  #sec_05 .title img.logo {
    width: 220px;
  }

  #sec_05 .title p {
    font-size: 18px;
  }

  #sec_05 .title img {
    width: 300px;
  }

  #sec_05 .slide_t, #sec_05 .slide_b {
    width: 22%;
  }

  #sec_05 {
    height: 450px;
  }

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

  #sec_06 .line {
    height: 50px;
  }

  #sec_06 .slide {
    height: 50px;
  }

  #sec_07 {
    padding: 50px 0;
  }

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

  #sec_07 .wrap p {
    font-size: 20px;
  }

  #sec_07 .wrap {
    margin-bottom: 100px;
  }

  #sec_07 .slide {
    height: 150px;
  }

  #sec_07 .slide img {
    width: 350px;
  }

  #sec_03 h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }

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

  #sec_03 .wrap a {
    width: 100%;
  }
}

@media (max-width: 700px) { 
  #sec_02 .t_box_1 h2 {
    font-size: 150px;
  }

  #sec_02 .t_box_1 h3 {
    font-size: 36px;
  }

  #sec_02 .t_box_1 p {
    font-size: 16px;
  }

  #sec_02 .t_box_1 h4 {
    font-size: 20px;
  }

  #sec_02 .t_box_2 h2 {
    font-size: 24px;
  }

  #sec_02 .t_box_2 h3 {
    font-size: 24px;
  }

  #sec_02 .t_box_2 h3 span {
    font-size: 42px;
  }

  #sec_02 .food_container .box h2 {
    width: 150px;
    height: 40px;
    font-size: 24px;
  }

  #sec_02 .food_container .box_2 h2 {
    width: 250px;
  }

  #sec_02 .food_container .box img {
    width: 500px;
  }

  #sec_02 .food_container .box {
    height: 450px;
  }

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

  #sec_04 .wrap .main h3 {
    width: 280px;
    height: 40px;
    font-size: 20px;
  }

  #sec_04 .wrap .main img {
    width: 80%;
  }

  #sec_07 .wrap {
    margin: 0 auto 250px;
  }

  #sec_07 .slide img {
    left: 50%;
    transform: translateX(-50%);
  }

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

  #sec_08 .wrap .box h3 {
    font-size: 48px;
    margin-bottom: 50px;
  }

  #sec_08 .wrap .box img {
    width: 150px;
  }

  #sec_08 .wrap img {
    width: 100%;
  }

  #sec_09 h2 {
    font-size: 30px;
  }

  #sec_09 {
    padding: 50px 0;
  }
}

@media (max-width: 500px) {
  #sec_01 .title h2 {
    font-size: 24px;
  }

  #sec_01 .title h1 img {
    width: 300px;
  }

  #sec_01 .title h3 {
    font-size: 24px;
  }

  #sec_01 .title p {
    width: 250px;
    height: 35px;
    font-size: 16px;
  }

  #line .box img {
    width: 250px;
  }

  #line .box .smoke {
    width: 165px;
    height: 200px;
  }

  #sec_02 .t_box_2 h2 {
    font-size: 18px;
  }

  #sec_02 .t_box_2 h3 {
    font-size: 18px;
  }

  #sec_02 .t_box_2 h3 span {
    font-size: 30px;
  }

  #sec_02 .food_container .box h2 {
    width: 120px;
    height: 35px;
    font-size: 20px;
  }

  #sec_02 .food_container .box_2 h2 {
    width: 200px;
  }

  #sec_02 .food_container .box p {
    font-size: 16px;
  }

  #sec_02 .food_container .box img {
    width: 400px;
  }

  #sec_02 .food_container .box {
    height: 380px;
  }

  #sec_04 .wrap .main h2 {
    font-size: 18px;
    width: 80%;
    margin: 0 auto 20px;
  }

  #sec_04 .wrap .main h3 {
    width: 250px;
    height: 35px;
    font-size: 18px;
  }

  #sec_04 .wrap .main img:nth-of-type(n+2) {
    margin-bottom: 10px;
  }

  #sec_04 .wrap .main img:last-of-type {
    margin-bottom: 0;
  }

  #sec_04 .wrap .stack-item {
    width: 100%;
  }

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

  #sec_05 .title img.logo {
    width: 180px;
  }

  #sec_05 .title p {
    font-size: 16px;
  }

  #sec_05 .title img {
    width: 250px;
  }

  #sec_05 .slide_t, #sec_05 .slide_b {
    width: 15%;
  }

  #sec_05 {
    height: 380px;
  }

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

  #sec_06 .line {
    height: 40px;
    margin-bottom: 30px;
  }

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

  #sec_07 .wrap p {
    font-size: 18px;
  }

  #sec_07 .slide img {
    width: 250px;
  }

  #sec_07 .slide {
    height: 100px;
  }

  #sec_07 .wrap {
    margin: 0 auto 200px;
  }

  #sec_03 {
    padding: 50px 0;
  }

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

@media (max-width: 400px) {
  #sec_01 .title h2 {
    font-size: 20px;
  }

  #sec_01 .title h1 img {
    width: 200px;
  }

  #sec_01 .title h3 {
    font-size: 20px;
  }

  #sec_01 .title p {
    width: 200px;
    height: 30px;
    font-size: 14px;
  }

  #line .box img {
    width: 200px;
  }

  #line .box .smoke {
    bottom: 50px;
  }

  #line {
    animation: line 250s linear infinite;
  }

  #sec_02 .t_box_1 .line {
    height: 30px;
    margin: 0 auto 30px;
  }

  #sec_02 .t_box_1 {
    padding: 50px 0;
  }

  #sec_02 .t_box_1 h2 {
    font-size: 80px;
  }

  #sec_02 .t_box_1 h3 {
    font-size: 24px;
  }

  #sec_02 .t_box_1 p {
    font-size: 12px;
  }

  #sec_02 .t_box_1 h4 {
    font-size: 16px;
    margin-bottom: 30px;
  }

  #sec_02 .item_02 {
    top: 100px;
  }

  #sec_02 .t_box_2 h2 {
    font-size: 14px;
  }

  #sec_02 .t_box_2 h3 {
    font-size: 14px;
  }

  #sec_02 .t_box_2 h3 span {
    font-size: 20px;
  }

  #sec_02 .food_container .box {
    padding-top: 30px;
  }

  #sec_02 .food_container .box h2 {
    width: 110px;
    height: 30px;
    border-radius: 5px;
    margin: 0 auto 10px;
    font-size: 18px;
  }

  #sec_02 .food_container .box_2 h2 {
    width: 180px;
  }

  #sec_02 .food_container .box p {
    font-size: 14px;
  }

  #sec_02 .food_container .box img {
    width: 350px;
  }

  #sec_02 .food_container .box {
    height: 320px;
  }

  #sec_04 .wrap .main h2 {
    font-size: 16px;
  }

  #sec_04 .wrap .main h3 {
    width: 220px;
    height: 30px;
    font-size: 16px;
  }

  #sec_05 .title h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #sec_05 .title img.logo {
    width: 150px;
  }

  #sec_05 .title p {
    font-size: 14px;
  }

  #sec_05 .title img {
    width: 180px;
  }

  #sec_05 {
    height: 320px;
  }

  #sec_06 h2 {
    font-size: 16px;
  }

  #sec_06 .line {
    height: 30px;
  }

  #sec_06 .slide {
    height: 40px;
  }

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

  #sec_07 .wrap p {
    font-size: 16px;
  }

  #sec_07 .slide {
    height: 80px;
  }

  #sec_07 .slide img {
    width: 180px;
  }

  #sec_07 .wrap {
    margin: 0 auto 150px;
  }

  #sec_08 {
    padding: 50px 0;
  }

  #sec_08 .wrap .box h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #sec_08 .wrap .box h3 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  #sec_08 .wrap .box img {
    width: 100px;
  }

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

  #sec_04 {
    background: #CFAA66;
    overflow: hidden;
  }
}