@charset "UTF-8";
:root {
  /* Colors */
  --grd: linear-gradient(143.8deg,
      rgba(236, 108, 0, 0.7) 0%,
      rgba(255, 60, 0, 0.7) 100%);
  --cream: #fff7e5;
  --black: #3c3326;
  /* Fonts */
  /* Effects */
}

body {
  font-family: "NotoSansJp-Regular", sans-serif;
  overflow-x: hidden;
}

.flex-center-v {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-center-h {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.orange-button {
  background: linear-gradient(143.95deg, #ec6c00 0%, #ff3c00 100%);
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.orange-button-outline {
  background: #ffffff;
  border-radius: 50px;
  border-width: 1.5px;
  border-style: solid;
  -o-border-image: linear-gradient(143.95deg, #ec6c00 0%, #ff3c00 100%);
     border-image: linear-gradient(143.95deg, #ec6c00 0%, #ff3c00 100%);
  border-image-slice: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.gradient-text {
  background: linear-gradient(143.95deg, #ec6c00 0%, #ff3c00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.big-text-background {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 147.2369689941px;
  line-height: 100%;
  font-weight: 700;
  opacity: 0.1;
  transform-origin: 0 0;
  transform: rotate(9.851deg) scale(1.015, 0.985);
}

.heading-large {
  font-family: "NotoSansJp-Bold", sans-serif;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.heading-medium {
  font-family: "NotoSansJp-Bold", sans-serif;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.body-text {
  font-family: "NotoSansJp-Regular", sans-serif;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
}

.orange-shadow {
  box-shadow: 0px 0px 20px 0px rgba(236, 108, 0, 0.4);
}

.base-container {
  box-sizing: border-box;
  position: relative;
}

/* 全体の設定 */
.michisuji-content {
  margin: 0 auto;
  padding: 0;
  background-color: #fff7e5;
  box-sizing: border-box;
  font-family: "NotoSansJp-Regular", sans-serif;
  text-align: center;
  align-items: center;
  overflow-x: hidden;
}

.michisuji-content h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 4px 15px;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1078px;
  margin: 0 auto;
}

.header-vector {
  height: 60px;
  width: 60px;
  margin: 0;
  padding: 0;
}

/* ボタン設定 */
.header-button {
  display: flex;
  gap: 10px;
}

.header-online-button,
.header-download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 48px;
  padding: 15px 20px;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

/* ボタン背景 */
.header-online-button {
  background: linear-gradient(-10deg, #FF3C00, #EC6C00);
}

.header-download-button {
  background: #FFFFFF;
  border: 1.5px solid #FF3C00;
}

/* テキストカラー */
.header-online-button a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
}

.header-download-button a {
  color: #EC6C00;
  font-size: 16px;
  font-weight: bold;
}

.fv-main {
  position: relative;
}

/* 背景画像設定 */
.fv-top {
  position: relative;
  padding: 0;
  height: 700px;
  width: 100%;
  background-image: url("../../../assets/img/michisuji/FV-background.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 99;
}

/* テキスト */
.fv-title-01 {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}

.fv-title-01 span {
  font-size: 20px;
}

/* スマホ用改行 */
.fv-title-br {
  display: none;
}

.fv-title-02 {
  margin-bottom: 20px;
}

/* 画像設定 */
.fv-img {
  margin-bottom: 25px;
}

.fv-title-02 img,
.fv-img img {
  width: 379px;
  max-width: 100%;
  height: auto;
}

/* ボタン */
.fv-button {
  display: flex;
  gap: 10px;
}

.online-button,
.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 48px;
  padding: 15px 20px;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

/* ボタン背景 */
.online-button {
  background: linear-gradient(-10deg, #FF3C00, #EC6C00);
}

.download-button {
  background: #FFFFFF;
  border: 1.5px solid #FF3C00;
}

/* テキストカラー */
.online-button a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
}

.download-button a {
  color: #EC6C00;
  font-size: 16px;
  font-weight: bold;
}

/* 人物の画像 */
.fv-people {
  position: absolute;
  bottom: 0;
  right: 65%;
  z-index: 1;
}

.fv-people img {
  width: 300px;
}

/* オレンジバナー */
.fv-under {
  position: relative;
  width: 100%;
  height: 100px;
  margin-top: -50px;
  margin-bottom: -50px;
  background-color: #FFAE00;
  -webkit-transform: skew(0deg, -3deg);
  padding: 30px 0;
  z-index: 100;
}

.fv-under h3 {
  position: absolute;
  width: 100%;
  color: #FFFFFF;
  margin: 0;
  font-size: 32px;
  white-space: nowrap;
  font-weight: bold;
}

.fv-under h3 span {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.fv-br {
  display: none;
}

/* 背景設定 */
.worries-container {
  padding: 0;
  margin-bottom: 40px;
  height: 598px;
  background-image: url("../../../assets/img/michisuji/worries_bg.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 内容の設定 */
.worries-main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: flex-start;
}

/* 見出し */
.worries-heading h2 {
  color: #FFFFFF;
}

/* スマホ用改行 */
.worries-br {
  display: none;
}

.worries-wrapper {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  justify-content: flex-start;
}

.worries-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 263px;
}

/* テキスト設定 */
.worries-detail {
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  align-self: stretch;
}

/* 画像設定 */
.worries-image img {
  align-self: stretch;
  flex-shrink: 0;
  height: 175px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* セクション全体の設定 */
.section-keypoint {
  position: relative;
  margin-bottom: 40px;
  padding: 0 20px;
}

/* 装飾 */
.keypoint-arrow-right {
  position: absolute;
  right: -2px;
  top: -210px;
  width: 40%;
  min-width: 320px;
  overflow: hidden;
  mix-blend-mode: multiply;
}

/* 背景文字 */
.keypoint-container {
  max-width: 840px;
  margin: 0 auto;
  padding-top: 60px;
  background-image: url("../../../assets/img/michisuji/keypoint-title_bg.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}

/* 見出し全体 */
.keypoint-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: flex-start;
}

/* 見出しテキスト */
.keypoint-heading h2 {
  color: #333333;
}

/* スマホ版見出し */
.keypoint-span-sp {
  display: none;
}

/* スマホ版改行レイアウト */
.keypoint-br-sp {
  display: none;
}

/* 信頼獲得部分のカラー */
.keypoint-span-color {
  background: linear-gradient(-3deg, #FF3C00 50%, #EC6C00 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 見出しサブ */
.keypoint-sub_heading {
  color: #3C3326;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: bold;
}

/* 画像 */
.keypoint-graph {
  max-width: 840px;
  width: 100%;
}

/* スマホ版画像 */
.keypoint-graph-SP {
  display: none;
}

/* 背景 */
.section-flow {
  position: relative;
  padding: 100px 0;
}
.section-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFAE00;
  transform: skewY(-4deg);
}
.section-flow::after {
  content: "";
  max-width: 840px;
  width: 100%;
  background-image: url("../../../assets/img/michisuji/flow-title_bg.png");
  background-size: 55%;
  background-position: top;
  background-repeat: no-repeat;
  margin: auto;
  height: 100px;
  left: 0;
  right: 0;
  top: 100px;
  position: absolute;
}

/* 背景文字 */
.flow-container {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding-top: 60px;
}

/* 見出し全体 */
.flow-wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: flex-start;
}

/* 見出しテキスト */
.flow-heading h2 {
  color: #FFFFFF;
}

/* リスト */
.flow-list {
  display: flex;
  flex-direction: row;
}

/* アイテム */
.flow-item {
  display: flex;
  flex-direction: row;
}

/* 画像と文字並び */
.flow-inner {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 190px;
  text-align: left;
  letter-spacing: 0.05em;
  gap: 10px;
}

/* 文章 */
.flow-inner p {
  font-size: 14px;
  line-height: 150%;
  text-align: justify;
}

/* 矢印 */
.arrow {
  width: 18px;
  height: 13px;
  margin-top: 28%;
}

/* 装飾 */
.flow-arrow-left {
  position: absolute;
  left: -2px;
  top: -10px;
  width: 40%;
  overflow: hidden;
  mix-blend-mode: multiply;
  z-index: 2;
}

.flow-arrow-right {
  position: absolute;
  right: -2px;
  bottom: -20px;
  width: 40%;
  overflow: hidden;
  mix-blend-mode: multiply;
  z-index: 2;
}

/* セクション全体 */
.section-howto {
  padding: 40px 20px 100px;
  width: 100%;
}

/* 背景 */
.howto-container {
  max-width: 840px;
  margin: 0 auto;
  padding-top: 60px;
  background-image: url("../../../assets/img/michisuji/howto-title_bg.png");
  background-size: 80%;
  background-position: top;
  background-repeat: no-repeat;
}

/* 見出し */
.howto-heading {
  text-align: center;
  margin-bottom: 30px;
}

/* 左右スラッシュ */
.howto-heading p {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
}

.howto-heading p span {
  font-weight: bold;
}

.howto-heading h2 {
  color: #333333;
  line-height: 1.4;
}

.howto-heading h2 span {
  background: linear-gradient(-3deg, #FF3C00 50%, #EC6C00 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* リード文 */
.howto-lead {
  margin-bottom: 30px;
}

.howto-list {
  background-color: #FFFFFF;
}

.howto-point {
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 5;
  margin: 0 auto;
}

.howto-point p {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  color: #EC6C00;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  margin: 0;
  padding: 0;
}

/* 吹き出し逆三角形 */
.howto-point p:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}

.howto-text-1 {
  background-color: #EC6C00;
  color: #FFF;
  text-align: center;
  padding: 5px 0;
  font-weight: bold;
}

.howto-text-1 p {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.howto-text-1 span {
  font-size: 35px;
  font-style: italic;
}

.howto-text-2 {
  padding: 10px 20px;
  text-align: center;
  line-height: 1.6;
}

.howto-text-2 p {
  font-size: 16px;
  font-weight: bold;
}

/* マーカー */
.howto-text-2 p span {
  background: linear-gradient(transparent 40%, #FFF7E5 50%);
}

.howto-info {
  display: flex;
  gap: 26px;
}

/* 画像 */
.howto-image {
  -o-object-fit: cover;
     object-fit: cover;
}

/* テキスト設定 */
.howto-detail {
  font-size: 16px;
  text-align: left;
}

.howto-detail h3 {
  background: linear-gradient(-3deg, #FF3C00 50%, #EC6C00 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 0;
}

.howto-detail p {
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}

.howto-detail span {
  color: #EC6C00;
}

/* 背景 */
.section-support {
  position: relative;
  padding: 100px 20px 0;
}
.section-support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/img/michisuji/orange-gradient-bg.png");
  background-size: cover;
  transform: skewY(-4deg);
}
.section-support::after {
  content: "";
  max-width: 840px;
  background-image: url("../../../assets/img/michisuji/support-title_bg.png");
  background-size: 80%;
  background-position: top;
  background-repeat: no-repeat;
  margin: auto;
  height: 100%;
  left: 0;
  right: 0;
  top: 100px;
  position: absolute;
}

/* 背景文字 */
.support-container {
  max-width: 840px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 60px;
  position: relative;
}

.support-wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* 見出し */
.support-wrapper h2 {
  color: #FFFFFF;
}

/* 画像 */
.support-images {
  display: flex;
  justify-content: center;
  gap: 25px;
  width: 100%;
  align-items: center;
}

.support-image_01,
.support-image_02 {
  width: 350px;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

/* 装飾 */
.support-arrow-left {
  position: absolute;
  left: -2px;
  top: -10px;
  width: 40%;
  overflow: hidden;
  mix-blend-mode: multiply;
  z-index: 2;
}

.support-arrow-right {
  position: absolute;
  right: -2px;
  bottom: 0px;
  width: 40%;
  overflow: hidden;
  mix-blend-mode: multiply;
  z-index: 2;
}

/* セクション全体 */
.section-contact {
  padding: 70px 20px 200px;
  width: 100%;
}

/* 背景 */
.contact-container {
  max-width: 840px;
  margin: 0 auto;
  padding-top: 50px;
  background-image: url("../../../assets/img/michisuji/contact-title_bg.png");
  background-size: 80%;
  background-position: top;
  background-repeat: no-repeat;
}

/* 見出し */
.contact-heading {
  text-align: center;
  color: #333333;
}

.contact-heading h2 {
  margin-bottom: 20px;
}

/* サブ見出し */
.contact-heading p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 56px;
}

.contact-vector-11 {
  width: 0px;
  height: 145px;
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 225px;
  overflow: visible;
}

.contact-btn_wrapper {
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: center;
}

/* サブテキスト */
.btn_01-subtext {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-radius: 25px;
  padding: 5px 10px;
  margin: 0 auto;
  text-align: center;
  top: 5px;
}

.btn_01-subtext p {
  margin: 0;
  padding: 0;
  color: #EC6C00;
  font-size: 14px;
}

/* 吹き出し逆三角形 */
.btn_01-subtext:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
}

/* ボタン背景 */
.btn_01-bg {
  background: linear-gradient(143.95deg, #ec6c00 0%, #ff3c00 100%);
  border-radius: 10px;
  padding: 22px 20px 20px 25px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 264px;
  height: 72px;
}

.btn_01-image {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.btn_01-text {
  color: #ffffff;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
}
.btn_01-text a {
  color: #ffffff;
}

/* サブテキスト */
.btn_02-subtext {
  position: relative;
  display: inline-block;
  outline: 1.5px solid #FF3C00;
  outline-offset: -1.5px;
  background-color: #fff;
  border-radius: 25px;
  padding: 5px 10px;
  margin: 0 auto;
  text-align: center;
  top: 5px;
}

.btn_02-subtext p {
  margin: 0;
  padding: 0;
  color: #EC6C00;
  font-size: 14px;
}

/* 吹き出し逆三角形 */
.btn_02-subtext:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8.5px solid transparent;
  border-right: 8.5px solid transparent;
  border-top: 10px solid #FFFFFF;
  z-index: 2;
}

.btn_02-subtext:before {
  content: "";
  position: absolute;
  bottom: -6.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5.5px solid transparent;
  border-right: 5.5px solid transparent;
  border-top: 6.5px solid #FF3C01;
  z-index: 1;
}

/* ボタン背景 */
.btn_02-bg {
  background: #FFFFFF;
  outline: 1.5px solid #FF3C00;
  outline-offset: -1.5px;
  border-radius: 10px;
  padding: 22px 20px 20px 25px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 264px;
  height: 72px;
}

.btn_02-image {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.btn_02-text {
  color: #ec6c00;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
}
.btn_02-text a {
  color: #EC6C00;
}

/* 背景 */
.section-footer {
  position: relative;
  padding: 30px 20px;
  background-image: url(../../../assets/img/michisuji/footer_bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
}

/* テキスト */
.footer-links a,
.footer-links p {
  color: #FFFFFF;
  text-align: left;
  font-size: 14px;
  text-decoration: none;
}

.footer-links_container {
  flex-flow: column;
  display: flex;
  gap: 30px;
  text-align: center;
}

/* リンクスタイル */
.footer-links ul {
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links--list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

/* 区切り線 */
.footer-links--list ul li {
  margin: 10px;
  padding-left: 24px;
  border-left: 1px #FFFFFF solid;
}

.footer-links--list li:first-child {
  border: none;
}

/* プライバシーリンク */
.footer-links--policy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

/* 区切り線 */
.footer-links--policy ul li {
  margin: 10px;
  padding-left: 24px;
  border-left: 1px #FFFFFF solid;
}

.footer-links--policy li:first-child {
  border: none;
}

/* ロゴ */
.footer-michisuji-logo-a-2 {
  flex-shrink: 0;
  width: 85px;
  height: 85px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}

.footer-links--company {
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer-links--company ul {
  gap: 20px;
}

.footer-links--company ul {
  gap: 20px;
  display: flex;
}

.links--company_name {
  display: flex;
}

.floating {
  position: fixed;
  right: 0;
  bottom: 18%;
  z-index: 100;
}

.floating img {
  width: 300px;
}

.floating a {
  display: block;
}

@media screen and (max-width: 840px) {
  .michisuji-content h2 {
    font-size: 35px;
  }

  .fv-under h3 {
    font-size: 28px;
  }

  /* コンテナの調整 */
  .worries-container {
    height: auto;
    padding: 100px 20px 200px;
    background-size: cover;
  }

  .worries-wrapper {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  /* メインコンテンツの調整 */
  .worries-main {
    gap: 30px;
    width: 100%;
  }

  /* 見出しの調整 */
  .worries-heading h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 0;
  }

  /* 各アイテムの調整 */
  .worries-item {
    gap: 15px;
  }

  /* テキスト部分の調整 */
  .worries-detail {
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
  }

  /* 画像の調整 */
  .worries-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
  }

  /* 装飾 */
  .worries-arrow-right {
    bottom: -40%;
  }

  /* 見出し */
  .keypoint-span-sp {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .keypoint-span-pc {
    display: none;
  }

  /* スマホ版改行レイアウト */
  .keypoint-br-sp {
    display: block;
  }

  .keypoint-br-pc {
    display: none;
  }

  /* PC画像 */
  .keypoint-graph {
    display: none;
  }

  /* スマホ版画像 */
  .keypoint-graph-SP {
    display: block;
    width: 70%;
  }

  .section-flow {
    padding: 150px 20px;
  }

  .flow-list {
    flex-direction: column;
  }

  .flow-inner {
    flex-direction: row;
    justify-content: center;
    width: 92%;
  }

  .flow-inner img {
    width: 200px;
  }

  .flow-inner p {
    width: 200px;
    height: 100%;
    line-height: 1.5;
  }

  .flow-item {
    flex-direction: column;
    align-items: center;
  }

  /* 矢印 */
  .arrow {
    width: 18px;
    height: 13px;
    margin: 20px 0;
    transform: rotate(90deg);
  }

  .howto-info {
    flex-direction: column;
  }

  .section-support {
    padding: 130px 20px 0;
  }

  .support-images {
    flex-direction: column;
  }

  .contact-btn_wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .section-footer {
    padding: 60px 10px;
  }

  .footer-links_container {
    flex-flow: row;
    gap: 25px;
  }

  .footer-links--list ul {
    display: block;
    border-right: 1px #f0f0f0 solid;
  }

  .footer-links--list ul li {
    padding: 0 25px 20px 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    text-align: left;
    line-height: 1.5em;
  }

  .footer-links--policy ul {
    display: block;
  }

  .footer-links--policy ul li {
    padding: 0 25px 20px 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    text-align: left;
    line-height: 1.5em;
  }

  .footer-links--company {
    padding-bottom: 260px;
  }
}
@media screen and (max-width: 750px) {
  .fv-under {
    padding: 16px 0;
  }

  .fv-under h3 {
    font-size: 28px;
    text-align: center;
  }

  .fv-br {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .michisuji-content h2 {
    font-size: 28px;
  }

  /* ボタン */
  .header-online-button,
.header-download-button {
    width: 100px;
    height: 28px;
    padding: 8px 2px;
  }

  .header-online-button a,
.header-download-button a {
    font-size: 9px;
  }

  .fv-under {
    padding: 24px 0;
  }

  .fv-under h3 {
    font-size: 20px;
  }

  .fv-people {
    display: none;
  }
}
@media screen and (max-width: 476px) {
  .footer-links--company ul {
    display: block;
  }

  .links--company_name {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 460px) {
  .fv-content {
    width: 330px;
  }

  .fv-title-br {
    display: block;
  }

  /* ボタン */
  .fv-button {
    flex-direction: column;
  }

  .fv-under h3 {
    font-size: 20px;
  }

  /* スマホ用改行 */
  .worries-br {
    display: block;
  }

  .flow-inner img {
    width: 150px;
  }

  .flow-inner p {
    width: 150px;
    height: 100%;
    line-height: 110%;
  }
}