@charset "UTF-8";
* {
  border: 0;
  outline: none;
  vertical-align: baseline;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-feature-settings: "palt" on;
  line-height: 180%;
  letter-spacing: 0.04em;
}

html {
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

main {    
    /* max-width: 1200px; */
    margin: 0 auto;
}

/* pictureタグとimg要素の基本スタイル */
main picture {
    max-width: 100%;
    height: auto;
    display: block;
}

main picture img {
    width: 100%;
    height: auto;
    display: block;
}


.sec06 {
  padding: min(calc(80 / 1080 * 100vw), 80px) 0;
  background-color: #f5f5f5;
}
.sec06__head {
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  text-align: center;
  color: #333;
}
.sec06__area-body {
  width: min(calc(1000 / 1080 * 100vw), 1000px);
  margin: min(calc(40 / 1080 * 100vw), 40px) auto 0;
}
.sec06 iframe {
  width: 100%;
  height: 1230px;
}

.footer {
  background-color: #f9f9f9;
  padding: 10px 0;
  border-top: 1px solid #eaeaea;
}
.footer .container {
  width: min(calc(1000 / 1080 * 100vw), 1000px);
  margin: 0 auto 0;
}

.footer-content {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-link {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #e60012;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #777;
}

@media screen and (max-width: 768px) {
  main picture,
  main img {
      box-sizing: border-box;
  }
  
  main picture img {
      padding: 0;
  }

  .hide-on-mobile {
      display: none;
  }

  .sec06 iframe {
    height: 1290px;
  }  

  .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }  
}


/* スマホ用の追加設定 */
@media screen and (max-width: 480px) {
  .sec06 iframe {
    height: 1350px;
  }  
}
