@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Jost", sans-serif;
  background-color: #F4F4F4;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

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

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.body {
  font-family: "Jost", sans-serif;
  background-color: #F4F4F4;
}

body:not(.home) {
  background-color: #FAF3E0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 90px 20px 40px;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 影を追加して浮かせてもOK */
}

.header-left {
  display: flex;
  width: 25%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logobg {
  width: 180px;
  height: 57px;
  background-color: #fff;
  border: 1px solid #D60034;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logolink {
  display: flex;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.header-navlink {
  font-size: 14px;
  color: #525252;
  font-weight: bold;
}

.header-navlogo {
  width: auto;
  height: 40px;
}

@media screen and (max-width: 1200px) {
  .header-logobg {
    width: 148px;
    height: 47px;
  }
  .header-navlogo {
    height: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .header-navlogo {
    width: auto;
    height: 26px;
  }
  .header-logobg {
    width: 130px;
    height: 40px;
  }
  .header-left {
    width: 25%;
  }
}
@media screen and (max-width: 900px) {
  .header {
    padding: 20px;
    width: 100%;
  }
  .header-middle {
    display: none;
  }
  .header-right {
    display: none;
  }
  .header-left {
    width: 280px;
  }
  .header-logobg {
    width: 300px;
    height: auto;
    padding: 20px;
  }
}
@media screen and (max-width: 450px) {
  .header-left {
    width: 230px;
  }
}
.main-slider {
  width: 100%;
  height: 80vh;
  position: relative;
}

.main-slider .swiper-slide {
  position: relative;
}

.main-slider img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 100px;
  left: 120px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.banner-slider {
  max-width: 83%;
  margin: 20px auto 0;
}

.banner-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.banner-slider .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.swiper-buttons {
  width: 290px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

/* 前へボタンのスタイル */
.swiper-button-prev.custom-nav-btn {
  position: static;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #FAF3E0;
  border: 2px solid #D9D9D9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.swiper-button-prev.custom-nav-btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid #E95513;
  border-bottom: 2px solid #E95513;
  transform: rotate(45deg);
  margin-left: 2px;
}

/* 次へボタンのスタイル */
.swiper-button-next.custom-nav-btn {
  position: static;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #FAF3E0;
  border: 2px solid #D9D9D9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.swiper-button-next.custom-nav-btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #E95513;
  border-bottom: 2px solid #E95513;
  transform: rotate(-45deg);
  margin-right: 2px;
}

/* ページネーション（ドット）のスタイル */
.swiper-pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #ff6b35;
}

@media screen and (max-width: 900px) {
  .banner-slider {
    max-width: 95%;
  }
  .banner-slider .swiper-slide {
    margin-right: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .swiper-pagination {
    gap: 25px;
  }
  .swiper-buttons {
    width: 260px;
  }
}
.fixed-buttons-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70px;
  overflow: scroll;
  z-index: 1000;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.fixed-buttons-wrappe::-webkit-scrollbar {
  display: none;
}

.fixed-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
  font-family: "Noto Sans", sans-serif;
}

.fixed-buttons-vertical .btn {
  width: 70px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  border-radius: 10px 0px 0px 10px;
  font-weight: bold;
  padding: 15px 10px;
}

.btn.kau {
  background-color: #EE4E36;
  color: white;
}

.btn.kispa {
  background-color: #14A866;
  color: white;
}

.btn.btn-catalog {
  background-color: #119CB2;
  color: white;
  font-size: 18px;
  justify-content: center;
}

.btn.btn-contact {
  background-color: #fa732b;
  color: #fff;
  justify-content: center;
}

/* ログインボタン内の縦書き部分 */
.btn .vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 18px;
  line-height: 1;
}

/* ログイン（横書き）部分 */
.btn .horizontal-text {
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
  line-height: 1.2;
}

/* お問い合わせ用アイコン */
.btn.btn-contact img {
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
}

.btn.btn-contact .vertical-text {
  writing-mode: vertical-rl;
  font-size: 18px;
  text-align: center;
}

.horizontal-text span {
  font-size: 16px;
}

@media screen and (max-width: 900px) {
  .fixed-buttons-vertical {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .slide-caption {
    left: 50px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 500px) {
  .slide-caption {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 420px) {
  .slide-caption {
    font-size: 25px;
    line-height: 1.4;
    left: 30px;
  }
}
@media screen and (max-width: 370px) {
  .slide-caption {
    left: 30px;
  }
}
.sp-mvwrap {
  display: none;
}

@media screen and (max-width: 500px) {
  .sp-mvwrap {
    position: relative;
    display: block;
  }
  .sp-mvimg {
    width: 100%;
    height: 80vh;
  }
  .main-slider {
    display: none;
  }
}
.service {
  margin-top: 100px;
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #FDB032;
  border-radius: 60px;
}

.service-description {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}

.service-description__title {
  margin-top: 40px;
  font-size: 30px;
  line-height: 1.4;
}

.service-description__text {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}

.service-description__text2 {
  margin-top: 10px;
}

.map-img {
  width: 40%;
  height: auto;
  margin-top: 10px;
}

.service-topimg {
  width: 40%;
}

.service-inner__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.service-inner__topright {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: flex-end;
}

.service-container {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 60px 70px;
  background-color: #fff4db;
  border-radius: 10px;
}

.servicecolumns-container {
  display: flex;
  justify-content: space-between;
}

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

.logo-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 86px;
}

.service-logokaunet {
  width: 257px;
}

.service-logokispa {
  width: 295px;
  height: 86px;
}

.logo-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.logo-kaunet {
  color: #e50044;
  font-size: 24px;
  font-weight: bold;
}

.logo-kispa {
  color: #e50044;
  font-size: 32px;
  font-weight: bold;
}

.servicecatalog-title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.price-tag {
  background-color: #EA4C33;
  color: #fff;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 30px;
}

.description-wrap {
  height: 110px;
}

.description {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  font-size: 32px;
  line-height: 1.4;
}

.description-small {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  font-size: 23px;
  line-height: 1.4;
}

.description-span {
  font-size: 19px;
}

.description-small2 {
  font-size: 12px;
}

.truck-icon {
  width: 140px;
  margin-top: 30px;
}

.delivery-text {
  display: flex;
  align-items: flex-end;
  text-align: center;
  font-size: 18px;
  height: 54px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.price-info {
  width: 100%;
  max-width: 300px;
  padding: 20px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
}

.price-info__top, .price-info__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.badge {
  display: inline-block;
  writing-mode: vertical-rl;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  text-align: center;
}

.blue-badge {
  background-color: #119CB2;
}

.green-badge {
  margin-top: 10px;
  background-color: #14A866;
}

.price-infotext {
  width: 220px;
}

.shipping-note {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

.service-bigtext {
  margin-top: 45px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.table-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  padding-right: 30px;
  padding-left: 30px;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}

.table-row {
  background-color: #FDF6E0;
  border-bottom: 1px solid #FFF;
}

.table-row:last-child {
  border-bottom: none;
}

.header-cell-left {
  background-color: #3CA0B0;
  color: white;
  font-size: 25px;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}

.header-cell-right {
  background-color: #119CB2;
  color: white;
  font-size: 25px;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}

.cell-left, .cell-right {
  font-size: 25px;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}

.cell-right {
  background-color: #D7F0F4;
}

.percentage {
  color: #EA4C33;
  font-size: 30px;
  font-weight: bold;
}

.service-attention {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.service-attention__left {
  width: 200px;
  min-width: 200px;
  height: 200px;
  background-image: url(../images/red-bg.png);
  background-size: cover;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.attention-bigtext {
  font-size: 35px;
  font-weight: bold;
}

.attention-smalltext {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
}

.service-detailwrap {
  margin-top: 50px;
  max-width: 1360px;
  padding: 60px;
  background-color: #FDF6E0;
  border-radius: 10px;
}

.service-detailtitle {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 22px;
  font-weight: bold;
  padding: 20px 50px;
  background-color: #FDB032;
  border-radius: 100px;
  margin-inline: auto;
  z-index: 10;
}

.service-detailtitle__wrap {
  position: relative;
}

.service-detailtitle__wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FDB032;
}

.serivce-itemlists {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 40px;
}

.item-name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

.service-howto {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  text-align: center;
  line-height: 1.4;
}

.service-detailtitle__wrap2 {
  margin-top: 50px;
}

.register-button {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 50px;
  margin-inline: auto;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #EA4C33;
  border-radius: 200px;
  padding: 30px 220px 30px 60px;
}

.register-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 60px;
  width: 45px;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
}

.register-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 60px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.map-imgwrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 1200px) {
  .service-description {
    justify-content: space-around;
  }
  .service-description__title {
    font-size: 30px;
  }
  .service-description__text {
    font-size: 20px;
  }
  .price-info {
    padding: 20px 30px;
  }
  .service-logokaunet {
    width: 65%;
  }
  .service-logokispa {
    width: 65%;
    height: auto;
  }
  .servicecatalog-title {
    font-size: 22px;
  }
  .price-tag {
    margin-top: 10px;
  }
  .description {
    font-size: 25px;
  }
  .description-small {
    font-size: 18px;
  }
  .description-span {
    font-size: 14px;
  }
  .description-wrap {
    height: 90px;
  }
  .servicecolumns-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .price-infotext {
    width: 100%;
  }
  .service-container {
    padding: 60px 20px;
  }
  .delivery-text {
    font-size: 16px;
    height: 49px;
  }
  .shipping-note {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
  }
  .attention-bigtext {
    font-size: 30px;
  }
  .item-name {
    font-size: 16px;
  }
  .map-img {
    width: 45%;
  }
  .service-topimg {
    width: 45%;
  }
}
@media screen and (max-width: 1080px) {
  .description-small2 {
    font-size: 10px;
  }
  .service-description__title {
    margin-top: 30px;
    font-size: 19px;
  }
  .service-description__text {
    margin-top: 10px;
    font-size: 16px;
  }
  .service-bigtext {
    font-size: 30px;
    margin-top: 30px;
  }
  .attention-bigtext {
    font-size: 25px;
  }
  .service-attention__left {
    width: 150px;
    min-width: 150px;
    height: 150px;
    font-size: 20px;
  }
  .service-detailwrap {
    margin-top: 50px;
    max-width: 1360px;
    padding: 60px 30px;
  }
  .serivce-itemlists {
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 30px;
  }
  .map-img {
    width: 165px;
    margin-top: 0;
  }
  .service-topimg {
    width: 160px;
  }
}
@media screen and (max-width: 940px) {
  .price-info {
    font-size: 12px;
  }
  .description {
    font-size: 20px;
  }
  .description-small {
    font-size: 16px;
  }
  .price-tag {
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 10px;
  }
  .logo-container {
    height: 62px;
  }
  .service-logokispa {
    width: 65%;
    height: auto;
  }
  .service-logokaunet {
    width: 65%;
  }
  .description-wrap {
    height: 82px;
    line-height: 1;
  }
}
@media screen and (max-width: 900px) {
  .description-wrap {
    height: 78px;
    line-height: 1;
  }
  .description-small {
    font-size: 14px;
  }
  .description-span {
    font-size: 12px;
  }
  .delivery-text {
    font-size: 14px;
    height: 49px;
  }
  .shipping-note {
    font-size: 14px;
  }
  .price-info {
    padding: 20px 15px;
  }
  .service-logokaunet {
    width: 80%;
  }
  .service-logokispa {
    width: 80%;
    height: auto;
  }
  .service-detailtitle {
    font-size: 20px;
  }
  .item-name {
    font-size: 14px;
  }
}
@media screen and (max-width: 830px) {
  .map-img {
    width: 145px;
  }
  .service-topimg {
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .header-cell-left {
    font-size: 20px;
  }
  .cell-left, .cell-right {
    font-size: 20px;
  }
  .header-cell-right {
    font-size: 20px;
  }
  .percentage {
    font-size: 25px;
  }
  .service-attention {
    gap: 20px;
  }
  .service-description__title {
    font-size: 25px;
  }
  .service-description__text {
    margin-top: 10px;
    font-size: 16px;
  }
  .service-description__left {
    text-align: left;
  }
  .service-description {
    margin-top: 40px;
  }
  .serivce-itemlists {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
  }
  .item-name {
    font-size: 18px;
  }
  .service-inner__top {
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .map-img {
    width: 40%;
  }
  .service-topimg {
    width: 40%;
  }
  .service-inner__topright {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 700px) {
  .servicecolumns-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .logo-container {
    height: auto;
  }
  .price-tag {
    font-size: 20px;
    padding: 20px 60px;
    margin-top: 20px;
  }
  .description {
    font-size: 40px;
  }
  .description-wrap {
    height: auto;
    line-height: 1;
  }
  .delivery-text {
    font-size: 20px;
    height: auto;
  }
  .price-info {
    font-size: 18px;
  }
  .shipping-note {
    font-size: 20px;
  }
  .description-small {
    font-size: 18px;
  }
  .description-span {
    font-size: 14px;
  }
  .description-small2 {
    font-size: 12px;
  }
  .servicecatalog-title {
    font-size: 35px;
  }
  .service-bigtext {
    font-size: 25px;
  }
  .attention-bigtext {
    font-size: 20px;
  }
  .attention-smalltext {
    font-size: 16px;
  }
  .service-attention__left {
    width: 100px;
    min-width: 100px;
    height: 100px;
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .service-description {
    flex-direction: column;
  }
  .service-topimg {
    width: 50%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 550px) {
  .header-cell-left {
    font-size: 16px;
  }
  .header-cell-right {
    font-size: 16px;
  }
  .percentage {
    font-size: 20px;
  }
  .service-detailwrap {
    padding: 50px 20px;
  }
  .serivce-itemlists {
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
  .service-howto {
    font-size: 16px;
  }
  .register-button {
    padding: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 50px;
    width: 80%;
  }
  .service-howto {
    text-align: left;
  }
  .item-name {
    font-size: 15px;
  }
  .service-description__title {
    font-size: 23px;
  }
}
@media screen and (max-width: 450px) {
  .service {
    margin-top: 70px;
  }
  .service-title {
    margin-inline: auto;
  }
  .service-container {
    padding: 50px 20px;
  }
  .service-logokaunet {
    width: 77%;
  }
  .price-tag {
    padding: 10px 30px;
  }
  .description {
    font-size: 32px;
  }
  .truck-icon {
    margin-top: 20px;
  }
  .delivery-text {
    font-size: 18px;
  }
  .price-infotext {
    font-size: 15px;
  }
  .price-info {
    padding: 20px 30px;
  }
  .shipping-note {
    font-size: 18px;
  }
  .servicecatalog-title {
    font-size: 30px;
  }
  .description-small {
    font-size: 20px;
  }
  .description-span {
    font-size: 16px;
  }
  .service-bigtext {
    font-size: 20px;
  }
  .cell-left, .cell-right {
    font-size: 14px;
  }
  .header-cell-left {
    font-size: 14px;
  }
  .header-cell-right {
    font-size: 14px;
  }
  .percentage {
    font-size: 18px;
  }
  .attention-bigtext {
    font-size: 16px;
  }
  .attention-smalltext {
    font-size: 10px;
    margin-top: 3px;
  }
  .item-name {
    font-size: 14px;
  }
  .service-detailtitle {
    font-size: 15px;
    padding: 20px 30px;
  }
  .register-button {
    padding-left: 40px;
    width: 100%;
  }
  .service-description__title {
    font-size: 18px;
  }
  .service-description__text {
    margin-top: 5px;
    font-size: 14px;
  }
  .service-inner__top {
    gap: 5px;
  }
}
@media screen and (max-width: 400px) {
  .header-cell-left {
    font-size: 12px;
    padding: 10px;
  }
  .header-cell-right {
    font-size: 12px;
    padding: 10px;
  }
  .percentage {
    font-size: 16px;
  }
  .item-name {
    font-size: 12px;
  }
}
@media screen and (max-width: 370px) {
  .description-small {
    font-size: 18px;
  }
  .description-span {
    font-size: 13px;
  }
  .attention-bigtext {
    font-size: 14px;
  }
  .register-button::after {
    right: 40px;
  }
  .register-button::before {
    right: 40px;
  }
  .service-description__title {
    font-size: 16px;
  }
  .service-description__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 360px) {
  .item-name {
    font-size: 11px;
  }
  .register-button::after {
    width: 30px;
  }
}
.illustration-slider .swiper-slide {
  margin-top: 100px;
  width: 32%;
}

.illustration-img {
  border-radius: 10px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .illustration-slider .swiper-slide {
    margin-top: 70px;
    width: 45%;
  }
}
body ._3d-flip-book {
  height: 100vh;
  overflow: hidden;
}

.newsorder-wrap {
  margin-top: 100px;
  display: flex;
}

.newstop {
  width: 55.5%;
  padding: 80px 100px;
  background-color: #63A55D;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
}

.news-topwrap {
  margin-top: 40px;
}

.newsdetail-link {
  position: relative;
  display: flex;
  padding: 0 20px 20px;
  color: #fff;
  font-size: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
}

.news-maintitle {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.newscontent-left {
  display: flex;
  gap: 40px;
}

.news-arrow {
  display: block;
  position: relative;
  width: 25px;
}

.arrow-line {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
}

.arrow-head {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.news-date {
  font-size: 16px;
}

.news-maintitle {
  font-weight: bold;
}

.news-list:not(first-child) {
  margin-top: 50px;
}

.news-link {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 18px;
  font-weight: bold;
  background-color: #FDF6E0;
  color: #000;
  border-radius: 200px;
  margin-top: 40px;
  padding: 30px 116px 30px 50px;
}

.news-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  width: 25px;
  height: 2px;
  background-color: #000;
  transform: translateY(-50%);
}

.news-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 1200px) {
  .newstop {
    padding: 80px 75px;
  }
  .newsdetail-link {
    padding: 0 10px 10px;
    font-size: 16px;
    gap: 15px;
  }
}
@media screen and (max-width: 1080px) {
  .newstop {
    width: 55%;
  }
  .news-date {
    font-size: 14px;
  }
  .newsdetail-link {
    font-size: 14px;
  }
  .newscontent-left {
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .newstop {
    padding: 70px 30px;
  }
}
@media screen and (max-width: 768px) {
  .newstop {
    width: 100%;
  }
  .newsorder-wrap {
    margin-top: 70px;
    flex-direction: column;
  }
  .newsdetail-link {
    font-size: 16px;
  }
  .news-date {
    font-size: 16px;
  }
  .news-list:not(first-child) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 450px) {
  .newscontent-left {
    flex-direction: column;
    gap: 5px;
  }
  .arrow-line {
    position: absolute;
    top: auto;
    right: 0;
    width: 25px;
    height: 2px;
    bottom: -15px;
    background-color: #fff;
    transform: none;
  }
  .arrow-head {
    top: 14px;
  }
  .news-date {
    font-size: 15px;
  }
  .newsdetail-link {
    font-size: 15px;
  }
  .news-link {
    width: 65%;
    font-size: 14px;
    margin-top: 40px;
    padding: 20px 0 20px 30px;
  }
  .news-link::before {
    right: 20px;
  }
  .news-link::after {
    right: 20px;
  }
}
.order {
  margin-left: auto;
  padding-right: 120px;
}

.order-link {
  width: 400px;
  height: 130px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D60034;
  border-radius: 10px;
  background-color: #fff;
}

.order-linkwrap {
  margin-top: 40px;
}

.order-text {
  font-size: 16px;
  margin-top: 10px;
  display: block;
}

.order-circle1 {
  width: 30px;
  height: 30px;
  background-color: #EE4E36;
  border-radius: 50%;
  margin-left: auto;
  margin-right: 20px;
  margin-top: 30px;
}

.order-circle2 {
  width: 20px;
  height: 20px;
  margin-left: auto;
  background-color: #14A866;
  border-radius: 50%;
  text-align: right;
}

@media screen and (max-width: 1200px) {
  .order-link {
    width: 350px;
    height: 120px;
    padding: 20px 25px;
  }
  .order-linkwrap {
    margin-top: 30px;
  }
  .order {
    padding-right: 90px;
  }
}
@media screen and (max-width: 1080px) {
  .order-link {
    width: 300px;
    height: 110px;
    padding: 20px 25px;
  }
}
@media screen and (max-width: 900px) {
  .order {
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .order {
    margin-top: 70px;
    padding-right: 30px;
    padding-left: 30px;
    margin-inline: auto;
  }
  .order-link {
    width: 100%;
    height: auto;
    padding: 20px 25px;
  }
  .order-linkwrap1 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 370px) {
  .order-text {
    font-size: 14px;
    margin-top: 5px;
  }
}
.catalog {
  margin-top: 100px;
  padding: 80px 0;
  background-color: #F6913F;
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
}

.catalog-description {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
}

.catalog-labels {
  max-width: 1290px;
  margin-top: 40px;
  margin-inline: auto;
  padding-right: 75px;
  padding-left: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 30px;
}

.catalog-label {
  color: #fff;
  font-size: 14px;
  padding: 15px 0;
  background-color: #444;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all;
}

.catalog-label:not(.active):hover {
  background-color: #fff;
  color: #ED4F36;
  outline: 2px solid #ED4F36;
  outline-offset: -2px;
}

.catalog-label.active {
  position: relative;
  background-color: #ED4F36;
}

.catalog-label.active::after {
  content: "";
  position: absolute;
  bottom: -7.5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ED4F36;
}

.catalog-label.active::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ED4F36;
}

.catalog__items {
  max-width: 1260px;
  padding: 0 30px;
  margin-top: 40px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 40px;
  column-gap: 40px;
}

.catalog__img-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog__name {
  font-size: 16px;
  color: #000;
  margin-top: 20px;
  font-weight: bold;
}

.catalog__desc {
  font-size: 14px;
  margin-top: 5px;
  color: #000;
}

#catalogOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#closeCatalog {
  font-size: 24px;
  background: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  margin-inline: auto;
  margin-top: 30px;
}

#catalogFrame {
  width: 100%;
  margin-right: 80px;
  margin-left: 30px;
  height: 90%;
  background: white;
}

#catalogOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none; /* 初期非表示 */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.catalog-buttons-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66px;
  z-index: 1000;
  font-family: "Noto Sans", sans-serif;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.catalog-buttons-wrapper::-webkit-scrollbar {
  display: none;
}

.catalog-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 注文フォームボタン */
#showOrderForm {
  width: 66px;
  font-size: 18px;
  padding: 20px 15px;
  background: #dc574b;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 10000;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-family: "Noto Sans JP", serif;
  align-items: center;
}

#showOrderForm .horizontal-text {
  writing-mode: horizontal-tb;
  font-size: 12px;
}

.fax-download {
  width: 66px;
  font-size: 18px;
  padding: 20px 15px;
  background: #7a60c7;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 10000;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: "Noto Sans JP", serif;
}

.fax-download .horizontal-text {
  writing-mode: horizontal-tb;
  font-size: 12px;
}

/* 注文フォーム（初期非表示） */
#orderForm {
  position: fixed;
  top: 35px;
  right: 70px;
  width: 90%;
  height: 100%;
  max-width: 100%;
  background: #FAF3E0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 10001;
  overflow-y: auto;
}

/* 閉じるボタン */
#closeCatalog, #closeOrderForm {
  padding: 0;
  font-size: 24px;
  background: white;
  border-radius: 50%;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EE4E36;
}

#closeOrderForm {
  position: fixed;
  top: 60px;
  right: 90px;
  background: #EE4E36;
  color: #fff;
  z-index: 100;
}

@media screen and (max-width: 1400px) {
  .catalog__items {
    max-width: 1350px;
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media screen and (max-width: 1080px) {
  .catalog__items {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .catalog {
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
  }
  .catalog__items {
    max-width: 1260px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .catalog-labels {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .catalog {
    margin-top: 70px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
  .catalog__name {
    font-size: 14px;
    margin-top: 10px;
  }
  .catalog__desc {
    font-size: 12px;
  }
  .catalog-description {
    font-size: 16px;
  }
  .catalog-labels {
    margin-top: 30px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .catalog__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-label {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .catalog-labels {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 400px) {
  .catalog-description {
    font-size: 13px;
  }
}
.sns {
  padding-top: 100px;
}

.sns__link {
  margin-top: 60px;
  display: flex;
  gap: 60px;
  justify-content: center;
}

.instagram-icon {
  width: 60px;
  height: 60px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.x-icon {
  width: 60px;
  height: 60px;
  margin-inline: auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 1080px) {
  .sns__link {
    margin-top: 60px;
    max-width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-inline: auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 900px) {
  .instagram iframe {
    margin-inline: auto;
  }
  .sns__link {
    display: flex;
    flex-direction: column;
  }
  .instagram {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .twitter {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .sns {
    padding-top: 70px;
  }
}
@media screen and (max-width: 500px) {
  .sns__link {
    width: 100%;
    max-width: 100%;
    gap: 30px;
  }
  .instagram iframe {
    min-width: 100% !important;
  }
  .twitter iframe {
    max-width: 100%;
  }
  .x-icon {
    margin-bottom: 10px;
  }
  .instagram-icon {
    margin-bottom: 10px;
  }
}
.menu-toggle,
.drawer {
  display: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #EE4E36;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    gap: 5px;
  }
  .menu-toggle.open {
    background-color: white;
  }
  .menu-toggle .bar {
    width: 16px;
    height: 1px;
    background-color: white;
    transition: background-color 0.3s;
  }
  .menu-toggle.open .bar {
    background-color: #EE4E36;
  }
  .menu-toggle.open .bar2 {
    display: none;
  }
  .menu-toggle.open .bar1 {
    transform: rotate(45deg) translate(1px, 0);
  }
  .menu-toggle.open .bar3 {
    transform: rotate(-45deg) translate(1px, 0);
  }
  .menu-toggle.open {
    gap: 0;
  }
  .drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #EE4E36;
    padding: 70px 20px 20px;
    align-items: center;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: scroll;
  }
  .drawer.open {
    transform: translateX(0);
  }
  .drawer a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    width: 300px;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
  }
  .drawer .header-logobg {
    display: flex;
    margin-bottom: 20px;
  }
  .drawer .header-navlogo {
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 450px) {
  .menu-toggle {
    top: 15px;
  }
}
.contact-buttonwrap {
  margin-top: 100px;
  max-width: 1350px;
  padding-left: 75px;
  padding-right: 75px;
  margin-inline: auto;
}

.contact-button {
  width: 100%;
  border-radius: 200px;
  padding: 80px 150px;
  background-color: #e6470d;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.contact-textwrap {
  display: flex;
  align-items: flex-end;
}

.contact-circle1 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #F59604;
}

.contact-circle2 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 20px;
  background-color: #14A866;
}

.contact-text__en {
  font-size: 100px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}

.contact-text__jp {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
  margin-left: 15px;
}

.contact-arrow {
  position: relative;
  display: block;
  width: 100px;
  background-color: #F59604;
  border-radius: 50%;
  height: 100px;
}

.contact-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.contact-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 60%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 1200px) {
  .contact-button {
    padding: 80px 80px;
  }
}
@media screen and (max-width: 1080px) {
  .contact-button {
    padding: 40px 40px;
  }
  .contact-text__en {
    font-size: 70px;
  }
  .contact-arrow {
    width: 70px;
    height: 70px;
  }
  .contact-button {
    width: 90%;
    margin-inline: auto;
  }
  .contact-arrow::before {
    left: 65%;
  }
}
@media screen and (max-width: 900px) {
  .contact-text__en {
    font-size: 60px;
  }
  .contact-text__jp {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .contact-arrow {
    width: 60px;
    height: 60px;
  }
  .contact-button {
    gap: 30px;
  }
}
@media screen and (max-width: 800px) {
  .contact-text__en {
    font-size: 45px;
  }
  .contact-text__jp {
    font-size: 16px;
    margin-bottom: 0px;
    margin-left: 10px;
  }
  .contact-arrow {
    width: 50px;
    height: 50px;
  }
  .contact-arrow::after {
    width: 20px;
  }
  .contact-arrow::before {
    left: 60%;
  }
  .contact-buttonwrap {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .contact-buttonwrap {
    padding-left: 30px;
    padding-right: 30px;
  }
  .contact-button {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .contact-textwrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-text__jp {
    margin-left: 0;
  }
  .contact-arrow {
    margin-top: auto;
  }
}
@media screen and (max-width: 450px) {
  .contact-text__en {
    font-size: 35px;
  }
  .contact-text__jp {
    font-size: 12px;
  }
  .contact-circle1 {
    width: 15px;
    height: 15px;
  }
  .contact-circle2 {
    width: 15px;
    height: 15px;
    margin-left: 15px;
  }
  .contact-arrow {
    width: 40px;
    height: 40px;
  }
  .contact-arrow::after {
    width: 15px;
  }
  .contact-arrow::before {
    left: 55%;
  }
  .contact-button {
    gap: 20px;
  }
  .contact-buttonwrap {
    margin-top: 50px;
  }
}
@media screen and (max-width: 370px) {
  .contact-circle1 {
    width: 10px;
    height: 10px;
  }
  .contact-circle2 {
    width: 10px;
    height: 10px;
    margin-left: 10px;
  }
  .contact-arrow {
    width: 30px;
    height: 30px;
  }
  .contact-arrow::after {
    width: 10px;
  }
  .contact-arrow::before {
    left: 50%;
  }
  .contact-button {
    gap: 20px;
  }
  .contact-button {
    padding: 30px;
  }
  .contact-arrow::before {
    left: 60%;
    width: 7px;
    height: 7px;
  }
}
@media screen and (max-width: 340px) {
  .contact-button {
    padding: 20px;
  }
}
.form__wrap {
  display: flex;
  margin-top: 30px;
  -moz-column-gap: 45px;
       column-gap: 45px;
  align-items: center;
}

.form__wrap .label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 144px;
  width: 234px;
  font-weight: 500;
  font-size: 18px;
}

.contact__topinner {
  padding-right: 75px;
  padding-left: 75px;
  max-width: 950px;
  margin-inline: auto;
  margin-top: 100px;
  padding-bottom: 100px;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.form__input-right {
  width: 100%;
}

.form__text {
  width: 100%;
  border: 1px solid #389A6E;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.form__textarea {
  width: 100%;
  border: 1px solid #389A6E;
  border-radius: 10px;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.form-select {
  position: relative;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 30px;
}

.wpcf7-list-item-label {
  font-size: 18px;
  font-weight: 500;
}

.wpcf7-submit {
  background: #F59604;
  border-radius: 50px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  display: block;
  border: none;
  padding: 30px 125px;
  margin-top: 40px;
}

.contact__button {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.contact-top select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact-top select::-ms-expand {
  display: none;
}

.wpcf7-list-item input {
  width: 25px;
  height: 25px;
  background-color: #F3F3F3;
}

.wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
}

.contact__button .wpcf7-multistep cf7msm-multistep {
  display: none;
}

.contact__button .wpcf7-spinner {
  display: none;
}

.contact__thanks {
  font-size: 20px;
  font-weight: 500;
}

.label span {
  color: #fff;
  background-color: #E95513;
  margin-left: 20px;
  font-size: 12px;
  padding: 5px 20px;
  border-radius: 5px;
}

.wpcf7 input::-moz-placeholder {
  font-size: 16px;
}

.wpcf7 input::placeholder {
  font-size: 16px;
}

.form__wrap-textarea {
  align-items: start;
}

.form__wrap-member {
  align-items: start;
}

.form__wrap-textarea .label {
  padding-top: 20px;
}

.form__wrap-member .label {
  padding-top: 20px;
}

.form-attention {
  font-size: 12px;
  display: block;
  margin-top: 5px;
  margin-left: 5px;
}

.register-small {
  display: block;
  font-size: 10px;
  margin-top: -20px;
}

.register-wrap .form__wrap .label {
  width: 260px;
  min-width: 260px;
}

.remove-product-btn {
  font-size: 20px;
  font-weight: bold;
  color: #E95513;
  margin-top: 10px;
  margin-left: auto;
  float: right;
}

.product-additem {
  margin-top: 50px;
}

.hidden-product-info {
  display: none;
}

@media screen and (max-width: 768px) {
  .contact__topinner {
    padding-right: 30px;
    padding-left: 30px;
    margin-top: 70px;
  }
}
@media screen and (max-width: 600px) {
  .form__wrap {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 40px;
  }
  .form__wrap .label {
    min-width: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 0;
  }
  .register-wrap .form__wrap .label {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: unset;
    padding-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .form__text {
    padding: 20px;
    font-size: 14px;
  }
  .form__textarea {
    border-radius: 5px;
    padding: 20px;
    font-size: 14px;
  }
  .wpcf7-submit {
    padding: 20px 100px;
    margin-top: 30px;
  }
}
.orderpage {
  margin-top: 60px;
  margin-left: 100px;
}

.wpcf7-radio label {
  display: flex;
}

.radio-366 input {
  display: none;
}

.radio-366 input + span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}

.radio-366 input + span::after,
.radio-366 input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

.radio-366 input + span::before {
  border: 1px solid #aaaaaa;
  background-color: #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.radio-366 input + span::after {
  border: none;
  background-color: #E95513;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.radio-366 input:checked + span::after {
  display: block;
}

.wpcf7-form-control.wpcf7-radio.radio-366 {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.order-attentiontext {
  font-size: 12px;
  margin-top: 20px;
  text-align: center;
}

.product-title__big {
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  text-align: center;
}

.customer-title__big {
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  text-align: center;
}

.product-title {
  font-size: 20px;
  font-weight: bold;
}

.plus-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  background-color: #E5E5E5;
}

.add-product-note {
  margin-top: 20px;
  font-size: 12px;
  display: block;
}

.register-wrap .order-form-container .form__wrap label {
  width: 205px;
  min-width: 205px;
}

@media screen and (max-width: 1080px) {
  .orderpage {
    margin-left: 80px;
  }
}
@media screen and (max-width: 768px) {
  .orderpage {
    margin-left: 30px;
  }
  #orderForm {
    width: 87%;
  }
}
@media screen and (max-width: 600px) {
  .register-wrap .order-form-container .form__wrap label {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: unset;
  }
  #orderForm {
    width: 84%;
  }
}
@media screen and (max-width: 500px) {
  #orderForm {
    width: 82%;
  }
}
@media screen and (max-width: 450px) {
  #orderForm {
    width: 80%;
  }
  .wpcf7-list-item-label {
    font-size: 16px;
    font-weight: 500;
  }
  .order-attentiontext {
    font-size: 10px;
    margin-top: 20px;
    text-align: center;
  }
  #catalogFrame {
    width: 70%;
  }
}
@media screen and (max-width: 400px) {
  .wpcf7-submit {
    padding: 20px 80px;
  }
  .wpcf7-form-control.wpcf7-radio {
    row-gap: 10px;
  }
}
@media screen and (max-width: 370px) {
  #orderForm {
    width: 78%;
  }
}
.footer {
  margin-top: 100px;
  background-color: #3CA0B0;
  padding-top: 60px;
  padding-bottom: 20px;
}

.footer-wrap {
  width: 100%;
  max-width: 1350px;
  padding-right: 75px;
  padding-left: 75px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  width: 200px;
}

.footer-company {
  font-size: 16px;
  font-weight: bold;
  margin-top: 40px;
  color: #fff;
}

.footer-text {
  margin-top: 5px;
  font-size: 14px;
  color: #fff;
}

.footer-companyname {
  margin-top: 10px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer-navlink {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-ordertext {
  font-size: 12px;
  color: #fff;
}

.footer-small {
  font-size: 12px;
  color: #fff;
  display: block;
  margin-top: 40px;
  text-align: center;
}

.footer-oderlink {
  width: 280px;
  height: 100px;
}

.footer-logos1 {
  margin-top: 30px;
  margin-left: auto;
}

.footer-logos2 {
  margin-top: 10px;
  margin-left: auto;
}

@media screen and (max-width: 900px) {
  .footer-wrap {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 70px;
  }
}
@media screen and (max-width: 600px) {
  .footer-navlink {
    font-size: 16px;
  }
  .footer-oderlink {
    width: 220px;
    height: 80px;
  }
  .footer-logo {
    width: 170px;
  }
  .footer-nav {
    gap: 20px;
  }
}
@media screen and (max-width: 550px) {
  .footer-navlink {
    font-size: 13px;
  }
}
@media screen and (max-width: 500px) {
  .footer-wrap {
    flex-direction: column;
  }
  .footer-logo {
    width: 240px;
    margin-inline: auto;
  }
  .footer-company {
    font-size: 14px;
    margin-top: 30px;
    width: 240px;
    margin-inline: auto;
  }
  .footer-nav {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin-top: 30px;
    padding: 20px;
    justify-content: space-between;
    gap: 0;
  }
  .footer-oderlink {
    width: 100%;
    height: auto;
  }
  .footer-navlink {
    font-size: 16px;
  }
  .footer-text {
    width: 240px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 450px) {
  .footer {
    margin-top: 50px;
  }
}
.subpage {
  margin-top: 230px;
  max-width: 1260px;
  margin-left: 120px;
}

.subpage-company {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 180px;
  max-width: 100%;
}

.character-img {
  width: 250px;
  height: auto;
}

.subpage-circle1 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E95513;
}

.subpage-circle2 {
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-radius: 50%;
  background-color: #389A6E;
}

.subpage__title {
  font-size: 80px;
  font-weight: bold;
}

.subpage__title-mini {
  font-size: 18px;
  font-weight: bold;
}

.about-text {
  margin-top: 100px;
  font-size: 18px;
  line-height: 1.4;
  max-width: 1350px;
  padding-right: 120px;
  padding-left: 120px;
  margin-inline: auto;
}

.about-sdgs {
  width: 80%;
  max-width: 980px;
  margin-inline: auto;
  margin-top: 50px;
  padding: 65px 80px;
  background-color: #63A55D;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  gap: 40px;
}

.sdgs-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 500px;
}

.sdgs-title {
  font-size: 23px;
  font-weight: bold;
}

.sdgs-text {
  font-size: 18px;
  margin-top: 40px;
}

.sdgs-img {
  width: 187px;
  min-width: 160px;
}

@media screen and (max-width: 1080px) {
  .subpage {
    margin-top: 180px;
    margin-left: 80px;
  }
  .about-text {
    margin-top: 100px;
    padding-right: 80px;
    padding-left: 80px;
  }
  .subpage-company {
    padding-right: 90px;
  }
}
@media screen and (max-width: 900px) {
  .about-text {
    margin-top: 70px;
    padding-right: 75px;
    padding-left: 75px;
  }
}
@media screen and (max-width: 768px) {
  .subpage {
    margin-left: 30px;
  }
  .about-text {
    padding-right: 30px;
    padding-left: 30px;
  }
  .about-sdgs {
    width: 90%;
    padding: 40px 60px;
    background-color: #63A55D;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
  }
  .sdgs-title {
    font-size: 22px;
  }
  .sdgs-text {
    margin-top: 30px;
  }
  .subpage-company {
    padding-right: 30px;
  }
  .character-img {
    width: 195px;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .subpage__title {
    font-size: 65px;
  }
  .subpage {
    margin-top: 120px;
  }
  .about-sdgs {
    flex-direction: column;
    gap: 20px;
  }
  .sdgs-right {
    margin-left: auto;
  }
  .about-sdgs {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 550px) {
  .subpage-company {
    flex-direction: column;
  }
  .character-img {
    width: 160px;
    height: auto;
    margin-left: auto;
  }
  .about-text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .about-text {
    font-size: 16px;
  }
  .sdgs-title {
    font-size: 20px;
  }
  .sdgs-text {
    font-size: 14px;
    margin-top: 20px;
  }
  .about-sdgs {
    padding: 40px 20px;
    margin-top: 50px;
  }
  .sdgs-img {
    width: 150px;
  }
  .subpage__title {
    font-size: 50px;
  }
}
.history {
  margin-top: 100px;
}

.history .section-titlewrap {
  margin-left: 120px;
}

.history-circle {
  background-color: #F59604;
}

.timeline {
  position: relative;
  max-width: 905px;
  margin: 40px auto 0;
  padding-right: 30px;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #000;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  background-color: #389A6E;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}

.history-contentwrap {
  display: flex;
}

.history-date {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-top: -8px;
  margin-left: 30px;
  flex-shrink: 0;
  width: 105px;
}

.history-content {
  font-size: 16px;
  color: #000;
  line-height: 1.4;
  margin-left: 60px;
  margin-top: -8px;
}

@media screen and (max-width: 1080px) {
  .history .section-titlewrap {
    margin-left: 80px;
  }
  .timeline {
    position: relative;
    max-width: 985px;
    margin: 40px auto 0;
    padding-right: 75px;
    padding-left: 75px;
  }
  .timeline::before {
    left: 79px;
  }
}
@media screen and (max-width: 768px) {
  .history .section-titlewrap {
    margin-left: 30px;
  }
  .timeline {
    position: relative;
    max-width: 895px;
    margin: 40px auto 0;
    padding-right: 30px;
    padding-left: 30px;
  }
  .timeline::before {
    left: 34px;
  }
}
@media screen and (max-width: 650px) {
  .history-date {
    margin-left: 20px;
  }
  .history-content {
    margin-left: 30px;
  }
}
@media screen and (max-width: 550px) {
  .history-contentwrap {
    flex-direction: column;
    gap: 5px;
  }
  .history-content {
    margin-left: 20px;
    margin-top: 0;
  }
}
@media screen and (max-width: 400px) {
  .history-date {
    font-size: 16px;
    margin-top: -7px;
  }
}
.news__wrap {
  margin-top: 100px;
  max-width: 1350px;
  padding-left: 75px;
  padding-right: 75px;
  margin-inline: auto;
}

.news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 40px;
}

.news__img {
  aspect-ratio: 16/9;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.news__title {
  font-size: 16px;
  font-weight: bold;
}

.news__text-wrapper {
  margin-top: 20px;
  color: #000;
}

.news__text {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.4;
}

.news__date {
  font-size: 12px;
  margin-top: 10px;
}

.news-wrap {
  margin-top: 100px;
  max-width: 1050px;
  padding-right: 75px;
  padding-left: 75px;
  margin-inline: auto;
}

.detail__title {
  font-size: 28px;
  margin-top: 10px;
  font-weight: bold;
}

.detail__thumbnail {
  margin-top: 40px;
  border-radius: 10px;
  height: auto;
}

.detail__content {
  font-size: 16px;
  margin-top: 30px;
}

.detail__date {
  font-size: 14px;
}

.news__itemsback {
  font-size: 20px;
  padding: 35px 140px;
  background-color: #63A55D;
  border-radius: 10px;
  margin-top: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: block;
  color: #fff;
}

.pagination {
  margin-top: 40px;
}

.nav-links {
  justify-content: center;
}

.page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #000;
  background-color: #D9D9D9;
  font-size: 14px;
}

.page-numbers.current {
  color: #fff;
  background-color: #63A55D;
}

.page-numbers.next {
  background-color: transparent;
  border: 1px solid #63A55D;
  color: #63A55D;
  font-weight: bold;
}

.page-numbers.prev {
  background-color: transparent;
  border: 1px solid #63A55D;
  color: #63A55D;
  font-weight: bold;
}

@media screen and (max-width: 900px) {
  .news__text {
    font-size: 14px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .news__wrap {
    margin-top: 70px;
    max-width: 1260px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .news__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
  }
  .news-wrap {
    margin-top: 70px;
    max-width: 960px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .news__itemsback {
    font-size: 16px;
    padding: 20px 60px;
  }
}
@media screen and (max-width: 450px) {
  .news__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .detail__thumbnail {
    margin-top: 10px;
  }
}
.service-title {
  background-image: url(../images/service-titlebg.png);
  background-size: cover;
  width: 600px;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-title {
  background-image: url(../images/catalog-titlebg.png);
  background-size: cover;
  width: 440px;
  height: 158px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
}

.sns-title {
  background-image: url(../images/sns-titlebg.png);
  background-size: cover;
  width: 480px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
}

.news-title {
  background-image: url(../images/news-titlebg.png);
  background-size: cover;
  width: 190px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-title {
  background-image: url(../images/order-titlebg.png);
  background-size: cover;
  width: 284px;
  height: 185px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}

.section-title__big {
  font-size: 50px;
}

.ordersection-title {
  font-size: 60px;
}

.section-title__jp {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.order-title__jp {
  line-height: 1.3;
}

.service-titletext {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  padding-top: 15px;
}

.content-inner {
  max-width: 1260px;
  padding-left: 30px;
  padding-right: 30px;
  margin-inline: auto;
}

.history .section-title__big, .history .section-title__jp {
  color: #000;
}

.company__tablewrap {
  max-width: 980px;
  max-width: 1130px;
  margin: 0 auto;
  padding-right: 75px;
  padding-left: 75px;
}

.company__table {
  margin-top: 80px;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #000;
}

.company__table th {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-align: left;
  vertical-align: top;
  padding: 30px 20px;
  border-bottom: 1px solid #000;
  width: 165px;
  min-width: 165px;
}

.company__table td {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 30px 0 30px 20px;
  border-bottom: 1px solid #000;
  line-height: 1.4;
}

.company__table tr:last-child th,
.company__table tr:last-child td {
  border-bottom: none;
}

.map-container {
  margin: 20px 0;
}

.map-container iframe {
  width: 500px;
  height: 280px;
}

.map-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.floor-plan {
  max-width: 300px;
  height: auto;
}

.parking-map {
  width: 400px;
}

.link {
  color: #0066cc;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1080px) {
  .service-title {
    width: 400px;
    height: 128px;
  }
  .service-titletext {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .map-container iframe {
    width: 400px;
    height: 250px;
  }
}
@media screen and (max-width: 768px) {
  .section-title__big {
    font-size: 40px;
  }
  .catalog-title {
    width: 400px;
    height: 145px;
  }
  .company__tablewrap {
    max-width: 980px;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 680px) {
  .map-container iframe {
    width: 300px;
    height: 220px;
  }
  .parking-map {
    width: 300px;
  }
}
@media screen and (max-width: 550px) {
  .company__table {
    margin-top: 50px;
    padding-top: 20px;
  }
  .company__table,
.company__table tbody,
.company__table tr,
.company__table th,
.company__table td {
    display: block;
  }
  .company__table tr {
    margin-bottom: 20px;
    padding: 0;
  }
  .company__table th {
    border-bottom: none;
    padding: 0 0 10px 10px;
    width: auto;
    font-size: 16px;
    margin: 0;
  }
  .company__table td {
    padding: 0 10px 20px 10px;
    font-size: 16px;
    margin: 0;
  }
  .company__table tr:last-child th,
.company__table tr:last-child td {
    border-bottom: none;
  }
  .map-container iframe {
    width: 350px;
    height: 280px;
  }
  .parking-map {
    width: 350px;
  }
}
@media screen and (max-width: 500px) {
  .service-titletext {
    font-size: 17px;
    padding-top: 0;
  }
}
@media screen and (max-width: 450px) {
  .map-container iframe {
    width: 100%;
    height: 280px;
  }
  .parking-map {
    width: 280px;
  }
}
@media screen and (max-width: 500px) {
  .section-title__big {
    font-size: 30px;
  }
  .section-title {
    font-size: 30px;
  }
  .catalog-title {
    width: 300px;
    height: 108px;
  }
  .ordersection-title {
    font-size: 50px;
  }
  .service-title {
    width: 315px;
    height: 100px;
  }
  .news-title {
    width: 163px;
    height: 112px;
  }
  .order-title {
    width: 260px;
    height: 173px;
  }
  .sns-title {
    width: 300px;
    height: 113px;
  }
}
@media screen and (max-width: 370px) {
  .service-title {
    width: 300px;
    height: 96px;
  }
  .service-titletext {
    font-size: 16px;
    padding-top: 0;
  }
}
@media screen and (max-width: 1400px) {
  .content-inner {
    max-width: 1350px;
    padding-left: 75px;
    padding-right: 75px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 900px) {
  .content-inner {
    max-width: 1260px;
    padding-left: 30px;
    padding-right: 30px;
    margin-inline: auto;
  }
}
.first-br {
  display: none;
}

@media screen and (max-width: 1200px) {
  .first-br {
    display: block;
  }
}
.second-br {
  display: none;
}

@media screen and (max-width: 1080px) {
  .second-br {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .service-brnone {
    display: none;
  }
}
.md-bron {
  display: none;
}

@media screen and (max-width: 600px) {
  .md-bron {
    display: block;
  }
}
.sp-bron {
  display: none;
}

@media screen and (max-width: 450px) {
  .sp-brnone {
    display: none;
  }
  .sp-bron {
    display: block;
  }
}
.sp2-bron {
  display: none;
}

@media screen and (max-width: 370px) {
  .sp2-bron {
    display: block;
  }
}
.nocatalog {
  display: block;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  margin-bottom: 80px;
}

.single-3d-flip-book header {
  display: none;
}

.single-3d-flip-book footer {
  display: none;
}

.single-3d-flip-book .fixed-buttons-wrapper {
  display: none;
}

.single-3d-flip-book .contact-buttonwrap {
  display: none;
}

.single-3d-flip-book .menu-toggle {
  display: none;
}

.single-3d-flip-book .fixed-footerbuttons-wrapper {
  display: none;
}

.fixed-footerbuttons-wrapper {
  display: none;
}

@media screen and (max-width: 550px) {
  .fixed-footerbuttons-wrapper {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
  }
  .footer {
    padding-bottom: 80px;
  }
  .fixed-footerbuttons-vertical {
    display: flex;
    z-index: 1000;
    font-family: "Noto Sans", sans-serif;
    height: 60px;
  }
  .fixed-footerbuttons-vertical .btn {
    width: 25%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
  }
  .footerbuttonstext-bottom {
    font-size: 10px;
    margin-top: 2px;
  }
  .fixed-footerbuttons-vertical .btn.btn-contact img {
    width: 15px;
    height: 15px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 350px) {
  .fixed-footerbuttons-vertical .btn {
    width: 23.3333333333%;
  }
  .fixed-footerbuttons-vertical .btn.btn-catalog {
    width: 30%;
  }
}
.error__button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  color: #000;
  margin-top: 30px;
  border: 1px solid #D60034;
  border-radius: 100px;
  padding: 10px 20px;
}

.subpage404 {
  padding-right: 30px;
}

@media screen and (max-width: 500px) {
  .title-404 {
    font-size: 36px;
  }
  .title-404mini {
    font-size: 14px;
  }
}