/* =============================================
   Variables & Base Settings
   ============================================= */
:root {
  --color-Text-Primary: #3D3C3C;
  --color-Text-Accent: #EA5330;
  --color-Text-Usually: #ffffff;
  --color-Background-Primary: #ffffff;
  --color-Background-Secondary: #FFF8F3;
  --color-Background-CTA: #034078;
  --color-flow-bg: #FFE1DA;
  --inner-width: 1100px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-Text-Primary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
/* --- Common Layout --- */
.l_container {
  width: 1100px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6vw 0;
}

.inner {
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

/* =============================================
   Header
   ============================================= */
.header {
  width: 100%;
  background: #fff;
  padding: 20px 0;
}
.header .inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =============================================
   First View (FV)
   ============================================= */
.fv {
  background: url(/web/jp/food_dx/tanomu/images/fv_bg.png) center no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  min-height: clamp(600px, 55vw, 1056px);
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 100px) 0;
  box-sizing: border-box;
}

.fv_wrap { padding-bottom: 0; }
.fv_wrap_sp { display: none; }

.fv_wrap .fv_left { width: 41%; }
.fv_wrap .fv_left img { width: 100%; height: auto; display: block; }

.fv_wrap .fv_right {
  width: 53%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Speech Bubble */
.speech-bubble {
  width: 100%;
  max-width: 392px;
  height: clamp(50px, 4.5vw, 76px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  background: linear-gradient(to right, #EA5431, #F39755);
  border: 4px solid #ffffff;
  border-radius: 60px;
  color: #ffffff;
  font-weight: bold;
  font-size: calc(20px + (40 - 20) * ((100vw - 750px) / (1920 - 750)));
  font-family: sans-serif;
  letter-spacing: 0.05em;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.speech-bubble::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #ffffff;
  z-index: 1;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%);
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 27px solid #f47621;
  z-index: 2;
}

/* Typography */
h1 {
  font-size: calc(70px + (78 - 70) * ((100vw - 750px) / (1920 - 750)));
  font-weight: 800;
  line-height: 0.1;
  margin: clamp(20px, 6vw, 70px) 0;
  word-break: break-all;
  display: block;
  white-space: nowrap;
}
h1 .h1_txt_min { font-size: 0.74em; }
h1 .h1_txt_green { font-size: 1.25em; color: #25C348; }

h1 ruby rt {
  font-size: 0.7em;
  color: #EB6439;
  line-height: 1;
  margin-bottom: -20px;
}
/* firefox */
@-moz-document url-prefix() {
  h1 {
    margin: clamp(20px, 6vw, 70px) 0 0.1em 0;
    }
}

@media screen and (max-width: 750px) {
  @-moz-document url-prefix() {
    .fv_tanomu_logo {
        margin-top: 2vw !important;
    }
    }
    }
/* Safari */
_::-webkit-full-page-media, _:future, :root h1{
        margin: 1em 0;
      }
_::-webkit-full-page-media, _:future, :root h1 ruby rt {
            margin-bottom:-0.7em !important;
            margin-top: -40px;
        }

@media screen and (min-width: 1920px) {
   _::-webkit-full-page-media, _:future, :root h1{
        margin: 60px 0;
      }
    }
@media screen and (max-width: 750px) {
  _::-webkit-full-page-media, _:future, :root h1{
        margin: 0;
      }
  _::-webkit-full-page-media, _:future, :root h1 ruby rt {
    margin-top: -20px;
        }
    }
.fv_tanomu_logo { width: 100%; text-align: center; }
.fv_tanomu_logo img { width: 95%; height: auto; }

/* Achievements List */
.fv_right ul {
  display: flex;
  justify-content: space-between;
  margin: clamp(20px, 4vw, 50px) auto 0 auto;
  width: 80%;
  padding: 0;
  list-style: none;
}
.fv_right ul li { width: 46%; text-align: center; }
.fv_right ul li img { width: 100%; height: auto; }

/* =============================================
   CTA Button (Common)
   ============================================= */
a.cta_btn {
  position: relative;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  color: var(--color-Text-Usually);
  font-size: calc(22px + (32 - 22) * ((100vw - 750px) / (1920 - 750))) !important;
  padding: 0.9rem 1rem;
  background-color: var(--color-Background-CTA);
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
  border-radius: 50px;
  font-weight: 700;
  margin-top: clamp(20px, 3vw, 40px);
  border: 4px solid #034078;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  z-index: 1;
}

a.cta_btn:hover { background: var(--color-Background-Primary); color: var(--color-Background-CTA); }
a.cta_btn span { position: relative; padding-right: clamp(40px, 5vw, 80px); }

a.cta_btn span:before {
  content: '';
  width: clamp(30px, 3.5vw, 50px);
  height: clamp(30px, 3.5vw, 50px);
  border: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition-duration: 0.3s;
}

a.cta_btn span:after {
  content: '';
  width: clamp(10px, 1.2vw, 18px);
  height: clamp(10px, 1.2vw, 18px);
  border: 0;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 38%;
  right: clamp(10px, 1.2vw, 16px);
  transform-origin: center;
  margin-top: -6px;
  transition-duration: 0.3s;
}

a.cta_btn:hover span:before { border-color: #034078; }
a.cta_btn:hover span:after { border-color: #034078; }

/* =============================================
   Overview Section
   ============================================= */
.overview { background: linear-gradient(to bottom, #FFF8F3, #FFE1DA); }

.overview_left { width: 45%; text-align: center; font-weight: 700; }
.overview h2 {
  font-size: calc(32px + (56 - 32) * ((100vw - 750px) / (1920 - 750)));
  margin-bottom: -3vw;
  letter-spacing: .05em;
}
.overview .price {
  font-size: calc(160px + (250 - 160) * ((100vw - 750px) / (1920 - 750)));
  letter-spacing: -1rem;
  background: linear-gradient(#F39755,#EB5B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.overview .price .en_min { font-size: calc(70px + (150 - 70) * ((100vw - 750px) / (1920 - 750))); }
.overview .note { font-size: calc(15px + (20 - 15) * ((100vw - 750px) / (1920 - 750))); }

.overview_right { width: 53%; }

.feature_list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(10px + (40 - 10) * ((100vw - 750px) / (1920 - 750)));
}

.feature_item {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  gap: 60px;
  border-radius: 10px;
}

.feature_icon {
  width: clamp(85px, 6vw, 98px);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  height: auto;
  padding-left: 30px;
}
.feature_icon img { height: auto; object-fit: contain; object-position: center; }
.feature_item:nth-child(1) .feature_icon img { margin-left: -10px; }

.feature_title {
  font-size: calc(20px + (35 - 20) * ((100vw - 750px) / (1920 - 750)));
  font-weight: bold;
  line-height: 1.2;
}

.text_accent {
  font-size: calc(26px + (48 - 26) * ((100vw - 750px) / (1920 - 750)));
  color: var(--color-Text-Accent);
}

.overview-cta { display: none; }

/* =============================================
   Problem & Solution Section
   ============================================= */
.problem-solution {
  background: url('/web/jp/food_dx/tanomu/images/problem_bg.jpg') center/cover no-repeat;
  padding: 80px 0 0 0;
  overflow: hidden;
}

.problem-header { width: 52%; margin-bottom: 60px; }
.problem-title {
  width: 100%;
  display: inline-block;
  background: url('/web/jp/food_dx/tanomu/images/problem_title_bg.png') center/cover no-repeat;
  color: #fff;
  padding: 30px 40px;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  text-align: right;
}

.problem-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  list-style: none;
  padding: 0 0 50px 0;
}

.problem-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position: bottom center !important;
  background-size: contain !important;
}

.problem-item:nth-child(1) { background: url(/web/jp/food_dx/tanomu/images/problem_left.svg) no-repeat; aspect-ratio: 350 / 408; }
.problem-item:nth-child(2) { background: url(/web/jp/food_dx/tanomu/images/problem_center.svg) no-repeat; aspect-ratio: 340 / 446; max-width: 355px; }
.problem-item:nth-child(3) { background: url(/web/jp/food_dx/tanomu/images/problem_right.svg) no-repeat; aspect-ratio: 340 / 446; max-width: 355px; }

.problem-bubble { width: 100%; max-width: 250px; margin: 0 auto; }
.problem-solution .problem-bubble p {
  font-size: clamp(14px, 1.7vw, 20px);
  line-height: 1.4;
  font-weight: 500;
  margin: 62px 0 0 5%;
  text-align: left;
}
.problem-solution .problem-item:nth-child(1) p { margin: 62px 0 0 10%; }

/* Solution Banner */
.solution-banner {
  position: relative;
  background: linear-gradient(to bottom, #FFF8F3, #FFE1DA);
  border: 4px solid #EA5330;
  padding: 30px 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  top: -50px;
  box-sizing: border-box;
  box-shadow: 0px 7px 10px rgba(255, 225, 218, 1);
}

.solution-banner::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 32px solid #FFE1DA;
  z-index: 1;
}

.solution-banner::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 38px solid #ea5330;
}

.solution-message {
  font-size: calc(32px + (46 - 32) * ((100vw - 750px) / (1100 - 750)));
  font-weight: 800;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(#F39755, #EB5B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-brand { font-size: 1.5em; }
.text-solve {
  background: linear-gradient(#034078);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5em;
}

/* =============================================
   Point Section
   ============================================= */
.point-section .point_wrap { width: 100%; position: relative; z-index: 0; }

.point-section .first_box::before {
  content: "";
  position: absolute;
  top: 150%;
  width: 95%;
  height: calc(350px + (520 - 350) * ((100vw - 750px) / (1920 - 750)));
  z-index: -1;
  background: linear-gradient(to right, #F39755, #EB5B35);
  transform: skewY(2deg);
  transform-origin: top right;
}

.point-section .third_box::before {
  content: "";
  position: absolute;
  top: 150%;
  right: 0;
  width: 95%;
  height: calc(300px + (520 - 300) * ((100vw - 750px) / (1920 - 750)));
  z-index: -1;
  background: linear-gradient(to right, #F39755, #EB5B35);
  transform: skewY(2deg);
  transform-origin: top right;
}

.point_inner {
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.point_wrap_second { margin-top: 650px; }
.third_box { margin-top: 650px; }

/* Point Label */
.point-label { color: #EA5330; font-family: "futura-100", sans-serif; font-weight: 400; font-style: normal; margin-top: 5%; }
.point_wrap .point-label { text-align: right; }
.point_wrap_second .point-label { text-align: left; }

.point-label-text {
  font-size: calc(28px + (58 - 28) * ((100vw - 750px) / (1920 - 750)));
  font-weight: 500;
  margin-right: 20px;
}
.point-label-number {
  font-size: calc(60px + (120 - 60) * ((100vw - 750px) / (1920 - 750)));
  font-weight: 500;
  line-height: 1;
}

/* Point Content */
.point_content { position: absolute; width: 100%; z-index: 0; }
.point_wrap .point_content { top: 180%; }

.point-text-box { flex: 1.2; }
.point-heading {
  background: var(--color-Background-CTA);
  color: #fff;
  font-size: calc(20px + (23 - 20) * ((100vw - 750px) / (1100 - 750)));
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
}
.point_wrap .point-heading { padding: 30px 40px 30px 35%; margin: 3% 0 0 120px; }
.point_wrap_second .point-heading { padding: 30px 40px 30px 3%; margin: 30px 100px 0 0; }

.point-description {
  font-size: calc(16px + (23 - 16) * ((100vw - 750px) / (1920 - 750)));
  line-height: 1.7;
  font-weight: 500;
}
.point_wrap .point-description { color: var(--color-Text-Usually); padding: 30px 50px 0 46%; }
.point_wrap_second .point-description { color: var(--color-Text-Primary); padding: 30px 46% 0 3%; }

.point-visual { position: absolute; width: 40%; z-index: 10; }
.point_wrap_second .point-visual { position: absolute; width: 40%; z-index: 10; top: 0; right: 0; }
.third_box .point-visual { top: 50%; }

/* =============================================
   Flow Section
   ============================================= */
.flow-section {
  padding: 80px 0;
  background-color: #fff;
  margin-top: 650px;
}

.flow-header { text-align: center; margin-bottom: 60px; }
.flow-sub-title { color: var(--color-Text-Accent); font-weight: 700; font-size: 24px; letter-spacing: 0.1em; }
.flow-main-title { font-size: clamp(28px, 3vw, 40px); font-weight: 700; margin-top: 10px; color: var(--color-Text-Primary); }

.flow-list { display: flex; justify-content: space-between; list-style: none; padding: 0; counter-reset: flow-counter; }
.flow-item { position: relative; width: 30%; }

/* Arrows */
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45%;
  right: -11%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 18px;
  border-color: transparent transparent transparent var(--color-Text-Accent);
  z-index: 2;
}

/* Cards */
.flow-card {
  background-color: var(--color-flow-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.flow-img-box { background: var(--color-Background-Primary); border-radius: 10px; margin-bottom: 25px; overflow: hidden; }
.flow-img-box img { width: 100%; height: auto; display: block; }

.flow-step-title {
  color: var(--color-Text-Accent);
  font-size: calc(20px + (32 - 20) * ((100vw - 750px) / (1920 - 750)));
  font-weight: 700;
  margin-bottom: 15px;
}
.flow-step-desc {
  font-size: calc(16px + (20 - 16) * ((100vw - 750px) / (1920 - 750)));
  line-height: 1.6;
  color: var(--color-Text-Primary);
  text-align: left;
  font-weight: 500;
}
.flow-list .link-break { display: block; }

.flow-note {
  text-align: left;
  margin-top: 30px;
  font-size: calc(14px + (16 - 14) * ((100vw - 750px) / (1920 - 750)));
}

/* =============================================
   Download Section
   ============================================= */
.download-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #EB6439 0%, #F2C19C 100%);
}
.download-container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--color-Background-Primary);
  padding: 50px 64px;
  border-radius: 8px;
}

.download-header { text-align: center; margin-bottom: 50px; }
.download-logo { width: 25%; margin: 0 auto 10px auto; }
.download-sub-title { font-size: clamp(16px, 2.5vw, 32px); font-weight: 700; color: var(--color-Text-Primary); }
.download-main-title { font-size: clamp(28px, 4vw, 56px); color: var(--color-Text-Accent); font-weight: 700; }

.download-content { display: flex; gap: 50px; align-items: flex-start; }
.download-visual { width: 45%; }
.download-visual img { width: 100%; height: auto; }

/* iframe */
.iframe-wrapper {
  width: 45%;
  height: auto;
  overflow: visible !important;
  background: #fff;
  align-self: flex-start;
}
#Applicationform {
  display: block;
  width: 100%;
  border: none;
  overflow: hidden;
  min-height: 600px;
  pointer-events: auto;
}


/* =============================================
  Footer
   ============================================= */
.footer {
	padding: 32px 0;
	background-color: #333;
	margin-inline: auto;
	.footer_logo {
		img {
			display: block;
			margin-inline: auto;
			width: 180px;
		}
	}
	.footer_list {
		display: flex;
		flex-direction: column;
		gap: 12px;
		width: fit-content;
		margin: 24px auto 0;
		li {
			a {
				display: flex;
				flex-flow: row;
				align-items: center;
				gap: 4px;
				font-size: 14px;
				line-height: 1.25;
				color: var(--color-Text-White);
			}
			.new_tab::after {
				content: "";
				display: inline-block;
				width: 10px;
				aspect-ratio: 1;
				background-position: center;
				background-repeat: no-repeat;
				background-size: contain;
				background-image: url(/web/jp/food_dx/asp-tanomu/image/new/icon_new-tab.svg);
			}
		}
	}
	.footer_copyright {
		margin-top: 24px;
		color: #999;
		font-size: 12px;
		text-align: center;
	}
}
@media (min-width: 768px) {
	.footer {
		.footer_logo {
			img {
				width: 240px;
			}
		}
		.footer_list {
			margin-top: 32px;
			flex-flow: row wrap;
			justify-content: center;
			gap: 12px;
			li {
				&:not(:last-child) {
					padding-right: 12px;
					border-right: solid 1px var(--color-Text-white);
				}
			}
		}
	}
}
/* =============================================
   Fixed Footer
   ============================================= */
.fixed_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 0;
  background-color: #F39755;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.3s linear;
}

.fixed_footer.is-show {
  transform: translateY(0);
  opacity: 1;
  height: 80px;
}

.fixed_footer .btn_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 90%;
  max-width: 450px;
  margin: auto;
  padding: 0;
}

.fixed_footer a.entry_btn {
  position: relative;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  color: var(--color-Text-Usually);
  font-size: calc(22px + (30 - 22) * ((100vw - 750px) / (1920 - 750)));
  padding: 0.3rem 1rem;
  background-color: var(--color-Background-CTA);
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
  border-radius: 50px;
  font-weight: 700;
  border: 4px solid #034078;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  z-index: 1;
}

.fixed_footer a.entry_btn span:before {
  content: '';
  width: clamp(30px, 3.5vw, 35px);
  height: clamp(30px, 3.5vw, 35px);
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 7.9%;
  transform: translateY(-50%);
  transition-duration: 0.3s;
}

.fixed_footer a.entry_btn span:after {
  content: '';
  width: clamp(10px, 1.2vw, 13px);
  height: clamp(10px, 1.2vw, 13px);
  border: 0;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 42%;
  right: 10.3%;
  transform-origin: center;
  margin-top: -6px;
  transition-duration: 0.3s;
}

/* =============================================
   Media Queries (Desktop 1920px+)
   ============================================= */
@media screen and (min-width: 1920px) {
  .fv { height: 1056px; padding: 0; }
  .speech-bubble { font-size: 40px; }
  h1 { font-size: 78px; margin: 70px 0; }
  a.cta_btn { font-size: 32px !important; margin-top: 40px; }
  .fv_right ul { margin-top: 50px; }
  .feature_title { font-size: 35px; }
  .text_accent { font-size: 48px; }
  .overview h2 { font-size: 56px; }
  .point-section .first_box::before, .point-section .third_box::before { top: 150%; height: 520px; }
  .point-label-text { font-size: 58px; margin-right: 20px; }
  .point-label-number { font-size: 120px; }
  .point_wrap .point_content { top: 220px; }
  .point-heading { font-size: 38px; }
  .point-description { font-size: 23px; }
  .flow-step-title { font-size: 32px; }
  .fixed_footer .btn_wrap { max-width: 550px; }
  .fixed_footer a.entry_btn { font-size: 30px; }
  .fixed_footer a.entry_btn span:after { right: 10%; }
}

@media screen and (min-width: 1400px) {
  .fv { padding: 80px 0; }
}

@media screen and (min-width: 1100px) {
  .solution-message { font-size: 46px; }
  .text-brand, .text-solve { font-size: 1.5em; }
}

/* =============================================
   Media Queries (Tablet 1100px - 750px)
   ============================================= */
@media screen and (max-width: 1100px) {
  h1 { font-size: 6.5vw; }
  h1 .h1_txt_green { font-size: 1em; }
  .point_wrap .point-heading { padding: 30px 30px 30px 32%; }
  .point_wrap_second, .third_box, .flow-section { margin-top: 60%; }
}

@media screen and (max-width: 1000px) {
  a.cta_btn span:before { border: 3px solid #fff; }
  a.cta_btn span:after { border-top: 3px solid #fff; border-right: 3px solid #fff; top: 45%; }
  .feature_item { gap: 30px; }
  .fixed_footer a.entry_btn span:after { top: 45%; }
}

@media screen and (max-width: 950px) {
  .download-content { flex-direction: column; align-items: center; }
  .download-logo { width: 35%; }
  .download-visual { width: 100%; margin-bottom: 30px; order: 2; }
  .download-form { width: 100%; order: 1; }
  .iframe-wrapper { width: 100% !important; flex: none !important; margin-left: 0 !important; }
}

@media screen and (max-width: 950px) {
  .problem-bubble { max-width: 180px; }
  .problem-solution .problem-bubble p, .problem-solution .problem-item:nth-child(1) p { margin-top: 47px; }
}

@media screen and (max-width: 900px) {
  .flow-item:not(:last-child)::after { right: -12%; }
}

@media screen and (max-width: 885px) {
  .point_wrap .point-heading { padding: 30px 30px 30px 30%; }
  .point_wrap .point-description { padding: 15px 50px 0 46%; }
}

@media screen and (max-width: 800px) {
  .problem-header { width: 55%; }
}

/* =============================================
   Media Queries (Smartphone 750px以下)
   ============================================= */
@media screen and (max-width: 750px) {
  /* FV */
  .fv { background: url(/web/jp/food_dx/tanomu/images/fv_bg_sp.jpg) top no-repeat; background-size: cover; flex-direction: column; }
  .fv .l_container { padding: 4vw; }
  .fv_pc { display: none !important; }
  .fv_wrap_sp { display: block; }
  .fv_wrap_sp ul { display: flex; justify-content: space-between; width: 100%; margin: 30px auto 0 auto; }
  .fv_wrap_sp ul li { width: 47%; text-align: center; }
  .fv_wrap .fv_left { width: 43%; }
  .fv-cta { text-align: center; }
  a.cta_btn { width: 90%; }
  .fv_tanomu_logo { margin-top: 10vw; }
  .fv_tanomu_logo img { width: 100%; }
  .fv .link-break { display: block; }

  .speech-bubble { font-size: 4vw; }
  .speech-bubble::before { border-left: 15px solid transparent; border-right: 15px solid transparent; border-top: 20px solid #ffffff; }
  .speech-bubble::after { border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 17px solid #f47621; z-index: 2; }

  h1 { font-size: 11.2vw; margin: -20px 0 0 0; }
  h1 .h1_txt_green { font-size: 1.3em; line-height: 1.8em; }
  h1 .h1_txt_min { font-size: 1em; }

  /* Overview */
  .overview .l_container { flex-direction: column; }
  .overview_left, .overview_right { width: 100%; }
  .overview_left { order: 2; margin-top: 30px; }
  .overview_right { order: 1; }
  .overview-cta { display: block; width: 90%; margin: 0 auto; text-align: center; padding-bottom: 50px; }
  .feature_list { gap: 25px; }
  .feature_icon img { width: 12vw; }
  .feature_title { font-size: 5vw; }
  .text_accent { font-size: 7vw; }
  .overview h2 { font-size: 8vw; }
  .overview .price { font-size: 55vw; line-height: 1.1; }
  .overview .price .en_min { font-size: 30vw; }

  /* Problem */
  .problem-solution { padding: 0; }
  .problem-header { width: 100%; }
  .problem-title { font-size: 8vw; text-align: center; padding: 20px 40px; }
  .problem-header .link-break { display: block; }
  .problem-list { flex-direction: column; align-items: center; }
  .problem-item { width: 100%; height: 100%; margin: -20px 0 0 0; }
  .solution-message { font-size: 8vw; }
  .text-brand, .text-solve { font-size: 1.4em; }
  .problem-item:nth-child(1) { background: url(/web/jp/food_dx/tanomu/images/problem_sp01.png) no-repeat; aspect-ratio: 394 / 232; width: 120%; }
  .problem-item:nth-child(2) { background: url(/web/jp/food_dx/tanomu/images/problem_sp02.png) no-repeat; aspect-ratio: 340 / 259; max-width: 90%; margin-top: -50px; }
  .problem-item:nth-child(3) { background: url(/web/jp/food_dx/tanomu/images/problem_sp03.png) no-repeat; aspect-ratio: 369 / 230; max-width: 100%; }
  .problem-bubble { max-width: 60%; }
  .problem-solution .problem-item:nth-child(1) p { margin-top: 24vw; }
  .problem-solution .problem-bubble p { font-size: 4.5vw; margin-top: 16vw; }
  .break::after { content: "\A"; white-space: pre; }

  /* Point */
  .point-label-text { font-size: 8vw; margin-right: 8px; }
  .point-label-number { font-size: 18vw; }
  .first_box .point-visual { width: 55%; top: 90%; left: -15%; }
  .point_wrap_second .point-visual { width: 70%; right: -26%; }
  .third_box .point-visual { width: 70%; top: 0%; left: -25%; }
  .point-section .first_box::before { width: 100%; height: 60vw; transform: skewY(5deg); }
  .point-section .third_box::before { height: 60vw; transform: skewY(5deg); }
  .point_wrap .point-heading { margin: 0 0 0 20px; padding: 10px 10px 10px 37%; font-size: 4.2vw; }
  .point_wrap_second .point-heading { padding: 10px 40px 10px 3%; margin: 30px 20px 0 0; font-size: 4.2vw; }
  .point_wrap .point-description { padding: 15px 0 0 41%; font-size: 3vw; }
  .point_wrap_second .point-description { padding: 15px 46% 0 3%; font-size: 3vw; }
  .point_wrap_second, .third_box, .flow-section { margin-top: 85%; }

  /* Flow */
  .flow-card { display: flex; justify-content: space-between; padding: 20px; }
  .flow-list { flex-direction: column; align-items: center; gap: 50px; }
  .flow-item { width: 100%; }
  .flow-img-box { width: 40%; margin-bottom: 0; }
  .flow-text-box { width: 50%; }
  .flow-list .link-break { display: inline; }
  .flow-item:not(:last-child)::after { top: auto; bottom: -45px; right: 50%; transform: translateX(50%) rotate(90deg); }
  .flow-step-title { font-size: 5vw; text-align: left; }
  .flow-step-desc { font-size: 3.5vw; }

  /* Download */
  .iframe-wrapper { width: 100% !important; }
  #Applicationform { display: block; width: 100%; border: none; overflow: hidden; }
  .download-section { padding: 40px 0; }
  .download-container { padding: 40px 20px; width: 95%; }
  .form-group { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =============================================
   Media Queries (Small Smartphone 450px/420px以下)
   ============================================= */
@media screen and (max-width: 450px) {
  .feature_icon { padding-left: 5px; }
  .feature_item { gap: 0px; }

  .download-logo { width: 45%; }
}

@media screen and (max-width: 420px) {
  .speech-bubble { height: 35px; }
  h1 { margin: -10px 0 0 0; }
  .fixed_footer a.entry_btn span:after { right: 11%; }
}