/*
Theme Name: OCTOps_theme
*/

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Zen+Kaku+Gothic+Antique:var(--h3-pc-font-weight),var(--h5-pc-font-weight),500,400,var(--honbun-PC-font-weight),700|Noto+Sans+JP:500,700|Lato:var(--h3-PC-EN-font-weight)|Noto+Sans:500,700|Inter:500");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  margin: 0px;
/*   width: 100%; */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}



/* 全体部 */
.PC {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1264px;
  width: 100%;
  position: relative;
  background-color: #FFF;
}

.PC .all {
  display: flex;
  flex-direction: column;
  position: relative;
  align-self: stretch;
  max-width: 1264px;
  width: 100%;
  flex: 0 0 auto;
}



/* ヘッダー部 */
.PC .header {
  position: fixed;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  max-width: 1264px;
  width: 100%;
  height : 60px;
  flex: 0 0 auto;
  background-color: #fff;
}

.PC .header .frame-header {
  display: flex;
  max-width: 1264px;
  width: 100%;
  height : 60px;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  padding: clamp(3.75px, 1vw, 0.79rem) clamp(15px, 4vw, 3.16rem);
  gap: 10px;
  position: relative;
  background-color: #fff;
}

.PC .header .frame-header .logo {
  position: fixed;
  top: 12.5px;
  z-index: 9999;
}
.PC .header .frame-header .logo :hover {
  opacity: 0.7;
}
.PC .header .frame-header .logo img {
	width: auto;
	height: 35px;
}



.PC .header .frame-header .scroll-text {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(5.625px, 1.5vw, 1.185rem);
  position: relative;
  flex: 0 0 auto;
  padding-left: clamp(127.5px, 34vw, 26.86rem);
}

.PC .header .frame-header .scroll-text .button{ 
  all: unset;
  box-sizing: border-box;
  font-weight: 500;
  color: var(--color-white);
  font-size: clamp(4.5px, 1.2vw, 0.948rem);
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.PC .header .frame-header .scroll-text .text-font {
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: var(--honbun-PC-font-weight);
  color: #000;
  font-size: var(--honbun-PC-font-size);
  letter-spacing: var(--honbun-PC-letter-spacing);
  line-height: var(--honbun-PC-line-height);
  white-space: nowrap;
  font-style: var(--honbun-PC-font-style);
}

.PC .header .frame-header .scroll-text .text-font a {
  color: #000;
}
.PC .header .frame-header .scroll-text .text-font a :hover {
  opacity: 0.7;
}

.PC .header .frame-header .scroll-text .frame-dl-qa {
  display: inline-flex;
  align-items: center;
  gap: clamp(5.625px, 1.5vw, 1.185rem);
  position: relative;
  flex: 0 0 auto;
}
.PC .header .frame-header .scroll-text .frame-dl-qa :hover {
	opacity: 0.7;
}
.PC .header .frame-header .scroll-text .frame-dl-qa .header-button-dl {
  display: inline-flex;
  padding: clamp(2.25px, 0.6vw, 0.474rem) clamp(3.75px, 1vw, 0.79rem);
  flex: 0 0 auto;
  background: linear-gradient(
    270deg,
    rgba(239, 132, 119, 1) 0%,
    rgba(233, 70, 62, 1) 100%
  );
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30px;
  color: #FFF;
  pointer-events: none;
}
.PC .header .frame-header .scroll-text .frame-dl-qa .header-button-qa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.25px, 0.6vw, 0.474rem) clamp(3.75px, 1vw, 0.79rem);
  position: relative;
  flex: 0 0 auto;
  color: #E9463E;
  background-color: #FFF;
  border-radius: 30px;
  border: 2px solid;
  border-color: #E9463E;
  color: #E9463E;
  pointer-events: none;
}
.PC .header .frame-header .frame-menu {
	display: none;
}
@media (min-width: 769px) {
	.html{
		
	}
	.gnav {
		display: none;

	}
}
@media (max-width: 768px) {
	.PC .header .frame-header .scroll-text {
		display: none;
	}
	.PC .header .frame-header .frame-menu {
	    position: fixed;
        top: 10px;
        right: 10px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        z-index: 1000;     /* 他要素より前面に出す */
        pointer-events: auto;
	}
	
	/* ハンバーガーメニューボタン */
	.frame-menu .menu{
	  position: absolute;
	  top: 0px;
	  right: 0px;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
	  width: 40px;
	  height: 40px;
	  background-color: #E9463E;
	  border-radius: 10px;
	  gap: 8px;
	  padding: 0;
	  border: none;
	  cursor: pointer;
	  z-index: 60;

	}
	.frame-menu .menu .menu-line{
		background-color: #FFF;
		height: 2px;
		position: relative;
		transition:transform .3s;
		width: 60%;
	}
		.frame-menu .menu .menu-line.active{
		transform: rotate(45deg);
	}
	.frame-menu .menu .line-top{
    	width: 20px;
	}
	.frame-menu .menu .line-bottom{
		width: 20px;
	}
    .frame-menu .menu .line-top.active{
		transform: rotate(45deg);
		top: 5px;
	}
	.frame-menu .menu .line-bottom.active{
		transform: rotate(-45deg);
		bottom: 5px;
	}
	/*gnav*/
	.gnav {
		background-color: #FFF;
		display: none;
		height: 100%;
		width: 100%;
		z-index: 50;

	}
	.gnav .gnav_wrap {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100%;
		overflow-y: hidden;
		position: fixed;
		inset: 0;
		width: 100%;
		background-color: #FFF;
	}
	.gnav .gnav_wrap .button {
	  all: unset;
	  box-sizing: border-box;
	  font-weight: 700;
	  color: var(--color-white);
	  font-size: clamp(20px, 2.5vw, 2.5vw);;
	  position: relative;
	  width: fit-content;
	  font-family: "Zen Kaku Gothic Antique", Helvetica;
	  text-align: center;
	  letter-spacing: 0;
	  line-height: normal;
	  white-space: nowrap;
	}
	.gnav .gnav_wrap .gnav_menu{
		padding: 5vw 0vw;
	}
	.gnav .gnav_wrap .gnav_menu_item{
		display: flex;
		align-items:　center;
		justify-content: center;
		margin: 20px 0;
	}
	.gnav_menu_item a{
		color: #000;
		font-size: clamp(20px, 2vw, 2vw);
		font-weight: bold;
		padding: 5px;
		text-decoration: none;
		transition: .5s;
	}
	.gnav .gnav_wrap .text-font{
	    position: relative;
	    width: fit-content;
	    font-family: var(--honbun-PC-font-family);
	    font-weight: var(--honbun-PC-font-weight);
  	    color: #000;
	    font-size: clamp(20px, 2vw, 2vw);
	    letter-spacing: var(--honbun-PC-letter-spacing);
	    line-height: clamp(22px, 2.2vw, 2.2vw);
	    white-space: nowrap;
	    font-style: var(--honbun-PC-font-style);
	}
	.gnav .gnav_wrap .text-font :hover{
		opacity: 0.7;
	}
	.gnav .gnav_wrap .frame-dl-qa{
	    display: inline-flex;
		flex-direction: column;
	    justify-content: center;
	    gap: 3vw;
		margin-top: 3vw;
	    position: relative;
	    flex: 0 0 auto;
	}
	.gnav .gnav_wrap .frame-dl-qa a{
        display: contents;
	}
	.gnav .gnav_wrap .frame-dl-qa .menu-button-dl {
	    display: inline-flex;
	    padding: 0.6vw 20px;
	    flex: 0 0 auto;
	    background: linear-gradient(
		270deg,
        rgba(239, 132, 119, 1) 0%,
        rgba(233, 70, 62, 1) 100%
        );
	    align-items: center;
	    justify-content: center;
	    position: relative;
	    border-radius: 30px;
		color: #fff;
	}
	.gnav .gnav_wrap .frame-dl-qa .menu-button-dl:hover{
		opacity: 0.7;
	}
	.gnav .gnav_wrap .frame-dl-qa .menu-button-qa {
	    display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.6vw 20px;
        position: relative;
        flex: 0 0 auto;
        color: #E9463E;
        background-color: #FFF;
        border-radius: 30px;
        border: 2px solid;
        border-color: #E9463E;
		color: #E9463E;
	}
	.gnav .gnav_wrap .frame-dl-qa .menu-button-qa:hover {
	    opacity: 0.7;
    }
}

	


/* フッター部（ダウンロードとお問い合わせ） */
.PC .footer {
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 0 0 auto;
  padding: 0vw 0vw clamp(5.625px, 1.5vw, 1.185rem) 0vw;
}

.PC .footer .trial {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  position: relative;
  flex: 0 0 auto;
}

.PC .footer .trial .frame-trial {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: clamp(15px, 4vw, 3.16rem);
  padding: clamp(18.75px, 5vw, 3.95rem) 0vw;
  position: relative;
  flex: 0 0 auto;
  background-color: #E9463E;
}

.PC .footer .trial .frame-trial .trial-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
}

.PC .footer .trial .frame-trial .trial-text {
  display: flex;
  flex-direction: column;
  width: 60%;
  align-items: center;
  gap: clamp(7.5px, 2vw, 1.58rem);
  position: relative;
}

.PC .footer .trial .frame-trial .trial-text .title-text {
  position: relative;
  align-items: center;
  width: 78vw;
  height: auto;
}

.PC .footer .trial .frame-trial .trial-text .title-text .japanese-title {
  font-size: clamp(24px, 3.5vw, 2.765rem);
  color: #FFF;
  top: 0;
  left: 0;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: clamp(26px, 3.7vw, 2.923rem);
}
.PC .footer .trial .frame-trial .trial-text .english-title {
  color: #FFF;
  position: relative;
  align-self: stretch;
  font-family: "Lato", Helvetica;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 1.738rem);
  line-height: clamp(16px, 2.4vw, 1.896rem);
  text-align: center;
  letter-spacing: 0;
  font-style: var(--h3-PC-EN-font-style);
}

.PC .footer .trial .frame-trial .frame-application {
  display: flex;
  flex-direction: column;
  width: clamp(300px, 60%, 60%);
  align-items: center;
  justify-content: center;
  padding: clamp(11.25px, 3vw, 2.37rem) clamp(15px, 4vw, 3.16rem);
  position: relative;
  flex: 0 0 auto;
  background-color: #FFF;
  border-radius: 10px;
}

.PC .footer .trial .frame-trial .frame-application .application-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(7.5px, 2vw, 1.58rem);
  position: relative;
}
.PC .footer .trial .frame-trial .frame-application .application-text :hover{
	opacity: 0.7;
}
.PC .footer .trial .frame-trial .frame-application .application-text .main-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  font-family: "Zen Kaku Gothic Antique", Helvetica;;
  font-weight: 700;
  color: #000;
  font-size: clamp(12px, 1.3vw, 1.027rem);
  text-align: center;
  letter-spacing: 0;
  line-height: clamp(16px, 1.5vw, 1.185rem);
  font-style: var(--honbun-PC-font-style);
  pointer-events: none;
}

.PC .footer .trial .frame-trial .frame-application .application-text .price {
  position: relative;
  width: 60%;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 400;
  color: #000;
  text-align: center;
  letter-spacing: 0;
  pointer-events: none;
}
.PC .footer .trial .frame-trial .frame-application .application-text .price .span {
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-style: var(--h3-pc-font-style);
  letter-spacing: var(--h3-pc-letter-spacing);
  font-size: clamp(20px, 2.5vw, 1.975rem);
}

.PC .footer .trial .frame-trial .frame-application .application-text .price .text-unit {
  font-family: "Zen Kaku Gothic Antique", Helvetica;;
  font-weight: 700;
  font-size: clamp(8px, 1.2vw, 0.948rem);
  pointer-events: none;
}

.PC .footer .trial .frame-trial .frame-application .application-text .apply-button {
  display: flex;
  width: clamp(7.5px, 2vw, 1.58rem);
  height: auto;
  padding: clamp(3.75px, 1vw, 0.79rem) clamp(24px, 3vw, 2.37rem);
  background: linear-gradient(
    270deg,
    rgba(239, 132, 119, 1) 0%,
    rgba(233, 70, 62, 1) 100%
  );
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30px;
  color: #fff;
}
.PC .footer .trial .frame-trial .frame-application .application-text .apply-button .button-ap {
  all: unset;
  box-sizing: border-box;
  font-weight: 700;
  color: #FFF;
  font-size: clamp(10px, 1.4vw, 1.106rem);
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  pointer-events: none;
}
.PC .footer .frame-dlqa {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: clamp(22.5px, 6vw, 4.74rem) 0vw;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(255, 213, 208, 0.25) 50%,
    rgba(255, 163, 159, 0.25) 100%
  );
}
.PC .footer .frame-dlqa .frame-dlqa-contents {
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: clamp(15px, 4vw, 3.16rem);
  position: relative;
  flex: 0 0 auto;
}

.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-text {
  display: flex;
  flex-direction: column;
  width: 60%;
  align-items: center;
  gap: clamp(7.5px, 2vw, 1.58rem);
  position: relative;
}

.PC .footer .frame-dlqa .frame-dlqa-contents .title-text {
  position: absolute;
  align-items: center;
  width: 78vw;
  height: auto;
}

.PC .footer .frame-dlqa .frame-dlqa-contents .title-text .japanese-title {
  font-size: clamp(24px, 3.5vw, 2.765rem);
  color: #000;
  top: 0;
  left: 0;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: clamp(26px, 3.7vw, 2.923rem);
}
.PC .footer .frame-dlqa .frame-dlqa-contents .english-title {
  color: #E9463E;
  position: relative;
  align-self: stretch;
  font-family: "Lato", Helvetica;;
  font-weight: 700;
  font-size: clamp(12px, 2.2vw, 1.738rem);
  text-align: center;
  letter-spacing: 0;
  font-size: clamp(14px, 2.4vw, 1.896rem);
  font-style: var(--h3-PC-EN-font-style);
}

.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-subtext {
  position: relative;
  width: fit-content;
  margin-top: clamp(6.75px, 1.8vw, 1.422rem);
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 500;
  color: #000;
  font-size: clamp(10px, 1.2vw, 0.948rem);
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}


.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents {
  display: inline-flex;
  align-items: center;
  gap: clamp(15px, 4vw, 3.16rem);
  position: relative;
  flex: 0 0 auto;
}

.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content {
  display: flex;
  flex-direction: column;
  width: clamp(300px, 38vw, 30.02rem);
  height: auto;
  align-items: center;
  gap: clamp(7.5px, 2vw, 1.58rem);
  padding: clamp(15px, 4vw, 3.16rem);
  position: relative;
  background-color: #FFF;
  border-radius: 10px;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content img {
  display: flex;
  width: clamp(220px, 28vw, 22.12rem);
  height: clamp(155px, 18.2vw, 14.378rem);
}

/* .PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .icon {
  display: flex;
  flex-direction: column;
  width: clamp(150px, 18vw, 14.22rem);
  height: clamp(155px, 18.2vw, 14.378rem);
  align-items: center;
  justify-content: center;
  padding: clamp(15px, 4vw, 3.16rem) clamp(11.25px, 3vw, 2.37rem);
  position: relative;
  background-color: #80808040;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .icon .icon-text {
  position: relative;
  top: 0;
  left: 0;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #000;
  font-size: clamp(10px, 1.2vw, 0.948rem);
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
} */

.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .frame-dl-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:  clamp(10px, 1vw, 0.79rem);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .frame-dl-text :hover {
	opacity: 0.7;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .frame-dl-text .dl-text {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  pointer-events: none;
}

.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .frame-dl-text .dl-text .dl-text-h {
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 700;
  color: #000;
  font-size: clamp(14px, 2vw, 1.58rem);
  letter-spacing: var(--h3-pc-letter-spacing);
  line-height: clamp(16px, 2.2vw, 1.738rem);
  white-space: nowrap;
  font-style: var(--h3-pc-font-style);
}


.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .frame-dl-text .dl-subtext {
  position: relative;
  align-self: stretch;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 500;
  color: #000;
  font-size: clamp(8px, 1vw, 0.79rem);
  text-align: center;
  letter-spacing: var(--honbun-PC-letter-spacing);
  line-height: clamp(10px, 1.2vw, 0.948rem);
  font-style: var(--honbun-PC-font-style);
  pointer-events: none;
}

.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .frame-dl-text .frame-dl-button {
  display: flex;
  width: clamp(52.5px, 14vw, 11.06rem);
  height: clamp(15px, 4vw, 3.16rem);
  align-items: center;
  justify-content: center;
  margin-top: clamp(1.875px, 0.5vw, 0.395rem);
  padding: clamp(10px ,1.5vw, 1.185rem) clamp(45px ,4.0vw, 3.16rem);
  position: relative;
  border-radius: 30px;
  background: linear-gradient(
    270deg,
    rgba(239, 132, 119, 1) 0%,
    rgba(233, 70, 62, 1) 100%
  );
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .frame-dl-text .frame-dl-button .dl-button {
  all: unset;
  box-sizing: border-box;
  font-weight: 700;
  color: #FFF;
  font-size: clamp(8px, 1.2vw, 0.948rem);
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .frame-dl-text .frame-dl-button .dl-button :hover {
	opacity: 0.7;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .dl-content .frame-dl-text .frame-dl-button .dl-button a {
  color: #FFF;
}

.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content {
  display: flex;
  flex-direction: column;
  width: clamp(300px, 38vw, 30.02rem);
  height: auto;
  align-items: center;
  gap: clamp(7.5px, 2vw, 1.58rem);
  padding: clamp(15px, 4vw, 3.16rem);
  position: relative;
  background-color: #FFF;
  border-radius: 10px;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content img {
  display: flex;
  width: clamp(150px, 18vw, 14.22rem);
  height: clamp(155px, 18.2vw, 14.378rem);
}
/* .PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content .icon {
  display: flex;
  flex-direction: column;
  width: clamp(150px, 18vw, 14.22rem);
  height: clamp(155px, 18.2vw, 14.378rem);
  align-items: center;
  justify-content: center;
  padding: clamp(15px, 4vw, 3.16rem) clamp(11.25px, 3vw, 2.37rem);
  position: relative;
  background-color: #80808040;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content .icon .icon-text {
  position: relative;
  top: 0;
  left: 0;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #000;
  font-size: clamp(10px, 1.2vw, 0.948rem);
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
} */
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content .frame-qa-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 0.79rem);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content .frame-qa-text :hover {
	opacity: 0.7;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content .frame-qa-text .qa-text {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  pointer-events: none;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content .frame-qa-text .qa-text .qa-text-h {
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 700;
  color: #000;
  font-size: clamp(14px, 2vw, 1.58rem);
  letter-spacing: var(--h3-pc-letter-spacing);
  line-height: clamp(16px, 2.2vw, 1.738rem);
  white-space: nowrap;
  font-style: var(--h3-pc-font-style);
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content .frame-qa-text .qa-subtext {
  position: relative;
  align-self: stretch;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 500;
  color: #000;
  font-size: clamp(8px, 1vw, 0.79rem);
  text-align: center;
  letter-spacing: var(--honbun-PC-letter-spacing);
  line-height: clamp(10px, 1.2vw, 0.938rem);
  font-style: var(--honbun-PC-font-style);
  pointer-events: none;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content .frame-qa-text .frame-qa-button {
  display: flex;
  width: clamp(52.5px, 14vw, 11.06rem);
  height: clamp(15px, 4vw, 3.16rem);
  align-items: center;
  justify-content: center;
  margin-top: clamp(1.875px, 0.5vw, 0.395rem);
  padding: clamp(10px ,1.5vw, 1.185rem) clamp(45px ,4.0vw, 3.16rem);
  position: relative;
  border: 2px solid;
  border-radius: 30px;
  border-color: #E9463E;
  background-color: #FFF;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content .frame-qa-text .frame-qa-button .qa-button {
  all: unset;
  box-sizing: border-box;
  font-weight: 700;
  color: #E9463E;
  font-size: clamp(8px, 1.2vw, 0.948rem);
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents .qa-content .frame-qa-text .frame-qa-button .qa-button a {
  color: #E9463E;
}

/* フッター部（ヘッダーと同様） */
.PC .footer .sub-footer {
  display: flex;
  flex-direction:column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  height : clamp(18.75px, 5vw, 3.95rem);
  flex: 0 0 auto;
  background-color: #FFF;
  gap: clamp(0.75px, 0.2vw, 0.158rem);
}
.PC .footer .sub-footer .frame-footer {
  display: flex;
  width: 100%;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  padding: clamp(3.75px, 1vw, 0.79rem) clamp(16.875px, 4.5vw, 3.555rem) 0vw clamp(16.875px, 4.5vw, 3.555rem);
  gap: clamp(30px, 8vw, 6.32rem);
  position: relative;
}
.PC .footer .sub-footer .frame-footer .logo {
  position: relative;
}
.PC .footer .sub-footer .frame-footer .logo :hover {
	opacity: 0.7;
}
.PC .footer .sub-footer .frame-footer .logo img {
	width: clamp(41.25px, 11vw, 8.69rem);
	height: auto;
}
.PC .footer .sub-footer .frame-footer .scroll-text {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(5.625px, 1.5vw, 1.185rem);
  position: relative;
  flex: 0 0 auto;
}
.PC .footer .sub-footer .frame-footer .scroll-text .text-font {
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 700;
  color: #000;
  font-size: var(--honbun-PC-font-size);
  letter-spacing: var(--honbun-PC-letter-spacing);
  line-height: var(--honbun-PC-line-height);
  white-space: nowrap;
  font-style: var(--honbun-PC-font-style);
}
.PC .footer .sub-footer .frame-footer .scroll-text .text-font :hover {
	opacity: 0.7;
}
.PC .footer .sub-footer .frame-footer .scroll-text .text-font a {
	color: #000;
}

.PC .footer .sub-footer .frame-footer .scroll-text .button{ 
  all: unset;
  box-sizing: border-box;
  font-weight: 500;
  color: var(--color-white);
  font-size: clamp(4.5px, 1.2vw, 0.948rem);
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}
.PC .footer .sub-footer .frame-footer .scroll-text .frame-dl-qa {
  display: inline-flex;
  align-items: center;
  gap: clamp(5.625px, 1.5vw, 1.185rem);
  position: relative;
  flex: 0 0 auto;
}
.PC .footer .sub-footer .frame-footer .scroll-text .frame-dl-qa :hover {
	opacity: 0.7;
}
.PC .footer .sub-footer .frame-footer .scroll-text .frame-dl-qa .footer-button-dl {
  display: inline-flex;
  padding: clamp(2.25px, 0.6vw, 0.474rem) clamp(3.75px, 1vw, 0.79rem);
  flex: 0 0 auto;
  background: linear-gradient(
    270deg,
    rgba(239, 132, 119, 1) 0%,
    rgba(233, 70, 62, 1) 100%
  );
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30px;
  color: #FFF;
}
.PC .footer .sub-footer .frame-footer .scroll-text .frame-dl-qa .footer-button-dl .button {
	pointer-events: none;
}
.PC .footer .sub-footer .frame-footer .scroll-text .frame-dl-qa .footer-button-qa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.25px, 0.6vw, 0.474rem) clamp(3.75px, 1vw, 0.79rem);
  position: relative;
  flex: 0 0 auto;
  color: #E9463E;
  background-color: #FFF;
  border-radius: 30px;
  border: 2px solid;
  border-color: #E9463E;
  color: #E9463E;
}
.PC .footer .sub-footer .frame-footer .scroll-text .frame-dl-qa .footer-button-qa .button {
	pointer-events: none;
}

.PC .footer .sub-footer .frame-copyright {
  display: flex;
  width: 100%;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  padding: 0.1vw clamp(16.5px, 4.4vw, 3.476rem) 0.1vw clamp(16.5px, 8.4vw, 6.636rem);;
  position: relative;
}
.PC .footer .sub-footer .frame-copyright .company-text {
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 500;
  color: #000;
  font-size: clamp(3px, 0.8vw, 0.632rem);
  letter-spacing: 0;
  white-space: nowrap;
}
.PC .footer .sub-footer .frame-copyright .copyright-text {
  position: relative;
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 500;
  color: #000;
  font-size: clamp(3px, 0.8vw, 0.632rem);
  letter-spacing: 0;
  white-space: nowrap;
}


@media (max-width: 768px) {
.PC .footer .frame-dlqa .frame-dlqa-contents .dlqa-contents {
  display: flex;
  flex-direction: column;
}
.PC .footer .sub-footer {
  gap: 3vw;
}

.PC .footer .sub-footer .frame-footer {
  flex-direction: column;
  gap: 4vw;
}
.PC .footer .sub-footer .frame-footer .logo img {
	margin: 2vw 0vw;
	width: clamp(120px, 20vw, 20vw);
	height: auto;
}
.PC .footer .sub-footer .frame-footer .scroll-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vw;
}
.PC .footer .sub-footer .frame-footer .scroll-text .button{
	font-size: clamp(15px, 3vw, 3vw);  
	font-weight: 700;
}
.PC .footer .sub-footer .frame-footer .scroll-text .frame-dl-qa {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2vw;
  gap: 2vw;
  position: relative;
  flex: 0 0 auto;
  width: 100%;
}
.PC .footer .sub-footer .frame-footer .scroll-text .frame-dl-qa .footer-button-dl {
  display: inline-flex;
  padding: 0.6vw 2vw;
  width: clamp(150px, 28vw, 28vw);
  flex: 0 0 auto;
}
.PC .footer .sub-footer .frame-footer .scroll-text .frame-dl-qa .footer-button-qa {
  display: inline-flex;
  padding: 0.6vw 5.5vw;
  width: clamp(150px, 28vw, 28vw);
  flex: 0 0 auto;
}
.PC .footer .sub-footer .frame-copyright {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.PC .footer .sub-footer .frame-copyright .company-text {
  font-size: 2.5vw;
  margin-top: 2vw;
}
.PC .footer .sub-footer .frame-copyright .copyright-text {
  font-size: 2vw;
  margin-bottom: 4vw;
}
}


/* 利用シーン、詳細の上部フレーム */
.PC .frame-used-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding: clamp(37.5px, 10vw, 7.9rem) 0px;
  position: relative;
  flex: 0 0 auto;
  background-color: #000;
  margin-top: 60px;
}
.PC .frame-used-header .used-header-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
}

.PC .frame-used-header .used-header-title {
  color: #FFF;
  position: relative;
  top: 0;
  left: 0;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 2.37rem);
  text-align: center;
  letter-spacing: 0;
  line-height: 0px;
}



/* 一覧表示機能 */
.frame-card {
  display:flex;
  justify-content: center;
  width:100%;  
}
.frame-card  a{
	display: contents;
}
.frame-card .card {
  display:flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(6.75px, 1.8vw, 1.422rem);
  width: clamp(350px, 60%, 1000px);  
  padding: clamp(6px, 1.6vw, 1.264rem) clamp(4.5px, 1.2vw, 0.948rem);
  background: #FFF;
  border: 1.4px solid #EEEEEE;
  border-radius:6px;
  overflow:hidden;
  margin-bottom: clamp(7.5px, 2vw, 1.58rem);
}
.card:hover{
  background-color: #f4f4f4; 
}
/* 左側 */
.card-left {
  flex: 0 0 clamp(150px, 20vw, 300px);  
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center ;
  min-width: 0;
}
.card-left a {
  width: 100%;     /* 親幅に合わせる（重要） */
}
/* 画像 */
.left-img2 {
  width: 100%; /* .card-left の幅に合わせる */
  height: auto;
  /* 必要に応じて高さを指定する場合はここで行う（例 height: 80px;） */
}
.left-img2 img {
  display: block;
  width: 100%;     /* 親幅に合わせる（重要） */
  height: auto;    /* 縦横比を維持して縮小する */
  object-fit: cover;
  border-radius: 10px;
}
/* 右側 */
.card-right{
  flex:1 1 auto;
  min-width:0;
}
/* カテゴリー */
.right-category {
  display: inline-block;
  background: #F9E7ED;    /* ラベルの背景色（ここを変更） */
  color: #E9463E;         /* ラベルの文字色（ここを変更） */
  font-size: clamp(10px, 1.2vw, 0.948rem);
  font-weight: 600;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  padding: clamp(4px, 0.4vw, 0.316rem) clamp(6px, 0.6vw, 0.3634rem);      /* 縦/横の余白 */
  border-radius: 10px;    /* ピル型にする */
  margin-bottom: clamp(4.5px, 1.2vw, 0.948rem);     /* タイトルとの間隔 */
}

.right-title {
  font-size: clamp(12px, 1.8vw, 1.422rem);
  color: #000;
  font-weight: 700;
  line-height: clamp(14px, 2vw, 1.58rem);
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  margin-bottom: clamp(4.5px, 1.2vw, 0.948rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* サブテキスト */
.right-subtitle {
  font-size: clamp(10px, 1.2vw, 0.948rem);
  color: #000;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  line-height: clamp(12px, 1.4vw, 1.106rem);
  display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
.frame-card .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  width: clamp(300px, 60%, 1000px);  
}
/* 左側 */
.card-left {
  display:flex;
  width: 90%;
  flex: 0 0 clamp(150px, 20vw, 20vw);  
}
.left-img2 {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.card-right{
  width: 90%;
}
}


/* ページネーション */
.pagination-wrapper {
    text-align: center; /* ページネーション全体を中央寄せ */
    margin: clamp(7.5px, 2vw, 1.58rem) 0vw 0vw 0vw;
}
.pagination-wrapper ul {
    display: inline-flex !important; /* 横並びにする */
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination-wrapper ul li {
    margin: 0 clamp(1.875px, 0.5vw, 0.395rem);
}
.pagination-wrapper ul li a,
.pagination-wrapper ul li span {
    display: block;
    padding: 10px 14px;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 4px; /* 角を少し丸くする */
    text-decoration: none;
    font-weight: 600;
	font-family: "Zen Kaku Gothic Antique", Helvetica;
    background-color: #FFF;
    transition: background-color 0.3s ease;
	margin: 0.4vw 0px;
}

.pagination-wrapper ul li span dots {
    border: none !important;      /* 枠線を消す */
    background: transparent !important; /* 背景を透明に */
    color: #555;                  /* 色はお好みで調整 */
    cursor: default;              /* カーソルをデフォルトに */
    padding: 0.8vw 1.2vw;            /* 他のページ番号と揃える */
}
/* ホバー時の背景色 */
.pagination-wrapper ul li a:hover {
    background-color: #E9463E;
    color: #fff;
    border-color: #E9463E;
}
/* 現在のページの背景色を赤く */
.pagination-wrapper ul li .current {
    background-color: #E9463E;
    color: #fff;
    border-color: #E9463E;
    cursor: default;
}



/* フィルタ機能 */
.frame-buttons {
  display: flex;
  width: 100%;
  justify-content: center;
}
.tab-buttons2 {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: clamp(88.48px, 7vw, 5.53rem) 20px;
}

.tab-buttons2 .btn2 {
  display: inline-flex;            /* テキストとアイコンを中央揃えにする */
  align-items: center;
  justify-content: center;
  gap: 8px;                        /* アイコンとテキストの間隔 */
  width: 150px;                    /* 横幅を固定（ここを調整） */
  height: 42px;                    /* 必要なら高さ固定 */
  padding: 0 16px;                 /* 幅固定なら左右paddingは小さめに */
  white-space: nowrap;             /* 改行を防ぐ */
  overflow: hidden;                /* はみ出しを隠す */
  text-overflow: ellipsis;         /* はみ出す場合に省略記号 */
  border: 1px solid #000;
  border-radius: 26px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-size: 15px;
  background-color: #FFF;
  transition: background-color 0.3s;
  cursor: pointer;
  text-decoration: none;           /* aタグの下線を消す */
  color: inherit;                  /* 親の文字色を継承 */
  box-sizing: border-box;
}
.sp-buttons {
	display: contents;
}
@media (max-width: 768px) {
.frame-buttons {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 6vw 0px;
}
.tab-buttons2 {
  display: contents;	
}
.sp-buttons {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 5px;
}
}
/* 製造を選択中 */
.tab-buttons2 .btn2.color1:hover,
.tab-buttons2 .btn2.color1.active {
  background-color: #F5A61D; 
  color: #fff;
  border-color: transparent;
}
/* .tab-buttons2 .btn2.color1:hover .icon-normal1,
.tab-buttons2 .btn2.color1.active .icon-normal1 {
    content: url("http://octops.jp.testrs.jp/test//wp-content/uploads/2025/09/Group-1.png");
} */


/* 建築を選択中 */
.tab-buttons2 .btn2.color2:hover,
.tab-buttons2 .btn2.color2.active {
  background-color: #3C4FA1; 
  color: #fff;
  border-color: transparent;
}
/* .tab-buttons2 .btn2.color2:hover .icon-normal2,
.tab-buttons2 .btn2.color2.active .icon-normal2 {
    content: url('/wp-content/uploads/2025/09/icon02-1.png');
} */

/* 物流業を選択中 */
.tab-buttons2 .btn2.color3:hover,
.tab-buttons2 .btn2.color3.active {
  background-color: #349463; 
  color: #fff;
  border-color: transparent;
}
/* .tab-buttons2 .btn2.color3:hover .icon-normal3,
.tab-buttons2 .btn2.color3.active .icon-normal3 {
    content: url('/wp-content/uploads/2025/09/Group-2.png');
} */

/* 公共施設を選択中 */
.tab-buttons2 .btn2.color4:hover,
.tab-buttons2 .btn2.color4.active {
  background-color: #31A3DC; 
  color: #fff;
  border-color: transparent;
}
/* .tab-buttons2 .btn2.color4:hover .icon-normal4,
.tab-buttons2 .btn2.color4.active .icon-normal4 {
    content: url('/wp-content/uploads/2025/09/icon04.png');
} */

.tab-buttons2 img {
  padding-right: 6px;
  height: 15px;
}
.tab-buttons2 a {
  color: #000;
}

/* 利用シーン一覧画面の一覧タイトル */
.frame-category-title{
  display:flex;
  justify-content: center;
  width:100%;  
}
.frame-category-title .category-title{
  display:flex;
  justify-content: flex-start;
  width: clamp(300px, 60%, 60%);
  margin-bottom: clamp(5px, 2vw, 1.58rem);
  font-weight: 600;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  
}
.blank2 {
  margin: clamp(11.25px, 3vw, 2.37rem);
}

/* single */
.top-category {
  display: flex;
  justify-content: center;
  width: clamp(120px, 10vw, 0.79rem);
  background: #F9E7ED; 
  color: #E9463E;    
  font-size: clamp(14px, 1.2vw, 0.948rem);
  font-weight: 600;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  padding: clamp(5px, 0.4vw, 0.316rem) clamp(12px, 0.8vw, 0.632rem);  
  margin-left: clamp(37.5px, 10vw, 7.9rem);
  border-radius: 30px; 
  margin-top: clamp(37.5px, 10vw, 7.9rem);
}

.row-cards {
  display: flex;
  justify-content: center;
  gap: clamp(9,75px, 2.6vw, 2.054rem);
  flex-wrap: nowrap;
  width: 60%;
  margin: 0 auto;
  box-sizing: border-box;
}
.row-cards a{
  display: contents;
  color: #000;
}
.related-articles{
  flex: 0 0 clamp(93.75px, 25vw, 19.75rem);
  box-sizing: border-box;
  background: #FFF;
  margin-bottom: 0px;
/*   border: 1px solid #000; */
  border-radius: 10px;
  padding: 10px 10px 0px 10px;
}
.related-articles:hover {
  background-color: #f4f4f4;
}
/* 画像サイズ調整例 */
.thumnail-img2 {
  margin-bottom: clamp(3.75px, 1vw, 0.79rem);
}
.thumnail-img2 img {
  border-radius: clamp(3.75px, 1vw, 0.79rem); 
  width: 100%;
  height: auto;
  display: block;
}
.articles-title2 {
  font-size: clamp(14px, 1.6vw, 1.264rem);
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 700;
  line-height:clamp(16px, 1.8vw, 1.422rem);
  margin-bottom: clamp(3.75px, 1vw, 0.79rem);
  color: #000;
}
.articles-excerpt2{
  font-size: clamp(10px, 1.2vw, 0.948rem);
  line-height: clamp(12px, 1.4vw, 1.106rem);
  margin-bottom: clamp(3.75px, 1vw, 0.79rem);
  display: -webkit-box;
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 600;
  -webkit-box-orient: vertical;   /* 縦方向にボックスを並べる */
  -webkit-line-clamp: 4;          /* 表示する行数を指定（ここでは3行） */
  overflow: hidden;               /* はみ出したテキストを隠す */
  text-overflow: ellipsis;        /* 省略記号を表示 */
}
.frame-article-zero{
	display: flex;
	justify-content: center;
	align-items: center;
}
.frame-article-zero .article-zero {
  font-size: clamp(12px, 1.6vw, 1.264rem);
  font-weight: 500;
  line-height: clamp(14px, 1.8vw, 1.422rem);
  font-family: "Zen Kaku Gothic Antique", Helvetica;
}
@media (max-width: 768px) {
.row-cards {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  width: 80%;
}
.related-articles{
  border: 1.4px solid #EEEEEE;
  border-radius: 10px;
  padding: 10px;
}
/* 画像サイズ調整例 */
.thumnail-img2 {
  margin-bottom: 1vw;
  display: flex;
  justify-content: center;
}
.thumnail-img2 img {
  width: 100%;
}
.articles-title2 {
  font-size: clamp(14px, 1.8vw, 1.8vw);
  margin: clamp(8px, 2.2vw, 2.2vw) 0vw;
}
.articles-excerpt2{
  font-size: clamp(12px, 1.2vw, 1.2vw);
  line-height: clamp(14px, 1.5vw, 1.5vw);
  margin-bottom: 2.0vw;
}
}

/* パンくずリスト */
.breadcrumbs {
  text-align: right;      /* テキスト全体を右寄せ */
  font-size: clamp(8px, 1vw, 0.79rem);
  margin: clamp(3.75px, 1vw, 0.79rem) clamp(7.5px, 2vw, 1.58rem);
  font-family: "Zen Kaku Gothic Antique", Helvetica;
  font-weight: 700;
}
.breadcrumbs a {
  color: #333;
  text-decoration: underline;
  text-underline-offset: clamp(0.75px, 0.2vw, 0.158rem);
  padding-top: clamp(0.75px, 0.2vw, 0.158rem);
}
.breadcrumbs :hover {
  opacity: 0.7;
}
.breadcrumbs .current {
  color: #333;
}


/* スライダー作成 */ 
.simple-slider {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    outline: none; /* tabindex 用のフォーカスは JS/デザインで調整してください */
}

/* 表示領域（1枚だけ見せる） */
.simple-slider__frame {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* トラック：横並び、移動は transform で行う */
.simple-slider__track {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.36s ease;
    will-change: transform;
    box-sizing: border-box;
}

/* 各スライド（frame-card を包む要素） */
/* frame-card の内部構造は変更しないが、幅の指定はここで行う */
.simple-slider__track > .frame-card {
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* 上部ナビ（もしテンプレにあるなら） */
.simple-slider__nav.simple-slider__nav--prev,
.simple-slider__nav.simple-slider__nav--next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    padding: 6px 8px;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 左右ボタン位置 */
.simple-slider__nav.simple-slider__nav--prev {
    left: 8px;
}
.simple-slider__nav.simple-slider__nav--next {
    right: 8px;
}

/* 下部コントロール行（ボタン・ドット） */
.simple-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    box-sizing: border-box;
}

/* ドット領域を中央に広げる */
.simple-slider__dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
/*     flex: 1; */
}

/* 下部ナビ（左右小ボタン） */
.simple-slider__nav.simple-slider__nav--prev-bottom,
.simple-slider__nav.simple-slider__nav--next-bottom {
    background: transparent;
    border: none;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

/* ドット */
.simple-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* アクティブなドット */
.simple-slider__dot.is-active {
    background: #333;
}

/* 無効（先頭／末尾でボタンを無効にする場合の見た目） */
.simple-slider__nav:disabled {
    opacity: 0.45;
    cursor: default;
}

/* 簡易レスポンシブ調整（小さな画面で高さやボタンサイズを調整） */
@media (max-width: 480px) {
    .simple-slider__nav.simple-slider__nav--prev,
    .simple-slider__nav.simple-slider__nav--next {
        padding: 4px 6px;
    }
    .simple-slider__nav.simple-slider__nav--prev-bottom,
    .simple-slider__nav.simple-slider__nav--next-bottom {
        padding: 5px 6px;
    }
    .simple-slider__dot {
        width: 9px;
        height: 9px;
    }
}