@charset "utf-8";

/*---------------------------------------------
    base settings
*/
:root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
}
@media screen and (max-width: 1000px) {
  :root {
    font-size: 1vw;
    --s1: 0.6rem;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP","Hiragino Sans","Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #262843;
  min-width: 1100px;
  word-break: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ul,
ol,
dl,
p,
img,
form,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  border: 0;
}
ul li,
ol li {
  list-style: none;
  line-height: 1.5;
  position: relative;
}
ul:not([class]) li {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
ul:not([class]) li::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-color: #315B7F;
  position: absolute;
  top: 0.6rem;
  left: 0;
}
ol:not([class]) li {
  padding-left: 1.5em;
  margin-bottom: 1em;
  counter-increment: number;
}
ol:not([class]) li::before {
  content: counter(number);
  width: 1.6rem;
  color: #fff;
  background-color: #262843;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  position: absolute;
  top: 0.3em;
  left: 0;
}
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP","Hiragino Sans","Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Arial, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: #191D2D;
  transition: opacity 0.6s ease, color 0.6s ease;
}
a:active,
a:hover {
  text-decoration: none;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
  font-weight: normal;
}
small {
  font-size: 80%;
}
p:not([class]) {
  line-height: 2;
}
p:not([class]) a{
  text-decoration: underline;
}
p:not([class]) a:hover{
  opacity:0.6;
}
#low-page{
    background-color: #fff;
    background-image:
    linear-gradient(to right, #f1f1f1 1px, transparent 1px),
    linear-gradient(to bottom, #f1f1f1 1px, transparent 1px);
    background-size: 30px 60px;
    background-attachment: fixed;
}
#low-page p:not([class]) span{
  font-weight:bold;
}
#low-page .sec11 p:not([class]) span{
  border-bottom:2px solid #ffa3cc;
  font-weight: bold;
}
p+p {
  margin-top: 1em;
}
* {
  box-sizing: border-box;
}
.sp_br {
  display: none;
}
.pc_br {
  display: inline;
}
@media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
}
/*---------------------------------------------
    Emphasize 
*/
.txt_bold {
  font-weight: 700;
}
.txt_blue {
  font-weight: 700;
  color:#315B7F;
}
/*---------------------------------------------
    layout center
*/
.l-center {
}
/*---------------------------------------------
    layout stack
*/
.l-stack-small {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
/*---------------------------------------------
    layout grid
*/
.l-grid-two {
  --minimum: calc((100% - var(--s2)) / 2);
  display: grid;
  grid-gap: var(--s2);
}
@supports (width: min(var(--minimum), 100%)) {
  .l-grid-two {
    grid-template-columns: repeat(auto-fit, minmax(min(var(--minimum), 100%), 1fr));
  }
}
/*---------------------------------------------
    toggle sp
*/
.toggle-sp-content {
  display: block;
}
/*---------------------------------------------
    pankuzu
*/
#pankuzuWrap {
  margin: 0;
  position:absolute;
  color:#fff;
  padding:0 2rem;
  width:100%;
}
#pankuzu {
  font-size: 1.3rem;
  padding: 1.2rem 0;
  line-height: 1.4;
}
#pankuzu a {
  color: inherit;
  text-decoration: underline;
}
#pankuzu a:hover {
  text-decoration: none;
}
#pankuzu span {
  color: inherit;
  font-weight: inherit;
}
/*---------------------------------------------
    low-page common heading
*/
#low-page h1:not([class]) {
  width: 100%;
  font-size: 4.8rem;
  font-weight: 900;
  text-align: center;
  position: relative;
  margin: 4rem auto;
  color:#fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
#low-page h1:not([class])::before {
  content: "";
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: var(--site-color09);
  position: absolute;
  top: -6rem;
  left: 0;
  z-index: 3;
}
#low-page h1:not([class])::after {
  content: "";
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: var(--site-color09);
  position: absolute;
  bottom: -6rem;
  right: 0;
  z-index: 3;
}
#low-page h2:not([class]) {
  width: 100%;
  margin-block: 6rem 4rem;
  padding: var(--s3);
  font-size: 3.8rem;
  font-weight: 700;
  background: #262843;
  color:#fff;
  border-radius:10px;
}
#low-page h2:not([class]) a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
  background: url('./img/sec04-a.png') no-repeat center right / auto 30px;
  color:#fff;
}
#low-page h2:not([class]) a:hover {
  opacity: .6;
}
#low-page h3:not([class]) {
  width: 100%;
  margin-block: 3rem 2rem;
  padding: var(--s2);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #315B7F;
  color:#315B7F;
}
#low-page h3:not([class]) a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
  background: url('./img/title-catch-a.png') no-repeat center right / auto 25px;
  color:#315B7F;
}
#low-page h3:not([class]) a:hover {
  opacity: .6;
}
#low-page h4:not([class]) {
  width: 100%;
  margin-block: 3rem 2rem;
  padding: var(--s2);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  background:#F0F0F0;
  border-radius:10px;
}
#low-page h4:not([class]) a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
  background: url('./img/title-catch-a.png') no-repeat center right / auto 25px;
}
#low-page h4:not([class]) a:hover {
  opacity: .6;
}
#low-page h5:not([class]) {
  width: 100%;
  margin-block: 3rem 2rem;
  padding: var(--s1) var(--s1) var(--s1) var(--s2);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  border-left: 5px solid #315B7F;
}
#low-page h5:not([class]) a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
  background: url('./img/title-catch-a.png') no-repeat center right / auto 25px;
}
#low-page h5:not([class]) a:hover {
  opacity: .6;
}
/*---------------------------------------------
center-img
*/
.low-center-img-box {
  display: flow-root;
  margin-block: 4rem;
}
.low-center-img {
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: var(--s2);
  text-align: center;
}
.low-center-img-catch {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color:#315B7F;
}
/*---------------------------------------------
left-ig
*/
.low-left-ig-box {
  display: flow-root;
  margin-block: 4rem;
}
/* 画像回り込みパーツ内のリスト崩れを防止 */
.low-left-ig-box ul:not([class]),
.low-left-ig-box ol:not([class]),
.low-right-ig-box ul:not([class]),
.low-right-ig-box ol:not([class]) {
  display: flow-root;
}
.low-left-ig {
  width: 40%;
  margin-right: var(--s4);
  padding-bottom: var(--s1);
  text-align: center;
  float: left;
}
.low-left-ig-catch {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color:#315B7F;
}
/*---------------------------------------------
right-img
*/
.low-right-ig-box {
  display: flow-root;
  margin-block: 4rem;
}
.low-right-ig {
  width: 40%;
  margin-left: var(--s3);
  padding-bottom: var(--s1);
  text-align: center;
  float: right;
}
.low-right-ig-catch {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color:#315B7F;
}
/*---------------------------------------------
    Caption settings
*/
.caption {
  margin-top: 0.8em;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  word-break: break-all;
}
.caption a {
  color: var(--site-color06);
}
/*---------------------------------------------
    Table settings
*/
table {
  width: 100%;
  line-height: 1.5;
  border-collapse: collapse;
  border-top: 1px solid #999;
  border-left: 1px solid #999;
}
table th,
table td {
  padding: var(--s1);
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  word-break: break-word;
}
table th {
  background-color: #F0F0F0;
  text-align: center;
}
table td {
  background-color: #fff;
}
/*---------------------------------------------
    low-page table
*/
#low-page table {
  margin-block: 4rem;
}
#low-page .jp-sim-pcard table {
  margin-block: 0;
}
/*---------------------------------------------
    low-page list
*/
#low-page ul:not([class]),
#low-page ol:not([class]) {
  margin-block: 4rem;
}
/*---------------------------------------------
    Button Internal settings
*/
.btn-internal {
  max-width: 56rem;
  width: 100%;
  margin: 6rem auto;
  position: relative;
}
.btn-internal a {
  width: 100%;
  margin: 0;
  padding: var(--s3) var(--s6) var(--s3) var(--s6);
  background: #315B7F url("./img/btn-internal-a.png") no-repeat center right 2rem/auto 30px;
  display: block;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
  border-radius:100rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  font-size:2rem;
}
.btn-internal::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--site-color03);
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.8rem, 0.8rem);
}
.btn-internal:hover a {
  transform: translate(0.8rem, 0.8rem);
}
/*---------------------------------------------
    Button Web settings
*/
.btn-web {
  max-width: 56rem;
  width: 100%;
  margin: var(--s2) auto;
  position: relative;
  z-index: 5;
}
.btn-web a {
  width: 100%;
  margin: 0;
  padding: var(--s2) var(--s6) var(--s2) var(--s5);
  background: #EC4B23 url("./img/btn-web-a.png") no-repeat center right 2rem/auto 30px;
  display: block;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
	border-radius:100rem;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
	font-size:2rem;
}
.btn-web2 a {
  background: #315B7F url("./img/btn-internal-a.png") no-repeat center right 2rem/auto 30px;
}
.btn-web::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--site-color03);
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.8rem, 0.8rem);
}
.btn-web:hover a {
  transform: translate(0.8rem, 0.8rem);
}
/*---------------------------------------------
    Text Link settings
*/
.btn-link {
  text-align: right;
  margin:3rem auto;
}
.btn-link a {
  margin: 0;
  padding: 1rem 2rem 1rem 0;
  background: url("./img/arrow-01-black-right.svg") no-repeat center right/auto 1em;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
}
.btn-link a:hover {
  text-decoration: none;
  opacity: 0.6;
}
/*---------------------------------------------
    Tel Link settings
*/
.btn-tel {
  display: none;
}

/*---------------------------------------------
  Page top Button
*/
.page-top {
  width: 6rem;
  height: 6rem;
  position: fixed;
  right: var(--s2);
  bottom: var(--s2);
  z-index: 10;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out;
}
.page-top.js-show {
  opacity: 1;
}
.page-top__link {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
  /*---------------------------------------------
      sp base settings
  */
  :root {
    font-size: 2.6666666667vw;
  }
  body {
    min-width: auto;
  }
  .sp_br {
    display: inline;
  }
  .pc_br {
    display: none;
  }
  /*---------------------------------------------
      sp layout center
  */
  .l-center {
  }
  /*---------------------------------------------
      sp layout grid
  */
  .l-grid-two {
    grid-template-columns: 100%;
  }
  /*---------------------------------------------
      sp toggle sp
  */
  .toggle-sp-content {
    display: none;
  }
  /*---------------------------------------------
    pankuzu
  */
  #pankuzuWrap {
    position: absolute;
    overflow: auto;
    margin: 0 auto var(--s3);
    padding: 1.0rem;
    white-space: nowrap;
  }
  #pankuzu {
    padding: 0.7rem 0;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    line-height: 1.2;
  }
  #pankuzu a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
  #pankuzu a:hover {
    text-decoration: underline;
  }
  #pankuzu span:last-child {
    margin-right: calc(var(--s1) + var(--s-2));
  }
  #pankuzu a span:last-child {
    margin-right: 0;
  }
  /*---------------------------------------------
    low-page common heading
  */
  #low-page h1:not([class]) {
    padding:0;
    font-size: 2.6rem;
    line-height: 1.5;
    margin: 3rem auto;
	text-wrap: pretty;
  }
  #low-page h1:not([class])::before,
  #low-page h1:not([class])::after {
    width: 6rem;
    height: 6rem;
  }
  #low-page h1:not([class])::before {
    top: -4rem;
  }
  #low-page h1:not([class])::after {
    bottom: -4rem;
  }
  #low-page h2:not([class]) {
    font-size: 2.3rem;
	line-height:1.5;
	background:#262843;
	margin-block: 6rem 2rem;
  }
  #low-page h3:not([class]) {
    font-size: 2.1rem;
  }
  #low-page h4:not([class]) {
    font-size: 1.9rem;
  }
  #low-page h5:not([class]) {
    font-size: 1.8rem;
  }
  /*---------------------------------------------
  center-img
  */
  .low-center-img {
    max-width: 100%;
  }
  /*---------------------------------------------
  left-ig
  */
  .low-left-ig {
    width: 100%;
    margin-right: 0;
    padding-bottom: var(--s2);
    float: inherit;
    text-align: center;
  }
  /*---------------------------------------------
  right-img
  */
  .low-right-ig {
    width: 100%;
    margin-left: 0;
    padding-bottom: var(--s2);
    float: inherit;
    text-align: center;
  }
  /*---------------------------------------------
      sp table
  */
  .sp-table-vertical th,
  .sp-table-vertical td {
    width: 100%;
    display: block;
  }
  /*---------------------------------------------
      Button Internal settings
  */
  .btn-internal {
    margin: var(--s3) auto;
  }
  .btn-internal a {
    padding: 2rem 5rem;
    background: #315B7F url("./img/btn-internal-a.png") no-repeat center right 2rem/auto 30px;
	font-size:1.8rem;
  }
  .btn-internal:hover a {
    transform: none;
  }
  /*---------------------------------------------
      Button Web settings
  */
  .btn-web {
    margin: var(--s3) auto;
  }
  .btn-web a {
    padding: 2rem 5rem;
    background: #EC4B23 url("./img/btn-web-a.png") no-repeat center right 2rem/auto 30px;
	font-size: 1.6rem;
  }
  .btn-web2 a {
    background: #315B7F url("./img/btn-internal-a.png") no-repeat center right 2rem/auto 30px;
  }
  .btn-web:hover a {
    transform: none;
  }
  /*---------------------------------------------
  	Btn Link settings
  */
  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    padding: var(--s2) var(--s6) var(--s2) 0;
    background: url("./img/arrow-01-black-right.svg") no-repeat 95% center/auto 1em;
    text-align: right;
    line-height: 1.5;
    display: block;
  }
  .btn-link a:hover {
    opacity: 1;
  }
  .btn-link:hover a {
    transform: none;
  }
  /*---------------------------------------------
  	Button Tel settings
  */
  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 5rem;
    background: #29AC36 url("./img/icon-tel-w.png") no-repeat center right 2rem/auto 30px;
    color: #fff;
    display: block;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s;
	border-radius:100rem;
  }
  .btn-tel::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--site-color03);
    border-width: 0 1px 1px 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(0.8rem, 0.8rem);
  }
  .btn-tel:hover a {
    transform: none;
  }
}

.footer-area.footer-design {
  padding: var(--s12) 0 0;
  background: #fff;
  position:relative;
}
.footer-area.footer-design a:hover{
  opacity:0.6;
}

.footer-area.footer-design .footer-main {
  width: calc(100% - var(--s10));
  max-width: 128rem;
  margin: 0 auto;
  display: flex;
  gap: var(--s8);
  padding: 0 0 var(--s7);
  box-sizing: border-box;
}

.footer-area.footer-design .footer-brand {
  width: 24%;
}

.footer-area.footer-design .footer-area-logo {
  width: 100%;
  margin: 0 0 var(--s2);
}

.footer-area.footer-design .footer-brand__name {
  margin: 0 0 var(--s1);
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #191D2D;
}

.footer-area.footer-design .footer-brand__address {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.6;
}

.footer-area.footer-design .footer-brand__address a{
  text-decoration:underline;
}

.footer-area.footer-design .footer-brand__icons {
  margin: var(--s3) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: var(--s1);
}

.footer-area.footer-design .footer-brand__icon-item {
  margin: 0;
}

.footer-area.footer-design .footer-brand__icon-link {
  width: 4.8rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #315B7F;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-area.footer-design .footer-brand__icon-link img{
  width: 2.5rem;
  height: auto;
}

.footer-area.footer-design .footer-nav-group {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--s6);
  row-gap: var(--s3);
}

.footer-area.footer-design .footer-box {
  margin: 0;
}

.footer-area.footer-design .footer-box + .footer-box {
  margin-top: 0;
}

.footer-area.footer-design .footer-menu-title {
  margin: 0 0 var(--s1);
  border-bottom:1px solid #bfbfbf;
}

.footer-area.footer-design .footer-menu-title__link {
  padding: 0 0 var(--s1);
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
}

.footer-area.footer-design .toggle-sp-content {
  display: block;
}

.footer-area.footer-design .footer-menu {
  display: block;
  padding: 0;
  margin: 0;
  background: transparent;
}

.footer-area.footer-design .footer-menu__item {
  width: 100%;
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  line-height: 2;
}

.footer-area.footer-design .footer-menu__item.for-sp {
  display: none;
}

.footer-area.footer-design .footer-menu__link {
  padding: var(--s-2) 0;
  background: none;
  text-decoration: none;
}

.footer-area.footer-design .footer-bottom {
  background: var(--lig);
  padding: var(--s2) 0;
}

.footer-area.footer-design .footer-bottom__inner {
  justify-content: center;
}

.footer-area.footer-design .footer-copyright {
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
}

.footer-area.footer-design .footer-copyright__link {
  color: inherit;
}

.footer-area.footer-design .footer-sitemap {
  display: none;
}

.footer-area.footer-design .page-top {
}
/* PC用：横並びのレイアウト設定 */
.footer-area.footer-design .footer-bottom__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 3rem; /* コピーライトとリンクの間隔 */
}

.footer-area.footer-design .footer-copyright {
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
}

/* 追加：スモールリンク群のスタイル */
.footer-area.footer-design .footer-sub-links {
  display: flex;
  gap: 1.5rem; /* リンク同士の間隔 */
}

.footer-area.footer-design .footer-sub-links a {
  font-size: 1.2rem; /* 小さく表示 */
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.footer-area.footer-design .footer-sub-links a:hover {
  text-decoration: underline;
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .footer-area.footer-design {
    padding-top: var(--s10);
    padding-bottom: var(--s10);
  }

  .footer-area.footer-design .footer-main {
    width: calc(100% - var(--s6));
    display: block;
    padding-bottom: var(--s4);
  }

  .footer-area.footer-design .footer-brand {
    width: 100%;
    margin-bottom: var(--s5);
  }

  .footer-area.footer-design .footer-area-logo {
    width: 75%;
	margin-right:auto;
	margin-left:auto;
  }

  .footer-area.footer-design .footer-brand__name {
    font-size: 1.8rem;
	text-align:center;
  }

  .footer-area.footer-design .footer-brand__address {
    font-size: 1.4rem;
	text-align:center;
  }

  .footer-area.footer-design .footer-nav-group {
    display: block;
  }

  .footer-area.footer-design .footer-box + .footer-box {
    margin-top: var(--s2);
  }

  .footer-area.footer-design .footer-menu-title {
    margin: 0;
  }

  .footer-area.footer-design .footer-menu-title__link {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: var(--s2) var(--s6) var(--s2) 0;
    position: relative;
  }

  .footer-area.footer-design .footer-menu-title__link::after {
    content: "";
    width: 2.8rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: var(--s1);
    transform: translateY(-50%) rotate(0deg);
    box-sizing: border-box;
    background: url("./img/gnavi-list-ad.png") no-repeat center / auto 15px;
  }

  .footer-area.footer-design .footer-menu-title__link.is-open::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .footer-area.footer-design .footer-menu-title__link--not-toggle::after {
    background: url("./img/gnavi-list-a.png") no-repeat center / auto 15px;
  }

  .footer-area.footer-design .toggle-sp-content {
    display: none;
    margin: 0 0 var(--s1);
    padding: 0 var(--s1) 0 0;
	background:#fff;
  }

  .footer-area.footer-design .footer-menu {
    padding: var(--s1) 0 var(--s1) var(--s2);
  }

  .footer-area.footer-design .footer-menu__item {
    font-size: 1.5rem;
  }

  .footer-area.footer-design .footer-menu__item.for-sp {
    display: block;
  }

  .footer-area.footer-design .footer-menu__link {
    padding: var(--s1) var(--s5) var(--s1) 0;
    background: url("./img/gnavi-list-a.png") no-repeat right 8px center / auto 15px;
	display:block;
  }

  .footer-area.footer-design .footer-bottom {
    padding: var(--s2) var(--s1);
  }
  .footer-area.footer-design .footer-copyright {
    font-size: 1.2rem;
  }
  .footer-area.footer-design .footer-brand__icons {
    justify-content: center;
  }
	/* スマホ用：縦並びにしてバランスをとる */
  .footer-area.footer-design .footer-bottom__inner {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-area.footer-design .footer-sub-links {
    justify-content: center;
    gap: 2rem;
  }
}




















/* ---------------------------------------------
セクション毎の調整
--------------------------------------------- */
.sec10 {
    background: url(./img/mv-b.png) no-repeat center center #262843;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.sec10-l-center {
  padding-top: 10rem;
  padding-bottom: 10rem;
  max-width: 110rem;
  margin-right: auto;
  margin-left: auto;
}
.sec10 .column-medium{
  margin-bottom:1rem;
  border-radius:10px;
}
.sec10 .column-medium p{
  text-align:center;
}

.sec11 {
    background: url(./img/mv-b.png) no-repeat center center #262843;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.sec11-l-center {
  padding-top: 8rem;
  padding-bottom: 8rem;
  max-width: 128rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom:8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec11 p{
    color:#fff;
    text-align:center;
    font-weight:500;
    text-shadow: 0 2px 4px rgba(25, 29, 45, 0.5);
}
.sec11 .btn-web{
    margin-top:2.5rem;
}

.sec-k-center {
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom:14rem;
  padding:6rem;
  background:#fff;
}

@media screen and (max-width: 767px) {
  .sec10 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .sec10-l-center {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .sec11 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .sec11-l-center {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom:3rem;
  }
  .sec11-l-center p{
    text-align:left;
  }
  .sec-k-center {
    padding: 2rem 1rem;
	margin-bottom:7rem;
  }
}

/* ---------------------------------------------
navigation02 ※TOP、下層共通
--------------------------------------------- */
.header-area-upper {
    padding: var(--s1);
    text-align: right;
}
.header-title {
    font-size: 1.2rem;
    display: inline-block;
    position: relative;
}
.header-title::before {
    content: "PR";
    padding: .2rem;
    color: #fff;
    background-color: #333;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: -2.4rem;
}
.header-title a {
    text-decoration: none;
}
.header-title a:hover {
    text-decoration: underline;
}
.gnavi-btn-close {
    display: none;
}
.toggle-content {
    display: none;
}
.gnavi-ctrl {
    transition: opacity 0.6s, visibility 0.6s;
    opacity: 0;
    visibility: hidden;
}
.gnavi-ctrl.is-show {
    opacity: 1;
    visibility: visible;
}
#low-header .gnavi-ctrl {
    opacity: 1;
    visibility: visible;
}
.gnavi-btn {
    width: var(--s7);
    height: var(--s6);
    background: #2f5a7d;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    cursor: pointer;
    min-height:40px;
    border-bottom: 1px solid #fff;
}
.gnavi-btn span {
    width: var(--s4);
    height: 0.2rem;
    display: inline-block;
    background: #fff;
    position: absolute;
    left: 1.2rem;
    transform: translate(0, -50%);
    transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
    top: 1.3rem;
}
.gnavi-btn span:nth-of-type(2) {
    top: 2.0rem;
}
.gnavi-btn span:nth-of-type(3) {
    top: 2.7rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.7rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
    opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.7rem) rotate(45deg);
}
.gnavi-btn-close {
    width: 75%;
    margin: 1rem auto;
    padding: 2rem;
    background: #315B7F;
    display: block;
    text-align: center;
    border-radius:100rem;
}
.gnavi-btn-close__inner {
    padding: 0 0 0 var(--s3);
    display: inline-block;
    color: #fff;
    font-weight: 700;
    position: relative;
}
.gnavi-btn-close__inner::before {
    content: "";
    width: 1em;
    height: 0.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(45deg);
}
.gnavi-btn-close__inner::after {
    content: "";
    width: 1em;
    height: 0.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(135deg);
}
.gnavi-area {
    width: 100%;
    max-width: 37.5rem;
    height: 100vh;
    padding: var(--s3) var(--s1) var(--s10);
    display: block;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
}
.gnavi-title {
    min-height: var(--s6);
    margin: 0 var(--s10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}
.gnavi-pc {
    display: none;
}
.gnavi-list {
    border-bottom: 1px solid #333;
    position: relative;
}
.gnavi-list li {
    padding-left: 0;
}
.gnavi-list__item::before {
    display: none;
}
.gnavi-list__link {
    width: 100%;
    margin: 0 auto;
    padding: var(--s2) var(--s5) var(--s2) var(--s2);
    border-top: 1px solid #999;
    display: block;
    font-weight: 700;
    line-height: 2;
    text-decoration: none;
    position: relative;
    color:#191D2D;
}
.gnavi-list__link::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url("img/gnavi-list-a.png") no-repeat center/15px auto;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
}
.gnavi-list__link--toggle::after {
    background-image: url("img/gnavi-list-ad.png");
}
.gnavi-list__link--toggle.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
}
.gnavi-list__sub {
    width: 100%;
    background: #fff;
}
.gnavi-list__low .gnavi-list__link {
    padding: var(--s2) var(--s4) var(--s2) var(--s4);
}
.gnavi-list__low .gnavi-list__link::after {
    content: "└";
    background: none;
    transform: translateY(-50%);
    position: absolute;
    top: 40%;
    left: 1rem;
}
.is-gnavi-open .gnavi-area {
    opacity: 1;
    transform: translateX(0);
}

/* ---------------------------------------------
index01(目次)
--------------------------------------------- */
.onb-index01-frame {
    width: 100%;
    background-color:#F0F0F0;
    margin:0 auto 3rem;
    max-width:110rem;
    border-radius:10px;
}
.onb-index01-wrap {
    margin: 0 auto;
    padding: var(--s1) var(--s3);
    background-color: transparent;
    position: relative;
}
.onb-index01-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s6);
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background: url("./img/mokuji.png") no-repeat left 0.5rem center;
    background-size: 3.5rem auto;
    position: relative;
    cursor: pointer;
}
.onb-index01-title::before {
    content: "";
    width: 2rem;
    height: 0.3rem;
    background: #333;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translate(0, -50%);
}
.onb-index01-title::after {
    content: "";
    width: 0.3rem;
    height: 2rem;
    background: #333;
    position: absolute;
    top: 50%;
    right: 2.9rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}
.onb-index01-title.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
}
.onb-index01-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-weight: 700;
}
.onb-index01-chapter-h {
    margin: 0 0 0 var(--s2);
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}
.onb-index01-chapter-h a {
    display: block;
    text-decoration: none;
}
.onb-index01-chapter-h a:hover {
    opacity: .6;
}
.onb-index01-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
}
.onb-index01-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}
.onb-index01-chapter-h-two::before,
.onb-index01-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.5em;
}
.onb-index01-chapter-h-two::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 2rem;
    background-color: #315B7F;
    transform: translateY(-50%);
    top: .8em;
}
.onb-index01-chapter-h-three::before {
    content: "└";
}
.more-content {
    display: none;
}

/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
    border: 1px solid var(--site-color09);
    margin: var(--s12) auto 0;
    padding: 2.5rem;
    background: #F0F0F0;
    position: relative;
    max-width:110rem;
    border-radius:10px;
}
.related-article01-title {
    padding: var(--s2) var(--s2) var(--s3) var(--s7);
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background: url("./img/kanren.png") no-repeat left 1rem center;
    background-size: 3rem auto;
    position: relative;
    border-bottom: 1px solid #D0D3E0;
}
.related-article01-list {
    padding: var(--s2) 0;
    font-weight: 700;
}
.related-article01-list li {
    margin: 0 0 0 var(--s2);
    padding-left: 1.5em;
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}
.related-article01-list li + li {
    margin-top: 10px;
}
.related-article01-list li::before {
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background-color: #315B7F;
    position: absolute;
    top: .6rem;
    left: 0;
}
.related-article01-list a {
    display: block;
    text-decoration: none;
}
.related-article01-list a:hover {
    opacity: 0.6;
}
.relations-box.relations-box--column {
    display: flex;
    gap: 10px;
}
.relations-box__pic {
    flex: 0 0 150px;
}
.is-hidden {
    display: none;
}

.related-article01-more {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 50%);
    background-color: transparent;
    width: 100%;
    height: 25%;
    position: absolute;
    bottom: -40px;
    left: 0;
    padding: 2rem 0;
}

.related-article01-more.is-closed {
    display: none;
}

.related-article01-btn {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 100px;
    padding: 1rem 5rem 1rem 2rem;
    position: relative;
}
.related-article01-btn::before {
    content: "";
    width: 1.8rem;
    height: .2rem;
    background: #191D2D;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translate(0, -50%);
}
.related-article01-btn::after {
    content: "";
    width: .2rem;
    height: 1.8rem;
    background: #191D2D;
    position: absolute;
    top: 50%;
    right: 2.3rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}
.related-article01-btn:hover {
    opacity: 0.6;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .related-article01-list {
        padding: 0;
    }
    .related-article01-list li {
        margin-left: 0;
    }
    .relations-box__pic {
        flex: 0 0 100px;
    }
    .gnavi-btn {
        display: block;
    }
    .related-article01-frame {
        max-width:95%;
        padding:2rem;
    }
    .related-article01-title {
        padding: var(--s4) var(--s4) var(--s4) var(--s10);
        margin-bottom:1.5rem;
    }
    .onb-index01-title {
        padding: var(--s2) var(--s2) var(--s2) var(--s8);
        font-size: 2rem;
    }
    .onb-index01-wrap {
        padding: var(--s2);
    }
}

.section-title02-frame {
    margin-top: 5rem;
    text-align: center;
    position: relative;
}
.sec10 .section-title02-frame {
    margin-top: 0;
}
.section-title02 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--site-color03);
    text-align: center;
    line-height:1.5;
}
.sec10 .section-title02 {
    color:#fff;
    font-weight:900;
    text-align:center !important;
}
.section-title02 span{
    color: #315B7F;
}
.section-title02-sub {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    font-style:italic;
    color: #fff;
    text-align: center;
    position: absolute;
    top: -1.5em;
    left: 0;
}
.section-title02-sub span{
    padding: 0.1rem 2rem 0.1rem 1rem;
    background: linear-gradient(60deg, #7896EE, #C8C2EE);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
.section-title02-p {
    margin-top:2rem;
    margin-bottom:4rem;
    text-align:center;
    line-height:2;
}
.sec10 .section-title02-p {
    color:#fff;
    font-weight:500;
    text-align:center;
    display:block;
}
.sec10 .section-title02-p span{
    color:#fff;
    font-weight:bold;
    font-size:2rem;
}
@media screen and (max-width: 767px) {
    .section-title02 {
        font-size: 2.3rem;
        line-height: 1.5;
        text-align:center !important;
    }
    .section-title02-sub{
        text-align:center !important;
    }
    .section-title02-p {
        text-align:left;
    }
    .sec10 .pc_br {
        display:none;
    }
}

.title-catch {
    margin:2rem 0;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--site-color03);
    text-align: center;
    line-height: 1.5;
    border-bottom: 5px solid rgba(var(--site-color05-rgb), .5);
}
.sec10 .title-catch {
    font-size: 2.8rem;
}
.title-catch span {
    color:#315B7F;
}
.title-catch a{
    display:block;
    padding-right: var(--s4);
    text-decoration: none;
    background: url(./img/title-catch-a.png) no-repeat center right / auto 30px;
    color:#315B7F;
}
.title-catch a:hover{
    opacity:0.6;
}

/*------------------------------------------
    1box column settings
*/
.column-medium {
    padding: var(--s4);
    background:#fff;
}
@media screen and (max-width: 767px) {
    .column-medium {
        padding: var(--s2);
    }
    .title-catch {
        font-size: 2.1rem;
        text-align:left;
    }
    .sec10 .title-catch {
        font-size: 2.2rem;
        text-align:center;
    }
}

/* ヘッダー全体 */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height:65px;
}

/* ヘッダー内部のレイアウト */
.header-inner {
  display: flex;
  justify-content: end;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  padding:0 1rem;
}
.header-logo {
  position:absolute;
  top:12px;
  left:12px;
}

/* ロゴ */
.header-logo a {
  display: block;
}
.header-logo a:hover{
  opacity:0.6;
}
.header-logo img {
  display: block;
  height: 40px;
  width: auto;
}

/* グローバルナビゲーション */
.global-nav ul {
  display: flex;
  align-items: center;
  gap: 1vw;
  list-style: none;
  margin-right:3rem;
}
.global-nav a {
  text-decoration: none;
  color: #191D2D;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.2s ease;
}
.global-nav a:hover {
  color: #ec4b23;
}

/* ==================================================
   PCヘッダー ドロップダウンメニューの制御（縦型に修正）
================================================== */
.global-nav-ul > li {
  position: relative;
  padding: 2rem 0;
}
.global-nav-ul .sub-menu,
.global-nav-ul .sub-menu-low {
  display: block;
  width: max-content;
  min-width: 240px;
}
.global-nav-ul .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #315B7F;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.global-nav-ul .sub-menu::before {
  content: "";
  position: absolute;
  top: -25px; 
  left: 0;
  width: 100%;
  height: 25px;
}
.global-nav-ul > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.global-nav-ul .sub-menu li {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
.global-nav-ul .sub-menu li::before {
  display: none; 
}
.global-nav-ul .sub-menu > li > a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #191D2D;
  border-bottom: 1px dashed #e0e0e0;
  transition: background-color 0.2s, color 0.2s;
  text-align: left;
}
.global-nav-ul .sub-menu > li:last-child > a {
  border-bottom: none;
}
.global-nav-ul .sub-menu a:hover {
  background-color: #f4f5f8;
  color: #ec4b23;
}
.global-nav-ul .sub-menu-low {
  padding: 0 0 1rem 0;
  margin: 0;
  background-color: #fcfcfc;
}
.global-nav-ul .sub-menu-low a {
  display: block;
  padding: 0.8rem 2rem 0.8rem 3.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #555;
  position: relative;
  transition: background-color 0.2s, color 0.2s;
}
.global-nav-ul .sub-menu-low a::before {
  content: "└";
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

/* 右側コンタクトエリア */
.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top:6px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right:10px;
}
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width:42px;
}
.contact-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.phone-number {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.business-hours {
  font-size: 1.2rem;
  color: #191D2D;
  margin-top: 3px;
}

/* お問い合わせボタン */
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #315B7F;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  text-align:center;
  min-height:46px;
  line-height:1.1;
}
.btn-contact2 {
  background-color: #EC4B23;
}
.btn-contact:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
  .global-nav {
    margin-left:6rem;
  }
 .header-logo .header-logo1{
    display:block;
  }
 .header-logo .header-logo2{
    display:none;
  }

@media screen and (max-width: 1550px) {
 .header-logo .header-logo1{
    display:none;
  }
 .header-logo .header-logo2{
    display:block;
  }
}
@media screen and (max-width: 767px) {
 .header-logo .header-logo1{
    display:block;
  }
 .header-logo .header-logo2{
    display:none;
  }
  .global-nav {
    display:none;
  }
  .header-contact {
    display:none;
  }
  .header-inner {
    min-height:40px;
  }
  .header-logo img {
    height: 25px;
  }
  .header-logo {
    top:auto;
  }
  .header{
    min-height:unset;
  }
}

/* ---------------------------------------------
以下、サービスサイト下層共通html
--------------------------------------------- */
#low-page {
  --dls-primary: #315B7F;
  --dls-primary-dark: #1a2942;
  --dls-light: #F0F0F0;
  --dls-line: #dddddd;
  --dls-pink: #e91e63;
  --dls-text: #262843;
  --dls-text-sub: #262843;
  --dls-white: #ffffff;
  --dls-overlay: rgba(0, 91, 172, 0.92);
  --dls-step-rail: #4a4a4a;
  --dls-max: 1280px;
  --dls-gap: 3.2rem;
  --dls-pad-in: 2.4rem;
  --dls-pad-block: 4.8rem;
}

/* 共通：最大幅 1280px */
#low-page .c-lowCards,
#low-page .c-lowCardsAltSec,
#low-page .c-lowIssueSec,
#low-page .c-stepFlowSec,
#low-page .c-solutionListSec,
#low-page .c-commentCaseSec,
#low-page .c-issueCommentSec,
#low-page .c-companyIntroSec,
#low-page .c-caseLinksSec,
#low-page .c-serviceLinkSec {
  max-width: var(--dls-max);
  margin:2rem auto;
  width: 100%;
  box-sizing: border-box;
}

#low-page .c-faqSec.c-lowFaq {
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  padding:3rem;
  background: var(--dls-light);
  border-radius:10px;
}

/* グリッド */
#low-page .l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--dls-gap);
  max-width: var(--dls-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#low-page .l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--dls-gap);
  max-width: var(--dls-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* 1–2. 2つ並び / 3つ並び BOX（画像あり） */
#low-page .c-lowCards__item{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  background:#F0F0F0;
  border-radius: 0;
  overflow: hidden;
  box-sizing: border-box;
  border-radius:10px;
}
#low-page .c-lowCardsAlt__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  background:#fff;
  border-radius: 0;
  overflow: hidden;
  box-sizing: border-box;
  background: #F0F0F0;
  border-radius:10px;
}

#low-page .c-lowCards__item > img,
#low-page .c-lowCardsAlt__item > img {
  order: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  background: #d8d8d8;
}
#low-page .c-lowCardsAlt__item > img {
  order: unset;
}

#low-page .c-lowCards__item > .c-lowCards__title,
#low-page .c-lowCardsAlt__item > .c-lowCardsAlt__title {
  order: 2;
  margin: 0;
  padding: 3rem 3rem 0;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  color:#315B7F;
}

#low-page .c-lowCards__item > .c-lowCards__text,
#low-page .c-lowCardsAlt__item > .c-lowCardsAlt__text {
  order: 3;
  margin: 0;
  padding: 1.6rem 3rem 3rem;
  font-size: 1.6rem;
  line-height: 2;
  flex-grow: 1;
}

#low-page .c-lowCards__item > .c-lowCards__btn,
#low-page .c-lowCardsAlt__item > .c-lowCardsAlt__btn {
  order: 4;
  margin-top: auto;
  padding: 0 var(--dls-pad-in) 3rem;
}

/* 画像なし・テキストのみ：青い四角バレット */
#low-page .c-lowCards__item:not(:has(> img)) {
  padding: 0;
}
#low-page .c-lowCards__item:not(:has(> img)) > .c-lowCards__title {
  position: relative;
  color: var(--dls-primary);
  font-weight: 700;
  font-size: 2.6rem;
}
#low-page .c-lowCards__item:not(:has(> img)) > .c-lowCards__text {
  color: var(--dls-text);
  font-size: 1.6rem;
  line-height: 2;
}

#low-page .c-lowCardsAlt__item:not(:has(> img)) {
  background: #f0f0f0;
}
#low-page .c-lowCardsAlt__item .caption{
  color:#262843;
  font-size:1.4rem;
  margin-bottom:1rem;
  margin-top:1rem;
  font-weight:500;
}
#low-page .c-lowCardsAlt__item:not(:has(> img)) > .c-lowCardsAlt__title {
  position: relative;
  color: var(--dls-primary);
  font-weight: 700;
}
#low-page .c-lowCardsAlt__item:not(:has(> img)) > .c-lowCardsAlt__text {
  color: var(--dls-text);
  font-size: 1.6rem;
  line-height: 2;
}

/* カード内ボタン */
#low-page .c-lowCards .btn-internal,
#low-page .c-lowCardsAlt__btn .btn-internal {
  max-width: none;
  width: 100%;
  margin: 0;
}
#low-page .c-lowCards .btn-internal::after,
#low-page .c-lowCardsAlt__btn .btn-internal::after {
  display: none;
}
#low-page .c-lowCards .btn-internal a::after,
#low-page .c-lowCardsAlt__btn .btn-internal a::after {
  content: "";
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  margin-left: auto;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
}

/* 5. こんな課題ありませんか */
#low-page .c-lowIssueSec {
  padding: var(--dls-pad-block) 3rem;
  background: url(./img/c-lowIssueSec-b.png) no-repeat top center;
  background-size: cover;
  background-position: top;
  border-radius: 10px;
}
#low-page .c-lowIssue {
  max-width: 100rem;
  margin: 0 auto;
  padding: 3rem 3.2rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 0;
  box-sizing: border-box;
  border-radius: 10px;
}
#low-page .c-lowIssue__title {
  margin: 0 0 2.4rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #315B7F;
  text-align: left;
}
#low-page .c-lowIssue ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#low-page .c-lowIssue ul li {
  position: relative;
  margin: 0 0 1.6rem;
  padding-left: 3.6rem;
  font-size: 1.6rem;
  line-height: 1.65;
  list-style: none;
  font-weight:500;
}
#low-page .c-lowIssue ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--dls-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005bac' stroke-width='3'%3E%3Cpath d='M5 12l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem 1.2rem;
}
#low-page .c-lowIssue ul li:last-child {
  margin-bottom: 0;
}

/* 6. ステップ BOX */
#low-page .c-stepFlow {
  counter-reset: dls-step;
  max-width: var(--dls-max);
}
#low-page .c-stepFlow__item {
  counter-increment: dls-step;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: var(--dls-gap);
  gap: 0;
}
#low-page .c-stepFlow__item:last-child {
  margin-bottom: 0;
}
#low-page .c-stepFlow__rail {
  flex: 0 0 11rem;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:#5C5E72;
  color: var(--dls-white);
  position: relative;
  border-radius: 0;
  min-width:170px;
  border-radius: 10px 0 0 10px;
}
#low-page .c-stepFlow__rail::before {
  display: none;
}
#low-page .c-stepFlow__rail::after {
  content: counter(dls-step);
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
#low-page .c-stepFlow__dot,
#low-page .c-stepFlow__arrow {
  display: none !important;
}
#low-page .c-stepFlow__content {
  flex: 1;
  min-width: 0;
  padding: 2.8rem 3rem;
  background: #F0F0F0;
  border-left: none;
  border-radius: 0;
  box-sizing: border-box;
  border-radius:0 10px 10px 0;
}
#low-page .c-stepFlow__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#low-page .c-stepFlow__title {
  margin: 0 0 1.6rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #315B7F;
}
#low-page .c-stepFlow__text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2;
}

/* 7. 左見出し / 右テキスト */
#low-page .c-solutionList {
  border-top: 1px solid var(--dls-line);
  max-width: var(--dls-max);
}
#low-page .c-solutionList__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 0 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--dls-line);
  align-items: start;
}
#low-page .c-solutionList__left {
  grid-column: 1;
  grid-row: 1 / -1;
}
#low-page .c-solutionList__label {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #315B7F;
}
#low-page .c-solutionList__title {
  margin: 0;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dls-text);
}
#low-page .c-solutionList__right {
  grid-column: 2;
  grid-row: 1 / -1;
  position: relative;
  padding-right: 4rem;
  min-width: 0;
}
#low-page .c-solutionList__catch {
  margin: 0 0 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #315B7F;
  line-height:1.4;
}
#low-page .c-solutionList__text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2;
}

/* 8. 担当者のコメント */
#low-page .c-commentCase {
  position: relative;
  padding: 3rem;
  border: none;
  border-radius: 0;
  background:#dceeff;
  box-sizing: border-box;
  max-width:110rem;
  margin-left:auto;
  margin-right:auto;
  border-radius:10px;
}
#low-page .c-commentCase__meta {
  display: table;
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #262742;
  background: #ffffff;
  border-radius: 10px;
}
#low-page .c-commentCase__head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.4rem;
}
#low-page .c-commentCase__headMain {
  flex: 1;
  min-width: 0;
  padding: 1.4rem 1.6rem;
}
#low-page .c-commentCase__title {
  margin: 0 0 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #315B7F;
}
#low-page .c-commentCase__head ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#low-page .c-commentCase__head ul li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.55;
  font-weight:500;
}
#low-page .c-commentCase__head ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #315B7F;
}
#low-page .c-commentCase__thumb {
  flex: 0 0 31%;
  width: 31%;
  min-height: 20rem;
  border-radius: 0;
}
#low-page .c-commentCase__text {
  margin: 2.5rem 0;
  line-height:2;
}
#low-page .c-commentCase__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 3rem;
  background: #fff;
  border-radius:10px;
}
#low-page .c-commentCase__ctaLead {
  margin: 0;
  font-size: 2rem;
  line-height: 1.35;
  color: #222;
}
#low-page .c-commentCase__ctaBtn .btn-web {
  max-width: 36rem;
  min-width: 36rem;
  margin: 0;
}
#low-page .c-commentCase__ctaBtn .btn-web::after {
  display: none;
}
#low-page .c-commentCase__ctaBtn .btn-tel {
  max-width: 36rem;
  min-width: 36rem;
  margin: 0.8rem 0 0;
}
#low-page .c-commentCase__ctaBtn .btn-tel a {
  border-radius: 99rem;
}

/* 9. 課題コメント */
#low-page .c-issueComment {
  padding: 3rem;
  background: #F0F0F0;
  border-radius: 0;
  box-sizing: border-box;
  max-width:110rem;
  margin-left:auto;
  margin-right:auto;
  border-radius:10px;
}
#low-page .c-issueComment__head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
#low-page .c-issueComment__main {
  flex: 1;
  min-width: 0;
}
#low-page .c-issueComment__label {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: normal;
    color: #999;
}
#low-page .c-issueComment__title {
  margin: 0 0 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #315B7F;
}
#low-page .c-issueComment__main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#low-page .c-issueComment__main ul li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.55;
  font-weight:500;
}
#low-page .c-issueComment__main ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #315B7F;
}
#low-page .c-issueComment__thumb {
  flex: 0 0 31%;
  width: 31%;
  min-height: 20rem;
  border-radius: 0;
}
#low-page .c-issueComment__body {
  padding: 2rem;
  background: var(--dls-white);
  border-radius: 0;
  line-height: 2;
  border-radius:10px;
}

/* 10. 事例：会社紹介 */
#low-page .c-companyIntro {
  display: block;
  padding: 3rem;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  max-width:110rem;
  margin-left:auto;
  margin-right:auto;
  background:#F0F0F0;
  border-radius:10px;
}
#low-page .c-companyIntro__left {
  display: flex;
  grid-template-columns: minmax(0, 28%) minmax(0, 1fr);
  align-items: center;
  column-gap: 4rem;
  min-width: 0;
  padding: 2rem;
  background:#fff;
  border-radius:10px;
}
#low-page .c-companyIntro__logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  background: #ddd;
  border-radius: 0;
}
#low-page .c-companyIntro__name {
  grid-column: 2;
  margin: 0 0 0.8rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dls-text);
}
#low-page .c-companyIntro__left ul {
  grid-column: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: none;
}
#low-page .c-companyIntro__left ul li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0.6rem 0 0.6rem 1.8rem;
  border-bottom: none;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: break-word;
  font-weight:500;
}
#low-page .c-companyIntro__left ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--dls-primary);
  border-radius: 50%;
}
#low-page .c-companyIntro__right {
  min-width: 0;
  margin-top: 2rem;
}
#low-page .c-companyIntro__catch {
  margin: 0 0 0.8rem;
  padding: 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.35;
  color: #315B7F;
  background: transparent;
}
#low-page .c-companyIntro__text {
  margin: 0;
  line-height: 2;
  color: var(--dls-text-sub);
}

/* 11. 事例：ナビゲーション 3列 */
#low-page .c-caseLinks__item {
  height: 100%;
}
#low-page .c-caseLinks__cardLink {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
  border-radius:10px;
  border:1px solid #315B7F;
}
#low-page a.c-caseLinks__cardLink:hover{
  opacity:0.6;
}
#low-page .c-caseLinks__cardLink > * {
  min-width: 0;
}
#low-page .c-caseLinks__thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  background: #d0d0d0;
}
#low-page .c-caseLinks__title {
  order: 2;
  margin: 0;
  padding: 1.6rem 2rem 0.6rem;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dls-primary);
}
#low-page .c-caseLinks__company {
    order: 3;
    margin:1.5rem 2rem;
    padding: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #262843;
    background:#F0F0F0;
}
#low-page .c-caseLinks__cardLink ul {
  order: 4;
  align-self: stretch;
  width: 100%;
  margin: 0;
  padding: 0 2rem;
  list-style: none;
  flex-grow: 1;
  box-sizing: border-box;
}
#low-page .c-caseLinks__cardLink ul li {
  position: relative;
  margin: 0 0 1rem;
  padding-left: 1.6rem;
  line-height: 1.65;
  font-weight:500;
}
#low-page .c-caseLinks__cardLink ul li:last-child {
  margin-bottom: 0;
}
#low-page .c-caseLinks__cardLink ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--dls-primary);
  border-radius: 50%;
}
#low-page .c-caseLinks__more {
  order: 5;
  align-self: stretch;
  width: 100%;
  margin: 0;
  padding: 1.2rem 2rem 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dls-primary);
  text-align: right;
  position: relative;
  box-sizing: border-box;
}
#low-page .c-caseLinks__more::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 0.4rem;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005bac' stroke-width='2'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}
#low-page .c-caseLinks__thumb {
  order: 1;
}

/* 12–13. QA */
#low-page .c-lowFaq .c-faqSec__inner {
  max-width: var(--dls-max);
  margin: 0 auto;
}
#low-page .c-lowFaq .acc-contentsbg-colored {
  background: transparent;
}
#low-page .c-lowFaq .acc-area {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
  border-bottom: 1px solid var(--dls-line);
}
#low-page .c-lowFaq .acc-area:last-child {
  border-bottom: none;
}
#low-page .c-lowFaq .faq-q {
  position: relative;
  margin: 0;
  padding: 2rem 4.8rem 2rem 7rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dls-text);
  background: transparent;
  cursor: pointer;
  font-size:2.4rem;
}
#low-page .c-lowFaq--static .faq-q{
  pointer-events:none;
}
#low-page .c-lowFaq .js-toggle.faq-q {
  padding-right: 5.6rem;
}
#low-page .c-lowFaq .faq-q::before {
  content: "Q";
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #262843;
  color: var(--dls-white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 3rem;
  text-align: center;
  border:1px solid #262843;
}
#low-page .c-lowFaq .js-toggle.faq-q::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: -0.6rem;
  border-right: 2px solid var(--dls-primary);
  border-bottom: 2px solid var(--dls-primary);
  transform: rotate(45deg);
  transition: transform 0.2s;
}
#low-page .c-lowFaq .js-toggle.faq-q.close::after {
  transform: rotate(225deg);
}
#low-page .c-lowFaq .faq-a {
  margin: 0;
  padding: 0 2rem 2.4rem 2rem;
  background: transparent;
  border: none;
}
#low-page .c-lowFaq:not(.c-lowFaq--static) .faq-a dt {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#low-page .c-lowFaq .faq-a dd {
  display: block;
  position: relative;
  margin: 0;
  padding: 0 0 0 5.2rem;
  min-width: 0;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  word-break: normal;
  overflow-wrap: break-word;
}
#low-page .c-lowFaq .faq-a dd::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #fff;
  color: #315B7F;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 3rem;
  text-align: center;
  border:1px solid #315B7F;
}

#low-page .c-lowFaq--static .faq-a dt {
  position: relative;
  width: auto;
  height: auto;
  margin: 0 0 1rem;
  padding: 0.5rem 0 0 5rem;
  overflow: visible;
  clip: auto;
  font-size: 2.2rem;
  font-weight: 700;
  color: #315B7F;
  line-height:1.5;
}
#low-page .c-lowFaq--static .faq-a dt::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #fff;
  color: #315B7F;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 3rem;
  text-align: center;
  border:1px solid #315B7F;
}
#low-page .c-lowFaq--static .faq-a dd {
  display: block;
  padding-top: 0;
  padding-left: 0;
  margin-top:2.5rem;
}
#low-page .c-lowFaq--static .faq-a dd::before {
  content: none;
}

/* 14. 画像＋見出し＋本文 */
#low-page .c-serviceLink{
  max-width:110rem;
  margin-left:auto;
  margin-right:auto;
}
#low-page .c-serviceLink__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  border-radius: 10px;
  background:#fff;
  text-decoration: none;
  color: inherit;
  position: relative;
  box-sizing: border-box;
  border:1px solid #315B7F;
}
#low-page a.c-serviceLink__card:hover{
  opacity:0.6;
}
#low-page .c-serviceLink__thumb {
  flex: 0 0 35rem;
}
#low-page .c-serviceLink__thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  background: #d0d0d0;
}
#low-page .c-serviceLink__body {
  flex: 1;
  min-width: 0;
  padding-right: 5rem;
}
#low-page .c-serviceLink__title {
  margin: 0 0 1.2rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dls-primary);
}
#low-page .c-serviceLink__text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2;
}
#low-page .c-serviceLink__icon {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: url(./img/title-catch-a.png) no-repeat center right / auto 30px;
}

/* SP */
@media screen and (max-width: 768px) {
  #low-page .l-grid-2,
  #low-page .l-grid-3 {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    width: 100%;
    box-sizing: border-box;
  }
  #low-page .c-stepFlow__item {
    flex-direction: column;
  }
  #low-page .c-stepFlow__rail {
    flex: 0 0 auto;
    width: 100%;
    min-height: 5rem;
    border-radius: 10px 10px 0 0;
  }
  #low-page .c-stepFlow__content {
    border-radius: 0 0 10px 10px;
  }
  #low-page .c-solutionList__item {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  #low-page .c-solutionList__right {
    grid-column: 1;
    grid-row: auto;
    padding-right: 0;
  }
  #low-page .c-commentCase__head {
    flex-direction: column;
  }
  #low-page .c-commentCase__thumb {
    width: 100%;
  }
  #low-page .c-commentCase__cta {
    flex-direction: column;
    align-items: stretch;
    padding:0;
    background:none;
  }
  #low-page .c-commentCase__ctaBtn .btn-web,
  #low-page .c-commentCase__ctaBtn .btn-tel {
    min-width: 0;
    max-width: none;
    margin-bottom:1.5rem;
  }
  #low-page .c-issueComment{
    padding:2rem;
  }
  #low-page .c-issueComment__head {
    flex-direction: column;
  }
  #low-page .c-companyIntro {
    display: block;
    padding:2rem;
  }
  #low-page .c-companyIntro__left {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    flex-direction: column;
  }
  #low-page .c-companyIntro__name {
    font-size:2.2rem;
    margin-top:1rem;
  }
  #low-page .c-companyIntro__name,
  #low-page .c-companyIntro__left ul {
    grid-column: 1;
  }
  #low-page .c-serviceLink__card {
    flex-direction: column;
    align-items: flex-start;
  }
  #low-page .c-serviceLink__thumb {
    width: 100%;
    flex:0;
  }
  #low-page .c-serviceLink__icon {
    top: auto;
    bottom: 2rem;
    right:2rem;
    transform: none;
  }
  #low-page .c-lowCards__item > .c-lowCards__title,
  #low-page .c-lowCardsAlt__item > .c-lowCardsAlt__title {
  font-size: 2.2rem;
  }
  #low-page .c-lowCards__item:not(:has(> img)) > .c-lowCards__title{
  font-size: 2.2rem;
  }
  #low-page .c-lowIssueSec {
  padding: 0;
  }
  #low-page .c-lowIssue__title {
    font-size: 2.2rem;
  }
  #low-page .c-lowIssue {
    padding: 2rem;
  }
  #low-page .c-stepFlow__rail::after {
    font-size: 2.4rem;
  }
  #low-page .c-stepFlow__title {
    font-size: 2.2rem;
	text-align:center;
  }
  #low-page .c-solutionList__title {
    font-size: 2.2rem;
  }
  #low-page .c-solutionList__catch {
    font-size: 2rem;
  }
  #low-page .c-commentCase{
    padding:3rem 2rem 2rem;
  }
  #low-page .c-commentCase__headMain {
    padding:0;
  }
  #low-page .c-commentCase__meta {
    margin:auto;
    font-size:1.6rem;
  }
  #low-page .c-commentCase__title {
    margin-top:2rem;
    font-size: 2.1rem;
    text-align:center;
  }
  #low-page .c-commentCase__ctaLead {
    font-size: 1.7rem;
    font-weight:bold;
    text-align:center;
  }
  #low-page .c-issueComment__title {
    font-size: 2.2rem;
  }
  #low-page .c-issueComment__thumb {
    width: 100%;
    min-height:unset;
  }
  #low-page .c-companyIntro__catch {
    font-size: 2.2rem;
  }
  #low-page .c-faqSec.c-lowFaq {
    padding:0;
  }
  #low-page .c-lowFaq .faq-q {
    font-size: 1.8rem;
	padding: 2rem 2rem 2rem 7rem;
  }
  #low-page .c-lowFaq--static .faq-a dt{
    font-size: 1.8rem;
  }
  #low-page .c-lowFaq .faq-q::before {
    top: 45px;
  }
  #low-page .c-lowFaq--static .faq-a dt::before{
    top: 10px;
  }
  #low-page .c-serviceLink__card{
    padding: 2rem;
  }
  #low-page .c-serviceLink__body {
    padding-right: 0;
    padding-bottom:3rem;
  }
  #low-page .c-serviceLink__title{
    font-size: 2.2rem;
  }
	#low-page .c-caseLinks__title {
    font-size: 2.2rem;
  }
}
















