@charset "UTF-8";
/* ボックスサイズの基準 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 代表的な既定マージンの除去 */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

/* リストのパディングと箇条書きマーカーを除去 */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* body の基本値 */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出しはプロジェクト側でサイズ/太さを管理 */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* 画像・メディア要素 */
img, svg, video, canvas, audio, iframe {
  display: block;
  max-width: 100%;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  padding: 0;
}

/* フォーム要素 */
button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  outline: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* blockquote / q の引用符をリセット */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

/* hidden 属性の強制非表示 */
[hidden] {
  display: none !important;
}

/**
 * root-scale-plateau
 * 1920px→$base-size を基準に「幅に比例して縮小」し、
 * $plateau-vw 未満はその時点の値で固定（横スクロール前提）
 * 例: @include root-scale-plateau(10px, 1920px, 1200px);
 */
/**
 * root-scale-sp-fluid
 * 375px → 10px を基準に、画面幅に比例して拡大する。
 * 例: 375px = 10px, 750px = 20px, 750px以上はそのまま伸び続ける。
 */
/**
 * font-size-responsive
 * pctablet表示時の最低フォントサイズ14pxを保証するレスポンシブフォントサイズ
 * 例: @include font-size-responsive(1.8rem);  // 通常1.8rem、pctablet時最低14px
 */
/* web font*/
@font-face {
  font-family: "MMC-Regular";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("MMC-Regular"), url("../fonts/MMC-Regular.otf") format("opentype");
}
@font-face {
  font-family: "MMC-Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("MMC-Bold"), url("../fonts/MMC-Bold.otf") format("opentype");
}
html {
  /* PCレイアウト リキッド処理 */
  font-size: 10px;
  font-size: clamp(5.4928571429px, 0.7142857143vw, 10px);
  /* SPレイアウト リキッド処理 */
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: calc(2.6666666667vw);
  }
}

body {
  color: #010101;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
}

a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

.pc-only {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

.inner {
  max-width: calc(128.8rem + 8%);
  padding: 0 4%;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 5%;
  }
}
.inner--small {
  max-width: calc(84rem + 8%);
}
.inner--medium {
  max-width: calc(100rem + 8%);
}

.font-mmc-bold {
  font-family: "MMC-Bold", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
}

.fade-target {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.5s ease-out, transform 0.3s ease-out;
  z-index: 100;
  position: relative;
}

.fade-target-mainVisual {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.3s ease-out;
  z-index: 100;
  position: relative;
}
.fade-target-mainVisual--delayed {
  transition-delay: 1s;
}

.transition-delayed--3ms {
  transition-delay: 0.3s;
}
.transition-delayed--5ms {
  transition-delay: 0.5s;
}
.transition-delayed--8ms {
  transition-delay: 0.8s;
}
.transition-delayed--10ms {
  transition-delay: 1s;
}
.transition-delayed--15ms {
  transition-delay: 1.5s;
}
.transition-delayed--20ms {
  transition-delay: 2s;
}
@media screen and (max-width: 768px) {
  .transition-delayed--sp--3ms {
    transition-delay: 0.3s;
  }
  .transition-delayed--sp--5ms {
    transition-delay: 0.5s;
  }
  .transition-delayed--sp--8ms {
    transition-delay: 0.8s;
  }
  .transition-delayed--sp--10ms {
    transition-delay: 1s;
  }
  .transition-delayed--sp--15ms {
    transition-delay: 1.5s;
  }
  .transition-delayed--sp--20ms {
    transition-delay: 2s;
  }
}

.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.highlighter {
  position: relative;
  z-index: 1;
}
.highlighter::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 33%;
  bottom: 0.5rem;
  left: 0%;
  background-color: #deff54;
  z-index: -1;
  transition: all ease 0.3s;
}

.is-visible .highlighter::before {
  width: 100%;
  transition-delay: 2.1s;
}

.c-btn {
  height: 7.7rem;
  border-radius: 7.7rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.45;
  background-color: #ed0000;
  color: #fff;
  transition: all ease 0.3s;
  position: relative;
}
.c-btn:hover {
  opacity: 0.4;
}
.c-btn:hover::before {
  right: 2.6rem;
}
@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 1.4rem;
    padding-right: 2rem;
    height: 5rem;
  }
}
.c-btn--black {
  background-color: #010101;
  max-width: 61.6rem;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .c-btn--black {
    font-size: 1.4rem;
    height: 7.7rem;
  }
}
.c-btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 2.26rem;
  height: 2.26rem;
  background: url(../images/button_arrow.png) no-repeat center/contain;
  right: 3.8rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn::before {
    width: 2rem;
    height: 2rem;
    right: 1.8rem;
  }
}

.c-title {
  max-width: 65.5rem;
  margin: 0 auto;
  padding: 0.7rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.43;
  color: #f9f9f9;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .c-title {
    margin: 0 5%;
    font-size: 1.9rem;
    line-height: 1.3;
  }
}
.c-title--small {
  max-width: 39.2rem;
}
.c-title::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: skew(-15deg, 0deg);
  background-color: #145a2b;
  z-index: -1;
}

.c-link-style {
  color: #145a2b;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.header {
  height: 10rem;
  background-color: #000;
  border-bottom: 0.3rem solid #e00000;
}
@media screen and (max-width: 768px) {
  .header {
    height: 5rem;
  }
}
.header__flexBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__flexItem img {
  width: 7rem;
}
@media screen and (max-width: 768px) {
  .header__flexItem img {
    width: 3.376rem;
  }
}

.footer {
  height: 7rem;
  border-top: 0.2rem solid #707070;
}
@media screen and (max-width: 768px) {
  .footer {
    height: auto;
  }
}
.footer__navigation {
  padding: 1.2rem 0 0.3rem;
}
@media screen and (max-width: 768px) {
  .footer__navigation {
    padding: 1.2rem 0.8rem 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__navigation .inner {
    padding: 0;
  }
}
.footer__navList {
  display: flex;
  justify-content: end;
  gap: 0 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer__navList {
    flex-wrap: wrap;
    justify-content: start;
  }
}
.footer__navItem {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .footer__navItem {
    font-size: 1.2rem;
  }
}
.footer__copyRight {
  background-color: #cac9ca;
  border-top: 0.1rem solid #ef0041;
  padding: 0.5rem 0;
}
.footer__copyRight-wrapper {
  display: flex;
  justify-content: end;
}
.footer__copyRight-wrapper small {
  margin-left: auto;
}

.mainVisual {
  padding: 11rem 0 2.2rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mainVisual {
    padding: 4rem 0 2.5rem;
  }
}
.mainVisual__wrapper {
  padding: 0 0 13rem;
  margin-bottom: 5.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mainVisual__wrapper {
    padding: 0 0 15rem;
    margin-bottom: 8.41rem;
  }
}
.mainVisual__wrapper::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 62%;
  height: 100%;
  bottom: 0;
  background: url(../images/mainVisual_bg_city.png) no-repeat bottom/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .mainVisual__wrapper::before {
    width: 43.45rem;
    left: -4rem;
  }
}
.mainVisual__inner {
  max-width: calc(106.4rem + 10%);
  padding: 0 5%;
  margin: 0 auto;
}
.mainVisual__title {
  margin: 0 0 4rem;
  width: 57.8%;
}
@media screen and (max-width: 768px) {
  .mainVisual__title {
    width: 24.786rem;
    margin: 0 auto 2rem;
  }
}
.mainVisual__text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem 0;
}
@media screen and (max-width: 768px) {
  .mainVisual__text {
    align-items: center;
    gap: 0.6rem 0;
  }
}
.mainVisual__text span {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .mainVisual__text span {
    font-size: 2.1rem;
    line-height: 1.7;
    text-align: center;
    padding: 0 0.4rem;
  }
}
.mainVisual__text span::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 90%;
  width: 100%;
  background-color: #145a2b;
  z-index: -1;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mainVisual__text::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 14rem;
  height: 18.1rem;
  bottom: -20.5rem;
  left: -3.4rem;
  background: url(../images/icon_character_jump_toRight.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .mainVisual__text::after {
    width: 7rem;
    height: 9rem;
    left: -0.5rem;
  }
}
.mainVisual__car-image {
  z-index: -1;
  width: 70rem;
  position: absolute;
  left: 50%;
  bottom: -7.7rem;
}
@media screen and (max-width: 768px) {
  .mainVisual__car-image {
    width: 27.8rem;
    left: 25.46%;
    bottom: -6rem;
  }
}
.mainVisual .leadText {
  color: #145a2b;
  position: relative;
  margin-top: -20rem;
  padding-top: 20rem;
}
.mainVisual .leadText .inner {
  max-width: calc(79.5rem + 10%);
}
.mainVisual .leadText__title {
  font-size: 4.9rem;
  font-weight: 700;
  line-height: 1.44;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .mainVisual .leadText__title {
    font-size: 2rem;
    line-height: 1.458;
    letter-spacing: -0.03em;
  }
}
.mainVisual .leadText__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.77;
}
.mainVisual .leadText__text.large {
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .mainVisual .leadText__text {
    font-size: 1.3rem;
    line-height: 1.75;
    letter-spacing: -0.03em;
  }
  .mainVisual .leadText__text.large {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.outdoorTypes {
  padding: 2.2rem 0 59.6rem;
  background-color: #efefef;
  position: relative;
}
@media screen and (max-width: 768px) {
  .outdoorTypes {
    padding: 15.26rem 0 34.44rem;
  }
}
.outdoorTypes::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 14rem;
  background-color: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  top: 0;
}
@media screen and (max-width: 768px) {
  .outdoorTypes::before {
    height: 5.451rem;
  }
}
.outdoorTypes::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/outdoorTypes_bottom_bg.png) no-repeat bottom/100%;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .outdoorTypes::after {
    background-image: url(../images/outdoorTypes_bottom_bg_sp.png);
  }
}
.outdoorTypes__anchorButtons {
  display: flex;
  justify-content: center;
  gap: 0 5.6rem;
  position: relative;
  margin-bottom: 11.4rem;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__anchorButtons {
    flex-direction: column;
    justify-content: space-between;
    gap: 1.6rem 0rem;
    margin-bottom: 0;
  }
}
.outdoorTypes__anchorButtons::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 23.4rem;
  height: 23.4rem;
  background: url(../images/outdoorTypes_delica_mini.png) no-repeat center/contain;
  left: 50%;
  transform: translateX(-50%);
  z-index: 110;
  bottom: -6.8rem;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__anchorButtons::before {
    width: 15rem;
    height: 15rem;
    top: -16.5rem;
    left: 53%;
  }
}
.outdoorTypes__anchorButton {
  width: 50.4rem;
  height: 27.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem 0;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.34;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__anchorButton {
    width: 100%;
    font-size: 1.6rem;
    width: 34.3rem;
    height: 16.893rem;
  }
}
.outdoorTypes__anchorButton::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat center/contain;
  z-index: -1;
  transition: all ease 0.3s;
}
.outdoorTypes__anchorButton::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 30.2rem;
  height: 23.7rem;
  background: no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__anchorButton::after {
    width: 19.2rem;
    height: 15.7rem;
  }
}
.outdoorTypes__anchorButton .outdoorTypes__anchorButton-bg-box {
  position: absolute;
  width: 100%;
  height: 22rem;
  z-index: -2;
  left: 1rem;
  bottom: -0.5rem;
  border-radius: 4rem;
  transition: all ease 0.3s;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__anchorButton .outdoorTypes__anchorButton-bg-box {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .outdoorTypes__anchorButton:hover {
    opacity: 1;
    transform: translate(1rem, 1rem);
  }
  .outdoorTypes__anchorButton:hover .outdoorTypes__anchorButton-bg-box {
    transform: translate(-1rem, -1rem);
  }
}
.outdoorTypes__anchorButton.cityOutdoor::before {
  background-image: url(../images/outdoorTypes_anchor_city.png);
}
@media screen and (max-width: 768px) {
  .outdoorTypes__anchorButton.cityOutdoor::before {
    background-image: url(../images/outdoorTypes_anchor_city_sp.png);
  }
}
.outdoorTypes__anchorButton.cityOutdoor::after {
  background-image: url(../images/outdoorTypes_anchor_city_view.png);
  left: -3rem;
  top: -4rem;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__anchorButton.cityOutdoor::after {
    left: -2.3rem;
    top: -1.4rem;
    background-image: url(../images/outdoorTypes_anchor_city_view_sp.png);
  }
}
.outdoorTypes__anchorButton.cityOutdoor .outdoorTypes__anchorButton-bg-box {
  background-color: #db5344;
}
.outdoorTypes__anchorButton.hardcoreOutdoor::before {
  background-image: url(../images/outdoorTypes_anchor_hardcore.png);
}
@media screen and (max-width: 768px) {
  .outdoorTypes__anchorButton.hardcoreOutdoor::before {
    background-image: url(../images/outdoorTypes_anchor_hardcore_sp.png);
  }
}
.outdoorTypes__anchorButton.hardcoreOutdoor::after {
  background-image: url(../images/outdoorTypes_anchor_hardcore_view.png);
  right: -3rem;
  top: -4rem;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__anchorButton.hardcoreOutdoor::after {
    left: -2.3rem;
    top: -1.4rem;
    background-image: url(../images/outdoorTypes_anchor_hardcore_view_sp.png);
  }
}
.outdoorTypes__anchorButton.hardcoreOutdoor .outdoorTypes__anchorButton-bg-box {
  background-color: #4a7e58;
}
.outdoorTypes__anchorButton span {
  font-size: 4.4rem;
  position: relative;
  margin: 7.5rem 0 -1rem;
  padding: 0 1rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__anchorButton span {
    margin: 3rem 0 -0.6rem;
    font-size: 2.2rem;
  }
}
.outdoorTypes__anchorButton span::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 90%;
  background-color: #fff;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.outdoorTypes__section-wrapper {
  padding: 5.4rem 11.2rem 6rem;
  border-radius: 8rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__section-wrapper {
    padding: 3.6rem 2.4rem 6rem;
    border-radius: 4rem;
  }
}
.outdoorTypes__section-wrapper::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: no-repeat bottom/contain;
}
.outdoorTypes__section {
  padding-top: 9.1rem;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__section {
    padding-top: 8.4rem;
  }
}
.outdoorTypes__section.cityOutdoor .outdoorTypes__section-wrapper {
  background-color: #fcd9d7;
}
.outdoorTypes__section.cityOutdoor .outdoorTypes__section-wrapper::before {
  background-image: url(../images/outdoorType_section_bg_cityOutdoor.png);
}
@media screen and (max-width: 768px) {
  .outdoorTypes__section.cityOutdoor .outdoorTypes__section-wrapper::before {
    background-image: url(../images/outdoorType_section_bg_cityOutdoor_sp.png);
  }
}
.outdoorTypes__section.cityOutdoor .outdoorTypes__section-wrapper .outdoorTypes__section-typeName {
  background-color: #db5344;
}
.outdoorTypes__section.cityOutdoor .outdoorTypes__section-wrapper .outdoorTypes__section-typeName::before, .outdoorTypes__section.cityOutdoor .outdoorTypes__section-wrapper .outdoorTypes__section-typeName::after {
  background-color: #db5344;
}
.outdoorTypes__section.cityOutdoor .outdoorTypes__section-wrapper .outdoorTypes__pointBox .outdoorTypes__point .outdoorTypes__point-image::before {
  background-image: url(../images/outdoorTypes_icon_point_cityOutdoor.png);
}
.outdoorTypes__section.cityOutdoor .outdoorTypes__section-wrapper .outdoorTypes__section-title::before {
  background-image: url(../images/icon_character_stand_toRight.png);
}
@media screen and (max-width: 768px) {
  .outdoorTypes__section.cityOutdoor .outdoorTypes__section-wrapper .outdoorTypes__section-title::before {
    width: 7.266rem;
    height: 8.032rem;
    top: -13.8rem;
  }
}
.outdoorTypes__section.hardcoreOutdoor .outdoorTypes__section-wrapper {
  background-color: #dee2d8;
}
.outdoorTypes__section.hardcoreOutdoor .outdoorTypes__section-wrapper::before {
  background-image: url(../images/outdoorType_section_bg_hardcoreOutdoor.png);
}
@media screen and (max-width: 768px) {
  .outdoorTypes__section.hardcoreOutdoor .outdoorTypes__section-wrapper::before {
    background-image: url(../images/outdoorType_section_bg_hardcoreOutdoor_sp.png);
  }
}
.outdoorTypes__section.hardcoreOutdoor .outdoorTypes__section-wrapper .outdoorTypes__section-typeName {
  background-color: #4a7e58;
}
.outdoorTypes__section.hardcoreOutdoor .outdoorTypes__section-wrapper .outdoorTypes__section-typeName::before, .outdoorTypes__section.hardcoreOutdoor .outdoorTypes__section-wrapper .outdoorTypes__section-typeName::after {
  background-color: #4a7e58;
}
.outdoorTypes__section.hardcoreOutdoor .outdoorTypes__section-wrapper .outdoorTypes__pointBox .outdoorTypes__point .outdoorTypes__point-image::before {
  background-image: url(../images/outdoorTypes_icon_point_hardcoreOutdoor.png);
}
.outdoorTypes__section.hardcoreOutdoor .outdoorTypes__section-wrapper .outdoorTypes__section-title::before {
  width: 11.55rem;
  height: 15rem;
  top: -3.3rem;
  left: -1.5rem;
  background-image: url(../images/icon_character_jump_toRight.png);
}
@media screen and (max-width: 768px) {
  .outdoorTypes__section.hardcoreOutdoor .outdoorTypes__section-wrapper .outdoorTypes__section-title::before {
    width: 6.743rem;
    height: 8.706rem;
    top: -13.7rem;
    left: -0.8rem;
  }
}
.outdoorTypes__section-typeName {
  font-size: 2.4rem;
  line-height: 1.458;
  font-weight: 700;
  margin: 0 auto 2rem;
  padding: 0 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__section-typeName {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 769px) {
  .outdoorTypes__section-typeName::before, .outdoorTypes__section-typeName::after {
    content: "";
    display: inline-block;
    position: absolute;
    height: 0.6rem;
    width: 15rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .outdoorTypes__section-typeName::before {
    left: -18rem;
  }
  .outdoorTypes__section-typeName::after {
    right: -18rem;
  }
}
.outdoorTypes__section-typeName img {
  position: absolute;
  width: 11rem;
  height: 10.4rem;
  right: -8.8rem;
  top: -8.6rem;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__section-typeName img {
    width: 8.5rem;
    height: 8rem;
    right: -5rem;
    top: -6.3rem;
  }
}
.outdoorTypes__section-title {
  font-size: 5rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.9rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__section-title {
    font-size: 2.1rem;
  }
}
.outdoorTypes__section-title::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12rem;
  height: 13.2rem;
  left: 0;
  top: -4.2rem;
  background: no-repeat center/contain;
}
.outdoorTypes__text {
  font-size: 2rem;
  font-weight: 500;
  padding-left: 11.2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__text {
    padding-left: 0;
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: -0.03em;
  }
}
.outdoorTypes__pointBox {
  display: flex;
  justify-content: space-between;
  gap: 0 5.6rem;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__pointBox {
    flex-direction: column;
    gap: 4rem 0;
  }
}
.outdoorTypes__point {
  flex: 1;
}
.outdoorTypes__point-image {
  padding-left: 9.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__point-image {
    padding: 1rem 0 0 4rem;
  }
}
.outdoorTypes__point-image::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10rem;
  height: 10rem;
  background: no-repeat center/contain;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__point-image::before {
    width: 8rem;
    height: 8rem;
    left: -2.4rem;
  }
}
.outdoorTypes__point-title {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin: -2.4rem 0 2rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__point-title {
    font-size: 2.1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem 0;
    margin: -1.3rem 0 2rem;
    letter-spacing: -0.03em;
  }
}
.outdoorTypes__point-title span {
  position: relative;
}
.outdoorTypes__point-title span:first-child {
  padding-left: 0.5rem;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__point-title span:first-child {
    padding: 0.3rem 0.5rem;
  }
}
.outdoorTypes__point-title span:last-child {
  padding-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__point-title span:last-child {
    padding: 0.3rem 0.5rem;
  }
}
.outdoorTypes__point-title span::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #000;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.outdoorTypes__point-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.666;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .outdoorTypes__point-text {
    font-size: 1.15rem;
    line-height: 2;
  }
}

.support {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .support {
    padding: 10rem 0 6rem;
  }
}
.support__subTitle {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  display: flex;
  justify-content: center;
  color: #145a2b;
  margin-bottom: 2.68rem;
}
@media screen and (max-width: 768px) {
  .support__subTitle {
    font-size: 2rem;
  }
}
.support__subTitle span {
  position: relative;
}
.support__subTitle span::before, .support__subTitle span:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 4.67rem;
  height: 4.27rem;
  background: no-repeat center/contain;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .support__subTitle span::before, .support__subTitle span:after {
    width: 4rem;
    height: 3.72rem;
  }
}
.support__subTitle span::before {
  left: -7.7rem;
  background-image: url(../images/support_subTitle_decor_left.png);
}
@media screen and (max-width: 768px) {
  .support__subTitle span::before {
    left: -7rem;
  }
}
.support__subTitle span::after {
  right: -7.7rem;
  background-image: url(../images/support_subTitle_decor_right.png);
}
@media screen and (max-width: 768px) {
  .support__subTitle span::after {
    right: -7rem;
  }
}
.support__title {
  margin-bottom: 2rem;
}
.support__text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .support__text {
    font-size: 1.5rem;
  }
}
.support__commentItem {
  display: flex;
  justify-content: space-between;
  gap: 0 1rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .support__commentItem {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem 0;
  }
}
.support__commentIcon {
  width: 14rem;
}
.support__commentTextBox {
  width: 68.7rem;
}
@media screen and (max-width: 768px) {
  .support__commentTextBox {
    width: 88.4%;
  }
}
.support__commentTextBox.serviceStaff .support__commentTitle::before {
  background-color: #978c76;
}
.support__commentTextBox.serviceStaff .support__commentText {
  height: 16.2rem;
}
.support__commentTextBox.serviceStaff .support__commentText::before {
  background-image: url(../images/support_balloon01.png);
}
@media screen and (max-width: 768px) {
  .support__commentTextBox.serviceStaff .support__commentText {
    height: auto;
  }
  .support__commentTextBox.serviceStaff .support__commentText::before {
    background-image: url(../images/support_balloon01_sp.png);
  }
}
.support__commentTextBox.salesStaff .support__commentTitle::before {
  background-color: #855e33;
}
.support__commentTextBox.salesStaff .support__commentText {
  height: 14rem;
}
.support__commentTextBox.salesStaff .support__commentText::before {
  background-image: url(../images/support_balloon02.png);
}
@media screen and (max-width: 768px) {
  .support__commentTextBox.salesStaff .support__commentText {
    height: auto;
  }
  .support__commentTextBox.salesStaff .support__commentText::before {
    background-image: url(../images/support_balloon02_sp.png);
  }
}
.support__commentTextBox.manager .support__commentTitle::before {
  background-color: #c50004;
}
.support__commentTextBox.manager .support__commentText {
  height: 14.4rem;
}
.support__commentTextBox.manager .support__commentText::before {
  background-image: url(../images/support_balloon03.png);
}
@media screen and (max-width: 768px) {
  .support__commentTextBox.manager .support__commentText {
    height: auto;
  }
  .support__commentTextBox.manager .support__commentText::before {
    background-image: url(../images/support_balloon03_sp.png);
  }
}
.support__commentTitle {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  position: relative;
  color: #fff;
  margin: 0 0 1rem 2rem;
}
@media screen and (max-width: 768px) {
  .support__commentTitle {
    font-size: 2rem;
    margin: 0 0 1rem 0.7rem;
  }
}
.support__commentTitle::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skew(-15deg, 0deg);
  z-index: -1;
}
.support__commentText {
  padding: 2rem 2.65rem 2rem 4.6rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .support__commentText {
    padding: 3rem 2.4rem 5rem;
  }
}
.support__commentText::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: no-repeat center/cover;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .support__commentText::before {
    width: 101%;
    background-size: 100% 100%;
  }
}

.insurance {
  background-color: #f6f6f6;
  padding: 10rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .insurance {
    padding: 10rem 0 6.8rem;
  }
}
.insurance::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  max-width: 60rem;
  height: 6rem;
  background-color: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.insurance__title {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .insurance__title {
    max-width: 27rem;
    margin: 0 auto 3rem;
    text-align: center;
  }
}
.insurance__text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .insurance__text {
    font-size: 1.6rem;
  }
}
.insurance__text span {
  font-size: 2.8rem;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .insurance__text span {
    font-size: 2rem;
  }
}
.insurance__list {
  display: flex;
  justify-content: space-between;
  gap: 0 1.7rem;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 768px) {
  .insurance__list {
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .insurance__listItem {
    width: calc((100% - 1.6rem) / 3);
  }
}
.insurance__commentBox {
  display: flex;
  justify-content: space-between;
  gap: 0 1rem;
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 768px) {
  .insurance__commentBox {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.insurance__commentIcon {
  width: 14rem;
}
.insurance__commentTextBox {
  width: 68.7rem;
  padding: 3.5rem 0 0;
}
@media screen and (max-width: 768px) {
  .insurance__commentTextBox {
    width: 100%;
    padding: 0;
  }
}
.insurance__commentTextBox small {
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 2rem;
}
.insurance__commentText {
  height: 9.5rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  position: relative;
  padding: 3.55rem 2.65rem 3.55rem 4.6rem;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .insurance__commentText {
    padding: 3rem 2.4rem 4.4rem;
    height: auto;
    letter-spacing: -0.03em;
  }
}
.insurance__commentText::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/insurance_balloon.png) no-repeat center/contain;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .insurance__commentText::before {
    background-image: url(../images/insurance_balloon_sp.png);
  }
}
.insurance__commentText-small-sp {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .insurance__linkButton.pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .insurance__linkButton.sp-only {
    display: none !important;
  }
}

.ctaArea {
  padding: 11.3rem 0 13.1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ctaArea {
    padding: 23rem 0 9.2rem;
  }
}
.ctaArea::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  max-width: 60rem;
  height: 6rem;
  background-color: #f6f6f6;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ctaArea__title {
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 768px) {
  .ctaArea__title {
    height: 6rem;
    max-width: 28.3rem;
    margin: 0 auto 2rem;
  }
}
.ctaArea__text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ctaArea__text {
    margin-bottom: 4rem;
    font-size: 1.5rem;
  }
}
.ctaArea__text::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 11.7rem;
  height: 13rem;
  left: 5.8rem;
  bottom: 0;
  background: url(../images/icon_character_stand_toRight.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .ctaArea__text::before {
    width: 6rem;
    height: 6.6rem;
    top: -17.4rem;
    left: 2.6rem;
  }
}
.ctaArea__text::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 20.85rem;
  width: 19.77rem;
  right: -0.7rem;
  bottom: -1.2rem;
  background: url(../images/ctaArea_delica_mini.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .ctaArea__text::after {
    width: 15.8rem;
    height: 17.1rem;
    right: auto;
    left: 52%;
    bottom: auto;
    top: -26.6rem;
    transform: translateX(-50%);
  }
}
.ctaArea__linkButtons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem 0;
}
@media screen and (max-width: 768px) {
  .ctaArea__linkButton {
    height: 5rem;
  }
}/*# sourceMappingURL=styles.css.map */