:root {
  --color-main: #006AAA;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-border: #e0e0e0;
  --th-background: #f9f9f9;
  --th-fontColor: #111;
  --th-fontSize: 1.7rem;
  --td-background: #f9f9f9;
  --td-fontColor: #222;
  --td-fontSize: 1.6rem;
}

.font56 {
  --fontsize: 5.6rem;
  font-size: var(--fontsize);
}

.font48 {
  --fontsize: 4.8rem;
  font-size: var(--fontsize);
}

.font46 {
  --fontsize: 4.6rem;
  font-size: var(--fontsize);
}

.font44 {
  --fontsize: 4.4rem;
  font-size: var(--fontsize);
}

.font40 {
  --fontsize: 4.0rem;
  font-size: var(--fontsize);
}

.font32 {
  --fontsize: 3.2rem;
  font-size: var(--fontsize);
}

#sv {
  width: 100%;
  height: 300px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}
#sv .bg,
#sv .text {
  width: 100%;
  height: 100%;
}
#sv .bg {
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sv .text {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#sv .text h2 {
  color: var(--color-white);
  font-weight: 900;
}
#sv.sv01 .bg {
  background-image: url("/img/sub/bg_sub_01.jpg");
}
#sv.sv02 .bg {
  background-image: url("/img/sub/bg_sub_02.jpg");
}
#sv.sv03 .bg {
  background-image: url("/img/sub/bg_sub_03.jpg");
}
#sv.sv04 .bg {
  background-image: url("/img/sub/bg_sub_04.jpg");
}
#sv.sv05 .bg {
  background-image: url("/img/sub/bg_sub_05.jpg");
}
#sv.sv06 .bg {
  background-image: url("/img/sub/bg_sub_06.jpg");
}

.col120 {
  gap: 120px 0;
}

.subContents .dropWrap {
  width: 100%;
  height: 60px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.subContents .dropWrap .dropBox,
.subContents .dropWrap .dropBox > li {
  height: 100%;
}
.subContents .dropWrap .dropBox {
  display: inline-flex;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.subContents .dropWrap .home {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .dropWrap .home img {
  width: 16px;
}
.subContents .dropWrap .drop {
  width: 220px;
  border-left: 1px solid #eee;
  position: relative;
  display: none;
}
.subContents .dropWrap .drop button {
  gap: 0 20px;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .dropWrap .drop button span {
  width: calc(100% - 34px);
  display: block;
  height: 1.35em;
  color: #222;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
.subContents .dropWrap .drop button img {
  width: 14px;
  transition: all 0.4s;
  filter: brightness(0);
}
.subContents .dropWrap .drop button.on img {
  transform: rotateX(0);
}
.subContents .dropWrap .drop ul {
  width: calc(100% + 2px);
  background: #f5f5f5;
  border: 1px solid #eee;
  padding: 10px 20px;
  position: absolute;
  top: 100%;
  left: -1px;
  z-index: 1;
  display: none;
}
.subContents .dropWrap .drop ul li a {
  display: inline-block;
  color: #888;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 5px 0;
  transition: all 0.4s;
}
.subContents .dropWrap .drop ul li:hover a {
  color: var(--color-main);
}
.subContents .subPage {
  padding: 60px 0 120px;
}
.subContents .subPage h3, .subContents .subPage h4 {
  font-weight: 700;
  margin: 0 0 40px;
}
.subContents .subPage h3 {
  color: #111;
  text-align: left;
}
.subContents .subPage h4 {
  color: #222;
  text-align: center;
}
.subContents .subPage .topP {
  color: #333;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  margin: -20px 0 40px;
}
.subContents .background {
  position: relative;
}
.subContents .background::before {
  content: "";
  width: 100vw;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .background.gray::before {
  background: #F5F5F5;
}
.subContents .background.blue::before {
  background: #EAF1F5;
}
.subContents .pBox.blueDot {
  gap: 10px 0;
}
.subContents .pBox.blueDot .dot {
  display: flex;
  gap: 0 10px;
}
.subContents .pBox.blueDot .dot::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background: var(--color-main);
  border-radius: 50%;
  transform: translateY(0.55em);
}
.subContents .company .topText {
  margin: 0 0 40px;
}
.subContents .company .topText p {
  color: #333;
  line-height: 1.75;
}
.subContents .company .gridBox {
  gap: 40px 30px;
}
.subContents .company .gridBox .img {
  padding: 50% 0;
}
.subContents .message .flexBox {
  gap: 0 80px;
}
.subContents .message .img {
  flex-shrink: 0;
}
.subContents .message .text .pBox {
  gap: 25px 0;
}
.subContents .message .text p {
  color: #333;
  line-height: 1.75;
}
.subContents .message .text .right {
  text-align: right;
  margin: 60px 0 0;
}
.subContents .message .text .right p {
  margin-top: 20px;
}
.subContents .placeBox {
  gap: 0 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .placeBox .img {
  flex-shrink: 0;
}
.subContents .placeBox .text h4 {
  text-align: left;
}
.subContents .placeBox .text .column {
  gap: 40px 0;
}
.subContents .placeBox .text h6 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 20px;
}
.subContents .placeBox .text .pBox {
  gap: 10px 0;
}
.subContents .placeBox .hoverButton {
  gap: 0 10px;
  padding: 18px 30px;
  margin: 30px 0 0;
}
.subContents .placeBox .hoverButton img {
  filter: brightness(0) invert(1);
}
.subContents .placeBox .hoverButton span {
  font-size: 1.6rem;
}
.subContents .placeBox .hoverButton:hover img {
  filter: inherit;
}
.subContents .placeBox.reverse .img {
  margin-left: auto;
}
.subContents .profile .information .itemBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #000;
}
.subContents .profile .information dl {
  min-height: 80px;
  gap: 0 30px;
  border-bottom: 1px solid #ddd;
  padding: 0 0 0 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .profile .information dl:nth-child(odd) {
  position: relative;
}
.subContents .profile .information dl:nth-child(odd)::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #ddd;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.subContents .profile .information dl * {
  font-size: 1.8rem;
}
.subContents .profile .information dl dt {
  width: 72px;
  flex-shrink: 0;
  color: #333;
  font-weight: 500;
}
.subContents .profile .list h4 {
  text-align: left;
}
.subContents .profile .list .gridBox {
  gap: 40px 30px;
}
.subContents .profile .list .img {
  padding: 32.895% 0;
}
.subContents .history .contents {
  position: relative;
}
.subContents .history .bar {
  width: 1px;
  height: calc(100% + 40px);
  background: #ddd;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow-y: clip;
}
.subContents .history .bar span {
  display: block;
  width: 3px;
  height: 0;
  background: var(--color-main);
  position: absolute;
  top: 0;
  left: -1px;
}
.subContents .history .itemBox {
  display: flex;
  gap: 0 100px;
}
.subContents .history .itemBox > * {
  width: 100%;
}
.subContents .history .img {
  transform: translateY(60px);
}
.subContents .history .listBox h4 {
  margin: 0;
  transition: all 0.4s;
}
.subContents .history .listBox span {
  display: block;
  width: calc(100% + 50px);
  height: 1px;
  background: var(--color-black);
  margin: 20px 0;
  position: relative;
}
.subContents .history .listBox span::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: var(--color-white);
  border: 5px solid var(--color-main);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.subContents .history .list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.subContents .history .list dl dt {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.subContents .history .list dl dd {
  color: #666;
  font-size: 1.8rem;
}
.subContents .history .itemBox .img {
  text-align: right;
}
.subContents .history .itemBox h4 {
  text-align: left;
}
.subContents .history .itemBox span {
  left: -50px;
}
.subContents .history .itemBox span::before {
  left: -9px;
}
.subContents .history .itemBox.reverse .listBox,
.subContents .history .itemBox.reverse h4 {
  text-align: right;
}
.subContents .history .itemBox.reverse span {
  left: 0;
}
.subContents .history .itemBox.reverse span::before {
  left: auto;
  right: -9px;
}
.subContents .history .itemBox.reverse .img {
  text-align: left;
}
.subContents .philosophy .icon img {
  max-width: inherit;
}
.subContents .philosophy .circle dl dt {
  color: #333;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 20px;
}
.subContents .philosophy .circle dl dd {
  font-size: 1.8rem;
}
.subContents .philosophy .circle .itemBox {
  display: grid;
  grid-template-columns: repeat(4, calc(25% - 6px));
  justify-content: center;
  margin: 60px 0 0;
}
.subContents .philosophy .circle .item {
  padding: calc(50% + 12px) 0;
  margin: 0 -12px;
  position: relative;
}
.subContents .philosophy .circle .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #eee;
  border-radius: 50%;
  padding: 0 0 60px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .philosophy .circle .inner .icon {
  margin: auto 0 50px;
}
.subContents .philosophy .circle .inner p {
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
}
.subContents .philosophy .explain .itemBox {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.subContents .philosophy .explain .item {
  height: 195px;
  gap: 0 60px;
  padding: 0 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .philosophy .explain .item .icon {
  width: 100%;
  max-width: 80px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .philosophy .explain .item dl dt {
  color: #333;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 20px;
}
.subContents .philosophy .explain .item dl dd {
  font-size: 1.8rem;
}
.subContents .philosophy .explain .item:hover::before {
  border-radius: 30px;
}
.subContents .organization .imgBox {
  text-align: center;
}
.subContents .news .searchBox {
  display: flex;
  gap: 0 10px;
}
.subContents .news .searchBox > * {
  height: 60px;
  border: 1px solid #ddd;
}
.subContents .news .searchBox > *:not(.textBox) {
  flex-shrink: 0;
}
.subContents .news .searchBox .selectCustom {
  width: 230px;
  position: relative;
}
.subContents .news .searchBox .selectCustom button {
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .news .searchBox .selectCustom span {
  color: #111;
  font-size: 1.6rem;
}
.subContents .news .searchBox .selectCustom .arrow {
  width: 20px;
  height: 20px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .news .searchBox .selectCustom .arrow img {
  width: 10px;
  filter: brightness(0);
}
.subContents .news .searchBox .selectCustom ul {
  width: calc(100% + 2px);
  background-color: var(--color-white);
  border: 1px solid #ddd;
  padding: 12.5px 20px;
  position: absolute;
  top: 100%;
  left: -1px;
  z-index: 1;
  display: none;
}
.subContents .news .searchBox .selectCustom ul li {
  display: block;
  padding: 7.5px 0;
  transition: all 0.4s;
  cursor: pointer;
}
.subContents .news .searchBox .selectCustom ul li:hover {
  color: #333;
}
.subContents .news .searchBox .selectCustom.on .arrow {
  transform: rotateX(180deg);
}
.subContents .news .searchBox .textBox {
  width: 100%;
  padding: 0 20px;
}
.subContents .news .searchBox .textBox::placeholder {
  color: #ccc;
  letter-spacing: -0.02em;
}
.subContents .news .searchBox .searchButton {
  width: 100px;
  background: var(--color-main);
  color: var(--color-white);
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .news .searchBox .searchButton:hover {
  background: #333;
}
.subContents .news .boardBox {
  border-top: 1px solid #000;
  margin: 40px 0 0;
}
.subContents .news .boardBox .item {
  border-bottom: 1px solid #ddd;
}
.subContents .news .boardBox .item > a {
  display: block;
  padding: 30px;
}
.subContents .news .boardBox .item em,
.subContents .news .boardBox .item p {
  color: #666;
}
.subContents .news .boardBox .item .top {
  gap: 0 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .news .boardBox .item .tag {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 30px;
  font-size: 1.4rem;
  padding: 6px 10px;
}
.subContents .news .boardBox .item .tag.gray {
  color: #666;
  border-color: #666;
}
.subContents .news .boardBox .item .tag.blue {
  color: var(--color-main);
  border-color: var(--color-main);
}
.subContents .news .boardBox .item h6,
.subContents .news .boardBox .item p {
  height: 1.3em;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.subContents .news .boardBox .item h6 {
  display: inline-block;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 10px 0;
  position: relative;
  transition: all 0.4s;
}
.subContents .news .boardBox .item h6::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-main);
  position: absolute;
  left: 0;
  bottom: -1px;
  opacity: 0;
  transition: all 0.4s;
}
.subContents .news .boardBox .item:hover h6 {
  color: var(--color-main);
}
.subContents .news .boardBox .item:hover h6::after {
  opacity: 1;
}
.subContents .partners .itemBox h4 {
  text-align: left;
  margin: 0 0 25px;
}
.subContents .partners .itemBox ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.subContents .partners .itemBox ul li {
  border: 1px solid #ddd;
  padding: 25.965% 0;
  position: relative;
  overflow: hidden;
}
.subContents .partners .itemBox ul li img {
  max-height: inherit;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .infoBox .itemBox {
  min-height: 335px;
  display: grid;
  grid-template-columns: 52.9175% 47.0825%;
}
.subContents .infoBox .img {
  position: relative;
  overflow: hidden;
}
.subContents .infoBox .img img {
  min-height: 100%;
  max-width: inherit;
  max-height: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .infoBox .text {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px 0;
  background: var(--color-main);
  padding: 50px;
  position: relative;
}
.subContents .infoBox .text p {
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1.5;
}
.subContents .infoBox .symbol {
  width: 250px;
  height: 260px;
  position: absolute;
  right: -30px;
  bottom: -90px;
  opacity: 0.05;
  filter: brightness(0) invert(1);
}
.subContents .hoverShadow .item {
  position: relative;
}
.subContents .hoverShadow .item::before {
  content: "";
  display: block;
  border-radius: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: -1;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .hoverShadow .item:hover::before {
  border-radius: 50px;
  opacity: 1;
}
.subContents .whyBox .itemBox {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.subContents .whyBox .item {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.subContents .whyBox .item h5 {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 20px;
}
.subContents .whyBox .item p {
  color: #444;
  font-size: 1.6rem;
  line-height: 1.5;
}
.subContents .whyBox .item .icon {
  height: 60px;
  margin: auto 0 0 auto;
}
.subContents .listBox .itemBox {
  border-top: 1px solid #eee;
}
.subContents .listBox .item {
  gap: 0 60px;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .listBox .img {
  width: 47.0825%;
  flex-shrink: 0;
  padding: 15.295% 0;
  position: relative;
}
.subContents .listBox .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .listBox .text h6 {
  color: #ccc;
  font-size: 1.6rem;
  font-weight: 700;
}
.subContents .listBox .text h5 {
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 10px 0 30px;
}
.subContents .listBox .text p {
  color: #444;
  font-size: 1.6rem;
  line-height: 1.5;
}
.subContents .listBox .hoverButton {
  margin: 60px 0 0;
}
.subContents .videoBox {
  padding: 28.125% 0;
  position: relative;
}
.subContents .videoBox iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .tableBox table th {
  background: var(--color-main);
  color: var(--color-white);
  font-weight: 500;
}
.subContents .tableBox table th:last-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.subContents .tableBox table th:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.subContents .tableBox table td {
  background: var(--color-white);
  border-bottom: 1px solid #ddd;
  color: #666;
  text-align: center;
}
.subContents .tableBox table td:last-child {
  border-left: 1px solid #ddd;
}
.subContents .tableBox table td:not(:last-child) {
  border-right: 1px solid #ddd;
}
.subContents .zigzagBox .itemBox {
  border-top: 1px solid #eee;
}
.subContents .zigzagBox .item {
  gap: 0 60px;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .zigzagBox .img,
.subContents .zigzagBox .video,
.subContents .zigzagBox .text {
  width: calc(50% - 30px);
}
.subContents .zigzagBox .video div {
	padding: 28.125% 0;
	position: relative;
}
.subContents .zigzagBox .video iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.subContents .zigzagBox .text .top h5 {
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
}
.subContents .zigzagBox .text .top p {
  color: #444;
  line-height: 1.5;
  margin: 20px 0 0;
}
.subContents .zigzagBox .text .pBox {
  margin: 40px 0 0;
}
.subContents .zigzagBox .text .hoverButton {
  margin: 40px 0 0;
}
.subContents .storageBox .flexBox {
  gap: 0 20px;
}
.subContents .storageBox .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 0 35px;
}
.subContents .storageBox .item p {
  color: #333;
  font-size: 1.8rem;
  text-align: center;
  margin: 30px 0 0;
}
.subContents .products h5 {
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 20px;
}
.subContents .products .gridBox {
  gap: 30px;
}
.subContents .products .item {
  border: 1px solid #ddd;
}
.subContents .products .item .img {
  padding: 50% 0;
}
.subContents .products .item .text {
  gap: 0 20px;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .products .item .text p {
  max-height: 2.6em;
  color: #333;
  font-weight: 500;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.subContents .products .item .arrow {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background: var(--color-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .products .item .arrow i {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 600;
}
.subContents .bottomSlide .top {
  margin: 0 0 40px;
  position: relative;
}
.subContents .bottomSlide .buttonBox {
  gap: 0 15px;
  justify-content: flex-end;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .bottomSlide .buttonBox button {
  display: block;
  width: 28px;
  transition: all 0.4s;
  filter: grayscale(1) brightness(2.6);
}
.subContents .bottomSlide .buttonBox button:hover {
  filter: inherit;
}
.subContents .bottomSlide .gridBox {
  gap: 0;
  overflow: hidden;
}
.subContents .bottomSlide .gridBox .item .img {
  padding: 35.8925% 0;
}
.subContents .business .topText {
  margin: 0 0 60px;
}
.subContents .business .topText h5 {
  color: #333;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 20px;
}
.subContents .business .topText p {
  line-height: 1.75;
}
.subContents .business .gridBox {
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
}
.subContents .business .item,
.subContents .business .item a {
  display: flex;
  flex-direction: column;
}
.subContents .business .item a {
  width: 100%;
  height: 100%;
}
.subContents .business .item h5 {
  flex-shrink: 0;
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 20px;
}
.subContents .business .item:not(.blank) .img {
  flex-shrink: 0;
  padding: 25.6425% 0;
}
.subContents .business .item:not(.blank) .pBox {
  height: 100%;
}
.subContents .business .item .pBox {
  min-height: 165px;
  gap: 20px 0;
  border: 1px solid #ddd;
  padding: 30px 30px 35px;
}
.subContents .business .item .pBox p {
  color: #333;
}
.subContents .business .item .pBox .dot {
  display: flex;
  gap: 0 8px;
}
.subContents .business .item .pBox .dot::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background: #ccc;
  border-radius: 50%;
  transform: translateY(0.55em);
}
.subContents .battery .whyBox .item {
  height: 360px;
}
.subContents .battery .process .itemBox {
  display: grid;
  grid-template-columns: 22.5% 1.5% 22.5% 1.5% 22.5% 1.5% 22.5%;
  align-items: center;
  justify-content: space-between;
}
.subContents .battery .process .itemBox > .arrow {
  opacity: 0.3;
  filter: brightness(1) grayscale(1);
}
.subContents .battery .process .circle {
  text-align: center;
  padding: 50% 0;
  position: relative;
}
.subContents .battery .process .circle * {
  transition: all 0.6s;
}
.subContents .battery .process .circle .inner {
  background: #f5f5f5;
  border-radius: 50%;
  padding: 15% 10px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .battery .process .circle .inner h6 {
  color: #ccc;
  font-size: 1.8rem;
  font-weight: 900;
}
.subContents .battery .process .circle .inner h5 {
  color: #222;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 10px 0 0;
}
.subContents .battery .process .circle .bottom {
  margin: 30px 0 0;
  position: relative;
}
.subContents .battery .process .circle .off .icon {
  height: 80px;
  height: 60px;
}
.subContents .battery .process .circle .on {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
}
.subContents .battery .process .circle .on p {
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1.5;
}
.subContents .battery .process .circle .arrow {
  width: 30px;
  height: 30px;
  background: var(--color-main);
  border-radius: 50px;
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .battery .process .circle .arrow img {
  width: 12px;
  filter: brightness(0) invert(1);
}
.subContents .battery .process .circle:hover .inner {
  background: var(--color-main);
}
.subContents .battery .process .circle:hover .inner h6,
.subContents .battery .process .circle:hover .inner h5 {
  color: var(--color-white);
}
.subContents .battery .process .circle:hover .off .icon {
  opacity: 0.1;
}
.subContents .battery .process .circle:hover .on {
  opacity: 1;
}
.subContents .battery .process .circle:hover .arrow {
  opacity: 0;
}
.subContents .battery .cases .gridBox {
  gap: 40px 20px;
}
.subContents .battery .cases .item .img {
  padding: 50% 0;
}
.subContents .battery .supply .gridBox {
  gap: 60px 30px;
}
.subContents .battery .supply .item .img {
  padding: 50% 0;
}
.subContents .battery .supply .item h6 {
  text-align: left;
  margin: 20px 0;
}
.subContents .smart .fields .gridBox {
  gap: 60px 30px;
}
.subContents .smart .fields .item .img {
  padding: 27.635% 0;
}
.subContents .smart .fields .item h6 {
  text-align: left;
  margin: 20px 0;
}
.subContents .smart .what .column {
  gap: 40px 0;
}
.subContents .smart .what .column > div > p {
  color: #444;
  margin: 20px 0 0;
}
.subContents .smart .what .column h5 {
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
}
.subContents .smart .what .column .pBox {
  margin: 20px 0 0;
}
.subContents .smart .what .img {
  border: 1px solid #ddd;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .smart .handled .tabTitle {
  display: flex;
  gap: 0 10px;
  margin: 0 0 40px;
}
.subContents .smart .handled .tabTitle li {
  width: 100%;
  height: 60px;
}
.subContents .smart .handled .tabTitle li button {
  border: 2px solid var(--color-main);
  border-radius: 60px;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .smart .handled .tabTitle li:hover button, .subContents .smart .handled .tabTitle li.on button {
  background: var(--color-main);
  color: var(--color-white);
  font-weight: 700;
}
.subContents .hydrogen .explain .itemBox {
  gap: 0 60px;
}
.subContents .hydrogen .explain .item {
  width: 100%;
}
.subContents .hydrogen .explain .item dl {
  margin: 30px 0 0;
}
.subContents .hydrogen .explain .item dl dt {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.subContents .hydrogen .explain .item dl dd {
  line-height: 1.5;
}
.subContents .hydrogen .fuel .flexBox {
  gap: 0 30px;
}
.subContents .hydrogen .cases .itemBox {
  gap: 0 18px;
}
.subContents .hydrogen .cases .item {
  width: 100%;
}
.subContents .hydrogen .cases .item p {
  color: #333;
  font-weight: 500;
  text-align: center;
  margin: 20px 0 0;
}
.subContents .hydrogen .cases .img {
  padding: 50% 0;
  position: relative;
}
.subContents .hydrogen .cases .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .liquid .whyBox .item p {
  margin: 0 0 20px;
}
.subContents .liquid .information .flexBox {
  gap: 0 30px;
}
.subContents .liquid .information .flexBox > * {
  width: 100%;
}
.subContents .liquid .information .img {
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .liquid .information .tableBox table th,
.subContents .liquid .information .tableBox table td {
  padding: 20px 0;
}
.subContents .liquid .information .tableBox .pBox {
  gap: 10px 0;
}
.subContents .liquid .cases .column {
  gap: 60px 0;
}
.subContents .liquid .cases h5 {
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 20px;
}
.subContents .liquid .cases .gridBox {
  gap: 20px;
}
.subContents .liquid .cases .gridBox .img {
  padding: 35.0905% 0;
}
.subContents .liquid .cases .gridBox p {
  border: 1px solid #ddd;
  color: #333;
  text-align: center;
  padding: 20px;
}
.subContents .mobile .customized .gridBox {
  gap: 40px 20px;
}
.subContents .mobile .customized .item .img {
  border: 1px solid #ddd;
  padding: 50% 0;
}
.subContents .mobile .customized .item p {
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin: 20px 0 0;
}
.subContents .stainless .brand .itemBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.subContents .stainless .brand .item {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
}
.subContents .stainless .brand .item .hoverButton {
  width: calc(100% - 60px);
  padding: 20px;
  margin: auto auto 30px;
}
.subContents .stainless .brand .logo {
  height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .stainless .brand .text {
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 30px 30px 20px;
}
.subContents .stainless .brand .text h5 {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
}
.subContents .stainless .brand .text hr {
  width: 100%;
  height: 1px;
  background: #ddd;
  border: none;
  margin: 20px 0;
}
.subContents .stainless .brand .text p {
  color: #333;
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 0 0 20px;
}
.subContents .stainless .type .gridBox {
  gap: 40px 30px;
}
.subContents .stainless .type .gridBox .img {
  padding: 32.895% 0;
}
.subContents .stainless .cases .gridBox {
  gap: 20px;
}
.subContents .stainless .cases .item {
  position: relative;
}
.subContents .stainless .cases .item .img {
  padding: 50% 0;
}
.subContents .stainless .cases .item p {
  width: 100%;
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .stainless .stainlessSlide .slideWrap {
  position: relative;
  overflow: hidden;
}
.subContents .stainless .stainlessSlide .swiper-slide figure {
  padding: 25% 0;
  position: relative;
}
.subContents .stainless .stainlessSlide .swiper-slide figure img {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .stainless .stainlessSlide .buttonBox {
  width: calc(100% - 60px);
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .stainless .stainlessSlide .buttonBox button {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .stainless .stainlessSlide .buttonBox button i {
  color: var(--color-white);
  font-size: 2.6rem;
}
.subContents .stainless .stainlessSlide .buttonBox button:hover {
  background: var(--color-main);
}
.subContents .stainless .stainlessSlide .pagination {
  gap: 0 10px;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .stainless .stainlessSlide .pagination span {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.4s;
}
.subContents .stainless .stainlessSlide .pagination span.swiper-pagination-bullet-active {
  opacity: 1;
}
.subContents .stainless .technical .gridBox {
  gap: 40px 20px;
}
.subContents .stainless .technical .item .icon {
  width: 100%;
  background: var(--color-white);
  padding: 50% 0;
  position: relative;
}
.subContents .stainless .technical .item .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .stainless .technical .item p {
  color: #333;
  font-size: 1.8rem;
  text-align: center;
  margin: 20px 0 0;
}
.subContents .stainless .spec .itemBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.subContents .stainless .spec .item {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
  border: 1px solid #ddd;
  padding: 40px;
}
.subContents .stainless .spec .text h5 {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
}
.subContents .stainless .spec .text span {
  display: inline-block;
  line-height: 1.3;
  margin: 20px 0 0;
}
.subContents .stainless .colors .itemBox {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 18px;
}
.subContents .stainless .colors .item p {
  color: #333;
  font-weight: 500;
  text-align: center;
  margin: 10px 0 0;
}
.subContents .stainless .colors .circle {
  width: 100%;
  background: var(--bg);
  border-radius: 50%;
  padding: 50% 0;
}
.subContents .constructions .brand .itemBox {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.subContents .constructions .brand .logo {
  height: 50px;
  background: transparent;
  margin: 20px 0;
}
.subContents .constructions .brand .text {
  text-align: left;
  padding: 0 30px 20px;
}
.subContents .constructions .brand .text p {
  font-size: 1.6rem;
  margin: 10px 0 0;
}
.subContents .lifestyle .infoBox ul,
.subContents .lifestyle .infoBox ul li {
  display: flex;
}
.subContents .lifestyle .infoBox ul {
  flex-direction: column;
  gap: 15px 0;
}
.subContents .lifestyle .infoBox ul li {
  gap: 0 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .lifestyle .infoBox ul li .icon {
  width: 20px;
	flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .lifestyle .gallery .gridBox {
  gap: 30px;
}
.subContents .lifestyle .gallery .gridBox .img {
  padding: 50% 0;
}
.subContents .view .information {
  display: flex;
  gap: 0 60px;
}
.subContents .view .information figure {
  padding: 50% 0;
  position: relative;
  overflow: hidden;
}
.subContents .view .information figure img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .view .information .imgBox {
  width: 54.1675%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  gap: 0 20px;
}
.subContents .view .information .list {
  width: 80px;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 10px 0;
}
.subContents .view .information .list figure::after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid transparent;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .view .information .list figure:hover::after, .subContents .view .information .list figure.on::after {
  border-color: var(--color-main);
}
.subContents .view .information .thumb {
  width: calc(100% - 100px);
}
.subContents .view .information .textBox h6 {
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 500;
}
.subContents .view .information .textBox h4 {
  color: #111;
  text-align: left;
  margin: 10px 0 20px;
}
.subContents .view .information .textBox p {
  color: #666;
  line-height: 1.5;
}
.subContents .view .information .hoverButton {
  margin: 40px 0 0;
}
.subContents .view .detail > h5 {
  color: #222;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 20px;
}
.subContents .view .detail > hr {
  width: 100%;
  height: 1px;
  background: var(--color-black);
  border: none;
  margin: 0;
}
.subContents .view .detail .inner {
  padding: 30px 30px 0;
}
.subContents .view .detail .inner * {
	font-family: "Noto Sans JP", sans-serif !important;
}
.subContents .view .detail .text.column {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.subContents .view .detail .pBox {
  gap: 10px 0;
}
.subContents .view .detail p b {
  color: #333;
  font-weight: 700;
}
.subContents .view .detail p.dot {
  display: flex;
  gap: 0 10px;
  color: #666;
}
.subContents .view .detail p.dot::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  background: var(--color-black);
  transform: translateY(1rem);
}
.subContents .view .tableBox table th,
.subContents .view .tableBox table td {
  padding: 15px 0;
}
.subContents .view .itemBox {
  margin-top: -20px;
}
.subContents .view .itemBox .item,
.subContents .view .itemBox dl,
.subContents .view .itemBox .aBox,
.subContents .view .itemBox .hoverButton {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .view .itemBox .item {
  gap: 0 40px;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.subContents .view .itemBox dl {
  gap: 0 20px;
}
.subContents .view .itemBox dl * {
  color: #333;
  font-size: 1.8rem;
}
.subContents .view .itemBox dl dt {
  flex-shrink: 0;
  width: 122px;
  font-weight: 500;
}
.subContents .view .itemBox dl dd {
  height: 1.3em;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.subContents .view .itemBox .aBox {
  flex-shrink: 0;
  gap: 0 10px;
}
.subContents .view .itemBox .hoverButton {
  gap: 0 10px;
  padding: 11px 24px;
}
.subContents .view .itemBox .hoverButton img {
  filter: brightness(0) invert(1);
}
.subContents .view .itemBox .hoverButton:hover img {
  filter: inherit;
}
.subContents .view .gridBox {
  gap: 40px 20px;
}
.subContents .view .gridBox .item .img {
  padding: 35.1895% 0;
}
.subContents .view .gridBox .item h5 {
  font-weight: 500;
}
.subContents .view .inquiry {
  position: relative;
}
.subContents .view .inquiry .top {
  width: 100%;
  justify-content: space-between;
  border: 1px solid #ddd;
  padding: 35px 60px;
  position: relative;
  transition: all 0.8s;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .view .inquiry .top::after {
  content: "";
  display: block;
  width: calc(100% - 120px);
  height: 1px;
  background: var(--color-black);
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0s;
}
.subContents .view .inquiry .top * {
  transition: all 0.4s;
}
.subContents .view .inquiry .top h5 {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
}
.subContents .view .inquiry .top i {
  color: var(--color-black);
  font-size: 2rem;
  font-weight: 700;
}
.subContents .view .inquiry .inner {
  width: 100%;
  background: var(--color-white);
  padding: 30px 60px 60px;
  display: none;
}
.subContents .view .inquiry .inquiryBox > p {
  color: var(--color-main);
  font-size: 1.4rem;
  margin: 0 0 20px;
}
.subContents .view .inquiry .inquiryBox dl {
  border-width: 1px;
}
.subContents .view .inquiry .inquiryBox dl * {
  font-size: 1.6rem;
}
.subContents .view .inquiry .inquiryBox dl dt {
  max-width: 230px;
  color: var(--color-main);
}
.subContents .view .inquiry .inquiryBox dl dd textarea {
  height: 150px;
  border-color: #ddd;
}
.subContents .view .inquiry.on .top {
  border-color: var(--color-black);
  border-bottom: none;
}
.subContents .view .inquiry.on .top::after {
  opacity: 1;
  transition: all 0.6s;
}
.subContents .view .inquiry.on .top h6, .subContents .view .inquiry.on .top i {
  color: var(--color-main);
}
.subContents .view .inquiry.on .top i {
  transform: rotateX(180deg);
}
.subContents .view .inquiry.on .inner {
  border: 1px solid black;
  border-top: none;
}
.subContents .careers .top {
  background-image: url("/img/sub/img_careers_01.jpg");
  padding: 135px 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.subContents .careers .top p {
  color: var(--color-white);
  font-size: 3rem;
  font-weight: 700;
}
.subContents .careers .topP {
  color: #666;
  font-size: 1.6rem;
}
.subContents .careers .application ul {
  border-top: 2px solid #eee;
}
.subContents .careers .application ul li,
.subContents .careers .application ul h6 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .careers .application ul h6,
.subContents .careers .application ul h6 .icon {
  flex-shrink: 0;
}
.subContents .careers .application ul li {
  border-bottom: 2px solid #eee;
  padding: 30px 0;
}
.subContents .careers .application ul h6 {
  width: 200px;
  gap: 0 10px;
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.subContents .careers .application ul h6::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background: #ddd;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.subContents .careers .application ul h6 .icon {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .careers .application ul p {
  padding: 0 20px;
}
.subContents .careers .process .itemBox {
  display: grid;
  grid-template-columns: 22.5% 1.5% 22.5% 1.5% 22.5% 1.5% 22.5%;
  align-items: center;
  justify-content: space-between;
}
.subContents .careers .process .itemBox > .arrow {
  opacity: 0.3;
  filter: brightness(1) grayscale(1);
}
.subContents .careers .process .circle {
  text-align: center;
  padding: 50% 0;
  position: relative;
}
.subContents .careers .process .circle * {
  transition: all 0.6s;
}
.subContents .careers .process .circle .inner {
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  border-radius: 50%;
  padding: 15% 10px 25%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .careers .process .circle .inner h6 {
  color: #ccc;
  font-size: 1.8rem;
  font-weight: 700;
}
.subContents .careers .process .circle .inner h5 {
  color: #222;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 10px 0 0;
}
.subContents .careers .process .circle .inner p {
  color: #444;
  font-weight: 500;
}
.subContents .careers .process .circle .icon {
  height: 60px;
  margin: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .careers .process .circle:hover .inner {
  background: var(--color-main);
}
.subContents .careers .process .circle:hover .inner .text *:not(h6) {
  color: var(--color-white);
}
.subContents .careers .process .circle:hover .icon {
  filter: brightness(0) invert(1);
}
.subContents .recruit .information .itemBox {
  border-top: 2px solid #eee;
}
.subContents .recruit .information .item {
  border-bottom: 2px solid #eee;
  padding: 40px 0;
}
.subContents .recruit .information .item h4 {
  color: var(--color-main);
  font-size: 2.8rem;
  font-weight: 700;
  text-align: left;
  margin: 0 0 20px;
}
.subContents .recruit .entry .topP a {
  color: var(--color-main);
  font-weight: 700;
}
.subContents .recruit .entry ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
.subContents .recruit .entry ul li {
  width: 100%;
  height: 60px;
  gap: 0 10px;
  border: 1px solid #ddd;
  border-radius: 60px;
  padding: 0 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .recruit .entry ul .icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background: var(--color-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .recruit .entry ul .icon img {
  width: 52%;
}
.subContents .contact .note {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
.subContents .contact .note * {
  line-height: 1.75;
}
.subContents .contact .note a {
  color: var(--color-main);
  font-weight: 700;
}
.subContents .contact .inquiry h4, .subContents .contact .inquiry .topP {
  text-align: left;
}
.subContents .contact .inquiry .inquiryBox dl dd textarea {
  background: var(--color-white);
}
.subContents .contact .inquiry .inquiryBox .agree {
  margin: 40px 0;
}
.subContents .contact .inquiry .inquiryBox .hoverButton.bottom {
  left: auto;
  margin-top: 0;
  transform: translateX(0);
}