@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  margin: unset;
}

* {
  min-height: 0;
}

:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: scroll;
}

ul,
ol {
  list-style-type: "";
  padding: unset;
}

dt {
  font-weight: bold;
}

button {
  border-width: 1px;
  border-style: solid;
  border-color: unset;
  border-radius: unset;
  color: unset;
  background-color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
  touch-action: manipulation;
}
button:not(:disabled,
[aria-disabled=true]) {
  cursor: pointer;
}

:disabled,
[aria-disabled=true] {
  cursor: default;
}

:any-link {
  color: unset;
  text-decoration-line: unset;
  text-decoration-thickness: 1px;
  text-decoration-thickness: from-font;
  text-underline-offset: 0.2em;
}

img,
svg,
picture,
video,
canvas,
iframe {
  height: auto;
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline-offset: 3px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

:root {
  --main-color: #0065ac;
  --header-height: 50px;
  --default-font-family: "Helvetica Neue", Helvetica, Arial,
    "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo",
    system-ui, sans-serif;
  --roboto-font-family: "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans",
    var(--default-font-family);
  --100vw: calc(100vw - var(--scrollbar-width));
  --half-leading: calc((1em - 1lh) / 2);
  --duration: 0.1s;
}
@media (width < 375px) {
  :root {
    --100vw: 100vw;
  }
}
@media (width > 768px) {
  :root {
    --header-height: 100px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --duration: 0s;
  }
}

@property --scrollbar-width {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}
body {
  font-weight: 400;
  font-family: "Noto Sans JP", var(--default-font-family);
  font-size: 16px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: no-preference) {
  :root:has([id], :target, :focus) {
    scroll-behavior: smooth;
  }
}
[id],
:target,
:focus-within {
  scroll-margin-top: calc(var(--header-height) + 10px);
}

a.cv-btn {
  --_shadow-offset: 1.5px 1.5px;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  align-content: center;
  transition-duration: var(--duration);
  transition-property: color, background-color, box-shadow, translate;
  padding-block: 0.5em;
  padding-inline: 0.75em 0.5em;
  background-color: var(--main-color);
  border-radius: calc(infinity * 1px);
  box-shadow: var(--_shadow-offset) 0 0 #003c65;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
}
@media (width > 768px) {
  a.cv-btn {
    --_shadow-offset: 3px 3px;
    font-size: 25px;
    height: 56px;
  }
  a.cv-btn:not(.header *) {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 0.8em;
  }
  a.cv-btn:not(.header *)::before {
    content: "";
  }
}
a.cv-btn:hover, a.cv-btn:focus {
  color: var(--main-color);
  background-color: #fff;
  box-shadow: inset 0 0 0 2px var(--main-color);
  translate: var(--_shadow-offset);
}
a.cv-btn::after {
  content: "";
  justify-self: end;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: currentcolor;
  aspect-ratio: 15.5/21.5;
  width: 0.62em;
}

header.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: #fff;
}

.header__inner {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
  height: 100%;
  max-width: min(var(--100vw), 1920px);
  margin-inline: auto;
  padding: 15px 10px;
}
@media (width > 768px) {
  .header__inner {
    padding: 20px 40px;
  }
}

.header .logo {
  height: 100%;
}
@media (width > 768px) {
  .header .logo {
    max-width: 602px;
  }
}
.header .logo img {
  height: 100%;
  object-fit: contain;
}

.header a.cv-btn {
  column-gap: 8px;
  font-family: var(--roboto-font-family);
  font-size: 14px;
  line-height: 1.32;
}
@media (width > 768px) {
  .header a.cv-btn {
    font-size: 25px;
  }
}
@media (width > 1024px) {
  .header a.cv-btn {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 0.8em;
    width: 266px;
  }
  .header a.cv-btn::before {
    content: "";
  }
}

.fv {
  background-color: var(--main-color);
  color: #fff;
}

.fv__inner {
  margin-inline: auto;
  max-width: min(var(--100vw), 1920px);
  display: grid;
  grid-template: "stack" auto/1fr;
  align-items: end;
}
@media (width > 768px) {
  .fv__inner {
    max-height: 1066.6666666667px;
  }
}
.fv__inner picture {
  grid-area: stack;
}
.fv__inner picture img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 15/16;
}
@media (width > 768px) {
  .fv__inner picture img {
    aspect-ratio: 9/5;
  }
}

@property --_zoom-factor {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}
.fv-text-area {
  grid-area: stack;
  z-index: 5;
  padding-inline: 42px;
  margin-bottom: 32px;
  font-weight: bold;
  zoom: var(--_zoom-value);
  -webkit-text-size-adjust: initial;
  --_zoom-value: clamp(0.4166666667, tan(atan2(var(--_zoom-factor), 768px)), 1);
  --_zoom-factor: clamp(320px, 100vw, 768px);
}
@media (width > 768px) {
  .fv-text-area {
    padding-inline: 78px;
    margin-bottom: 51px;
    --_zoom-value: clamp(0.4005208333, tan(atan2(var(--_zoom-factor), 1920px)), 1);
    --_zoom-factor: clamp(769px, 100vw, 1920px);
  }
}

hgroup.fv__heading {
  margin-bottom: 15px;
}
@media (width > 768px) {
  hgroup.fv__heading {
    margin-bottom: 25px;
  }
}

p.fv__subtitle {
  width: fit-content;
  background-color: #000;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--_rb)) 100%, 0 100%);
  --_rb: 8px;
  margin-bottom: 10px;
  margin-inline: -5px;
  padding-block: 2px;
  padding-inline: 10px 16px;
  font-size: 23px;
  letter-spacing: 1.4px;
}
@media (width > 768px) {
  p.fv__subtitle {
    --_rb: 14px;
    margin-bottom: 16px;
    margin-inline: -8px;
    padding: 1px 24px 5px 14px;
    font-size: 37px;
  }
}

h1.fv__title {
  margin-block: var(--half-leading);
  font-size: 67px;
  letter-spacing: 4px;
}
@media (width > 768px) {
  h1.fv__title {
    font-size: 102px;
    letter-spacing: 9px;
  }
}

.fv__intro p:nth-child(1) {
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
@media (width > 768px) {
  .fv__intro p:nth-child(1) {
    font-size: 51px;
  }
}
.fv__intro p:nth-child(2) {
  font-size: 15px;
  letter-spacing: 0.6px;
  font-feature-settings: "palt";
}
@media (width > 768px) {
  .fv__intro p:nth-child(2) {
    font-size: 23px;
    letter-spacing: 1.25px;
  }
}

section.section {
  padding-inline: 25px;
}
@media (width < 375px) {
  section.section {
    padding-inline: 20px;
  }
}
@media (width > 768px) {
  section.section {
    padding-inline: 80px;
  }
}

.section__inner {
  margin-inline: auto;
  width: min(100%, 1280px);
}

hgroup.section__heading {
  text-align: center;
  display: grid;
  justify-items: center;
  row-gap: 10px;
}
hgroup.section__heading::after {
  grid-row: 2;
  content: "";
  display: block;
  width: 49px;
  height: 5.5px;
  background-color: var(--main-color);
  margin-bottom: 10px;
}
@media (width > 768px) {
  hgroup.section__heading::after {
    width: 61px;
    height: 7px;
  }
}

.section__titleEn {
  color: #333;
  font-family: var(--roboto-font-family);
  font-weight: bold;
  font-size: 36px;
  line-height: 1.2;
}
@media (width > 768px) {
  .section__titleEn {
    font-size: 50px;
    line-height: 1.32;
  }
}

.section__titleJa {
  margin-block: var(--half-leading);
  color: #666;
  font-weight: 500;
  font-size: 18px;
}
@media (width > 768px) {
  .section__titleJa {
    font-size: 25px;
  }
}

section#prod.section {
  padding-top: 68px;
  padding-bottom: 100px;
}
@media (width > 768px) {
  section#prod.section {
    padding-top: 135px;
    padding-bottom: 200px;
  }
}
section#prod.section .section__heading {
  margin-bottom: 60px;
}
@media (width > 768px) {
  section#prod.section .section__heading {
    margin-bottom: 120px;
  }
}

.prod__item {
  display: grid;
  row-gap: 15px;
}
@media (width > 768px) {
  .prod__item {
    row-gap: 24px;
  }
}

h3.prod__title {
  margin-block: var(--half-leading);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  color: var(--main-color);
  font-size: 25px;
}
@media (width > 768px) {
  h3.prod__title {
    font-size: 35px;
  }
}
h3.prod__title::before {
  content: "";
  display: block;
  width: 1.0857142857em;
  height: 2px;
  background-color: currentColor;
  --_margin-rb: calc(1em * 13.5 / 35);
  margin-right: var(--_margin-rb);
  margin-bottom: calc(var(--_margin-rb) - var(--half-leading));
}

.prod__thumb {
  width: min(100%, 1280px);
  aspect-ratio: 128/70;
  --_radius: 10px;
  clip-path: inset(0 round var(--_radius));
}
@media (width > 768px) {
  .prod__thumb {
    --_radius: 20px;
  }
}
.prod__thumb img {
  object-fit: contain;
}

a.prod__link {
  --_icon-size: 14px;
  justify-self: center;
  display: inline-grid;
  grid-template-columns: auto var(--_icon-size);
  align-items: center;
  column-gap: calc(var(--_icon-size) / 2);
  width: fit-content;
  font-weight: 500;
  font-size: 14px;
}
@media (width > 768px) {
  a.prod__link {
    --_icon-size: 24px;
    font-size: 20px;
  }
}
a.prod__link::after {
  content: "";
  background: url("../centrifugal_device/images/icon_pdf_file.svg") no-repeat center/100%;
  display: inline-block;
  aspect-ratio: 18.38/21.45;
  /* 背景画像の色を白にするため、filter: brightness(0) invert(1) を適用 */
  filter: brightness(0) invert(1);
  clip-path: unset !important;
  width: 1em;
}
a.prod__link:hover, a.prod__link:focus {
  text-decoration-line: underline;
}
a.prod__link:hover::after, a.prod__link:focus::after {
  filter: none;
}

.prod .video-area {
  margin-block: 60px;
}
@media (width > 768px) {
  .prod .video-area {
    margin-block: 85px;
  }
}
.prod .video-area .video {
  background-color: #999;
  aspect-ratio: 16/9;
  position: relative;
}
.prod .video-area .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod .video-area .video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  text-align: center;
}
.prod .video-area .video__play-btn {
  border: none;
  cursor: pointer;
  z-index: 100;
}
.prod .video-area .video__play-btn img {
  filter: brightness(0) invert(1);
  width: 70px;
  aspect-ratio: 141/141;
}
@media (width > 768px) {
  .prod .video-area .video__play-btn img {
    width: 141px;
  }
}
.prod .video-area .video__caption {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  z-index: 100;
}
.prod .video-area .video__caption br.sp {
  display: inline-block;
}
@media (width > 768px) {
  .prod .video-area .video__caption {
    margin-top: 40px;
    font-size: 24px;
  }
  .prod .video-area .video__caption br.sp {
    display: none;
  }
}

section#results.section {
  padding-bottom: 100px;
  background-color: rgb(from var(--main-color) r g b/0.1);
}
@media (width > 768px) {
  section#results.section {
    padding-bottom: 200px;
  }
}
section#results.section::before {
  content: "";
  display: block;
  width: 58.203125%;
  aspect-ratio: 745/126;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-inline: auto;
  margin-bottom: 75px;
}
@media (width > 768px) {
  section#results.section::before {
    margin-bottom: 155px;
  }
}
section#results.section .section__heading {
  margin-bottom: 30px;
}

.toc {
  background-color: #fff;
  border-block: 2px solid var(--main-color);
  padding: 24px 28px;
  margin-bottom: 65px;
}
@media (width > 768px) {
  .toc {
    padding: 48px 56px;
    margin-bottom: 150px;
  }
}

ul.toc__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max-content, 3.25em));
  justify-content: center;
  column-gap: 28px;
  row-gap: 20px;
  font-size: 15px;
}
@media (width > 768px) {
  ul.toc__list {
    column-gap: 56px;
    row-gap: 40px;
    font-size: 20px;
  }
}

li.toc__list-item {
  margin-block: var(--half-leading);
}

a.toc__link {
  font-weight: 500;
  color: #666;
}
a.toc__link:hover, a.toc__link:focus {
  color: var(--main-color);
}

.year-wrapper {
  margin-inline: auto;
  width: min(100%, 960px);
}

section.year {
  z-index: 100;
}
section.year:not(:last-child) {
  margin-bottom: 80px;
}
@media (width > 768px) {
  section.year:not(:last-child) {
    margin-bottom: 200px;
  }
}

.year__heading {
  font-size: 36px;
  display: grid;
  grid-template: "prev title next"/0.5em max-content 0.5em;
  justify-content: center;
  column-gap: 0.5em;
  margin-bottom: 10px;
}
@media (width > 768px) {
  .year__heading {
    font-size: 50px;
  }
}

h3.year__title {
  grid-area: title;
  text-align: center;
  color: #999;
  line-height: 1.32;
  font-family: var(--roboto-font-family);
  font-weight: bold;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.year__heading .slick-arrow {
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.year__heading .slick-arrow:not(:disabled, [aria-disabled=true], .slick-disabled) {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: translate var(--duration);
}
.year__heading .slick-arrow:not(:disabled, [aria-disabled=true], .slick-disabled).slick-prev {
  grid-area: prev;
  background-image: url("../centrifugal_device/images/chevron_left.svg");
}
@media (any-hover: hover) {
  .year__heading .slick-arrow:not(:disabled, [aria-disabled=true], .slick-disabled).slick-prev:hover {
    translate: -5px 0;
  }
}
.year__heading .slick-arrow:not(:disabled, [aria-disabled=true], .slick-disabled).slick-next {
  grid-area: next;
  background-image: url("../centrifugal_device/images/chevron_right.svg");
}
@media (any-hover: hover) {
  .year__heading .slick-arrow:not(:disabled, [aria-disabled=true], .slick-disabled).slick-next:hover {
    translate: 5px 0;
  }
}
.year__heading .slick-arrow:disabled, .year__heading .slick-arrow[aria-disabled=true], .year__heading .slick-arrow.slick-disabled {
  display: none !important;
}

.year__content {
  container-type: inline-size;
  --_item-width: min(100cqi, 900px);
  position: relative;
  z-index: 100;
}
.year__content::before {
  --_width: min(var(--100vw), 1920px);
  content: "";
  position: absolute;
  --_img-height: calc(var(--_item-width) * 573 / 900);
  --_own-height: calc(var(--_width) * 674 / 1920);
  top: calc(var(--_img-height) - var(--_own-height) * 0.8);
  z-index: -10;
  display: block;
  margin-inline: calc(50% - var(--_width) / 2);
  width: var(--_width);
  aspect-ratio: 1920/674;
  background-color: rgb(from #fff r g b/0.5);
  mask-image: url("../centrifugal_device/images/bg_chevron.svg");
  mask-size: contain;
}
.year__content .result {
  display: grid;
  justify-content: center;
}

/* 1) .year__content を相対位置コンテナに */
.year__content {
  position: relative;
}

/* 2) 全ての矢印ボタンを絶対配置で上下中央に */
.year__content .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* お好みでサイズや背景画像の繰り返し設定など */
  width: 7px;
  height: 27px;
  padding: 0px;
  aspect-ratio: 15/45;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
  transition: translate var(--duration);
}
@media (width > 768px) {
  .year__content .slick-arrow {
    width: clamp(30px, 19.714px + 1.339vw, 39px);
    height: clamp(60px, 39.429px + 2.679vw, 78px);
  }
}

/* 3) 左右を指定 */
.year__content .slick-prev {
  left: -16px;
  /* コンテンツ左端からの余白 */
  background-image: url("../centrifugal_device/images/chevron_left.svg");
  /* 要素の幅に応じてbackground-imageを拡大する */
  background-size: 100% auto;
}
@media (any-hover: hover) {
  .year__content .slick-prev:hover {
    translate: -5px 0;
  }
}
@media (width > 768px) {
  .year__content .slick-prev {
    left: -50px;
  }
}

.year__content .slick-next {
  right: -16px;
  /* コンテンツ右端からの余白 */
  background-image: url("../centrifugal_device/images/chevron_right.svg");
  background-size: 100% auto;
}
@media (any-hover: hover) {
  .year__content .slick-next:hover {
    translate: 5px 0;
  }
}
@media (width > 768px) {
  .year__content .slick-next {
    right: -50px;
  }
}

/* 4) 無効時は非表示 */
.year__content .slick-prev.slick-disabled,
.year__content .slick-next.slick-disabled {
  display: none !important;
}

article.result__item {
  width: var(--_item-width);
  min-height: var(--_item-width);
  background-color: #fff;
  box-shadow: 0 10px 10px 0 rgb(from #000 r g b/0.3);
  display: grid !important;
  grid-auto-flow: row;
  align-content: start;
  row-gap: 20px;
  --_padding: 24px;
  padding: var(--_padding);
}
@media (width < 375px) {
  article.result__item {
    --_padding: 20px;
  }
}
@media (width > 768px) {
  article.result__item {
    grid-template-columns: auto minmax(auto, 1fr);
    grid-template-rows: auto auto 1fr;
    row-gap: 30px;
    column-gap: 50px;
    --_padding: 32px;
  }
  article.result__item .result__thumb,
  article.result__item .result__heading {
    grid-column: span 2;
  }
}
article.result__item:where(.result-slider > *) {
  margin-inline: auto;
}
article.result__item:where(.result-slider > *):not(:last-child) {
  margin-bottom: 48px;
}

.result__thumb {
  width: var(--_item-width);
  aspect-ratio: 900/573;
  margin-top: calc(var(--_padding) * -1);
  margin-inline: calc(var(--_padding) * -1);
}
.result__thumb img {
  object-fit: cover;
}

.result__heading > p {
  display: inline-grid;
  align-items: center;
  padding-inline: 1.4em;
  height: 1.75em;
  border-radius: calc(infinity * 1px);
  background-color: var(--main-color);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
}
@media (width > 768px) {
  .result__heading > p {
    font-size: inherit;
  }
}

.result__specs > p,
.result__summary > p {
  margin-top: var(--half-leading);
  margin-bottom: calc(0.5em + var(--half-leading));
  color: var(--main-color);
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
}
@media (width > 768px) {
  .result__specs > p,
  .result__summary > p {
    font-size: 20px;
  }
}

.result__specs table {
  border-collapse: collapse;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-wrap: nowrap;
}
@media (width > 768px) {
  .result__specs table {
    font-size: 18px;
    width: 100%;
  }
}
.result__specs table tr {
  border-block: 2px solid var(--main-color);
}
.result__specs table th {
  width: min-content;
  background-color: #f0f0f0;
  max-width: 162px;
}
.result__specs table td {
  width: max-content;
  min-width: 138px;
}
@media (width < 375px) {
  .result__specs table td {
    min-width: unset;
  }
}
.result__specs table .cell {
  margin-block: var(--half-leading);
  padding-block: 1em;
  word-break: keep-all;
}
.result__specs table th .cell {
  padding-inline: 1em;
}
@media (width < 375px) {
  .result__specs table th .cell {
    padding-inline: 0.8em;
  }
}
.result__specs table td .cell {
  padding-inline: 1.33em;
}
@media (width < 375px) {
  .result__specs table td .cell {
    padding-inline: 1em;
  }
}

.result__summary div {
  font-size: 12.5px;
}
@media (width > 768px) {
  .result__summary div {
    font-size: 20px;
  }
}

.slick-list {
  overflow-x: clip;
  overflow-y: visible;
}

.slick-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--_item-width);
  column-gap: 120px;
}

.slick-slide > div {
  height: 100%;
}
.slick-slide > div > article.result__item {
  height: 100%;
}

section#contact.section {
  padding-top: 50px;
  padding-bottom: 80px;
}
@media (width > 768px) {
  section#contact.section {
    padding-top: 100px;
    padding-bottom: 160px;
  }
}
section#contact.section .section__heading {
  margin-bottom: 40px;
}
@media (width > 768px) {
  section#contact.section .section__heading {
    margin-bottom: 70px;
  }
}
section#contact.section .section__heading ~ * {
  margin-inline: auto;
  width: fit-content;
}
section#contact.section a.cv-btn {
  column-gap: 0.54em;
}

address.address-area {
  margin-bottom: 30px;
  color: #333;
}
@media (width > 768px) {
  address.address-area {
    margin-bottom: 60px;
  }
}
address.address-area > p {
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}
@media (width < 375px) {
  address.address-area > p {
    margin-inline: auto;
    width: fit-content;
  }
}
@media (width > 768px) {
  address.address-area > p {
    font-size: 20px;
  }
}
address.address-area span.bold {
  font-weight: bold;
}
address.address-area .tel {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1em max-content;
  align-items: center;
  justify-content: center;
  column-gap: 0.5em;
  font-family: var(--roboto-font-family);
  font-weight: bold;
  font-size: 38px;
  line-height: 1.3076923077;
}
@media (width < 375px) {
  address.address-area .tel {
    font-size: 34px;
  }
}
@media (width > 768px) {
  address.address-area .tel {
    font-size: 52px;
  }
}
address.address-area .tel::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  background: url("../centrifugal_device/images/icon_phone_filled_circle.svg") no-repeat center/contain;
}

section#enquete.section {
  background-color: rgb(from var(--main-color) r g b/0.1);
  padding-top: 63px;
  padding-bottom: 100px;
}
@media (width > 768px) {
  section#enquete.section {
    padding-top: 126px;
    padding-bottom: 200px;
  }
}
section#enquete.section .btn-area {
  text-align: center;
  font-size: 18px;
}
section#enquete.section .btn-area p {
  margin-top: var(--half-leading);
  margin-bottom: calc(1lh + var(--half-leading));
  font-weight: bold;
  line-height: 1.2;
}
@media (width > 768px) {
  section#enquete.section .btn-area p {
    font-size: 25px;
  }
}
section#enquete.section a.cv-btn {
  column-gap: 0.9em;
}

.return-to-top {
  --_offset: 20px;
  position: fixed;
  right: min(var(--_offset), 190px);
  bottom: min(var(--_offset), 70px);
  z-index: 700;
  width: 40px;
}
@media (width > 768px) {
  .return-to-top {
    --_offset: max(calc((var(--100vw) - 960px) / 2), 50px);
    width: 60px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .return-to-top {
    transition-property: opacity;
    transition-timing-function: ease;
  }
  .return-to-top:not(:focus-within) {
    transition-duration: calc(var(--duration) * 3);
  }
  .return-to-top:not([data-display=true], :focus-within) {
    opacity: 0;
  }
}
.return-to-top a {
  display: grid;
  justify-items: center;
  aspect-ratio: 1;
  padding: 0.4em 0.5em;
  background-color: #fff;
  border: 1px solid #999;
  color: #666;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}
@media (width > 768px) {
  .return-to-top a {
    font-size: 20px;
    row-gap: 0.5em;
  }
}
.return-to-top a::before {
  content: "";
  display: block;
  background-color: #707070;
  width: 1em;
  aspect-ratio: 2;
  mask-image: url("../centrifugal_device/images/chevron_up.svg");
  mask-size: contain;
}

br.max-w375 {
  display: none;
}
@media (width < 376px) {
  br.max-w375 {
    display: inline;
  }
}

@media (width > 768px) {
  .sp {
    display: none;
  }
}