:root {
  --blue: #0077c8;
  --orange: #ff5e3a;
  --gray: #f4f6f8;
  --white: #ffffff;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.5);
  
  --font-family: 'Noto Sans JP', sans-serif;
  
  --header-height: 80px;
  --content-width: 1200px;
}

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: #222;
  background: #fff;
  overflow-x: hidden;
  padding-bottom: 90px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ヘッダー */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  backdrop-filter: blur(0);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  z-index: -1;
}
  
.header.scrolled::before {
  background-color: var(--white);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
  
.header.scrolled {
  color: #333;
}
  
.header__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0 16px;
  max-width: var(--content-width);
  margin: 0 auto;
  height: 100%;
}
  
.header__logo {
  display: block;
}
  
.header__logo img {
  height: 40px;
  width: auto;
}
  
.header__cta {
  display: none;
}

@media (min-width: 300px) {
  .header__container {
    justify-content: flex-start;
    padding-left: 0;
  }
  .header__logo {
    margin-right: auto;
  }
  .step {
    width: 260px;
    max-width: 340px;
  }
  .steps {
    gap: 10px;
  }
}

@media (min-width: 300px) {
  .header__container {
    flex-direction: row;
    gap: 0;
    padding: 0 8px;
    height: 100%;
  }
  .header__logo img {
    height: 36px;
    width: auto;
  }
  .header__cta {
    width: 100%;
    min-width: 0;
    font-size: 15px;
    padding: 10px 0;
  }
}

/* ヒーローセクション */
.hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
  
@media (max-width: 1000px) {
  .hero {
    min-height: 500px;
    max-height: 500px;
  }
}
  
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
  
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
  
.hero__title {
  font-size: 3.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-shadow: 0 4px 16px rgba(0,0,0,0.55), 0 1px 0 #222;
  margin-bottom: 12px;
  padding: 0 8px;
  word-break: keep-all;
}
  
@media (min-width: 300px) {
  .hero__title {
    font-size: 2.0rem;
    padding: 0 2px;
    line-height: 1.18;
  }
}
  
.hero__subtitle {
  font-size: 2rem;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
  
@media (min-width: 300px) {
  .hero__subtitle {
    font-size: 16px;
  }
}
  
.hero__cta {
  display: flex;
  gap: 16px;
}
  
@media (min-width: 300px) {
  .hero__cta {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    gap: 12px;
  }
}
  
.hero__badges {
  display: flex;
  gap: 24px;
}
  
@media (min-width: 300px) {
  .hero__badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.2s ease;
  cursor: pointer;
}
  
@media (min-width: 300px) {
  .btn {
    width: 100%;
    min-width: auto;
    padding: 12px 16px;
  }
}

.btn:hover {
  transform: translateY(-2px);
}
  
.btn:active {
  transform: translateY(0);
}
  
.btn--primary {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
  
.btn--primary:hover {
  background-color: #e54e2a; /* darken(#ff5e3a, 5%) */
  box-shadow: var(--shadow-md);
}
  
.btn--outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
  
.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
  
.scrolled .btn--outline {
  color: var(--blue);
  border-color: var(--blue);
}
  
.scrolled .btn--outline:hover {
  background-color: rgba(0, 119, 200, 0.05);
}

/* バッジ */
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
  
.badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
  
.badge__text {
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: var(--shadow-text);
  white-space: nowrap;
}

/* 共通コンテナ */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* セクションヘッダー */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-title1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  text-align: center;
  filter: drop-shadow(0px 0px 22px);
}

.section-title10 {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
  filter: drop-shadow(0px 0px 22px);
}

@media (min-width: 300px) {
  .section-title {
    font-size: 26px;
  }
  .section-title1 {
    font-size: 24px;
      font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  text-align: center;
  }
  .section-title10 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
  filter: drop-shadow(0px 0px 22px);
}
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

@media (min-width: 300px) {
  .section-subtitle {
    font-size: 16px;
  }
}

/* 2. Taste Appeal Section */
.taste-appeal {
  padding: 80px 0;
  background-image: url(hotate-top07.jpg);
  background-size: 200%;
  background-position: bottom;
  background-attachment: fixed;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
.taste__features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 300px) {
  .taste__features {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.taste__feature {
  width: 280px;
  text-align: center;
}
.taste__feature-image {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.taste__feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.taste__feature-desc {
  font-size: 16px;
  color: #666;
}
.taste__cta {
  display: inline-block;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin: 0 auto;
  display: block;
  width: fit-content;
}
.taste__cta:hover {
  text-decoration: underline;
}

/* 3. Line-up Carousel Section */
.lineup {
    background-image: url(marine_bg.jpg);
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    background-position: center;
}
.lineup__carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0 20px;
  scrollbar-width: none;
}
.lineup__carousel::-webkit-scrollbar {
  display: none;
}
@media (min-width: 300px) {
  .lineup__carousel {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
  }
}
.product-card {
  flex: 0 0 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  background-color: #ffffff;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.product-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 16px 16px 8px;
}
.product-card__spec {
  font-size: 16px;
  color: #666;
  margin: 0 16px 8px;
}
.product-card__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  margin: 0 16px 16px;
}
.product-card__link {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 16px 16px;
}
.product-card__link:hover {
  text-decoration: underline;
}

/* 4. Differentiator Section */
.differentiator {
  padding: 80px 0;
  background-color: var(--gray);
}
.diff__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 300px) {
  .diff__features {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.diff__feature {
  display: flex;
  flex-direction: column;
}
.diff__feature-icon {
  margin-bottom: 16px;
}
.diff__feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.diff__feature-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* 5. Voice & Media Section */
.voice-media {
  padding: 80px 0;
    background-color: #fff;
    background-image: url(hotate-top09.jpg);
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    background-position: top;
}
.testimonials {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 300px) {
  .testimonials {
    flex-direction: column;
    gap: 32px;
  }
}
.testimonial {
  flex: 1;
  background-color: var(--gray);
  padding: 24px;
  border-radius: 8px;
}
.testimonial__stars {
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 16px;
}
.testimonial__text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}
.testimonial__author {
  font-size: 14px;
  color: #666;
  text-align: right;
}
.media__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
@media (min-width: 300px) {
  .media__logos {
    flex-wrap: wrap;
    gap: 30px;
  }
}

/* 6. How-to / FAQ Section */
.howto-faq {

  padding: 80px 0;
  background-image: url(hotate-top07.jpg);
    background-size: 200%;
    background-position: bottom;
    background-attachment: fixed;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
}
.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (min-width: 300px) {
  .steps {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}
.step {
  text-align: center;
  width: 320px;
  max-width: 400px;
  background: #fff;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 32px 20px 28px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 300px) {
  .step {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 24px auto;
    padding: 28px 12px 24px 12px;
  }
}
.step__number {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.step__icon {
  margin-bottom: 16px;
}
.step__title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.step__desc {
  font-size: 16px;
  color: #555;
}
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq__title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 32px;
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  background: #fff;
  color: #222;
}
.faq__question {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}
.faq__question::before {
  content: "Q. ";
  color: var(--blue);
}
.faq__answer {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.faq__answer::before {
  content: "A. ";
  color: var(--orange);
  font-weight: 700;
}

/* 7. CTA Re-appeal Section */
.cta-reappeal {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-reappeal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.cta-reappeal__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.cta-reappeal__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-reappeal__content {
  text-align: center;
  color: var(--white);
}
.cta-reappeal__title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 32px;
  text-shadow: var(--shadow-text);
}
@media (min-width: 300px) {
  .cta-reappeal__title {
    font-size: 26px;
  }
}
.btn--large {
  padding: 16px 32px;
  font-size: 20px;
  min-width: 260px;
}
@media (min-width: 300px) {
  .btn--large {
    padding: 14px 28px;
    font-size: 18px;
  }
}

/* 8. Footer Section */
.footer {
  background-color: #333;
  color: var(--white);
  padding: 60px 0 30px;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (min-width: 300px) {
  .footer__main {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__info {
  margin-bottom: 24px;
}
.footer__address,
.footer__tel {
  font-size: 16px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__links {
  display: flex;
  gap: 40px;
}
@media (min-width: 300px) {
  .footer__links {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer__links-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__links-list {
  list-style: none;
}
.footer__links-list li {
  margin-bottom: 8px;
}
.footer__links-list a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__links-list a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer__social-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__social-icons {
  display: flex;
  gap: 16px;
}
.footer__social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.footer__social-icon:hover {
  background-color: var(--blue);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}
.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* スキップリンクのスタイル */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* フォーカス状態の視覚的強調 */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* ヘッダーアニメーション */
.header {
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.header::before {
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}
.header__cta {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}
.scrolled .header__cta {
  opacity: 1;
  transform: translateY(0);
}

/* レスポンシブ対応 */
@media (min-width: 300px) and (max-width: 1024px) {
  .taste__features {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__links {
    gap: 20px;
  }
  .product-card {
    flex: 0 0 250px;
  }
}
@media (min-width: 480px) and (min-width: 300px) {
  .hero__content {
    padding: 0 20px;
  }
  .hero__badges {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__links-column {
    flex: 0 0 45%;
  }
}
@media (max-width: 479px) {
  .hero__title {
    font-size: 24px;
  }
  .hero__subtitle {
    font-size: 20px;
  }
  .section-title {
    font-size: 24px;
  }
  .diff__feature-title {
    font-size: 18px;
  }
  .footer__links {
    flex-direction: column;
    gap: 20px;
  }
}

/* 追従CTAボタン（全デバイス対応） */
html, body {
  overflow-x: hidden;
}

.fixed-cta {
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 32px;
  z-index: 9999;
  width: 80%;
  max-width: 340px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  background: var(--orange) !important;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  padding: 16px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border-radius: 28px;
  text-align: center;
  text-decoration: none;
}
.fixed-cta:active,
.fixed-cta:focus {
  background: #e54e2a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
@media (max-width: 400px) {
  .fixed-cta {
    max-width: 94vw;
    font-size: 18px;
    padding: 14px 0;
    border-radius: 22px;
    bottom: 20px;
  }
}

/* --- 共通セクションスタイル --- */
section {
    padding: 5rem 0;
}

.section-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}

.section-text.inverted {
    color: #e0e0e0;
}

/* --- 1. 導入セクション --- */
.intro-section-01 {
    background-image: url(hotate-top02.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode:lighten;
    place-items: center;
    height: 400px;
}

@media (max-width: 1000px) {
  .intro-section-01 {
    background-image: url(hotate-top02.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode:lighten;
    place-items: center;
    height: 240px;
  }
}

.intro-section {
    background-image: url(hotate-top03.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode:lighten;
    place-items: center;
    height: 800px;
}

@media (max-width: 1000px) {
  .intro-section {
    background-image: url(hotate-top03.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode:lighten;
    place-items: center;
    height: 400px;
}
}

@media (max-width: 1000px) {
  .news-content{
    margin-right:100px !important;
  }
  .news01 {
    padding: 5px !important;
  }
  .news02{
    padding:5px!important;
  }
  .news01 img{
    height:125px!important;
  }
  .news02 img{
    height:125px!important;
  }
}


.news-content{
  margin-right:300px;
}

.news01 img:hover{
  opacity:0.6;
	transition:0.6s;
  transform: translateY(-5px);
}

.news02 img:hover{
  opacity:0.6;
	transition:0.6s;
    transform: translateY(-5px);
}

.news01{
  padding:30px;
}

.news02{
  padding:30px;
}
.news01 img{
  height:240px;
}

.news02 img{
  height:240px;
}

.news-card {
    background-image: url(umi-kadai.jpg);
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid #ddd;
}



.news-card h4 {
    font-size: 1.6rem;
    color: var(--white);
    filter:drop-shadow(3px 3px 3px #4e4e4e);
}

.news-card p {
    margin: 0 0 1rem 0;
    font-size: 1.0rem;
    color: #666;
}

.news-card h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  background: linear-gradient(to right, #00a1e5, #00ffbc);
  background: -webkit-linear-gradient(to right, #00a1e5, #00ffbc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 3. 映画セクション --- */
.movie-section {
    background-image: url(hotate-top05.jpg);
    background-size: cover;
    background-position: bottom;
    background-color: rgba(0, 0, 0,0.4);
    background-blend-mode: overlay;
    background-size: cover;
}

.movie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 300px) {
  .movie-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }
  .movie-item h3 {
  color: #fff;
  background-color: #065084;
  line-height: 1.2em;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    border-radius: 8px;
  }
  .movie-section {
    background-image: url(hotate-top05.jpg);
    background-size: cover;
    background-position: bottom;
    background-color: rgba(0, 0, 0,0.5);
    background-blend-mode: overlay;
    background-size: cover;
}
}

.movie-item h3 {
  color: #fff;
  background-color: #065084;
  line-height: 1.2em;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
    border-radius: 45px;
    padding:10px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-text-m {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 2rem 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 15px;
  filter: drop-shadow(3px 3px 3px #4e4e4e);
}

.section-title-m {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
  text-decoration-line: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  filter: drop-shadow(3px 3px 3px #4e4e4e);
}

.section-title-ms {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
  text-decoration-line: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  filter: drop-shadow(3px 3px 3px #4e4e4e);
}
.emphasis_design14 span {
  text-emphasis: dot #4d9bc1;
}

@media (min-width: 300px){
  .section-title-m {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
  text-decoration-line: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.section-title-ms {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
  text-decoration-line: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.section-text-m {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 2rem 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 15px;
  filter: drop-shadow(3px 3px 3px #4e4e4e);
  }
}

.intro-section-02 {
    background-image: url(hotate-top04.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode:lighten;
    place-items: center;
    height: 800px;
}

@media (max-width: 1000px) {
  .intro-section-02 {
    background-image: url(hotate-top04.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode:lighten;
    place-items: center;
    height: 450px;
  }
}

.section-title-ms img{
  display: block;
  margin: auto;
}

.intro-section-03 {
    background-image: url(hotate-top06.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode:lighten;
    place-items: center;
    height: 800px;
}

@media (max-width: 1000px) {
  .intro-section-03 {
    background-image: url(hotate-top06.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode:lighten;
    place-items: center;
    height: 450px;
  }
}

.intro-section-04 {
    background-image: url(hotate-top08.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode:lighten;
    place-items: center;
    height: 800px;
}

@media (max-width: 1000px) {
  .intro-section-04 {
    background-image: url(hotate-top08.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode:lighten;
    place-items: center;
    height: 450px;
  }
}
