@charset "utf-8";
/* CSS Document */

@media only screen and (max-width: 840px) {
  html {
    font-size: 58% !important;
  }
}

body {
  padding-top: 110px;
  margin-top: -110px;
}

header {
    position: absolute;
    width: 100%;
    height: 110px;
    
    z-index: 3;
    
    border-bottom: 1px solid var(--border);
    
    transition: 0.3s;
}

.header_logo {
  font-size: 2.0rem;
  font-weight: bold;

  display: flex;
  align-items: center;

  transition: 0.3s;
}

.header_logo a {
  font-size: 2.0rem;
  transition: 0.3s;
}
.header_logo a:hover {
  opacity: 0.7;
}


.header_logo img {
  vertical-align: middle;
  margin-bottom: 2px;
  margin-right: 8px;
}

header.sticky {
  height: 110px;
  position: fixed;
  top: -100px; /* 初期状態は画面外 */
  left: 0;
  backdrop-filter: blur(10px);
}
header.sticky.visible {
  top: 0; /* スライドイン */
}

.header_inner {
    max-width: 1140px;
    height: 110px;
    padding: 20px;
    margin: auto;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ヘッダーナビ */
.header_nav > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    transition: 0.3s;
}

.header_nav > ul > li > a {
    font-size: 1.6rem;
    font-weight: bold;
    transition: 0.3s;
}

.header_nav > ul > li:not([class]) > a {
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.header_nav > ul > li:not([class]) > a:hover {
  margin-right: -5px;
  color: #37e32a;
}

.header_nav > ul > li:not([class]) > a::before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  background: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJfeDMyXyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0id2lkdGg6IDI1NnB4OyBoZWlnaHQ6IDI1NnB4OyBvcGFjaXR5OiAxOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojNEI0QjRCO30NCjwvc3R5bGU+DQo8Zz4NCgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjQ0MC4xODksOTIuMDg1IDI1Ni4wMTksMjc2LjI1NSA3MS44Myw5Mi4wODUgMCwxNjMuOTE1IDI1Ni4wMTksNDE5LjkxNSA1MTIsMTYzLjkxNSIgc3R5bGU9ImZpbGw6IHJnYig3NSwgNzUsIDc1KTsiPjwvcG9seWdvbj4NCjwvZz4NCjwvc3ZnPg0K");
  transition: 0.3s;
}
.header_nav > ul > li:not([class]) > a:hover::before {
  width: 13px;
  height: 13px;
  background: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJfeDMyXyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0id2lkdGg6IDI1NnB4OyBoZWlnaHQ6IDI1NnB4OyBvcGFjaXR5OiAxOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojMzdlMzJhO30NCjwvc3R5bGU+DQo8Zz4NCgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjQ0MC4xODksOTIuMDg1IDI1Ni4wMTksMjc2LjI1NSA3MS44Myw5Mi4wODUgMCwxNjMuOTE1IDI1Ni4wMTksNDE5LjkxNSA1MTIsMTYzLjkxNSIgc3R5bGU9ImZpbGw6IHJnYig1NSwgMjI3LCA0Mik7Ij48L3BvbHlnb24+DQo8L2c+DQo8L3N2Zz4NCg==");
  margin-right: 10px;
}

.header_contact a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 40px;

    padding: 0 0 0 20px;
    background: #333333;
    border-radius: 100px;

    font-size: 1.4rem !important;
    color: #fff;
    line-height: 1;

    position: relative;
    transition: 0.3s;
}
.header_contact a span {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;
    width: 50px;
    padding-right: 3px;
    border-left: 1px solid #666;
    margin-left: 26px;
}

.header_contact a::before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    background: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJfeDMyXyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0id2lkdGg6IDI1NnB4OyBoZWlnaHQ6IDI1NnB4OyBvcGFjaXR5OiAxOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojZmZmO30NCjwvc3R5bGU+DQo8Zz4NCgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjQ0MC4xODksOTIuMDg1IDI1Ni4wMTksMjc2LjI1NSA3MS44Myw5Mi4wODUgMCwxNjMuOTE1IDI1Ni4wMTksNDE5LjkxNSA1MTIsMTYzLjkxNSIgc3R5bGU9ImZpbGw6IHJnYigyNTUsIDI1NSwgMjU1KTsiPjwvcG9seWdvbj4NCjwvZz4NCjwvc3ZnPg==");
    transition: 0.3s;
}
.header_contact a:hover::before {
    width: 13px;
    height: 13px;
    margin-right: 10px;
}

@media only screen and (max-width: 1024px) {

  .header_logo {
    font-size: 1.6rem;
  }

  .header_nav > ul {
    gap: 15px;
  }

  .header_nav > ul > li > a {
    font-size: 1.4rem;
  }

  .header_contact a {
    font-size: 1.2rem !important;
  }

}

@media only screen and (max-width: 840px) {
  .header_logo {
    font-size: 1.6rem;
  }

  .header_nav > ul {
    gap: 0px;
  }

  .header_nav li {
    width: 100%;
    border-bottom: 1px dotted #ccc;
    position: relative;
  }
  .header_nav li:first-child {
    border-top: 1px dotted #ccc;
  }

  .header_nav > ul > li > a {
    font-size: 2rem;
  }

  .header_nav > ul > li:not([class]) > a {
    flex-direction: column;
  }
  .header_nav > ul > li:not([class]) > a::before {
    position: absolute;
    left: 15px;
    top: 19px;
    
    width: 13px;
    height: 13px;
    background: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJfeDMyXyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0id2lkdGg6IDI1NnB4OyBoZWlnaHQ6IDI1NnB4OyBvcGFjaXR5OiAxOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojZmZmO30NCjwvc3R5bGU+DQo8Zz4NCgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjQ0MC4xODksOTIuMDg1IDI1Ni4wMTksMjc2LjI1NSA3MS44Myw5Mi4wODUgMCwxNjMuOTE1IDI1Ni4wMTksNDE5LjkxNSA1MTIsMTYzLjkxNSIgc3R5bGU9ImZpbGw6IHJnYigyNTUsIDI1NSwgMjU1KTsiPjwvcG9seWdvbj4NCjwvZz4NCjwvc3ZnPg==") !important;

    margin-right: 0px;
  }
  .header_nav > ul > li:not([class]) > a:hover {
    margin-right: 0px;
    color: #383838;
    background: #ccc;
  }

  .header_contact {
    padding-top: 30px;
    border-bottom: 0 !important;
  }

  .header_contact a {
    font-size: 2rem !important;
  }

  .header_contact a {
    height: auto !important;
    display: flex !important;
    padding: 0px 0 0px 40px !important;
  }

  .header_contact a span {
    padding: 20px 0;
  }

  .header_nav_close {
    margin-top: 50px;
    border-radius: 10px;
    padding: 20px !important;
  }

}


/* 汎用 */
section {
  padding: 70px 0 100px;
  background: #f7f7f7;

  position: relative;
}
section::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

section#why {
  background: linear-gradient(to right, #ecfbde 0%, #fffff5 21.67%, #feecd0 47.78%, #fbfbf7 80.3%, rgba(250, 234, 238, 0.51) 89.95%, rgba(248, 217, 228, 0) 100%);
}
section#why::before {
  background: linear-gradient(rgba(236, 251, 222, 0) 0%, #fff 66.5%, #f7f7f7 100%);
}

section#shindan {
  background: linear-gradient(#bfdfe7 0%, #c1e8d1 100%);
}
section#shindan::before {
  background: linear-gradient(rgba(236, 251, 222, 0) 0%, #fff 66.5%, #f7f7f7 100%);
}

section#point {
  background: linear-gradient(#fdd9b2 0%, #f1c1ca 100%);
}
section#point::before {
  background: linear-gradient(rgba(236, 251, 222, 0) 0%, #f7f7f7 66.5%, #f7f7f7 100%);
}

section#qanda {
  background: linear-gradient(to right, #ecfbde 0%, #fffff5 21.67%, #feecd0 47.78%, #fbfbf7 80.3%, rgba(250, 234, 238, 0.51) 89.95%, rgba(248, 217, 228, 0) 100%);
}
section#qanda::before {
  background: linear-gradient(rgba(236, 251, 222, 0) 0%, #f7f7f7 66.5%, #f7f7f7 100%);
}

section#contact {
  background: #fff;
}
section#contact::before {
  display: none;
}

.lead_text {
  font-size: 1.8rem;
}

.inner {
  max-width: 1100px;
  width: 75%;
  margin: auto;

  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1024px) {
  .inner {
    width: 85%;
  }
}

section .inner p {
  line-height: 2.1;
}

h2 {
  font-size: 3.0rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
}
h2::before {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  margin-bottom: 20px;
  background: #9AB1EB;
}

h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 70px 0 30px;
  padding-left: 40px;

  position: relative;
}
h3::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #999999;

  position: absolute;
  left: 0;
  top: 50%;
}

/* メインビジュアル */
.main {
  height: 500px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: url("../images/main.jpg");
  background-size: cover;
}

.main h1 {
  font-size: 6.0rem;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
}
/*
.main h1 span {
  display: block;
}
  */

@media only screen and (max-width: 840px) {
  .main {
    height: 400px;
  
    background: url("../images/main.jpg");
    background-position: center top;
    background-size: 230%;
  }  
  .main h1 {
    font-size: 7vw;
  }

}

/* リスク */
.lisk {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  gap: 20px;
}

.lisk li {
  width: 540px;
  background: #fff;
  padding: 25px 40px 25px 130px;
  position: relative;
}

.lisk img {
  position: absolute;
  bottom: 0;
  left: 0;
}
.lisk li:first-child img {
  bottom: 6px;
  left: -20px;
}
.lisk li:nth-child(2) img {
  bottom: 8px;
  left: -10px;
}
.lisk li:nth-child(3) img {
  left: 11px;
}
.lisk li:nth-child(4) img {
  bottom: 6px;
  left: 11px;
}

.lisk li span {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.lisk li p {
  font-size: 1.4rem;
  line-height: 2.2rem;
}

@media only screen and (max-width: 1500px) {
  .lisk li {
    width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 1200px) {
  .lisk li {
    width: 100%;
    padding: 25px 25px 25px 140px;
  }
  
}

@media only screen and (max-width: 840px) {
  .lisk li:first-child img {
    bottom: calc(50% - 63px);
  }
  .lisk li:nth-child(2) img {
    bottom: calc(50% - 59px);
  }
  .lisk li:nth-child(3) img {
    bottom: calc(50% - 65px);
  }
  .lisk li:nth-child(4) img {
    bottom: calc(50% - 59px);
  }

  .lisk li span {
    font-size: 2.0rem;
  }

  .lisk li p {
    font-size: 1.8rem;
  }
  
}

/* メリット */
.melit {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;

  margin-bottom: 100px;
}

.melit li {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.melit li::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 10px;

  position: absolute;
  top: -10px;
  left: -10px;
}
.melit li:first-child::before {
  background: #9ab1eb;
}
.melit li:nth-child(2)::before {
  background: #86DDA0;
}
.melit li:nth-child(3)::before {
  background: #FCB66F;
}
.melit li:nth-child(4)::before {
  background: #F08893;
}

.melit li div {
  display: flex;
  flex-direction: column;
  flex: 1;

  border-radius: 10px;
  background: #fff;
  padding: 40px 19px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);

  position: inherit;
  z-index: 2;
}

.melit li div img {
  display: block;
  width: 60px;
  margin: 25px auto;
}

.melit li:nth-child(2) div img {
  margin-top: 38px;
}

.melit li div span {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.melit li div p {
  font-size: 1.4rem;
  line-height: 1.7;
}

@media only screen and (max-width: 1200px) {
  .melit {
    flex-wrap: wrap;
  }
  .melit li {
    width: calc(50% - 20px);
    flex: auto;
  }

}
@media only screen and (max-width: 640px) {
  .melit li {
    width: 100%;
  }

  .melit li div span {
    font-size: 2rem;
  }
    .melit li div p {
    font-size: 1.8rem;
  }  
}


/* 見える化 */
.mieru_ka {
  display: flex;
  justify-content: space-between;
}

.mieru_ka_box {
  width: 520px;
  text-align: center;
}

.mieru_ka_box p {
  font-size: 1.7rem;
  line-height: 1.5 !important;
  letter-spacing: 0.02em;
  text-align: center;

  padding: 20px;
  border-radius: 35px;
  background: #fff;
  border: 1px solid #ccc;

  margin-bottom: 25px;

  position: relative;
}

@media only screen and (max-width: 1460px) {
  .mieru_ka_box p span {
    display: block;
  }
}

.mieru_ka_box p::after {
  content: "";
  display: block;

  width: 25px;
  height: 25px;
  background: #fff;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;

  transform: rotate(-45deg);

  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: auto;
}

.conclusion {
  margin-top: 35px;
  font-size: 1.8rem;
  text-align: center;
}

.conclusion span {
  display: block;
  font-size: 3.0rem;
  font-weight: bold;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1400px) {
  .mieru_ka {
    gap: 20px;
  }
  
}

@media only screen and (max-width: 640px) {
    .mieru_ka {
      flex-direction: column;
    }
    .mieru_ka_box {
      width: 100%;
      position: relative;
    }
    
}
      

/* アクセシビリティ診断 */
.flow {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;

  padding-left: 0;
  margin-bottom: 100px;
}

.flow li {
  width: 340px;
  background: #fff;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);

  counter-increment: mycounter;
  position: relative;
}

.flow li:before{
  content: counter(mycounter, decimal-leading-zero);

	position: absolute;
	top: -33px;
	left: -19px;

	color: #F08893;
  font-size: 50px;
  font-family: "Roboto", sans-serif;
	font-weight: 100;
}

.flow li span {
  display: block;
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.flow li p {
  font-size: 1.6rem;
  line-height: 1.875;
}

.table, .table td, .table th {
  border: 1px solid #ccc;
  border-collapse: collapse;
}

.table {
  width: 100%;
  margin-top: 40px;
}

caption {
  margin-bottom: 10px;
  background: #383838;
  padding: 10px;
  color: #fff;
}

.table td, .table th {
  padding: 20px 15px;

  font-size: 14px;
}

.table th {
  background: #F2F2F2;
}

.table td {
  background: #fff;
}

.table .num {
  text-align: right;
}
.table .center {
  text-align: center;
}

.maru {
  display: inline-block;
  position: relative;
}
.maru::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 30px;

  background: #fff;
  border: 1px solid #000000;

  position: absolute;
  top: 18%;
  left: -10%;
}

.att {
  margin-top: 20px;
  text-align: right;
}

@media only screen and (max-width: 1500px) {
  .flow li {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 1000px) {
  .sp_table {
    margin-top: 40px;
    border: 1px solid #ccc;
    padding: 1px;
    
    width: 100%;
    overflow-x: scroll;
  }
  .sp_table table {
    margin-top: 0;
    min-width: 1200px;
  }
}

@media only screen and (max-width: 640px) {
  .flow li {
    width: 100%;
  }
  .flow li p {
    font-size: 1.8rem;
  }
}


/* 特徴 */
.power {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;

  padding-left: 0;
  margin-bottom: 100px;
}

.power li {
  width: 340px;
  background: #fff;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);

  counter-increment: mycounter;
  position: relative;
  
  text-align: center;
}

.power li span {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.power li p {
  margin-top: 25px;
  line-height: 3.0rem;
  text-align: left;
}

@media only screen and (max-width: 1500px) {
  .power li {
    width: calc(32% - 20px);
  }
}

@media only screen and (max-width: 1000px) {
  .power li {
    width: 100%;
  }
}

@media only screen and (max-width: 840px) {
  .power li p {
    font-size: 1.8rem;
  }
}

.chart {
  display: flex;
  justify-content: center;

  padding-left: 0;
}

.chart li {
  width: 303px;
  padding-right: 40px;
  position: relative;

  display: flex;
}
.chart li::after {
  content: "";
  display: block;
  height: 100%;
  width: 42px;

  background: url("../images/chart_arrow.svg") no-repeat;
  background-size: cover;
  background-position: right center;

  position: absolute;
  right: 0px;
  top: 0;
  z-index: 2;
}
.chart li:last-child {
  width: 250px;
  padding-right: 0;
}
.chart li:last-child:after {
  display: none;
}

.chart li div {
  display: flex;
  flex-direction: column;

  background: #fff;
  padding: 30px;
}

.chart li span {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.chart li p {
  font-size: 1.4rem;
  line-height: 2.4rem;
}

@media only screen and (max-width: 1400px) {
  .chart {
    flex-direction: column;
    gap: 60px;
  }
  .chart li {
    width: 100%;
    padding-right: 0;
    position: relative;
  }
  .chart li::after {
    display: none;
  }
  .chart li::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border-right: 5px solid #9AB1EB;
    border-bottom: 5px solid #9AB1EB;

    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    z-index: 2;
  }

  .chart li:last-child {
    width: 100%;
  }
  .chart li:last-child::before {
    display: none;
  }

  .chart li div {
    width: 100%;
    padding: 25px;
  }

  .chart li p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }  
}

.qanda_box {
  margin-bottom: 20px;
  border: 1px solid #fff;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.qanda_box.open {
  border: 1px solid #ccc;
}

.qanda_q {
  width: 100%;
  padding: 25px 65px;
  background: #fff url("../images/qanda_icon_q.svg") no-repeat;
  background-position: left 25px center;
  border: none;

  color: #383838;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.qanda_q::before,
.qanda_q::after {
  content: '';
  position: absolute;
  right: 25px;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* 横棒（−） */
.qanda_q::before {
  transform: translateY(-50%);
}

/* 縦棒（|）→ 回転して消える */
.qanda_q::after {
  transform: translateY(-50%) rotate(90deg);
}

/* 展開時：縦棒を倒す（90deg→0deg）、横棒を右に滑らせて消す */
.qanda_q[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(0deg);
}

.qanda_q[aria-expanded="true"]::before {
  transform: translateY(-50%) translateX(150%);
  opacity: 0;
}

.qanda_a {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease;

}

.qanda_inner {
  padding: 25px 65px;
  background: #fff url("../images/qanda_icon_a.svg") no-repeat;
  background-position: left 25px top 28px;
}

@media only screen and (max-width: 840px) {
  .qanda_q, .qanda_inner {
    font-size: 1.8rem;
  }  
}




/* フッター */
footer {
  background: #333333;
  color: #fff;
  padding: 60px 0 40px;
}

.footer_signiture {
  font-size: 20px;
  font-weight: bold;

  display: flex;
  align-items: center;

  margin-bottom: 80px;
}

.footer_signiture img {
  vertical-align: middle;
  margin-bottom: 2px;
  margin-right: 8px;
}

.footer_signiture a {
  font-size: 2.0rem;
  color: #fff !important;
  transition: 0.3s;
}

.footer_signiture a:hover {
  opacity: 0.7;
}

.footer_info {
  display: flex;
  justify-content: space-between;
}


.footer_corp {
  width: 50%;
}

.footer_corp div {
  font-size: 2.0rem;
  margin-bottom: 8px;
}
.footer_corp a {
  display: inline-block;
  margin-top: 30px;

  padding-right: 20px;
  background: url("../images/icon_pagelink.svg");
  background-repeat: no-repeat;
  background-position: right center;

  color: #fff;
  text-decoration: underline;
}
.footer_corp a:hover {
  text-decoration: none;
}

.footer_call {
  padding-top: 30px;
  width: 450px;
  font-size: 2.0rem;
  font-weight: bold;
}

.phone_number {
  color: #fff !important;
  margin-top: 15px;
  font-size: 3.0rem;
}
.phone_number a {
  color: #fff !important;
  font-size: 3.0rem !important;
}

.footer_bunner {
  margin-top: 70px;

  display: flex;
  justify-content: center;
  gap: 20px
}
.footer_bunner a {
  transition: 0.3s;
}
.footer_bunner a:hover {
  opacity: 0.6;
}

.footer_bottom {
  margin-top: 50px;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.footer_bottom a {
  transition: 0.3s;
}
.footer_bottom a:hover {
  opacity: 0.6;
}

.footer_bottom p {
  font-size: 1.4rem;
  margin-left: auto;
}

@media only screen and (max-width: 1000px) {
  .footer_info {
    flex-direction: column;
  }

  .footer_corp {
    width: 100%;
  }

  .footer_call {
    padding-top: 60px;
    width: 100%;
    text-align: center;
  }

  .footer_bunner {
    flex-direction: column;
    text-align: center;
  }

}

@media only screen and (max-width: 640px) {
  .footer_bunner img {
    width: 100%;
  }
}


/* フォーム */
dl.form {
  width: 800px;
  margin: 60px auto;
}

@media only screen and (max-width: 1000px) {
  dl.form {
    width: 100%;
    margin: 60px auto;
  }
}

dl.form dt {
  display: flex;
  justify-content: left;
  align-items: center;

  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.hissu {
  margin-left: 15px;

  color: #fff;
  background: #e13e4f;
  border-radius: 6px;
  padding: 2px 15px;
}

dl.form dd {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  dl.form dd {
    margin-bottom: 40px;
  }
}
.confirm dl.form dd {
  padding: 22px;
}
dl.form textarea, dl.form input[type=text], dl.form input[type=tel], dl.form input[type=email] {
  display: inline-block;
  height: 60px;
  width: 100%;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 48px;
  color: #333;
  vertical-align: middle;
  border-radius: 10px;
  background-color: #f7f7f7;
  border: 1px solid #ccc;
}

dl.form textarea {
  height: 200px !important;
  width: 100% !important;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  dl.form textarea {
    width: 100% !important;
    height: 138px !important;
  }
}

/* プライバシーポリシー */
.policy-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.policyCheck {
  display: block;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .policyCheck {
    margin: 0 auto 50px;
  }
}
.policyCheck input[type=checkbox] {
  display: none;
}
.policyCheck span {
  display: inline-block;
  padding-left: 30px;
  margin: 0 auto;

  font-size: 2.0rem;
  line-height: 1.5;

  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .policyCheck span {
    font-size: 14px;
  }
}
.policyCheck span::before {
  content: "";
  display: block;
  background-color: #fff;
  border: 1px solid #707070;
  width: 14px;
  height: 14px;
  margin-right: 15px;
  -webkit-transition: .3s;
  transition: .3s;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
}

.mfp_checked span::before {
  border: 8px solid #2699fb;
  width: 0;
  height: 0;
}
.mfp_checked span::after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background-image: url(../images/form_check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  opacity: 1;
  position: absolute;
  left: 2px;
  top: 50%;
  margin-top: -4px;
  -webkit-transition: .3s;
  transition: .3s;
}
.policyCheck a {
  color: #333;

  font-size: 2.0rem;
  text-decoration: underline;
}
.policyCheck a:hover {
  text-decoration: none;
}

/* 送信 */
.submit-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
.submit01 {
  margin-top: 60px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background: #333;
  width: 435px;
  height: 65px;
  border: none;
  cursor: pointer;
  border-radius: 9999px;
}
@media only screen and (max-width: 767px) {
  .submit01 {
    font-size: 1.6rem;
    height: 50px;
  }
}
.submit02 {
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  background: #333;
  width: 45%;
  height: 60px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}
.submit01:hover, .submit02:hover {
  opacity: .7;
  -webkit-transition: .3s;
  transition: .3s;
}

/* フォーム機能 */
#mfp_hidden {
  display: none;
}

.mfp_err {
  color: red;
  margin-top: 20px;
}

/* サンクスページ */
.contact_fin {
  background: #f7f7f7;
  padding: 40px 25px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

/* 演出 */
.reveal {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.reveal span {
  color: transparent;
  animation: showText 0s 0.6s forwards;
}

/* 擬似要素で帯を作る */
.reveal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  padding: 10px;
  background: #111; /* 帯の色 */
  z-index: 1;
  animation: slideOverlay 1.3s ease forwards;
}

@keyframes slideOverlay {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}

@keyframes showText {
  to {
    color: #111; /* 文字色 */
  }
}