@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  /* Remove default margin on everything */
  margin: 0;
  /* Remove default padding on everything */
  padding: 0;
  /* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  /*text-rendering: optimizeSpeed;*/
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* SVG's without a fill attribute */
:where(svg):where(:not([fill])) {
  /* Remove fill and set stroke colour to the inherited font colour */
  stroke: currentColor;
  fill: none;
  /* Rounded stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Position list marker inside */
:where(ul, ol) {
  list-style-position: inside;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  text-align: center;
}

/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓共通↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #1A1A1A;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
  animation: fade 2s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main {
  position: relative;
}

li {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

header {
  position: fixed;
  top: 0;
  z-index: 3;
  /*background: rgba(19 32 83 / 40%);*/
  background: rgb(255, 255, 255);
  width: 100%;
  height: 100px;
  transition: 0.2s;
}

header.bg {
  background: rgba(255, 255, 255, 0.9);
}

header .inner {
  display: flex;
  height: 100%;
  align-items: center;
}

.header-menu-area {
  width: calc(66% + 110px);
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  flex: 1;
}

.header-logo {
  width: 20%;
  max-width: 320px;
  min-width: 180px;
  padding: 0 10px;
  position: relative;
  top: 5px;
}

.header-logo a {
  display: block;
  height: 100%;
}

.header-logo > a > svg {
  width: 100%;
  height: 50px;
}

.header-logo > a > svg > use {
  fill: #fff;
}

.header-menu {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 3% 0 3%;
  flex-grow: 1;
}

.header-menu-top {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.header-menu-top li {
  border: solid 1px #fff;
  transition: 0.2s;
}

.header-menu-top li:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-menu-top li a.login p {
  display: flex;
  align-items: center;
}

.header-menu-top li a.login p::before {
  content: url(../img/icon_login.png);
  margin-right: 10px;
}

.header-menu-top li a.lang p {
  display: flex;
  align-items: center;
}

.header-menu-top li a.lang p::before {
  content: url(../img/icon_lang.png);
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.header-menu-top li + li {
  margin-left: 20px;
}

.header-menu-top li a {
  display: block;
  font-size: 12px;
  padding: 5px 10px;
}

.header-menu-top li a p {
  color: #fff;
  font-weight: bold;
}

.header-menu-top li a p span.ja {
  color: #00ffff;
}

.header-menu-top li a p span.en::before {
  content: "/";
  margin: 0 6px 0 3px;
}

.header-menu-bottom {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.header-menu-bottom li:not(:nth-of-type(1))::before {
  content: "|";
  color: #222;
  margin: 0 20px;
}

.header-menu-bottom li a {
  color: #222;
  font-weight: bold;
  transition: 0.2s;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.header-menu-bottom li a:hover {
  color: #ff5001;
}

.header-contact {
  background: #ff5001;
  width: 17%;
  height: 100%;
  min-width: 170px;
  max-width: 220px;
  transition: 0.2s;
}

.header-contact a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.header-contact:hover {
  background: #0b1742;
}

.header-contact a p {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
}

.header-contact a p::before {
  content: url(../img/icon_mail.png);
  margin-right: 10px;
}

.header-recruit {
  background: #ff5001;
  width: 17%;
  height: 100%;
  min-width: 170px;
  max-width: 220px;
  transition: 0.2s;
}

.header-recruit:hover {
  background: #1046c4;
}

.header-recruit a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.header-recruit a p {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
}

.header-recruit a p::before {
  content: url(../img/icon_rec.png);
  margin-right: 10px;
}

.menu {
  top: 0;
  right: 0;
  width: 110px;
  height: 100%;
  z-index: 100000;
  display: grid;
  align-items: center;
  justify-content: center;
  place-items: center;
}

nav {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.navToggle {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10015;
  text-align: center;
  border-radius: 2px;
  position: relative;
}

.navToggle span:nth-child(1) {
  top: 12px;
}

.navToggle span:nth-child(2) {
  top: 24px;
}

.navToggle span {
  display: block;
  position: relative;
  width: 40px;
  border-top: solid 3px #222;
  transition: 0.3s;
  left: 0px;
}

.navToggle.active span:nth-child(1) {
  top: 20px;
  left: 0px;
  transform: rotate(-45deg);
  border-color: #111;
}

.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
  border-color: #111;
}

#smt_menu_wrapper {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.5s;
  width: 100%;
  visibility: hidden;
}

#smt_menu_wrapper > ul {
  margin: 0 auto 0 0;
  padding: 3px 10%;
  padding: 10vh 10%;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  gap: 20px 5%;
  flex-direction: column;
  align-items: center;
}

#smt_menu_wrapper > ul > li {
  font-size: 20px;
  list-style-type: none;
  padding: 0;
  width: 30%;
  color: #fff;
  margin: 0px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #smt_menu_wrapper > ul > li {
    width: 45%;
  }
}

#smt_menu_wrapper ul li.red a {
  color: #ffffff;
}

.cta_bg {
  width: 252px;
  height: 49px;
  text-align: center;
  line-height: 29px;
  margin: 5px 0 0 0;
  display: block;
  transition: all 0.3s ease;
}

.cta_bg:hover {
  color: #f5f5f5;
}

#smt_menu_wrapper ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

#smt_menu_wrapper ul li a {
  display: block;
  color: #030303;
  padding: 0;
  background: none;
  font-size: 20px;
  padding-left: 1em;
  text-indent: -1em;
}

#smt_menu_wrapper ul li a.title {
  font-weight: bold;
  margin-bottom: 10px;
}

#smt_menu_wrapper ul li a:hover {
  opacity: 0.7;
}

#smt_menu_wrapper.active {
  transform: translateX(0%);
  visibility: inherit;
}

/*#smt_menu_wrapper ul li:last-of-type {
  width: 100%;
}*/
#smt_menu_wrapper ul li ul.smt_menu_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom li:first-of-type {
  width: 100%;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom li:first-of-type a {
  width: 200px;
  margin: auto;
  text-align: center;
  border: 1px solid #000;
  padding: 5px 0 5px 1em;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom li:first-of-type a::before {
  content: url(../img/icon_times.png);
  margin-right: 10px;
  width: 14px;
  height: 16px;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom li:nth-of-type(2) {
  width: 150px;
  margin-top: 20px;
  text-align: left;
}

#smt_menu_wrapper ul li ul.smt_menu_bottom li:nth-of-type(3) {
  width: 50px;
  margin-top: 20px;
  text-align: right;
}

.pc_none {
  display: block;
}

.to_top_btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
}

.to_top_btn.active {
  animation: fadeBtn 1s forwards;
}

@keyframes fadeBtn {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  25% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.to_top_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #ff5001;
  border: 2px solid #ff5001;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.to_top_btn a:hover {
  color: #ff5001;
  background-color: #fff;
}

/*-- header end --*/
/*-- footer start --*/
footer {
  background: #333;
  padding: 50px 100px;
}

footer .inner {
  width: 90%;
  margin: 0px auto;
}

footer .inner ul.link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

footer .inner ul.link li a {
  color: #ff5100;
  font-weight: bold;
}

footer .inner ul.sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer_guni {
  width: 100%;
  max-width: 300px;
  margin: 50px auto;
  background: #fff;
  padding: 20px;
}

.footer_guni > img {
  width: 100%;
  height: 100%;
}

footer .inner small {
  width: 100%;
  display: block;
  text-align: center;
  padding: 6px;
  color: #fff;
  font-weight: bold;
  margin-top: 80px;
}

/*-- footer end --*/
.inner1024 {
  /* border: 1px solid blue; */
  width: 90%;
  max-width: 1024px;
  margin: auto;
}

.inner1200 {
  /* border: 1px solid green; */
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.inner1400 {
  /* border: 1px solid red; */
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* パンくずリスト */
.breadcrumb {
  background-color: #F2F2F2;
  padding: 10px 0;
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li {
  color: #4D4D4D;
  font-size: 1.5rem;
}
.breadcrumb ul li:not(:first-of-type)::before {
  content: ">";
  margin: 0 20px;
}
.breadcrumb ul li a {
  color: #4D4D4D;
}
.breadcrumb ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 650px) {
  .breadcrumb {
    display: none;
  }
}
/* パンくずリスト　ここまで */
/* ボタン */
.btn {
  width: 80%;
  max-width: 320px;
  /* padding: 20px 0; */
  margin: auto;
}
.btn_transparent_black {
  border: 1px solid #000;
}
.btn_transparent_white {
  border: 1px solid #fff;
}
.btn_transparent_orange {
  border: 1px solid #ff5001;
  background-color: #ff5001;
}

.btn a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
  font-size: 20px;
}
.btn a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.btn a.txt_white {
  color: #fff;
}
.btn a.txt_white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ボタン　ここまで */
/* ページトップ */
.page_top {
  position: relative;
  width: 100%;
  min-height: 40vh;
}
.page_top_img img {
  height: 100%;
  min-height: 40vh;
  object-fit: cover;
}
.page_top_title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
}
.page_top_title h2 {
  color: #ff5001;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.page_top_title h3 {
  color: #ff5001;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  opacity: 0.85;
}

@media screen and (max-width: 560px) {
  .page_top_title h2 {
    font-size: 3rem;
  }
  .page_top_title h3 {
    font-size: 2rem;
  }
}
/* ページトップ　ここまで */
/* 改行 */
br.only-under560 {
  display: none;
}
@media screen and (max-width: 561px) {
  br.only-under560 {
    display: block;
  }
}
br.only-upper561 {
  display: block;
}
@media screen and (max-width: 560px) {
  br.only-upper561 {
    display: none;
  }
}

/* 改行　ここまで */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑共通　ここまで↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
@media screen and (max-width: 1600px) {
  .header-menu-area {
    position: relative;
  }
  .header-logo {
    width: 320px;
    /*height: 0;*/
    /*left: 0;*/
  }
  .header-menu-bottom li:not(:nth-of-type(1))::before {
    margin: 0 12px;
  }
}
@media screen and (max-width: 1230px) {
  .footer_main_unit {
    flex-direction: column;
  }
  .footer_main_left {
    width: 100%;
  }
  .footer_main_right {
    width: 100%;
    margin-top: -60px;
  }
}
@media screen and (min-width: 561px) and (max-width: 1159px) {
  .header-menu {
    display: none;
  }
  .header-contact {
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer_info {
    padding: 40px 0;
  }
  .footer_info_message {
    flex-direction: column;
    gap: 30px 30px;
  }
  .footer_info_message figure {
    width: 80%;
  }
  .footer_info_message p {
    text-align: center;
  }
  .footer_info_contact ul {
    flex-direction: column;
  }
  .footer_info_contact ul li {
    width: 100%;
  }
  .footer_info_contact ul li + li {
    border-top: solid 1px #fff;
    border-left: none;
    margin-top: 15px;
    padding-top: 15px;
  }
  .footer_info_access {
    margin-top: 50px;
  }
  .footer_info_access ul {
    flex-direction: column;
    gap: 60px;
  }
  .footer_info_access ul li {
    width: 100%;
  }
  .footer_info_access ul li h3 span {
    display: block;
    margin: 0;
  }
  .footer_info_access ul li iframe {
    height: 30vh;
    min-height: 200px;
  }
  .footer_main_unit {
    margin: 30px 0;
  }
  .footer_main_left {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .footer_main_right {
    width: 100%;
    margin-top: 40px;
  }
  .footer_main_recruit {
    width: auto;
  }
  .footer_main_right ul {
    display: none;
  }
  .footer_main_right ul li {
    width: 48%;
  }
  .footer_main_bottom ul {
    margin-top: 30px;
    gap: 20px 0;
    flex-wrap: wrap;
  }
  .footer_main_bottom ul li:nth-of-type(1) {
    width: 100%;
    text-align: center;
  }
  .footer_main_bottom ul li:nth-of-type(2) {
    width: 100%;
    text-align: center;
  }
  .footer_main_bottom ul li:nth-of-type(2) a {
    display: inline-block;
  }
  .footer_main_bottom ul li:nth-of-type(3) {
    width: 150px;
    text-align: left;
  }
  .footer_main_bottom ul li:nth-of-type(4) {
    width: 50px;
    text-align: right;
  }
}
@media screen and (max-width: 561px) {
  header {
    height: 80px;
  }
  .header-logo {
    transform: translateY(0px);
    min-width: auto;
    max-width: none;
  }
  .header-logo a img {
    max-width: 80%;
  }
  .header-menu {
    display: none;
  }
  .header-contact {
    display: none;
  }
  .header-recruit {
    display: none;
  }
  .menu {
    width: 80px;
    margin-left: auto;
  }
  footer {
    padding: 50px 0px;
  }
  footer .inner ul.link {
    flex-direction: column;
    gap: 15px;
  }
  #smt_menu_wrapper > ul > li {
    margin: 10px 0;
  }
  #smt_menu_wrapper ul li a {
    font-size: 16px;
  }
}
/*----スライド----*/
.top-visual {
  width: 100%;
  height: 56.25vw;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #111;
}

.visual-wrapper iframe {
  box-sizing: border-box;
  height: 56.25vw; /* 16:9 の高さなので 56.25% (= 9 ÷ 16) */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  width: 177.77777778vh; /* 16:9 の幅なので 177.77% (= 16 ÷ 9) */
}

.visual-catch {
  width: 90%;
  margin: auto;
}

.visual-catch {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.visual-catch h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.visual-catch h2 span {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  font-feature-settings: "palt";
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.3));
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.visual-catch h2 span:nth-of-type(2) {
  color: #ff5001;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.3));
}

.visual-catch h4 {
  font-size: 30px;
  font-weight: normal;
  color: #fff;
  font-feature-settings: "palt";
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.3));
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/*----スライド--ここまで----*/
/*----プロダクトオブザイヤーアワード2023受賞------*/
#top-productoftheyear {
  margin-bottom: 100px;
  padding: 100px 0 0;
}

#top-productoftheyear .inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #111;
  padding: 50px;
  background: url(../img/top/4214860_m.jpg);
  background-size: cover;
  position: relative;
}

#top-productoftheyear .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

#top-productoftheyear .over {
  position: relative;
  z-index: 2;
}

#top-productoftheyear figure {
  max-width: 600px;
  margin: auto;
}

#top-productoftheyear h2 {
  color: #fff;
  text-align: center;
  margin: 0px 0px 50px;
  font-size: 48px;
  line-height: 1.3;
}

#top-productoftheyear iframe {
  display: block;
  margin: auto;
}

/*----プロダクトオブザイヤーアワード2023受賞--ここまで----*/
/*----新バージョン！------*/
#top-newversion {
  margin: 100px 0;
}

#top-newversion h2 {
  color: #111;
  text-align: center;
  margin: 0px 0px 30px;
  font-size: 40px;
  font-weight: 500;
}

#top-newversion .inner {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

#top-newversion .inner + .inner {
  margin-top: 100px;
}

#top-newversion .inner + .inner dl {
  flex-direction: row-reverse;
  align-items: center;
}

#top-newversion dl {
  display: flex;
  gap: 20px 10%;
}

#top-newversion dt {
  width: 40%;
}

#top-newversion dd {
  width: 50%;
}

#top-newversion dd h3 {
  color: #f05323;
  text-align: center;
  margin: 30px 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
}

#top-newversion ul {
  padding-left: 30px;
}

#top-newversion ul li {
  list-style: disc;
  font-size: 18px;
  line-height: 1.5;
}

/*----新バージョン！--ここまで----*/
/*----UNIVERSAL WHEEL SOLUTION----*/
#top-universal-wheel-solution {
  background: #ebebeb;
  padding: 100px 0;
}

#top-universal-wheel-solution .inner {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

#top-universal-wheel-solution h2 {
  color: #111;
  text-align: center;
  margin: 0px 0px 50px;
  font-size: 40px;
  font-weight: 500;
}

#top-universal-wheel-solution dl {
  display: flex;
  gap: 20px 10%;
}

#top-universal-wheel-solution dt {
  width: 40%;
}

#top-universal-wheel-solution dt iframe {
  width: 100%;
}

#top-universal-wheel-solution dd {
  width: 50%;
}

#top-universal-wheel-solution ul {
  padding-left: 30px;
}

#top-universal-wheel-solution ul li {
  list-style: disc;
  font-size: 18px;
  line-height: 1.5;
}

#top-universal-wheel-solution dl + .btn {
  margin-top: 50px;
}

/*----UNIVERSAL WHEEL SOLUTION--ここまで----*/
/*----GUNIWHEEL　仕様紹介----*/
#top-specifications {
  margin: 100px 0;
  /*padding: 100px 0;*/
}

#top-specifications .inner {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

#top-specifications h2 {
  color: #111;
  text-align: center;
  margin: 0px 0px 50px;
  font-size: 40px;
  font-weight: 500;
}

#top-specifications p {
  color: #111;
  text-align: center;
  margin: 50px 0;
  font-size: 18px;
  font-weight: 500;
}

#top-specifications dl {
  display: flex;
  gap: 10%;
  align-items: center;
}

#top-specifications dt {
  width: 40%;
}

#top-specifications dd {
  width: 50%;
}

#top-specifications ul {
  padding-left: 30px;
}

#top-specifications ul li {
  list-style: disc;
  font-size: 18px;
  line-height: 1.5;
}

#top-specifications ul li a {
  color: #f05323;
  text-decoration: underline dotted 1px;
  text-underline-offset: 3px;
}

#top-specifications dl + .btn {
  margin-top: 50px;
}

/*----GUNIWHEEL　仕様紹介--ここまで----*/
/*----広く様々な業種での使い道----*/
#top-industrywide-tool {
  background: #ebebeb;
  padding: 100px 0;
}

#top-industrywide-tool .inner {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

#top-industrywide-tool h2 {
  color: #111;
  text-align: center;
  margin: 0px 0px 50px;
  font-size: 40px;
  font-weight: 500;
}

#top-industrywide-tool dl {
  display: flex;
  gap: 10%;
}

#top-industrywide-tool dt {
  width: 40%;
}

#top-industrywide-tool dd {
  width: 50%;
}

#top-industrywide-tool ul {
  padding-left: 30px;
}

#top-industrywide-tool ul li {
  list-style: disc;
  font-size: 18px;
  line-height: 1.5;
}

#top-industrywide-tool ul li a {
  color: #f05323;
  text-decoration: underline dotted 1px;
  text-underline-offset: 3px;
}

#top-industrywide-tool ul li span {
  font-weight: 700;
  text-decoration: underline 2px;
  text-underline-offset: 3px;
}

#top-industrywide-tool dl + .btn {
  margin-top: 50px;
}

#top-industrywide-tool .slider4 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 330px;
  overflow: hidden;
}

#top-industrywide-tool .slider4 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*----広く様々な業種での使い道--ここまで----*/
/*----製品紹介----*/
#top-featured-products {
  margin: 100px 0;
  /*padding: 100px 0;*/
}

#top-featured-products .inner {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

#top-featured-products h2 {
  color: #111;
  text-align: center;
  margin: 0px 0px 50px;
  font-size: 40px;
  font-weight: 500;
}

#top-featured-products ul {
  display: flex;
  gap: 30px 4%;
}

#top-featured-products ul li {
  width: 25%;
}

#top-featured-products ul li figure {
  margin-bottom: 30px;
}

#top-featured-products ul li h4 {
  font-size: 22px;
  text-align: center;
}

#top-featured-products ul li h5 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
}

#top-featured-products ul li h6 {
  font-size: 18px;
  margin-top: 15px;
}

#top-featured-products ul + .btn {
  margin-top: 50px;
}

/*----製品紹介--ここまで----*/
/*----ご利用者様の声----*/
#top-usedbytopshops {
  background: #ebebeb;
  padding: 100px 0;
}

#top-usedbytopshops .inner {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

#top-usedbytopshops .slider5 {
  width: 50%;
  margin: 50px auto 0;
}

#top-usedbytopshops .slider-thumbnail {
  width: 50%;
  margin: 0px auto 100px;
}

#top-usedbytopshops h2 {
  color: #111;
  text-align: center;
  margin: 0px 0px 50px;
  font-size: 40px;
  font-weight: 500;
}

#top-usedbytopshops ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 6.6666666667%;
}

#top-usedbytopshops ul li {
  width: 20%;
}

#top-usedbytopshops ul li p:nth-of-type(1) {
  font-weight: 700;
  font-size: 20px;
}

#top-usedbytopshops ul li p:nth-of-type(2) {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
}

.slider-thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
  width: 14.2857142857%;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

/*----ご利用者様の声--ここまで----*/
/*----修理サイクル時間----*/
#top-reduce-cycle-time {
  /*background: #111;*/
  padding: 100px 0;
  background: url(../img/top/bodyshop_background_2.jpg);
  position: relative;
}

#top-reduce-cycle-time::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

#top-reduce-cycle-time .inner {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 2;
}

#top-reduce-cycle-time h2 {
  color: #fff;
  text-align: center;
  margin: 0px 0px 50px;
  font-size: 40px;
  font-weight: 500;
}

#top-reduce-cycle-time dl {
  display: flex;
  gap: 10%;
}

#top-reduce-cycle-time dt {
  width: 40%;
}

#top-reduce-cycle-time dd {
  width: 50%;
}

#top-reduce-cycle-time dd h3 {
  color: #fff;
  text-align: center;
  margin: 0px 0 50px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}

#top-reduce-cycle-time dd p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

#top-reduce-cycle-time dd p + p {
  margin-top: 20px;
}

#top-reduce-cycle-time dl + .btn {
  margin-top: 50px;
}

/*----修理サイクル時間--ここまで----*/
/*----faq----*/
#top-faq {
  background: #ebebeb;
  padding: 100px 0;
}

#top-faq .inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

#top-faq h2 {
  color: #111;
  text-align: center;
  margin: 0px 0px 50px;
  font-size: 40px;
  font-weight: 500;
}

#top-faq ul {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 100px;
}

#top-faq ul + .btn {
  margin-top: 50px;
}

#top-faq ul li {
  border-bottom: solid 1px #f05323;
  padding-bottom: 35px;
}

#top-faq ul li p a {
  color: #f05323;
  text-decoration: underline dotted 1px;
  text-underline-offset: 3px;
}

#top-faq ul li p.question {
  width: fit-content;
  font-size: 26px;
  font-weight: 700;
  margin: auto;
  position: relative;
}

#top-faq ul li p.question::before {
  content: "Q.";
  margin-right: 0.5em;
  position: absolute;
  left: -1.5em;
}

#top-faq ul li p.answer {
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  margin: 20px auto 0;
  position: relative;
}

#top-faq ul li p.answer::before {
  content: "A.";
  margin-right: 0.5em;
  position: absolute;
  left: -1.5em;
}

/*----faq--ここまで----*/
.pc {
  display: none;
}

@media screen and (max-width: 961px) {
  .top-visual {
    height: 70vw;
  }
  .visual-catch {
    width: 90%;
    margin: auto;
    height: 100%;
  }
  .visual-catch h2 {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0em;
    flex-direction: column;
  }
  .visual-catch h2 span {
    font-size: 7vw;
    margin-bottom: 10px;
  }
  .visual-catch h4 {
    font-size: 2.7vw;
  }
}
@media screen and (max-width: 561px) {
  main {
    position: relative;
    top: 80px;
  }
  .top-visual {
    height: calc(100vh - 80px);
    max-height: 100vh;
    top: 80px;
  }
  #top-productoftheyear {
    margin-bottom: 60px;
    padding: 0px 0 0;
  }
  .visual-catch {
    width: 90%;
    margin: auto;
    height: 100%;
  }
  .visual-catch h2 {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0em;
    flex-direction: column;
  }
  .visual-catch h2 span {
    font-size: 46px;
    margin-bottom: 0px;
  }
  .visual-catch h4 {
    font-size: 21px;
    margin-top: 20px;
  }
  #top-productoftheyear iframe {
    width: 100%;
  }
  #top-newversion {
    margin: 60px 0;
  }
  #top-newversion .inner {
    width: 90%;
  }
  #top-newversion .inner + .inner {
    margin-top: 50px;
  }
  #top-newversion .inner + .inner dl {
    flex-direction: column;
    align-items: flex-start;
  }
  #top-newversion h2 {
    margin: 0px 0px 30px;
    font-size: 32px;
    text-align: left;
  }
  #top-newversion dl {
    flex-direction: column;
  }
  #top-newversion dt {
    width: 100%;
  }
  #top-newversion dd {
    width: 100%;
  }
  #top-universal-wheel-solution .inner {
    width: 90%;
  }
  #top-universal-wheel-solution dl {
    flex-direction: column;
  }
  #top-universal-wheel-solution dt {
    width: 100%;
  }
  #top-universal-wheel-solution dd {
    width: 100%;
  }
  #top-productoftheyear .inner {
    padding: 30px;
  }
  #top-productoftheyear h2 {
    margin: 0px 0px 30px;
    font-size: 21px;
    text-align: left;
  }
  #top-productoftheyear iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }
  #top-newversion dd h3 {
    font-size: 21px;
  }
  #top-newversion ul li {
    font-size: 16px;
  }
  #top-universal-wheel-solution h2 {
    margin: 0px 0px 30px;
    font-size: 32px;
  }
  #top-universal-wheel-solution dt iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  #top-universal-wheel-solution ul li {
    font-size: 16px;
  }
  #top-specifications {
    margin: 60px 0;
  }
  #top-specifications .inner {
    width: 90%;
  }
  #top-specifications h2 {
    margin: 0px 0px 30px;
    font-size: 30px;
    text-align: left;
  }
  #top-specifications dl {
    flex-direction: column;
  }
  #top-specifications dt {
    width: 100%;
  }
  #top-specifications dd {
    width: 100%;
  }
  #top-specifications ul li {
    font-size: 16px;
  }
  #top-industrywide-tool {
    padding: 60px 0;
  }
  #top-industrywide-tool .inner {
    width: 90%;
  }
  #top-industrywide-tool h2 {
    margin: 0px 0px 30px;
    font-size: 30px;
    text-align: left;
  }
  #top-industrywide-tool dl {
    flex-direction: column;
  }
  #top-industrywide-tool dt {
    width: 100%;
  }
  #top-industrywide-tool dd {
    width: 100%;
  }
  #top-industrywide-tool ul li {
    font-size: 16px;
  }
  #top-featured-products {
    margin: 60px 0;
  }
  #top-featured-products .inner {
    width: 90%;
  }
  #top-featured-products ul {
    gap: 30px 4%;
    flex-direction: column;
  }
  #top-featured-products ul li {
    width: 100%;
  }
  #top-featured-products ul li h4 {
    font-size: 24px;
  }
  #top-usedbytopshops {
    padding: 60px 0;
  }
  #top-usedbytopshops .inner {
    width: 90%;
  }
  #top-usedbytopshops h2 {
    margin: 0px 0px 30px;
    font-size: 32px;
    text-align: left;
  }
  #top-usedbytopshops .slider5 {
    width: 100%;
    margin: 30px auto 0;
  }
  #top-usedbytopshops .slider-thumbnail {
    width: 100%;
    margin: 0px auto 60px;
  }
  #top-usedbytopshops ul {
    gap: 20px 4%;
  }
  #top-usedbytopshops ul li {
    width: 48%;
  }
  #top-usedbytopshops ul li p:nth-of-type(1) {
    font-size: 18px;
  }
  #top-usedbytopshops ul li p:nth-of-type(2) {
    font-size: 12px;
    text-align: left;
    margin-top: 5px;
  }
  #top-reduce-cycle-time {
    padding: 60px 0;
  }
  #top-reduce-cycle-time .inner {
    width: 90%;
  }
  #top-reduce-cycle-time h2 {
    margin: 0px 0px 30px;
    font-size: 30px;
    text-align: left;
  }
  #top-reduce-cycle-time dl {
    flex-direction: column;
    gap: 30px;
  }
  #top-reduce-cycle-time dt {
    width: 100%;
  }
  #top-reduce-cycle-time dd {
    width: 100%;
  }
  #top-reduce-cycle-time dd h3 {
    margin: 0px 0 30px;
    font-size: 21px;
  }
  #top-reduce-cycle-time dd p {
    font-size: 16px;
  }
  #top-reduce-cycle-time dd p + p {
    margin-top: 15px;
  }
  #top-faq {
    margin-bottom: 80px;
    padding: 60px 0;
  }
  #top-faq .inner {
    width: 90%;
  }
  #top-faq h2 {
    margin: 0px 0px 30px;
    font-size: 32px;
    text-align: left;
  }
  #top-faq ul {
    gap: 20px;
    margin-top: 60px;
  }
  #top-faq ul li {
    padding-bottom: 20px;
    padding-left: 3em;
  }
  #top-faq ul li p.question {
    font-size: 21px;
  }
  #top-faq ul li p.answer::before {
    font-size: 19px;
  }
  .pc {
    display: block;
  }
}
#product-list section + section {
  margin: 100px 0;
}

#product-list section .inner {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.product-lineup {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 5%;
}

.product-lineup li {
  width: 30%;
  transition: 0.2s;
}

.product-lineup li:hover {
  opacity: 0.7;
}

.product-lineup li a figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  height: 420px;
}

.product-lineup li a h4 {
  font-size: 21px;
  color: #ff5001;
  text-align: center;
}

#product-lineup-detail {
  padding: 100px 0;
}

#product-lineup-detail .inner {
  width: 1400px;
  margin: auto;
}

#product-lineup-detail dl {
  scroll-margin-top: 100px;
  display: flex;
  gap: 8%;
  flex-direction: row-reverse;
  border-top: solid 2px #ff5100;
  padding-top: 50px;
}

#product-lineup-detail dl + dl {
  margin-top: 50px;
}

#product-lineup-detail dt {
  width: 35%;
}

#product-lineup-detail dt figure img {
  aspect-ratio: 1/1;
  object-fit: contain;
}

#product-lineup-detail dd {
  width: 57%;
}

#product-lineup-detail h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

#product-lineup-detail p {
  font-size: 16px;
  line-height: 1.5;
}

#product-lineup-detail p span {
  padding-left: 2em;
  text-indent: -1em;
  display: inline-block;
}

#product-lineup-detail iframe {
  width: 100%;
  margin: 30px auto 0;
}

#product-lineup-detail h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0;
}

#product-lineup-detail h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 15px 0 0;
}

#product-lineup-detail dd a {
  color: #f05323;
  text-decoration: underline dotted 1px;
  text-underline-offset: 3px;
}

.swiper + .swiper {
  margin-top: 20px;
}

.swiper-slide {
  background: #fff;
}

.slider-thumbnail1 figure,
.slider-thumbnail2 figure,
.slider-thumbnail3 figure,
.slider-thumbnail4 figure,
.slider-thumbnail5 figure {
  max-width: 80px;
}

.slider-thumbnail1 .swiper-wrapper,
.slider-thumbnail2 .swiper-wrapper,
.slider-thumbnail3 .swiper-wrapper,
.slider-thumbnail4 .swiper-wrapper,
.slider-thumbnail5 .swiper-wrapper {
  justify-content: center;
}

.slider-thumbnail1 .swiper-slide,
.slider-thumbnail2 .swiper-slide,
.slider-thumbnail3 .swiper-slide,
.slider-thumbnail4 .swiper-slide,
.slider-thumbnail5 .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
}

.slider-thumbnail1 .swiper-slide.swiper-slide-thumb-active,
.slider-thumbnail2 .swiper-slide.swiper-slide-thumb-active,
.slider-thumbnail3 .swiper-slide.swiper-slide-thumb-active,
.slider-thumbnail4 .swiper-slide.swiper-slide-thumb-active,
.slider-thumbnail5 .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

@media screen and (max-width: 561px) {
  #product-list section .inner {
    width: 90%;
  }
  .product-lineup {
    gap: 50px 6%;
  }
  .product-lineup li {
    width: 47%;
  }
  .product-lineup li a figure img {
    height: 200px;
  }
  .product-lineup li a h4 {
    font-size: 18px;
    text-align: left;
  }
  #product-lineup-detail dl {
    flex-direction: column;
    gap: 20px;
  }
  #product-lineup-detail dt {
    width: 100%;
  }
  #product-lineup-detail dd {
    width: 100%;
  }
  #product-lineup-detail h2 {
    font-size: 20px;
  }
}
#installation-instructions section + section {
  margin: 100px 0;
}

#installation-instructions section .inner {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.round {
  background: #ff5100;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 50px auto;
}

.round span {
  color: #fff;
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  position: relative;
  top: -6px;
  left: 0px;
}

.tri {
  background: url(../img/instruction/tri.png);
  background-repeat: no-repeat;
  width: 160px;
  height: 160px;
  /* border-radius: 50%; */
  display: grid;
  place-items: center;
  margin: 50px auto;
}

.tri span {
  color: #fff;
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  position: relative;
  top: -6px;
  left: 0px;
}

/*-------------------------------*/
#instructions-head .inner h2 {
  color: #ff5100;
  font-size: 40px;
  text-align: center;
}

#instructions-head .inner p {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}

#instructions-head .inner p a {
  color: #f05323;
  text-decoration: underline dotted 1px;
  text-underline-offset: 3px;
  font-weight: 700;
}

/*-------------------------------*/
#instructions-top .inner {
  border-top: solid 1px #ff5100;
}

#instructions-top dl {
  display: flex;
  margin-top: 100px;
  gap: 6%;
}

#instructions-top dt {
  width: 47%;
}

#instructions-top dt iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

#instructions-top dd {
  width: 47%;
}

#instructions-top ul {
  padding-left: 30px;
}

#instructions-top ul li {
  list-style: disc;
  font-size: 18px;
  line-height: 1.5;
}

#instructions-top ul li + li {
  margin-top: 10px;
}

/*-------------------------------*/
#instructions-no .inner {
  border-top: solid 1px #ff5100;
}

#instructions-no dl {
  display: flex;
  gap: 6%;
}

#instructions-no dt {
  width: 32%;
}

#instructions-no dt figcaption {
  font-weight: 900;
  margin-top: 5px;
}

#instructions-no dd {
  width: 62%;
}

#instructions-no ul {
  padding-left: 30px;
}

#instructions-no ul li {
  list-style: disc;
  font-size: 18px;
  line-height: 1.5;
}

#instructions-no ul li + li {
  margin-top: 10px;
}

#instructions-no ul li a {
  color: #f05323;
  text-decoration: underline dotted 1px;
  text-underline-offset: 3px;
  font-weight: 700;
}

#instructions-no ul li span {
  font-weight: 900;
}

/*-------------------------------*/
#installation-instructions #instructions-caution {
  scroll-margin-top: 100px;
  margin: 150px 0;
}

#installation-instructions #instructions-caution .inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  border: solid 1px #f05323;
  padding: 80px;
}

#instructions-caution h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: #f05323;
}

#instructions-caution h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

#instructions-caution p {
  font-size: 16px;
  padding-left: 2em;
  text-align: justify;
  line-height: 1.5;
}

#instructions-caution p + h4 {
  margin-top: 20px;
}

@media screen and (max-width: 561px) {
  #installation-instructions section .inner {
    width: 90%;
  }
  .round {
    width: 120px;
    height: 120px;
    margin: 30px auto;
  }
  .round span {
    font-size: 80px;
  }
  .tri {
    background-size: contain;
    width: 120px;
    height: 120px;
    margin: 30px auto;
  }
  .tri span {
    font-size: 80px;
  }
  #instructions-top dl {
    gap: 20px;
    flex-direction: column;
  }
  #instructions-top dt {
    width: 100%;
  }
  #instructions-top dd {
    width: 100%;
  }
  #instructions-no dl {
    gap: 20px;
    flex-direction: column;
  }
  #instructions-no dt {
    width: 100%;
  }
  #instructions-no dd {
    width: 100%;
  }
  #installation-instructions #instructions-caution .inner {
    width: 90%;
    padding: 20px;
  }
}
/* お問い合わせここから
-------------------------------------------*/
.contact .inner1024 {
  margin: 0px auto 150px;
}

/* お問い合わせフォーム */
#contact-form h2 {
  background: #ff5001;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  color: #fff;
  padding: 20px;
  margin: 120px 0 80px;
}

#contact-form p.main_text {
  color: #333;
  font-weight: bold;
  text-align: center;
}

#contact-form p.sub_text {
  color: #c70a11;
  font-weight: bold;
  margin-top: 2em;
  text-align: center;
}

#contact-form p.confirm_text {
  color: #333;
  font-weight: bold;
  text-align: center;
}

#contact-form dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

#contact-form dl dt {
  position: relative;
  font-weight: bold;
  width: 20%;
  display: flex;
  align-items: center;
}

#contact-form dl dd {
  width: 80%;
}

#contact-form dd .check-box {
  font-weight: normal;
  width: 100%;
  padding: 10px 20px;
  background: #FFF;
}

#contact-form dt.must:after {
  display: inline-block;
  content: "＊";
  color: #c70a11;
  position: relative;
  top: 1px;
  margin-left: 5px;
  font-size: 18px;
}

/* フォーム入力画面*/
#contact-form input,
#contact-form textarea,
#contact-form button.back {
  font-weight: normal;
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  border: solid 1px #b3b3b3;
  font-family: inherit;
}

#contact-form textarea {
  max-width: 100%;
  min-width: 100%;
  form-sizing: content;
  max-height: 8lh;
}

.check-box label {
  display: inline-block;
}

#contact-form button.back,
#contact-form input[type=submit] {
  color: #fff;
  background: #ff5001;
  border-radius: 3px;
  padding: 20px 0;
  transition: 0.2s ease-in-out;
  font-weight: bold;
}

#contact-form button.back:hover {
  background: #ccc;
  color: #fff;
}

#contact-form input[type=submit]:hover {
  background: #c03d00;
  color: #fff;
  opacity: 1;
}

#contact-form button.back:hover,
#contact-form input[type=submit]:hover {
  cursor: pointer;
}

#contact-form input[type=reset] {
  color: #fff;
  background: #444;
  border-radius: 3px;
  padding: 20px 0;
  transition: 0.2s ease-in-out;
  font-weight: bold;
  cursor: pointer;
}

#contact-form input[type=reset]:hover {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
}

#contact-form input[type=button] {
  color: #fff;
  background: #444;
  border-radius: 3px;
  padding: 20px 0;
  transition: 0.2s ease-in-out;
  font-weight: bold;
  cursor: pointer;
}

#contact-form input[type=button]:hover {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
}

.check-input,
.radio-input {
  display: none;
}

.check,
.radio {
  position: relative;
  padding-left: 1.5em;
  margin-right: 1.5em;
}

.check::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 1px;
}

.check-input:checked + .check::after {
  content: "";
  display: block;
  position: absolute;
  top: -0.1rem;
  left: 0.5rem;
  width: 0.4rem;
  height: 1.2rem;
  transform: rotate(40deg);
  border-bottom: 0.4rem solid #e10057;
  border-right: 0.4rem solid #e10057;
}

#doui {
  display: none;
}

#doui + label {
  position: relative;
  padding-left: 1.5em;
  font-size: 18px;
  font-weight: bold;
  user-select: none;
}

#doui + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  border: solid 1px #CCC;
  border-radius: 3px;
  background: #FFF;
}

#doui:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.4rem;
  left: 0.5rem;
  width: 0.8rem;
  height: 1.5rem;
  transform: rotate(40deg);
  border-bottom: 0.4rem solid #e10057;
  border-right: 0.4rem solid #e10057;
}

span.must {
  display: inline-block;
  color: #c70a11;
  margin-left: 0.5em;
  font-weight: bold;
}

/* 内容確認 */
/* お問い合わせ送信完了 */
#thankyou {
  width: 100%;
  margin: 0 auto;
}

.contact-tel {
  width: 50%;
  border: solid 1px #ddd;
  margin: 30px auto 0;
  text-align: center;
  font-size: 2.6rem;
  padding: 20px 10px;
}

.t-center {
  background: #f2f2f2;
  padding: 30px;
  text-align: center;
  margin: 60px 0 100px;
}

.t-center p {
  font-weight: bold;
}

.blank {
  color: #007bff;
  font-weight: bold;
  transition: 0.2s;
  margin-right: 0.2em;
}

.blank:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doui_box {
  background: #fff;
  padding: 20px;
  margin-top: 30px;
}

.btn_box {
  display: flex;
  gap: 5%;
}

#contact-form p.message {
  text-align: center;
}

#contact-form p.message strong {
  font-size: 20px;
  display: block;
}

.contact-tel p.tel {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-bottom: 5px;
}

.contact-tel p.small {
  font-weight: bold;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
}

/* お問い合わせここまで
-------------------------------------------*/
@media screen and (max-width: 561px) {
  .contact .inner1024 {
    margin: 100px auto;
  }
  #contact-form h2 {
    font-size: 20px;
    padding: 10px;
    margin: 60px 0 40px;
  }
  #contact-form p.sub_text {
    margin-top: 1em;
  }
  #contact-form dl {
    flex-direction: column;
  }
  #contact-form dl dt {
    width: 100%;
  }
  #contact-form dl dd {
    width: 100%;
  }
  .t-center {
    padding: 20px;
    margin: 30px 0 60px;
  }
  .doui_box {
    padding: 10px;
  }
  #doui + label {
    font-size: 16px;
  }
  .contact-tel {
    width: 80%;
  }
}
#operating-company section {
  margin: 0px 0 150px;
}

#operating-company section .inner {
  width: 100%;
  max-width: 1024px;
  margin: auto;
}

.fs-c-documentArticle__heading {
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 2px solid #E6E6E6;
}

.fs-c-documentArticle__content {
  margin-top: 20px;
}

.fs-c-explainList {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 20px;
}

.fs-c-explainList dt {
  font-weight: bold;
}

@media screen and (max-width: 561px) {
  #operating-company section .inner {
    width: 90%;
  }
  .fs-c-explainList {
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
  }
  .fs-c-explainList dd {
    border-bottom: solid 1px #222;
    padding-bottom: 10px;
    text-indent: 1em;
  }
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓privacy↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
#privacy .privacy-policy {
  padding: 100px 0;
}
#privacy .privacy-policy h3 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
#privacy .privacy-policy h3 span {
  display: block;
  font-size: 1.8rem;
  font-weight: lighter;
}
#privacy .privacy-policy_list {
  margin-top: 0px;
}
#privacy .privacy-policy_list dl dt {
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 2px solid #E6E6E6;
}
#privacy .privacy-policy_list dl dt:not(:first-of-type) {
  margin-top: 40px;
}
#privacy .privacy-policy_list dl dd {
  margin-top: 20px;
  padding-left: 20px;
}
#privacy .privacy-policy_list dl dd span {
  color: #ff2415;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  top: -5px;
}
#privacy .privacy-policy_list dl dd ul {
  margin-top: 10px;
  padding: 0 20px;
}

.return-policy_list {
  max-width: 1024px;
  margin: 0px auto 0;
}
.return-policy_list h4 {
  margin: 0px 0 30px;
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 2px solid #E6E6E6;
  line-height: 1.3;
}
.return-policy_list h5 {
  margin-top: 45px;
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 2px solid #E6E6E6;
}
.return-policy_list p {
  font-size: 16px;
  line-height: 1.5;
}
.return-policy_list p + p {
  margin-top: 15px;
}

/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑privacy　ここまで↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓privacy↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
#privacy .privacy-policy {
  padding: 100px 0;
}
#privacy .privacy-policy h3 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
#privacy .privacy-policy h3 span {
  display: block;
  font-size: 1.8rem;
  font-weight: lighter;
}

/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑privacy　ここまで↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
.terms-and-conditions_list {
  max-width: 1024px;
  margin: 0px auto 0;
}
.terms-and-conditions_list h4 {
  margin: 0px 0 30px;
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 2px solid #E6E6E6;
  line-height: 1.3;
}
.terms-and-conditions_list h5 {
  margin-top: 45px;
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 2px solid #E6E6E6;
}
.terms-and-conditions_list p {
  font-size: 16px;
  line-height: 1.5;
}
.terms-and-conditions_list p + p {
  margin-top: 15px;
}

/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓privacy↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
#privacy .privacy-policy {
  padding: 0px 0;
  margin-bottom: 150px;
}
#privacy .privacy-policy h3 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
#privacy .privacy-policy h3 span {
  display: block;
  font-size: 1.8rem;
  font-weight: lighter;
}
#privacy .privacy-policy_list {
  margin: 0px auto 0;
}
#privacy .privacy-policy_list dl dt {
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 2px solid #E6E6E6;
}
#privacy .privacy-policy_list dl dt:not(:first-of-type) {
  margin-top: 40px;
}
#privacy .privacy-policy_list dl dd {
  margin-top: 20px;
  padding-left: 20px;
}
#privacy .privacy-policy_list dl dd span {
  color: #ff2415;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  top: -5px;
}
#privacy .privacy-policy_list dl dd ul {
  margin-top: 10px;
  padding: 0 20px;
}
#privacy .privacy-policy .note_list {
  margin-top: 0px;
}
#privacy .privacy-policy .note_list ul {
  border-top: 1px solid #666666;
  padding-top: 20px;
}
#privacy .privacy-policy .note_list ul li {
  position: relative;
  font-size: 1.4rem;
  padding-left: 25px;
}
#privacy .privacy-policy .note_list ul li:not(:first-of-type) {
  margin-top: 20px;
}
#privacy .privacy-policy .note_list ul li span {
  color: #ff2415;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑privacy　ここまで↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ *//*# sourceMappingURL=style.css.map */