@charset "UTF-8";
:root {
  --light-blue-color: #498ca5;
  --dark-blue-color: #1e304a;
  --orange-color: #e99636;
}

/* フワッと表示 */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

/* ハンバーガーメニュー */
.lineup-menu-filter {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  cursor: pointer;
  height: 100%;
  inset: 0;
  position: fixed;
  width: 100%;
  opacity: 0;
  transition: 0.6s cubic-bezier(0.78, 0.18, 0.34, 0.98);
  visibility: hidden;
  z-index: 997;
}
.lineup-menu-button {
  display: grid;
  place-content: center;
  height: 100%;
  width: 100%;
}
.lineup-menu-fixed {
  aspect-ratio: 1/1;
  background-color: var(--light-blue-color);
  color: #ffffff;
  cursor: pointer;
  display: block;
  height: 70px;
  top: 100px;
  right: 20px;
  position: fixed;
  transition: 0.5s;
  width: 70px;
  z-index: 999;
  /* メニューが閉じる時のアニメーション */
  /* メニューが開く時のアニメーション */
}
.lineup-menu-fixed.close .top {
  animation: menu_top 0.5s;
  animation-fill-mode: forwards;
}
.lineup-menu-fixed.close .middle {
  transition: 0.5s opacity;
  opacity: 1;
}
.lineup-menu-fixed.close .bottom {
  animation: menu_bottom 0.5s;
  animation-fill-mode: forwards;
}
.lineup-menu-fixed.open .top {
  animation: menu_top_close 0.5s;
  animation-fill-mode: forwards;
  background-color: #000000;
  width: 60%;
}
.lineup-menu-fixed.open .middle {
  background-color: #000000;
  opacity: 0;
  transition: 0.5s opacity;
  width: 0%;
}
.lineup-menu-fixed.open .bottom {
  animation: menu_bottom_close 0.5s;
  animation-fill-mode: forwards;
  background-color: #000000;
  width: 60%;
}
.lineup-menu-line {
  background-color: #ffffff;
  height: 2px;
  gap: 10px;
  margin: 4px auto;
  position: relative;
  transition: 0.5;
  width: 80%;
}
.lineup-menu-line.top {
  animation-fill-mode: forwards;
}
.lineup-menu-line.middle {
  opacity: 1;
}
.lineup-menu-line.bottom {
  animation-fill-mode: forwards;
}
.lineup-menu-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.lineup-menu-cont {
  background: #ffffff;
  height: 100vh;
  translate: 0 0;
  bottom: 0;
  left: 100%;
  transition: 0.6s cubic-bezier(0.78, 0.18, 0.34, 0.98);
  padding: 70px 50px;
  position: fixed;
  max-width: 770px;
  width: 100%;
  z-index: 998;
}
.lineup-menu-cont .list {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 50px;
}
.lineup-menu-cont .list-item {
  width: 100%;
}
.lineup-menu-cont .new {
  color: #e6c700;
}
.lineup-menu-cont a {
  color: #1e304a;
}
.lineup-menu-cont li {
  line-height: 1.75;
  /* サブメニュー */
}
.lineup-menu-cont li:not([class]) {
  font-size: 16px;
  font-weight: 700;
}
.lineup-menu-cont li:not([class]):not(:first-child) {
  margin-top: 25px;
}
.lineup-menu-cont li.parent {
  font-size: 0;
  margin-bottom: 10px;
  padding-left: 13px;
  text-indent: -13px;
}
.lineup-menu-cont li.parent:not(:last-child) {
  margin-bottom: 10px;
}
.lineup-menu-cont li.parent::before {
  background-color: #1e304a;
  content: "";
  display: inline-block;
  height: 1px;
  margin-bottom: 10px;
  margin-right: 5px;
  vertical-align: middle;
  width: 8px;
}
.lineup-menu-cont li.parent a {
  font-size: 14px;
  font-weight: 700;
}
.lineup-menu-cont li.child {
  padding-left: 13px;
}
.lineup-menu-cont li.child:not(:last-child) {
  margin-bottom: 10px;
}
.lineup-menu-cont li.child a {
  font-size: 14px;
  font-weight: 400;
}
.lineup-menu-cont li ul {
  padding-top: 20px;
}
.lineup-menu-cont li ul ul {
  padding-top: 10px;
}
.lineup-menu-cont li .list-sub {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.lineup-menu-cont li .list-sub-icon {
  display: none;
}
.lineup-menu-cont li .list-sub-parent-text {
  display: block;
}

.no-scroll {
  transition: 0.3s;
  overflow: hidden;
}
.no-scroll .lineup-menu-filter {
  opacity: 1;
  visibility: initial;
}
.no-scroll .lineup-menu-fixed {
  background: #ffffff;
}
.no-scroll .lineup-menu-cont.menu-open {
  translate: -100% 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@keyframes menu_top {
  0% {
    transform: translateY(10px) rotate(-45deg);
    transform-origin: center;
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes menu_bottom {
  0% {
    transform: translateY(-10px) rotate(45deg);
    transform-origin: center;
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes menu_top_close {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(10px) rotate(-45deg);
    transform-origin: center;
  }
}
@keyframes menu_bottom_close {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-10px) rotate(45deg);
    transform-origin: center;
  }
}
/* ガラスフィルム シミュレーション  サービスはこちら */
.lineup-link-fixed {
  opacity: 0;
  position: fixed;
  right: 20px;
  bottom: 100px;
  transition: 0.6s cubic-bezier(0.78, 0.18, 0.34, 0.98);
}
.lineup-link-fixed.active {
  opacity: 1;
}
.lineup-link-fixed a {
  align-items: center;
  background: #e99636;
  border-radius: 50%;
  color: #ffffff;
  display: grid;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 10px;
  place-content: center;
  text-align: center;
  transition: all 0.3s ease;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  height: 148px;
  width: 148px;
}
.lineup-link-fixed a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.lineup-link-fixed-arrow {
  vertical-align: middle;
  margin-left: 5px;
}

/* 共通 */
.contents {
  margin-top: 81px;
  position: relative;
  /* ボタン　 */
}
.contents img {
  height: auto;
}
.contents a {
  transition: all 0.3s ease;
}
.contents a:hover {
  opacity: 0.6;
}
@media (hover: none) {
  .contents a:active {
    opacity: 0.6;
  }
}
.contents .mauto {
  margin: auto;
}
.contents .hover {
  opacity: 0.6;
}
.contents .button-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.contents .button-link {
  align-content: center;
  background-color: #e99636;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding: 10px 30px;
  position: relative;
  text-align: center;
  max-width: 400px;
  min-height: 75px;
  width: 100%;
}
.contents .button-link img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.contents .button-link img.--return {
  left: 15px;
}
.contents .button-link.--gray {
  background-color: #d7d7d7;
  color: #000000;
  font-weight: 400;
}
.contents .button-link:hover {
  text-decoration: none;
}
.contents .button-link .note {
  display: inline-block;
  font-size: 14px;
}

/* 個別 */
.contents .main {
  background: url(../images/mv.jpg) no-repeat center/cover;
  display: grid;
  place-content: center;
  min-height: 242px;
  position: relative;
}
.contents .main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.contents .main-text-pagetitle {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
.contents .main-text-lead {
  color: #ffffff;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 20px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.contents .first {
  padding: 60px 0 0;
}
.contents .first-h2 {
  color: #1e304a;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 20px;
  text-align: center;
}
.contents .first-text {
  color: #1e304a;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  margin-bottom: 60px;
}
.contents .first-text .note {
  font-size: 12px;
}
.contents .first-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: auto;
}
.contents .first-nav-link {
  align-items: center;
  background-color: #498ca5;
  color: #ffffff;
  display: grid;
  gap: 0;
  grid-template-rows: 1fr auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  min-height: 80px;
  justify-items: center;
  padding: 10px;
  text-align: center;
}
.contents .first-nav-link:hover {
  text-decoration: none;
}
.contents .first-nav-link img {
  margin-top: 10px;
}
.contents .fog {
  margin-top: 80px;
  position: relative;
}
.contents .fog .h2 {
  background-color: #ddddde;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 20px;
  padding: 5px 15px;
}
.contents .fog .h3 {
  border-bottom: 1px solid #000000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 30px;
  padding-bottom: 5px;
}
.contents .fog .lead {
  font-size: 16px;
  font-weight: 400;
}
.contents .fog .logo_good-design {
  position: absolute;
  top: 80px;
  right: 0;
}
.contents .fog .iframe {
  position: relative;
}
.contents .fog .iframe iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.contents .fog .supplement {
  background-color: #eef5f7;
  margin-top: 60px;
  padding: 40px;
}
.contents .fog .supplement-title {
  border-bottom: 1px solid #000000;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-align: center;
}
.contents .fog .supplement-lead {
  color: #000000;
  font-size: 16px;
  margin-bottom: 40px;
}
.contents .fog .supplement-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contents .fog .supplement-row-item {
  align-items: flex-end;
  display: grid;
  font-weight: 700;
  line-height: 1.5;
  gap: 10px;
  grid-template-rows: subgrid;
  grid-row: 2 span;
  text-align: center;
}
.contents .fog .supplement-row-item img {
  width: 100%;
}
.contents .fog .supplement-subtitle {
  text-align: center;
}
.contents .fog .supplement-subtitle img {
  width: 100%;
}
.contents .fog-row {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}
.contents .fog-row-item {
  width: 100%;
}
.contents .fog-button-list {
  padding-top: 50px;
}
.contents .fog .text {
  align-items: center;
  display: flex;
  gap: 10px;
  padding-top: 30px;
}
.contents .fog .text-title {
  font-size: 16px;
  font-weight: 400;
}
.contents .fog .text-link {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-start;
}
.contents .fog .text-link a {
  align-content: center;
  background-color: #d7d7d7;
  display: inline-flex;
  gap: 5px;
  padding: 2px 10px;
}
.contents .fog .text-link a:hover {
  text-decoration: none;
}
.contents .mat {
  margin-top: 80px;
  position: relative;
}
.contents .mat .h2 {
  background-color: #ddddde;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 20px;
  padding: 5px 15px;
}
.contents .mat .h3 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
}
.contents .mat .lead {
  font-size: 16px;
  font-weight: 400;
}
.contents .mat .logo_good-design {
  position: absolute;
  top: 80px;
  right: 0;
}
.contents .mat .iframe {
  position: relative;
}
.contents .mat .iframe iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.contents .mat .supplement {
  background-color: #eef5f7;
  margin-top: 60px;
  padding: 40px;
}
.contents .mat .supplement-title {
  border-bottom: 1px solid #000000;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-align: center;
}
.contents .mat .supplement-lead {
  color: #000000;
  font-size: 16px;
  margin-bottom: 40px;
}
.contents .mat .supplement-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contents .mat .supplement-row-item {
  display: grid;
  font-weight: 700;
  line-height: 1.5;
  gap: 10px;
  grid-template-rows: subgrid;
  grid-row: 2 span;
  text-align: center;
}
.contents .mat .supplement-subtitle {
  text-align: center;
}
.contents .mat .supplement-subtitle img {
  width: 100%;
}
.contents .mat-row {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}
.contents .mat-row-item {
  width: 100%;
}
.contents .mat-button-list {
  padding-top: 50px;
}
.contents .mat-gallery {
  max-width: 944px;
  margin: auto;
}
.contents .mat-gallery-tab {
  display: flex;
  gap: 3px;
  margin-top: 10px;
}
.contents .mat-gallery-tab-item {
  aspect-ratio: 1;
  padding-bottom: 1%;
  width: 100%;
}
.contents .mat-gallery-tab-item:hover {
  cursor: pointer;
}
.contents .mat-gallery-tab-item.active img, .contents .mat-gallery-tab-item:hover img {
  opacity: 0;
  transition: 0.2s;
}
.contents .mat-gallery-tab-item.active:nth-of-type(1), .contents .mat-gallery-tab-item:hover:nth-of-type(1) {
  background: url(../images/img_mat-tab_01_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(2), .contents .mat-gallery-tab-item:hover:nth-of-type(2) {
  background: url(../images/img_mat-tab_02_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(3), .contents .mat-gallery-tab-item:hover:nth-of-type(3) {
  background: url(../images/img_mat-tab_03_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(4), .contents .mat-gallery-tab-item:hover:nth-of-type(4) {
  background: url(../images/img_mat-tab_04_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(5), .contents .mat-gallery-tab-item:hover:nth-of-type(5) {
  background: url(../images/img_mat-tab_05_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(6), .contents .mat-gallery-tab-item:hover:nth-of-type(6) {
  background: url(../images/img_mat-tab_06_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(7), .contents .mat-gallery-tab-item:hover:nth-of-type(7) {
  background: url(../images/img_mat-tab_07_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(8), .contents .mat-gallery-tab-item:hover:nth-of-type(8) {
  background: url(../images/img_mat-tab_08_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(9), .contents .mat-gallery-tab-item:hover:nth-of-type(9) {
  background: url(../images/img_mat-tab_09_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(10), .contents .mat-gallery-tab-item:hover:nth-of-type(10) {
  background: url(../images/img_mat-tab_10_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(11), .contents .mat-gallery-tab-item:hover:nth-of-type(11) {
  background: url(../images/img_mat-tab_11_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-tab-item.active:nth-of-type(12), .contents .mat-gallery-tab-item:hover:nth-of-type(12) {
  background: url(../images/img_mat-tab_12_active.png) no-repeat top center/contain;
}
.contents .mat-gallery-cont {
  margin-top: 20px;
}
.contents .mat .text {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.contents .mat .text-title {
  font-size: 16px;
  font-weight: 400;
}
.contents .mat .text-link {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-start;
}
.contents .mat .text-link a {
  align-content: center;
  background-color: #d7d7d7;
  display: inline-flex;
  gap: 5px;
  padding: 2px 10px;
}
.contents .mat .text-link a:hover {
  text-decoration: none;
}
.contents .side {
  margin-top: 80px;
  position: relative;
}
.contents .side .h2 {
  background-color: #ddddde;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 20px;
  padding: 5px 15px;
}
.contents .side .h3 {
  border-bottom: 1px solid #000000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 30px;
  padding-bottom: 5px;
}
.contents .side .lead {
  font-size: 16px;
  font-weight: 400;
}
.contents .side .logo_good-design {
  position: absolute;
  top: 80px;
  right: 0;
}
.contents .side .supplement {
  background-color: #eef5f7;
  margin-top: 60px;
  padding: 40px;
}
.contents .side .supplement-title {
  border-bottom: 1px solid #000000;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-align: center;
}
.contents .side .supplement-lead {
  color: #000000;
  font-size: 16px;
  margin-bottom: 40px;
}
.contents .side .supplement-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contents .side .supplement-row-item {
  display: grid;
  font-weight: 700;
  line-height: 1.5;
  gap: 10px;
  grid-template-rows: subgrid;
  grid-row: 2 span;
  text-align: center;
}
.contents .side .supplement-subtitle {
  text-align: center;
}
.contents .side .supplement-subtitle img {
  width: 100%;
}
.contents .side-row {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}
.contents .side-row-item {
  width: 100%;
}
.contents .side-button-list {
  padding-top: 50px;
}
.contents .side .text {
  align-items: center;
  display: flex;
  gap: 10px;
  padding-top: 30px;
}
.contents .side .text-title {
  font-size: 16px;
  font-weight: 400;
}
.contents .side .text-link {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-start;
}
.contents .side .text-link a {
  align-content: center;
  background-color: #d7d7d7;
  display: inline-flex;
  gap: 5px;
  padding: 2px 10px;
}
.contents .side .text-link a:hover {
  text-decoration: none;
}
.contents .center {
  margin-top: 80px;
  position: relative;
}
.contents .center .h2 {
  background-color: #ddddde;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 20px;
  padding: 5px 15px;
}
.contents .center .h3 {
  border-bottom: 1px solid #000000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 30px;
  padding-bottom: 5px;
}
.contents .center .lead {
  font-size: 16px;
  font-weight: 400;
}
.contents .center .logo_good-design {
  position: absolute;
  top: 80px;
  right: 0;
}
.contents .center .supplement {
  background-color: #eef5f7;
  margin-top: 60px;
  padding: 40px;
}
.contents .center .supplement-title {
  border-bottom: 1px solid #000000;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-align: center;
}
.contents .center .supplement-lead {
  color: #000000;
  font-size: 16px;
  margin-bottom: 40px;
}
.contents .center .supplement-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contents .center .supplement-row-item {
  display: grid;
  font-weight: 700;
  line-height: 1.5;
  gap: 10px;
  grid-template-rows: subgrid;
  grid-row: 2 span;
  text-align: center;
}
.contents .center .supplement-subtitle {
  text-align: center;
}
.contents .center .supplement-subtitle img {
  width: 100%;
}
.contents .center-row {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}
.contents .center-row-item {
  width: 100%;
}
.contents .center-button-list {
  padding-top: 50px;
}
.contents .center .text {
  align-items: center;
  display: flex;
  gap: 10px;
  padding-bottom: 30px;
  padding-top: 30px;
}
.contents .center .text-title {
  font-size: 16px;
  font-weight: 400;
}
.contents .center .text-link {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-start;
}
.contents .center .text-link a {
  align-content: center;
  background-color: #d7d7d7;
  display: inline-flex;
  gap: 5px;
  padding: 2px 10px;
}
.contents .center .text-link a:hover {
  text-decoration: none;
}
.contents .simulation {
  background: url(../images/bg_simulation.jpg) no-repeat center/cover;
  margin-top: 100px;
  padding: 100px 0;
}
.contents .simulation-cont {
  background-color: #ffffff;
  padding: 60px min(40px, 4vw);
  text-align: center;
}
.contents .simulation-h2 {
  color: #1e304a;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 40px;
  text-align: center;
}
.contents .simulation-nav a {
  font-weight: 400;
}
.contents .footer-button {
  padding: 100px 0;
}
.contents .footer-button-list {
  align-items: center;
  display: flex;
  gap: 20px;
}

@media print, screen and (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 768) and (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}
@media print, screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .scroll-text {
    animation: scroll-indicator 2s ease-in-out infinite;
    margin-right: 10px;
    margin-bottom: 5px;
    text-align: right;
  }
  .scrollable {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .scrollable > img {
    display: inline-block;
    max-width: none;
    height: auto;
    width: 600px;
  }
  .scrollable > .mat-gallery-top,
  .scrollable > .mat-gallery-tab {
    width: 800px;
  }
  .scrollable > .mat-gallery-tab + .scroll-hint-icon-wrap .scroll-hint-icon {
    top: calc(50% - 45px);
  }
  @keyframes scroll-indicator {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(10px);
    }
    100% {
      transform: translateX(0);
    }
  }
  /* フワッと表示 */
  .fadein {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .fadein.show {
    opacity: 1;
    transform: translateY(0);
  }
  /* ハンバーガーメニュー */
  .lineup-menu-filter {
    background: rgba(0, 0, 0, 0.4);
    content: "";
    cursor: pointer;
    height: 100%;
    inset: 0;
    position: fixed;
    width: 100%;
    opacity: 0;
    transition: 0.6s cubic-bezier(0.78, 0.18, 0.34, 0.98);
    visibility: hidden;
  }
  .lineup-menu-button {
    display: grid;
    place-content: center;
    height: 100%;
    width: 100%;
  }
  .lineup-menu-fixed {
    aspect-ratio: 1/1;
    background-color: var(--light-blue-color);
    color: #ffffff;
    cursor: pointer;
    display: block;
    height: 56px;
    top: 80px;
    right: 15px;
    position: fixed;
    transition: 0.5s;
    width: 56px;
    /* メニューが閉じる時のアニメーション */
    /* メニューが開く時のアニメーション */
  }
  .lineup-menu-fixed.close .top {
    animation: menu_top 0.5s;
    animation-fill-mode: forwards;
  }
  .lineup-menu-fixed.close .middle {
    transition: 0.5s opacity;
    opacity: 1;
  }
  .lineup-menu-fixed.close .bottom {
    animation: menu_bottom 0.5s;
    animation-fill-mode: forwards;
  }
  .lineup-menu-fixed.open .top {
    animation: menu_top_close 0.5s;
    animation-fill-mode: forwards;
    background-color: #000000;
    width: 60%;
  }
  .lineup-menu-fixed.open .middle {
    background-color: #000000;
    opacity: 0;
    transition: 0.5s opacity;
    width: 0%;
  }
  .lineup-menu-fixed.open .bottom {
    animation: menu_bottom_close 0.5s;
    animation-fill-mode: forwards;
    background-color: #000000;
    width: 60%;
  }
  .lineup-menu-line {
    background-color: #ffffff;
    height: 2px;
    gap: 10px;
    margin: 3px auto;
    position: relative;
    transition: 0.5;
    width: 80%;
  }
  .lineup-menu-line.top {
    animation-fill-mode: forwards;
  }
  .lineup-menu-line.middle {
    opacity: 1;
  }
  .lineup-menu-line.bottom {
    animation-fill-mode: forwards;
  }
  .lineup-menu-text {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .lineup-menu-cont {
    background: #ffffff;
    height: 100vh;
    translate: 0 0;
    bottom: 0;
    left: 100%;
    transition: 0.6s cubic-bezier(0.78, 0.18, 0.34, 0.98);
    padding: 60px 0;
    position: fixed;
    max-width: 348px;
    width: 100%;
  }
  .lineup-menu-cont .title {
    padding-left: 30px;
  }
  .lineup-menu-cont .list {
    border-bottom: 1px solid #d7d7d7;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 50px;
  }
  .lineup-menu-cont .list-item {
    width: 100%;
  }
  .lineup-menu-cont a {
    color: #1e304a;
  }
  .lineup-menu-cont li {
    line-height: 1.75;
    padding: 15px 20px 15px 30px;
    /* サブメニュー */
  }
  .lineup-menu-cont li:not([class]) {
    border-top: 1px solid #d7d7d7;
    font-size: 16px;
    font-weight: 700;
    position: relative;
  }
  .lineup-menu-cont li:not([class]):not(:first-child) {
    margin-top: 0;
  }
  .lineup-menu-cont li.parent {
    font-size: 0;
    font-weight: 400;
    padding: 10px 0 0;
    text-indent: -13px;
  }
  .lineup-menu-cont li.parent:not(:last-child) {
    margin-bottom: 0;
    margin-top: 0;
  }
  .lineup-menu-cont li.parent::before {
    background-color: #1e304a;
    content: "";
    display: inline-block;
    height: 1px;
    margin-bottom: 10px;
    margin-right: 5px;
    vertical-align: middle;
    width: 8px;
  }
  .lineup-menu-cont li.parent a {
    font-size: 16px;
    font-weight: 700;
  }
  .lineup-menu-cont li.child {
    font-size: 14px;
    padding: 0;
    padding-left: 0;
  }
  .lineup-menu-cont li.child:not(:last-child) {
    margin-bottom: 0;
  }
  .lineup-menu-cont li.child a {
    font-weight: 400;
  }
  .lineup-menu-cont li ul {
    height: auto;
    padding-left: 18px;
  }
  .lineup-menu-cont li ul ul {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    padding-top: 15px;
    padding-left: 0;
    text-indent: 0;
  }
  .lineup-menu-cont li .list-sub {
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .lineup-menu-cont li .list-sub-icon {
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 25px;
  }
  .lineup-menu-cont li .list-sub-parent-text {
    display: block;
  }
  .no-scroll {
    transition: 0.3s;
    overflow: hidden;
  }
  .no-scroll .lineup-menu-filter {
    opacity: 1;
    visibility: initial;
  }
  .no-scroll .lineup-menu-fixed {
    background: rgba(255, 255, 255, 0);
  }
  .no-scroll .lineup-menu-cont.menu-open {
    translate: -100% 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  @keyframes menu_top {
    0% {
      transform: translateY(8px) rotate(-45deg);
      transform-origin: center;
    }
    100% {
      transform: translateY(0) rotate(0deg);
    }
  }
  @keyframes menu_bottom {
    0% {
      transform: translateY(-8px) rotate(45deg);
      transform-origin: center;
    }
    100% {
      transform: translateY(0) rotate(0deg);
    }
  }
  @keyframes menu_top_close {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    100% {
      transform: translateY(8px) rotate(-45deg);
      transform-origin: center;
    }
  }
  @keyframes menu_bottom_close {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    100% {
      transform: translateY(-8px) rotate(45deg);
      transform-origin: center;
    }
  }
  /* ガラスフィルム シミュレーション  サービスはこちら */
  .lineup-link-fixed {
    opacity: 0;
    position: fixed;
    right: 10px;
    bottom: 90px;
    transition: 0.6s cubic-bezier(0.78, 0.18, 0.34, 0.98);
  }
  .lineup-link-fixed.active {
    opacity: 1;
  }
  .lineup-link-fixed a {
    align-items: center;
    background: #e99636;
    border-radius: 50%;
    color: #ffffff;
    display: grid;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    padding: 10px;
    place-content: center;
    text-align: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
    height: 110px;
    width: 110px;
  }
  .lineup-link-fixed a:hover {
    opacity: 0.6;
    text-decoration: none;
  }
  /* 共通 */
  .contents {
    margin-top: 60px;
    position: relative;
    /* ボタン　 */
  }
  .contents img {
    height: auto;
  }
  .contents a {
    transition: all 0.3s ease;
  }
  .contents a:hover {
    opacity: 0.6;
  }
  /* 個別 */
}
@media print and (hover: none), screen and (max-width: 767px) and (hover: none) {
  .contents a:active {
    opacity: 0.6;
  }
}
@media print, screen and (max-width: 767px) {
  .contents .mauto {
    margin: auto;
  }
  .contents .hover {
    opacity: 0.6;
  }
  .contents .button-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .contents .button-link {
    align-content: center;
    background-color: #e99636;
    color: #ffffff;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    padding: 10px 25px;
    position: relative;
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
    min-height: 65px;
    width: 100%;
  }
  .contents .button-link img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
  .contents .button-link img.--return {
    left: 10px;
  }
  .contents .button-link.--gray {
    background-color: #d7d7d7;
    color: #000000;
    font-weight: 400;
  }
  .contents .button-link:hover {
    text-decoration: none;
  }
  .contents .button-link .note {
    display: inline-block;
    font-size: 14px;
  }
  .contents .main {
    background: url(../images/mv.jpg) no-repeat center/cover;
    display: grid;
    place-content: initial;
    padding: 10px 3%;
    min-height: 137px;
    position: relative;
    align-items: center;
    justify-items: center;
  }
  .contents .main-text {
    position: initial;
    top: 0%;
    left: 0%;
    transform: none;
    text-align: center;
    width: 100%;
  }
  .contents .main-text-pagetitle {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
  }
  .contents .main-text-lead {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 5px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .contents .first {
    padding: 60px 0 0;
  }
  .contents .first-h2 {
    color: #1e304a;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 20px;
    text-align: center;
  }
  .contents .first-text {
    color: #1e304a;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    word-break: break-all;
    overflow-wrap: anywhere;
    margin-bottom: 40px;
  }
  .contents .first-text .note {
    font-size: 12px;
  }
  .contents .first-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: auto;
  }
  .contents .first-nav-link {
    align-items: center;
    background-color: #498ca5;
    color: #ffffff;
    display: grid;
    gap: 0;
    grid-template-rows: 1fr auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    min-height: 80px;
    justify-items: center;
    padding: 10px;
    text-align: center;
  }
  .contents .first-nav-link:hover {
    text-decoration: none;
  }
  .contents .first-nav-link img {
    margin-top: 10px;
  }
  .contents .fog {
    margin-top: 80px;
    position: relative;
  }
  .contents .fog .h2 {
    background-color: #ddddde;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 20px;
    padding: 5px 15px;
  }
  .contents .fog .h3 {
    border-bottom: 1px solid #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
  .contents .fog .lead {
    font-size: 14px;
    font-weight: 400;
  }
  .contents .fog .logo_good-design {
    position: absolute;
    top: 150px;
    right: 0;
  }
  .contents .fog .iframe {
    position: relative;
  }
  .contents .fog .iframe iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .contents .fog .supplement {
    background-color: #eef5f7;
    margin-top: 50px;
    padding: 30px 20px;
  }
  .contents .fog .supplement-title {
    border-bottom: 1px solid #000000;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.75;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .contents .fog .supplement-lead {
    color: #000000;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 30px;
  }
  .contents .fog .supplement-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  .contents .fog .supplement-row-item {
    display: grid;
    font-weight: 700;
    line-height: 1.5;
    gap: 10px;
    grid-template-rows: subgrid;
    grid-row: 2 span;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .contents .fog .supplement-subtitle {
    text-align: center;
  }
  .contents .fog .supplement-subtitle img {
    width: 100%;
  }
  .contents .fog-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: flex-start;
  }
  .contents .fog-row-item {
    width: 100%;
  }
  .contents .fog-button-list {
    padding-top: 50px;
  }
  .contents .fog .text {
    align-items: center;
    display: flex;
    gap: 10px;
    padding-top: 30px;
  }
  .contents .fog .text-title {
    font-size: 16px;
    font-weight: 400;
  }
  .contents .fog .text-link {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
  }
  .contents .fog .text-link a {
    align-content: center;
    background-color: #d7d7d7;
    display: inline-flex;
    gap: 5px;
    padding: 2px 10px;
  }
  .contents .fog .text-link a:hover {
    text-decoration: none;
  }
  .contents .mat {
    margin-top: 80px;
    position: relative;
  }
  .contents .mat .h2 {
    background-color: #ddddde;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 20px;
    padding: 5px 15px;
  }
  .contents .mat .h3 {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .contents .mat .lead {
    font-size: 14px;
    font-weight: 400;
  }
  .contents .mat .logo_good-design {
    position: absolute;
    top: 80px;
    right: 0;
  }
  .contents .mat .iframe {
    position: relative;
  }
  .contents .mat .iframe iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .contents .mat .supplement {
    background-color: #eef5f7;
    margin-top: 60px;
    padding: 40px;
  }
  .contents .mat .supplement-title {
    border-bottom: 1px solid #000000;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.75;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-align: center;
  }
  .contents .mat .supplement-lead {
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
  }
  .contents .mat .supplement-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .contents .mat .supplement-row-item {
    display: grid;
    font-weight: 700;
    line-height: 1.5;
    gap: 10px;
    grid-template-rows: subgrid;
    grid-row: 2 span;
    text-align: center;
  }
  .contents .mat .supplement-subtitle {
    text-align: center;
  }
  .contents .mat .supplement-subtitle img {
    width: 100%;
  }
  .contents .mat-row {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
  }
  .contents .mat-row-item {
    width: 100%;
  }
  .contents .mat-button-list {
    padding-top: 30px;
  }
  .contents .mat .text {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .contents .mat .text-title {
    font-size: 16px;
    font-weight: 400;
  }
  .contents .mat .text-link {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
  }
  .contents .mat .text-link a {
    align-content: center;
    background-color: #d7d7d7;
    display: inline-flex;
    gap: 5px;
    padding: 2px 10px;
  }
  .contents .mat .text-link a:hover {
    text-decoration: none;
  }
  .contents .side {
    margin-top: 80px;
    position: relative;
  }
  .contents .side .h2 {
    background-color: #ddddde;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 20px;
    padding: 5px 15px;
  }
  .contents .side .h3 {
    border-bottom: 1px solid #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
  .contents .side .lead {
    font-size: 14px;
    font-weight: 400;
  }
  .contents .side .supplement {
    background-color: #eef5f7;
    margin-top: 50px;
    padding: 30px 20px;
  }
  .contents .side .supplement-title {
    border-bottom: 1px solid #000000;
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.75;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-align: center;
  }
  .contents .side .supplement-lead {
    color: #000000;
    font-size: 14px;
    margin-bottom: 40px;
  }
  .contents .side .supplement-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .contents .side .supplement-row-item {
    display: grid;
    font-weight: 700;
    line-height: 1.5;
    gap: 10px;
    grid-template-rows: subgrid;
    grid-row: 2 span;
    text-align: center;
  }
  .contents .side .supplement-subtitle {
    text-align: center;
  }
  .contents .side .supplement-subtitle img {
    width: 100%;
  }
  .contents .side-row {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
  }
  .contents .side-row-item {
    width: 100%;
  }
  .contents .side-button-list {
    padding-top: 40px;
  }
  .contents .side .text {
    align-items: center;
    display: flex;
    gap: 10px;
    padding-top: 30px;
  }
  .contents .side .text-title {
    font-size: 16px;
    font-weight: 400;
  }
  .contents .side .text-link {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
  }
  .contents .side .text-link a {
    align-content: center;
    background-color: #d7d7d7;
    display: inline-flex;
    gap: 5px;
    padding: 2px 10px;
  }
  .contents .side .text-link a:hover {
    text-decoration: none;
  }
  .contents .center {
    margin-top: 80px;
    position: relative;
  }
  .contents .center .h2 {
    background-color: #ddddde;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 20px;
    padding: 5px 15px;
  }
  .contents .center .h3 {
    border-bottom: 1px solid #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
  .contents .center .lead {
    font-size: 14px;
    font-weight: 400;
  }
  .contents .center .logo_good-design {
    position: absolute;
    top: 80px;
    right: 0;
  }
  .contents .center .supplement {
    background-color: #eef5f7;
    margin-top: 60px;
    padding: 40px;
  }
  .contents .center .supplement-title {
    border-bottom: 1px solid #000000;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.75;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-align: center;
  }
  .contents .center .supplement-lead {
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
  }
  .contents .center .supplement-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .contents .center .supplement-row-item {
    display: grid;
    font-weight: 700;
    line-height: 1.5;
    gap: 10px;
    grid-template-rows: subgrid;
    grid-row: 2 span;
    text-align: center;
  }
  .contents .center .supplement-subtitle {
    text-align: center;
  }
  .contents .center .supplement-subtitle img {
    width: 100%;
  }
  .contents .center-row {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
  }
  .contents .center-row-item {
    width: 100%;
  }
  .contents .center-button-list {
    padding-top: 40px;
  }
  .contents .center .text {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 30px;
    padding-top: 30px;
  }
  .contents .center .text-title {
    font-size: 16px;
    font-weight: 400;
  }
  .contents .center .text-link {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
  }
  .contents .center .text-link a {
    align-content: center;
    background-color: #d7d7d7;
    display: inline-flex;
    gap: 5px;
    padding: 2px 10px;
  }
  .contents .center .text-link a:hover {
    text-decoration: none;
  }
  .contents .simulation {
    background: url(../images/bg_simulation.jpg) no-repeat center/cover;
    padding: 50px 0;
  }
  .contents .simulation-cont {
    background-color: #ffffff;
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
  }
  .contents .simulation-h2 {
    color: #1e304a;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 30px;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .contents .simulation-nav a {
    font-weight: 400;
  }
  .contents .footer-button {
    padding: 50px 0;
  }
  .contents .footer-button-list {
    flex-direction: column;
    gap: 20px;
  }
}/*# sourceMappingURL=style.css.map */