@charset "UTF-8";
.mainContents .l-inner {
  max-width: 1340px;
  padding: 0 20px;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .mainContents .l-inner {
    max-width: 100%;
    padding: 0 15px;
  }
}

.mainContents .section__title {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .mainContents .section__title {
    margin-bottom: 30px;
  }
}

.mainContents .section__title-en {
  font-size: 16px;
  color: #3d737c;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .mainContents .section__title-en {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.mainContents .section__title-ja {
  font-size: 36px;
  color: #333;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .mainContents .section__title-ja {
    font-size: 24px;
  }
}

.mainContents .top {
  padding: 60px 0 100px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .mainContents .top {
    padding: 40px 0 60px;
  }
}

.mainContents .top .splide {
  max-width: 100%;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .mainContents .top .splide {
    margin-bottom: 20px;
    width: 100%;
  }
}

.mainContents .top .splide__track {
  overflow: hidden;
}

.mainContents .top .splide__slide {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mainContents .top .splide__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}

.mainContents .top .splide__header-text {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.mainContents .top .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .mainContents .top .splide__pagination {
    margin-bottom: 0;
    gap: 0;
  }
}

.mainContents .top .splide__pagination__page {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e6e6e6;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .mainContents .top .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
}

.mainContents .top .splide__pagination__page.is-active {
  background-color: #518991;
  -webkit-transform: none;
          transform: none;
}

.mainContents .top__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mainContents .top__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 420px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .mainContents .top__logo {
    max-width: 70%;
    margin: 0 auto 20px;
  }
}

.mainContents .top__subtitle {
  font-size: 20px;
  color: #333;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .mainContents .top__subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.mainContents .top__body {
  font-size: 16px;
  color: #333;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  line-height: 2;
  text-align: left;
  margin: 0 auto;
}

.mainContents .features {
  padding: 100px 0;
  background-color: #e9f4f1;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .mainContents .features {
    padding: 40px 0;
  }
}

.mainContents .features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/grande/features_bg.webp);
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.mainContents .features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .mainContents .features__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.mainContents .features__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  padding: 50px 30px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 30px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .mainContents .features__item {
    padding: 30px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.mainContents .features__item:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.mainContents .features__item-title {
  font-size: 22px;
  color: #3d737c;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .mainContents .features__item-title {
    font-size: 18px;
  }
}

.mainContents .features__item-title i {
  font-size: 36px;
  color: #3d737c;
  position: relative;
  display: block;
  z-index: 2;
  background-color: #e9f4f1;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
  margin: 15px auto 0;
}

@media screen and (max-width: 768px) {
  .mainContents .features__item-title i {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    margin: 10px auto 0;
  }
}

.mainContents .features__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mainContents .features__item-icon img {
  width: auto;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.mainContents .quality {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .mainContents .quality {
    padding: 40px 0;
  }
}

.mainContents .quality__text {
  font-size: 16px;
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 2;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.mainContents .quality-point {
  position: relative;
  margin-top: 60px;
  padding: 160px 60px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .mainContents .quality-point {
    padding: 40px 0;
  }
}

.mainContents .quality-point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/grande/quality_points_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.mainContents .quality-point::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.6;
  z-index: 1;
}

.mainContents .quality-point__title {
  font-size: 28px;
  color: #fff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .mainContents .quality-point__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.mainContents .quality-point__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .mainContents .quality-point__list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.mainContents .quality-point__item {
  background-color: #e9f4f1;
  border-radius: 6px;
  padding: 25px;
  text-align: center;
  font-size: 18px;
  color: #518991;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .mainContents .quality-point__item {
    font-size: 14px;
    padding: 20px 5px;
  }
}

.mainContents .quality__table {
  margin-top: 80px;
  background-color: #fff;
}

.mainContents .comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin: 0 auto;
  text-align: center;
  max-width: 1200px;
}

@media screen and (max-width: 768px) {
  .mainContents .comparison-table--pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .mainContents .comparison-table--sp {
    display: none;
  }
}

.mainContents .comparison-table__header {
  padding: 20px 15px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}

.mainContents .comparison-table__header--empty {
  background-color: transparent;
  color: transparent;
}

.mainContents .comparison-table__header--general {
  background-color: #4d4d4d;
}

.mainContents .comparison-table__header--grande {
  background-color: #518991;
}

.mainContents .comparison-table__item {
  padding: 25px 20px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
  width: 20%;
  vertical-align: middle;
}

.mainContents .comparison-table__general {
  padding: 25px 20px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  border: 1px solid #ddd;
  background-color: #fff;
  width: 30%;
  vertical-align: middle;
}

.mainContents .comparison-table__grande {
  padding: 25px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  border: 1px solid #ddd;
  background-color: #fff;
  width: 50%;
  line-height: 1.6;
  text-align: left;
}

.mainContents .comparison-table__grade {
  color: #aa7c00;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .mainContents .comparison-table__grade {
    font-size: 18px;
  }
}

.mainContents .comparison-table--sp {
  max-width: 100%;
  margin-bottom: 15px;
}

.mainContents .comparison-table--sp .comparison-table__header {
  padding: 15px 20px;
  font-size: 16px;
}

.mainContents .comparison-table--sp tbody tr {
  background-color: #f8f8f8;
}

.mainContents .comparison-table--sp .comparison-table__item {
  padding: 15px;
  font-size: 14px;
  padding: 15px 10px;
}

.mainContents .comparison-table--sp .comparison-table__general,
.mainContents .comparison-table--sp .comparison-table__grande {
  padding: 15px;
  font-size: 14px;
  width: 40%;
  padding: 15px 10px;
}

.mainContents .comparison-table--sp p:not(.comparison-table__grade) {
  font-size: 12px;
}

.mainContents .spec {
  padding: 100px 0;
  background-color: #e9f4f1;
}

@media screen and (max-width: 768px) {
  .mainContents .spec {
    padding: 40px 0;
  }
}

.mainContents .spec__list {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__list {
    margin-top: 20px;
  }
}

.mainContents .spec__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  margin: 0 auto 80px;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 0 auto 20px;
  }
}

.mainContents .spec__item .spec__item-content {
  width: 100%;
}

.mainContents .spec__item .spec__item-title {
  color: #333;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  margin-bottom: 20px;
  border-top: 1px solid #3d737c;
  border-bottom: 1px solid #3d737c;
  background-color: #fff;
  padding: 20px;
  text-align: left;
  line-height: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item .spec__item-title {
    margin-bottom: 15px;
    padding: 10px 15px;
  }
}

.mainContents .spec__item .spec__item-title p {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item .spec__item-title p {
    font-size: 18px;
    line-height: 1.4;
  }
}

.mainContents .spec__item .spec__item-title .spec__item-title-text {
  color: #3d737c;
  font-size: 36px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item .spec__item-title .spec__item-title-text {
    font-size: 24px;
  }
}

.mainContents .spec__item .spec__item-title .spec__item-number {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #3d737c;
  font-size: 20px;
  font-weight: 500;
  vertical-align: text-top;
  position: relative;
  padding-right: 40px;
}

.mainContents .spec__item .spec__item-title .spec__item-number:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: #3d737c;
}

.mainContents .spec__item--01 .spec__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mainContents .spec__item--01 .spec__item-text p {
  font-size: 16px;
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--01 .spec__item-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.mainContents .spec__item--01 .spec__item-text p:last-child {
  margin-bottom: 0;
}

.mainContents .spec__item--01 .spec__item-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mainContents .spec__item--01 .spec__item-image img {
  width: 100%;
  height: auto;
}

.mainContents .spec__item--02 .spec__item-content {
  width: 100%;
}

.mainContents .spec__item--02 .spec02__body {
  background-color: #fff;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02__body {
    padding: 15px;
  }
}

.mainContents .spec__item--02 .spec02-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dotted #e6e6e6;
  }
}

.mainContents .spec__item--02 .spec02-top__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-top__right {
    width: 100%;
    gap: 10px;
  }
}

.mainContents .spec__item--02 .spec02-top__right-text {
  margin-bottom: 10px;
}

.mainContents .spec__item--02 .spec02-top__right-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 10px;
  border: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-top__right-images {
    gap: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.mainContents .spec__item--02 .spec02-top__right-images__left {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-top__right-images__left {
    width: 100%;
    margin-bottom: 10px;
  }
}

.mainContents .spec__item--02 .spec02-top__right-images__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-top__right-palette {
    width: 100%;
  }
}

.mainContents .spec__item--02 .spec02-top__left {
  width: 47%;
}

.mainContents .spec__item--02 .spec02-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-flow {
    gap: 4px;
  }
}

.mainContents .spec__item--02 .spec02-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.mainContents .spec__item--02 .spec02-flow__item--middle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-flow__item--middle {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18%;
            flex: 0 0 18%;
  }
}

.mainContents .spec__item--02 .spec02-flow__bubble {
  font-size: 9px;
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  background-color: #fff;
  border: 2px solid #518991;
  padding: 5px;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-flow__bubble {
    font-size: 8px;
    padding: 3px 2px;
    margin-bottom: 10px;
  }
}

.mainContents .spec__item--02 .spec02-flow__bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12px;
  height: 12px;
  rotate: 45deg;
  border-bottom: 2px solid #518991;
  border-right: 2px solid #518991;
  background-color: #fff;
}

.mainContents .spec__item--02 .spec02-flow__bubble--fill {
  background-color: #518991;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-flow__bubble--fill {
    margin-bottom: 12px;
  }
}

.mainContents .spec__item--02 .spec02-flow__bubble--fill::after {
  background-color: #518991;
}

.mainContents .spec__item--02 .spec02-flow__text {
  font-size: 9px;
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-flow__text {
    font-size: 10px;
  }
}

.mainContents .spec__item--02 .spec02-flow img {
  width: 100%;
  height: auto;
}

.mainContents .spec__item--02 .spec02-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.mainContents .spec__item--02 .spec02-bottom__text p {
  font-size: 16px;
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.mainContents .spec__item--02 .spec02-bottom__table-wrapper {
  position: relative;
  background-color: #fff;
}

.mainContents .spec__item--02 .spec02-bottom__badge {
  position: absolute;
  top: -40px;
  right: 100px;
  z-index: 10;
  width: 90px;
  height: 90px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-bottom__badge {
    top: 330px;
    right: 15px;
    width: 70px;
    height: 70px;
  }
}

.mainContents .spec__item--02 .spec02-bottom__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-bottom__table--pc {
    display: none;
  }
}

.mainContents .spec__item--02 .spec02-bottom__table--sp {
  max-width: 100%;
  margin-bottom: 15px;
}

@media screen and (min-width: 769px) {
  .mainContents .spec__item--02 .spec02-bottom__table--sp {
    display: none;
  }
}

.mainContents .spec__item--02 .spec02-bottom__table--sp .spec02-bottom__table-header {
  padding: 15px 20px;
  font-size: 16px;
}

.mainContents .spec__item--02 .spec02-bottom__table--sp .spec02-bottom__table-item {
  padding: 15px 10px;
  font-size: 14px;
  width: 25%;
}

.mainContents .spec__item--02 .spec02-bottom__table--sp .spec02-bottom__table-content {
  padding: 15px 10px;
  font-size: 14px;
  width: 60%;
}

.mainContents .spec__item--02 .spec02-bottom__table--sp:last-child {
  margin-top: 30px;
}

.mainContents .spec__item--02 .spec02-bottom__table-header {
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-align: center;
  border: 1px solid #ddd;
  background-color: #fff;
}

.mainContents .spec__item--02 .spec02-bottom__table-header--empty {
  background-color: transparent;
  border: none;
}

.mainContents .spec__item--02 .spec02-bottom__table-header--16mm {
  width: 44%;
}

.mainContents .spec__item--02 .spec02-bottom__table-item {
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  border: 1px solid #ddd;
  background-color: #e9f4f1;
  width: 16%;
  vertical-align: middle;
  text-align: center;
}

.mainContents .spec__item--02 .spec02-bottom__table-content {
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  border: 1px solid #ddd;
  line-height: 1.6;
  vertical-align: middle;
}

.mainContents .spec__item--02 .spec02-desc__left, .mainContents .spec__item--02 .spec02-desc__right {
  font-size: 16px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333;
  margin: 0;
  text-align: left;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--02 .spec02-desc__left, .mainContents .spec__item--02 .spec02-desc__right {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.mainContents .spec__item--03 {
  margin-bottom: 0;
}

.mainContents .spec__item--03 .spec03__body {
  width: 100%;
  padding: 30px 30px 40px 30px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--03 .spec03__body {
    padding: 20px 15px;
  }
}

.mainContents .spec__item--03 .spec03-desc {
  font-size: 16px;
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--03 .spec03-desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.mainContents .spec__item--03 .spec03__images {
  width: 100%;
}

.mainContents .spec__item--03 .spec03__images--top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--03 .spec03__images--top {
    gap: 2px;
  }
}

.mainContents .spec__item--03 .spec03__images--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--03 .spec03__images--bottom {
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.mainContents .spec__item--03 .spec03__images--bottom .spec03__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--03 .spec03__images--bottom .spec03__image {
    width: 100%;
  }
}

.mainContents .spec__item--03 .spec03__images--bottom .spec03__image:nth-child(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5%;
          flex: 0 0 5%;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--03 .spec03__images--bottom .spec03__image:nth-child(2) {
    margin-bottom: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.mainContents .spec__item--03 .spec03-top {
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--03 .spec03-top {
    padding-bottom: 20px;
  }
}

.mainContents .spec__item--03 .spec03-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 30px 0;
  border-top: 2px dotted #e6e6e6;
  border-bottom: 2px dotted #e6e6e6;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--03 .spec03-center {
    padding: 20px 0;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.mainContents .spec__item--03 .spec03-center__title {
  font-size: 20px;
  color: #333;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--03 .spec03-center__title {
    font-size: 16px;
  }
}

.mainContents .spec__item--03 .spec03-center__left, .mainContents .spec__item--03 .spec03-center__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mainContents .spec__item--03 .spec03-bottom {
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  .mainContents .spec__item--03 .spec03-bottom {
    padding-top: 20px;
  }
}

.mainContents .facility {
  padding: 80px 0;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .mainContents .facility {
    padding: 40px 0 0;
  }
}

.mainContents .facility__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.mainContents .facility__nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  padding: 20px 10px 20px 20px;
  background-color: #518991;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 140px;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__nav-btn {
    width: 100%;
  }
}

.mainContents .facility__nav-btn span {
  color: #fff;
  line-height: 1;
}

.mainContents .facility__nav-btn:hover {
  background-color: #3f6a70;
}

.mainContents .facility__nav-btn.active {
  background-color: #518991;
}

.mainContents .facility__nav-btn i {
  font-size: 12px;
  color: #518991;
  background-color: #fff;
  padding: 5px;
  border-radius: 50%;
}

.mainContents .facility__content {
  position: relative;
  padding: 60px 0 60px 20px;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__content {
    padding: 40px 0;
  }
}

.mainContents .facility__content:nth-of-type(odd) {
  background-color: #f8f8f8;
}

@media screen and (max-width: 1340px) {
  .mainContents .facility {
    margin-left: 0;
  }
}

.mainContents .facility__category {
  margin-left: calc((100vw - 1340px) / 2);
}

@media screen and (max-width: 768px) {
  .mainContents .facility__category {
    margin-left: 0;
  }
}

.mainContents .facility__category-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__category-header {
    margin-bottom: 20px;
    padding: 0 15px;
  }
}

.mainContents .facility__category-title {
  font-size: 24px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.mainContents .facility__category-line {
  width: 100px;
  height: 1px;
  background-color: #518991;
  margin-left: 20px;
}

.mainContents .facility__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.mainContents .facility__main-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}

.mainContents .facility__main-image img {
  width: 100%;
  height: auto;
}

.mainContents .facility__slider {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  width: 400px;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__slider {
    width: 100%;
    padding-left: 15px;
  }
}

.mainContents .facility__slider .splide {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__slider .splide {
    padding-bottom: 0;
  }
}

.mainContents .facility__slider .splide__list {
  gap: 25px;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__slider .splide__list {
    gap: 15px;
  }
}

.mainContents .facility__slider .facility-splide .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
}

.mainContents .facility__slider .facility-splide .splide__pagination .splide__pagination__page {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.mainContents .facility__slider .facility-splide .splide__pagination .splide__pagination__page.is-active {
  background-color: #518991;
}

.mainContents .facility__slider .facility-splide .splide__arrow {
  position: absolute;
  top: 140px;
  width: 40px;
  height: 40px;
  background-color: #e9f4f1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.8;
}

.mainContents .facility__slider .facility-splide .splide__arrow:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mainContents .facility__slider .facility-splide .splide__arrow svg {
  width: 16px;
  height: 16px;
  fill: #333;
}

.mainContents .facility__slider .facility-splide .splide__arrow--prev {
  left: -20px;
}

.mainContents .facility__slider .facility-splide .splide__arrow--next {
  right: 20px;
}

.mainContents .facility__slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 400px;
  width: 400px;
  height: auto;
  aspect-ratio: 25 / 17;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__slider-item {
    gap: 15px;
    width: 70vw;
  }
}

.mainContents .facility__slider-image {
  width: 100%;
  height: 100%;
}

.mainContents .facility__slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mainContents .facility__slider-content {
  padding: 0;
}

.mainContents .facility__slider-title {
  font-size: 20px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px 0;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__slider-title {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.mainContents .facility__slider-desc {
  font-size: 16px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .mainContents .facility__slider-desc {
    font-size: 14px;
  }
}

.mainContents .color_selection {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .mainContents .color_selection {
    padding: 40px 0;
  }
}

.mainContents .color_selection__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.mainContents .color_selection__title-text {
  font-size: 26px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.mainContents .color_selection__title-line {
  width: 100px;
  height: 1px;
  background-color: #518991;
  margin-left: 20px;
}

.mainContents .color_selection__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .mainContents .color_selection__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    overflow-x: hidden;
    width: 100%;
  }
}

.mainContents .color_selection__slide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  position: relative;
}

.mainContents .color_selection__slide-image {
  width: 100%;
  position: relative;
}

.mainContents .color_selection__slide-image img {
  width: 100%;
  height: auto;
}

.mainContents .color_selection__slide-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

@media screen and (max-width: 768px) {
  .mainContents .color_selection__slide-text {
    bottom: 5px;
    left: 10px;
  }
}

.mainContents .color_selection__slide-text p {
  font-size: 14px;
  color: #fff;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.4;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .mainContents .color_selection__slide-text p {
    font-size: 12px;
  }
}

.mainContents .color_selection__slide-text p:first-child {
  margin-bottom: 5px;
}

.mainContents .color_selection__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 6px;
  right: -158px;
}

.mainContents .color_selection__pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.mainContents .color_selection__pagination-dot.is-active {
  background-color: #518991;
}

.mainContents .color_selection__grid {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .mainContents .color_selection__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    margin-top: 10px;
  }
}

.mainContents .color_selection__grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 768px) {
  .mainContents .color_selection__grid-item {
    width: calc((100vw - 35px) / 3);
    min-width: calc((100vw - 35px) / 3);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.mainContents .color_selection__grid-image {
  width: 100%;
  margin-bottom: 10px;
}

.mainContents .color_selection__grid-image img {
  width: 100%;
  height: auto;
}

.mainContents .color_selection__grid-text p {
  font-size: 14px;
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.4;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .mainContents .color_selection__grid-text p {
    font-size: 10px;
  }
}

.mainContents .color_selection__grid-text p:first-child {
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .mainContents .color_selection__grid--pc {
    display: none;
  }
}

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

.mainContents .color_selection .color-selection-slide .splide__track {
  overflow: hidden;
}

.mainContents .color_selection .color-selection-slide .splide__slide {
  position: relative;
  width: 100%;
}

.mainContents .color_selection .color-selection-slide .splide__slide img {
  width: 100%;
  height: auto;
}

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

@media screen and (max-width: 768px) {
  .mainContents .pc-only {
    display: none !important;
  }
  .mainContents .sp-only {
    display: block !important;
  }
}

.fixed_button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.fixed_button__handle {
  width: 30px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background-color: #518991;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.fixed_button__handle i {
  color: #fff;
  font-size: 14px;
}

.fixed_button--hidden .fixed_button__handle {
  -webkit-transform: translateX(250px);
          transform: translateX(250px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  .fixed_button--hidden .fixed_button__handle {
    -webkit-transform: translateX(190px);
            transform: translateX(190px);
  }
}

.fixed_button__panel {
  width: 240px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 5px 25px 20px;
  border-radius: 0 8px 8px 0;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.5s ease, visibility 0.5s ease;
  transition: transform 0.3s ease, opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  .fixed_button__panel {
    width: 180px;
    padding: 5px 15px 20px;
  }
}

.fixed_button--hidden .fixed_button__panel {
  -webkit-transform: translateX(250px);
          transform: translateX(250px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

@media screen and (max-width: 768px) {
  .fixed_button--hidden .fixed_button__panel {
    -webkit-transform: translateX(190px);
            transform: translateX(190px);
  }
}

.fixed_button__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px 5px 0;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
  border-bottom: 2px solid #dbdbdb;
}

@media screen and (max-width: 768px) {
  .fixed_button__item {
    padding: 15px 0px 5px 0;
  }
}

.fixed_button__item i {
  color: #333;
  font-size: 12px;
  margin-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fixed_button__item span {
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .fixed_button__item span {
    font-size: 14px;
  }
}

.fixed_button__item:hover {
  opacity: 0.8;
}

.fixed_button__item.is-active span,
.fixed_button__item.is-active i {
  color: #518991;
}
/*# sourceMappingURL=grande.css.map */