/*--------------------------------------*
 * foundation
 *--------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #191919;
  font-size: 1.6rem;
  font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic',
    sans-serif;
  font-weight: normal;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.1em;
  font-feature-settings: "palt" 1;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a:hover {
  text-decoration: none;
}

@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.coming-soon {
  text-align: center;
  padding: 5vw 0;
  font-size: 5vw;
}

input[type="button"],
input[type="reset"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
input[type="image"],
textarea,
select {
  appearance: none;
  -webkit-appearance: none;/*Google Chrome/Safari対応*/
  -moz-appearance: none;/*Firefox対応*/
  -o-appearance: none;/*Opera対応*/
  border-radius: 0;}

/*--------------------------------------*
       * layout
       *--------------------------------------*/

.l-header {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 100;
  padding: 1% 3vw;
  transition: all .3s;
  background-color: transparent;
  background: #fff;
}

.l-header__logo h1 {
  font-size: 24px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.l-header__logo img {
  width: 240px;
}

.l-header__logo span {
  display: block;
  color: #212121;
  font-size: 14px;
  margin-left: 4px;
  letter-spacing: .05em;
}

.l-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header__link a {
  font-size: 18px;
  padding: 10px;
  box-shadow: none;
}

/*  
 .l-header.addColor {
   background: #131050;
   transition: all .3s;
 }
  */

  @media screen and (max-width: 1024px) {
    .l-header__link  {
      padding-right: 32px;
    }
  }
  

@media screen and (max-width: 768px) {
  .l-header__wrapper {
    justify-content: center;
  }

  .l-header h1 {
    font-size: 18px;
  }

  .l-header__logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .l-header__logo span {
    font-size: 12px;
  }

  .l-header__link a {
    font-size: 14px;
  }

  .l-header__link a:first-child {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 500px) {
  .l-header__link a {
    display: block;
  }
}

.l-header__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: wrap;
}

.l-header__nav {
  display: flex;
  margin-left: auto;
  margin-top: 20px;
}

.l-header__nav a:hover {
  text-decoration: underline;
}

.l-header__nav a:not(:first-child) {
  margin-left: 10px;
}

.l-header__lists {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.l-header__item {
  text-align: center;
}

.l-header__item a {
  position: relative;
  color: #fff;
  display: block;
  margin: 0 16px;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.1em;
}



.l-header__item span {
  display: block;
  font-size: 12px;
}

.link-wrapper a {
  display: block;
  padding-right: 20px;
  font-size: 24px;
  min-width: 145px;
  white-space: nowrap;
}

.l-header__item a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -4px;
  transform: scale(0, 1);
  transform-origin: right top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

.l-header__item a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top;
  /*左から右に向かう*/
}

.contact-link {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.fa-phone-alt,
.fa-envelope {
  margin-right: 4px;
}

.fa-line {
  color: #37B621;
  font-size: 30px;
}

.l-header__nav-sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .link-wrapper a {
    font-size: 14px;
  }
  .l-header__nav {
    display: none;
  }
}


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

  .l-header__nav,
  .link-wrapper,
  .contact-link {
    display: none;
  }


  .l-header__nav-sp {
    display: block;
  }

  .sp-nav-btn {
    position: relative;
    padding-right: 10px;
    width: 25px;
    height: 16px;
    z-index: 20;
    cursor: pointer;
  }

  .sp-nav-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
  }

  .sp-nav-btn span:nth-of-type(1) {
    top: 0;
    right: 3px;
    transition: ease-in 0.3s;
  }

  .sp-nav-btn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
    right: 3px;
    transition: ease-in 0.3s;
  }

  .sp-nav-btn span:nth-of-type(3) {
    bottom: 0;
    right: 3px;
    transition: ease-in 0.3s;
  }

  .sp-nav-btn.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
    transition: ease-in .3s;
    background: #131050;
  }

  .sp-nav-btn.active span:nth-of-type(2) {
    opacity: 0;
    transition: ease-in .3s;
  }

  .sp-nav-btn.active span:nth-of-type(3) {
    transform: translateY(-4px) rotate(45deg);
    background: #131050;
  }

  .sp-nav-btn.active:before {
    opacity: 0;
    transition: ease-in .3s;
  }

  .l-header__nav-sp {
    display: block;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    transform: translateX(100vw);
    transition: ease-in 0.3s;
    background: #fff;
  }

  .l-header__nav-sp.active {
    transform: translateX(0);
  }

  .l-header__lists-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100%;
    margin-top: 10vh;
  }

  .l-header__item-sp {
    font-size: 16px;
    text-align: center;
    padding-top: 24px;
  }

  .l-header__item-sp a {
    color: #1a1a1a;
  }

  .l-header__item-sp span {
    display: block;
  }
}

.l-footer {
  background-color: #131050;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

.l-footer a {
  display: block;
  font-size: 14px;
  text-decoration: underline;
}

.l-footer p {
  font-size: 24px;
  font-weight: bold;
}

.l-footer__lists {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.l-footer__item a {
  margin: 0 16px;
}

small {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 20px 0 70px;
  }
}


/*--------------------------------------*
 * object
*--------------------------------------*/
/*------------------------*
 * component
*-------------------------*/

.c-button-wrap {
  margin-top: 80px;
  text-align: center;
}

.c-button {
  max-width: 560px;
  width: 100%;
  margin: auto;
  font-size: 24px;
  color: #fff;
  padding: 20px 0;
  border-radius: 10px;
}

.c-button.-section-button {
  background: #1D283E;
  padding: 20px 32px;
}

.c-button.-section-button:hover {
  opacity: .7;
}

.c-button.-section-button i {
  margin-left: 10px;
}

.c-button.-contact {
  text-align: center;
  transition: all .3s;
}

.c-button i {
  margin-right: 8px;
}

.c-container {
  padding: 80px 0;
}

.c-content-wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 1440px;
}


.c-section-title {
  font-size: 35px;
  position: relative;
  z-index: 1;
  line-height: 1.25;
  font-weight: bold;
  color: #1D283E;
  text-align: center;

}

.c-section-title.-small {
  font-size: 18px;
  text-align: left;
  margin: auto;
  max-width: 800px;
  background: rgba(29, 40, 62, 0.2);
  color: #1D283E;
  padding: 12px 8px;
  font-weight: normal;
}
.sub-comment {
    font-size: 20px;
    font-weight: bold;
    color: #FF0004;
}

.column-subt{
  font-size: 16px;
  text-align: left;
  margin: auto;
  max-width: 800px;
  border-bottom:solid 2px rgba(29, 40, 62, 0.2);
  color: #1D283E;
  padding: 12px 8px 2px 8px;
  font-weight: normal;
}
 
.c-bg {
  background: #EAF5FE;
}
.cc-bg {
  background: #00bfff;
}

.main02 {
    width: 100%;
}

@media screen and (max-width: 1024px) {
  .c-button {
    font-size: 18px;
    padding: 10px 0;
  }
  .c-button.-section-button {
    padding: 10px 16px;
    font-size: 16px;
  }
}


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

  .c-button-wrap {
    margin: 20px 0 0;
  }

  .c-container {
    padding: 40px 0;
  }

  .c-section-title {
    font-size: 24px;
  }

  .c-section-title:before {
    width: 60px;
  }

}

/* メインビジュアル */

.mv {
  position: relative;
  z-index: 1;
}

.mv-bg {
    background-image: url("img/mv.jpg");
    height: 100vh;
    background-repeat:no-repeat;
  background-position:50%;
  background-size:contain;
background-size:100%;

}
.main__title {
    color: #111;
    position: absolute;
    top: 6%;
    left: 4%;
    font-size: 38px;
    z-index: 2;
    line-height: 1.25;
    font-weight: 700;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.main__title span {
    font-size: 52px;
    color: #ff0000;
}

.main__title__sub {
  position: absolute;
  top: 60%;
  left: 10%;
  width: 30%;
}

.main__title__sub span {
  display: inline-block;
}

.contact-button {
    display: block;
    margin: 0 auto;
    width: 70%;
}

.contact-button img {
    padding: 20px;
    float: left;
    width: 50%;
}
.clear{
	clear:both;
}
.mv_other img {
  display: block;
  height: 600px;
  object-fit: cover;
  width: 80%;
  margin-left: auto;
}


.mv_other h2 {
  letter-spacing: 0.15em;
  position: absolute;
  top: 50%;
  left: 10%;
  font-size: 4vw;
  color: #111111;
}

.mv_other:before {
  content: '';
  height: 80%;
}

.mv_other span {
  font-size: 17px;
  display: block;
  font-weight: normal;
  letter-spacing: .1em;
  padding: 10px;
}


.uketsuke {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin:30px auto;
  font-weight: 600;
}

.uketsuke::before,
.uketsuke::after {
  width: 3px;
  height: 40px;
  background-color: #2589d0;
  content: '';
}

.uketsuke::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}

.uketsuke::after {
  transform: rotate(35deg);
  margin-left: 30px;
}

.notes {
  font-size: 13px;
  font-weight: 500;
}
/*------------------------*
   * project
   *-------------------------*/

.p-mv {
  position: relative;
}

.p-mv--other img {
  height: 400px;
  object-fit: cover;
}

.p-mv__other-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

.p-mv__wrapper img {
  width: 100%;
}

.p-cta {
  text-align: center;
  background: url(img/cta_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.p-cta-link-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.p-cta-link-wrap a {
  margin: 0 20px;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
	.pc { display: block !important; }
	.sp { display: none !important; }

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

  .p-cta .fa-line {
    font-size: 24px;
  }
    
.mv-bg {
    background-image: url("img/mv.jpg");
    height: 100vh;
    background-repeat:no-repeat;
  background-position:top;
    background-size: 100% 100%;
}
    
.main__title {
    color: #111;
    position: absolute;
    top: 2%;
    left: 4%;
    font-size: 12px;
    z-index: 2;
    line-height: 1.25;
    font-weight: 700;
}  
.main__title span {
    font-size: 29px;
    color: #ff0000;
}
.contact-button {
    display: inline-block;
    margin: 0 auto;
    width: 100%;
}

.contact-button img {
    padding: 10px;
    float: none;
    display: block;
    width: 90%;
    margin: 0 auto;
}


/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
	.pc { display: none !important; }
	.sp { display: block !important; }
    

}

@media screen and (max-width: 768px) {
  .p-cta-link-wrap a {
      margin: 0;
}

  
  .p-cta-link-wrap a:not(:first-child) {
    margin-top: 20px;
  }

  .p-cta-link-wrap {
    flex-direction: column;
    align-items: center;
  }

  .p-cta .u-dib {
    display: inline-block;
  }
.u-dib {
    display: inline-block;
    margin-top: 0px;
}

.p-mv__other-title {
  font-size: 24px;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
}


.p-worry {
  text-align: center;
  background: #EAF5FE;
}

.p-worry-lists {
  display: inline-block;
  text-align: left;
  position: relative;
  /* 基準位置とする */
  background: #fff;
  padding: 20px 40px;
  margin-top: 20px;
}

.p-worry-lists:before {
  content: "";
  width: 20px;
  height: 20px;
  background: linear-gradient(-45deg, #EAF5FE 48%, #0000003d 48%, #fff 52%, #fff 52%);
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  box-shadow: -1px -1px 2px #c0c0c0;
  display: inline-block;
  position: absolute;
  bottom: -1px;
  right: -1px;
}

.p-worry-item {
  margin: 20px 0;
  font-size: 24px;
}

.p-worry-item:before {
  content: '';
  display: inline-block;
  background: url(img/check.png) no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -10px;
}

@media screen and (max-width: 768px) {
  .p-worry-lists {
    padding: 20px 32px;
  }

  .p-worry-item {
    font-size: 18px;
    text-indent: -40px;
    padding-left: 24px;
  }
}


.p-solution-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.p-solution-item {
  width: 32%;
}

.p-solution-item h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

.p-solution-item h3 span {
  display: inline-block;
}

.p-solution-item img {
  max-width: 300px;
  width: 100%;
  margin: auto;
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .p-solution-item h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .p-solution-lists {
    flex-direction: column;
  }

  .p-solution-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .p-solution-item img {
    margin-top: 20px;
  }

  .p-solution-item p {
    margin-top: -40px;
  }

}



.p-merit-item {
  display: flex;
  align-items: center;
  background: #fff;
  margin: 40px 0;
  padding: 20px 40px;
}

.p-merit-item figure {
  margin-right: 30px;
  width: 20%;
}

.p-merit-text {
  width: 80%;
}

.p-merit-item figure img {
  max-width: 200px;
  height: auto;
}

.p-merit-text h3 {
  font-size: 32px;
  background: linear-gradient(transparent 60%, #fffecb 0%);
  display: inline;
  padding: 0 2px 0px;
}

.p-merit-text p {
  margin-top: 20px;
  font-size: 18px;
}
.zangyo-satei {
    width: 90%;
    display: block;
}

@media screen and (max-width: 768px) {
  .p-merit-text {
    width: 100%;
  }

  .p-merit-text h3 {
    font-size: 24px;
  }

  .p-merit-item {
    position: relative;
    justify-content: center;
    padding-right: 16px;
  }

  .p-merit-item figure {
    position: absolute;
    left: -10px;
    top: -40px;
  }

  .p-merit-item figure img {
    max-width: 100px;
  }
}


.p-feature {
  background: #00bfff;
}

.p-feature-lists {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  counter-reset: number 0;
  margin: 40px auto 0;
}

.p-feature-item {
  width: 48%;
  text-align: center;
  background: #fff;
  padding: 60px 40px;
  margin: 20px 0;
  position: relative;
}

.p-feature-item:before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 72px;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: #F7921E;
}

.p-feature-item h3 {
  font-size: 24px;
  background: linear-gradient(transparent 60%, #ffe2cb 0%);
  display: inline;
}

.p-feature-item span {
  display: inline-block;
}

.p-feature-item p {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-feature-lists {
    flex-direction: column;
  }

  .p-feature-item {
    width: 100%;
    padding: 30px 20px;
  }

  .p-feature-item:before {
    font-size: 48px;
    top: 0;
    left: 0;
  }
}


.p-company-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.p-company-inner {
  font-size: 18px;
}

.p-company__flex {
  display: flex;
  border-bottom: 1px solid #000;
}

.p-company__flex dt,
.p-company__flex dd {
  padding: 24px 8px 10px 8px;
}

.p-company__flex dt {
  margin-right: 20px;
}

.p-company-map {
  position: relative;
  width: 48%;
  padding-top: 30%;
  /* = height ÷ width × 100 */
}

.p-company-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-company-box {
    flex-direction: column;
  }

  .p-company-inner {
    font-size: 16px;
    margin-bottom: 20px;
    width: 100%;
  }

  .p-company__flex dt {
    margin-right: 10px;
  }

  .p-company-map {
    position: relative;
    width: 100%;
    padding-top: 50%;
  }
}

.p-bottom-link {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-bottom-link {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
    padding: 0;
  }

  .p-bottom-link a {
    width: 33.3333%;
    margin: 0;
    border-radius: unset;
    text-align: center;
    padding: 10px 0;
  }

  .p-bottom-link a:first-child {
    margin: 0;
  }

  .p-bottom-link a i {
    margin: 0;
    font-size: 20px;
    position: static;
    margin-bottom: 4px;
  }

  .p-bottom-link a:hover {
    transform: none;
  }
}

.p-pension table {
  margin: auto;
  max-width: 800px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  font-size: 24px;
}

.p-pension table thead {
  background: #A0C752;
  color: #fff;
}

.p-pension table thead th {
  text-align: center;
  padding: 10px;
}

.p-pension table tbody th {
  background: #C6DD98;
  padding: 10px 0;
  padding-left: 10px;
  width: 30%;
  vertical-align: middle;
}

.p-pension table tbody td {
  padding: 10px 0;
  padding-left: 10px;
  background: #fff;
  vertical-align: middle;
  font-size: 32px;
}

.p-pension .u-table-green {
  margin-top: 20px;
}

.p-pension .u-table-green thead {
  background: #00B900;
  color: #fff;
}

.p-pension .u-table-green tbody th {
  background: #c3ffc3;
}

@media screen and (max-width: 768px) {
  .p-pension table {
    font-size: 16px;
  }

  .p-pension table tbody td {
    font-size: 18px;
  }
}

.p-faq {
  background: url(img/faq_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: lighten;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 160px 0;
}

.p-faq .c-button-wrap {
  margin-top: 0;
}

.p-content {
  margin-top: 80px;
}

.p-content__inner {
  margin-top: 32px;
}

.p-content__text {
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
}

.p-content__link {
  text-align: center;
  margin-top: 20px;
}

.p-content__link a {
  color: rgb(188, 40, 40);
  text-decoration: underline;
}

.p-flow {
  margin-top: 80px;
}

.p-flow__top-text {
  max-width: 800px;
  margin: 40px auto;
}

.p-flow__lists > li {
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.p-flow__lists > li:not(:last-child) {
  margin-bottom: 40px;
}
.p-flow__lists > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: -webkit-calc(10% + 30px - 2px);
  left: calc(10% + 30px - 2px);
  z-index: 10;
}
.p-flow__lists > li dl {
  width: 100%;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid rgb(107,144,219);
  border-radius: 10px;
  position: relative;
}
.p-flow__lists > li:not(:last-child) dl::before,
.p-flow__lists > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.p-flow__lists > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: rgb(107,144,219);
}
.p-flow__lists > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}
.p-flow__lists > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: rgb(107,144,219);
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}

.p-flow__lists > li dl dd {
  font-size: 25px;
  color: #262626;
  font-weight: bold;
}

.p-flow__lists > li dl dt .icon {
  font-size: 24px;
  color: #fff;
  background-color:#2da3f3;
  padding: 5px 10px;
  display: block;
  border-radius: 5px;
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .p-flow__lists > li dl {
    display: block;
    text-align: center;
  }  
  .p-flow__lists > li dl dd {
    margin-top: 20px;
  }
  .p-flow__lists > li dl dt .icon {
    font-size: 18px;
  }
  .p-flow__lists > li dl dd {
    font-size: 16px;
  }
  .p-flow__lists > li:not(:first-child)::before {
    display: none;
  }
  .p-faq {
    padding: 40px 0;
  }
}

.p-question {
  margin-top: 80px;
}

.qa-list {
  margin-top: 40px;
}

.qa-list dl {
  position: relative;
  margin: 0;
  padding: 28px 80px 28px 30px;
  cursor: pointer;
  border-bottom: 1px solid #000;
}
.qa-list dl:first-child {
  border-top: 1px solid #000;
}
.qa-list dl::before {
  position: absolute;
  top: 35px;
  right: 35px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.qa-list .open::before {
  transform: rotate(-45deg);
}
.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 0 0 0 50px;
  font-weight: bold;
  font-size: 20px;
}
.qa-list dl dt::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  content: 'Q.';
  color: #3285bf;
}
.qa-list dl dd::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 3px;
  left: 2px;
  display: block;
  content: 'A.';
  font-weight: bold;
  color: #3285bf;
}
.qa-list dl dd {
  position: relative;
  display: none;
  height: auto;
  margin: 20px 0 0;
  padding: 0 0 0 50px;
}
.qa-list dl dd p {
  margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
  margin-top: 0;
}

@media screen and (max-width: 767px) {
.qa-list dl {
  position: relative;
  padding: 15px 40px 15px 10px;
}
.qa-list dl::before {
  top: 20px;
  right: 20px;
  width: 7px;
  height: 7px;
}
.qa-list dl dt {
  padding: 0 0 0 30px;
  font-size: 14px;
}
.qa-list dl dt::before {
  font-size: 14px;
  top: 3px;
  left: 5px;
  content: 'Q.';
}
.qa-list dl dd::before {
  font-size: 14px;
  top: 5px;
  left: 5px;
  content: 'A.';
}
.qa-list dl dd {
  margin: 10px 0 0;
  padding: 0 0 0 30px;
  font-size: 14px;
}
.qa-list dl dd p {
  margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
  margin-top: 0;
}
}

#breadcrumb {
  margin: 0;
  padding: 13px 15px;
}
.archive #breadcrumb {
  padding: 0;
  background: transparent;
}
#breadcrumb ul {
  margin: 0;
}
#breadcrumb li {
  display: inline;
  list-style: none;
  color: gray;
  font-size: 0.87em;
}
#breadcrumb li:after {
  padding: 0 6px;
  color: rgba(0, 0, 0, 0.2);
  font-family: FontAwesome;
  content: "\f0da";
  font-size: 14px;
}

#breadcrumb li:last-child::after {
  display: none;
}

#breadcrumb li a {
  text-decoration: none;
}
#breadcrumb li:first-child a:before {
  padding-right: 5px;
  font-family: FontAwesome;
  font-size: 1.1em;
  font-weight: normal;
  content: "\f015";
}
#breadcrumb li a:hover {
  color: gray;
  text-decoration: none;
}



/*------------------------*
  * utitlty
*-------------------------*/

.u-cta-orange {
  background: #F7921E;
  box-shadow: 0 10px 0 #D57E1A;
}

.u-cta-orange:hover {
  background: #ab6515;
  box-shadow: none;
  transform: translateY(10px);
}

.u-cta-blue {
  background: #2DA3F3;
  box-shadow: 0 10px 0 #2381C1;
}

.u-cta-green {
  background: #00B900;
  box-shadow: 0 10px 0 #009b00;
  color: #fff;
}

.u-cta-green:hover {
  background: #008800;
  transform: translateY(10px);
  box-shadow: none;
}

.u-cta-green i {
  color: #fff;
  position: relative;
  top: 4px;
}

.u-font-big {
  font-size: 48px;
  color: rgb(228, 19, 19);
}

.u-plus {
  text-align: center;
  margin: 20px 0;
  font-size: 32px;
}

.u-table-text {
  text-align: center;
  margin-top: 40px;
  font-size: 32px;
}

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

  .u-dn {
    display: none;
  }

  .u-font-big {
    font-size: 32px;
  }

  .u-table-text {
    font-size: 18px;
  }
}


.u-dib {
  display: inline-block;
}

.u-name {
  position: absolute;
  bottom: 50px;
  right: 50px;
  writing-mode: vertical-lr;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .u-name {
    writing-mode: unset;
    bottom: 0;
    right: 0;
    font-size: 16px;
  }
}


#formWrap {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 120%;
  font-size: 90%;
}

#formWrap span {
  display: inline-block;
}

#formWrap .c-section-title {
  text-align: center;
  line-height: 1.25;
  display: block;
}

#formWrap p {
  margin-top: 40px;
}

#formWrap>p {
  font-size: 18px;
  line-height: 1.5;
}

table.formTable {
  width: 100%;
  margin: 40px auto;
  border-collapse: separate;
  border-spacing: 0 20px;
}

table.formTable input {
  width: 100%;
}

table.formTable td label {
  display: block;
}

table.formTable td label:not(:first-child) {
  margin-top: 10px;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ededed inset;
}

table.formTable span {
  color: rgb(228, 19, 19);
}

table.formTable td {
  text-align: left;
}

table.formTable th {
  padding: 10px;
  font-weight: normal;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #formWrap {
    width: 95%;
    margin: 0 auto;
  }

  table.formTable {
    margin-top: 20px;
  }

  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }

  form input[type="text"],
  form textarea {
    width: 100%;
    display: block;
  }

  form input[type="submit"],
  form input[type="reset"],
  form input[type="button"] {
    display: block;
    width: 100%;
  }
}

table.formTable input{
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(198 198 198);
}



textarea {
  width: 100%;
  border: 1px solid rgb(198 198 198);
  background-color: #fff;
}

input {
  appearance: none;
  font-size: 16px;
}

table.formTable .checkbox-field {
  width: unset;
  vertical-align: middle;

}

.checkbox {
  display: inline-block;
  position: relative;
  padding-right: 8px;
  cursor: pointer;
  user-select: none;
  /* テキストの選択を防ぐ */
  padding-left: 2.7em;
  text-indent: -2.7em;
  width: -moz-fit-content;
  width: fit-content;
}

input {
  appearance: none;
  font-size: 16px;
}

input[type="checkbox"] {
  /* 透明度0 */
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  /* ブラウザのデフォルトのスタイルを削除 */
  -webkit-appearance: none;
  appearance: none;
  /* レイアウトから無視 */
  position: absolute;
}

.u-anker {
  padding-top: 100px;
}

.u-anker__inner {
  padding-top: 100px;
  margin-top: -100px;
}

input[type=checkbox]+.checkmark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -0.25em;
  margin-right: 0.5em;
}

input[type=checkbox]+.checkmark:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 4px;
  border: 2px solid #ccc;
  background: #fff;
  box-shadow: none;
}

input[type=checkbox]:checked+.checkmark:after {
  position: absolute;
  content: "";
  top: -0.05em;
  left: 0.45em;
  width: 50%;
  height: 80%;
  transform: rotate(45deg);
  border: solid 2px transparent;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  background: transparent;
  box-shadow: none;
}

input[type=checkbox]:checked+.checkmark:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: #416FE1;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

input:focus,
input[type=checkbox]:focus+.checkmark {
  border-radius: 4px;
  box-shadow: 0 0 3px 3px #809dcb;
}

input[type=checkbox]:focus+.checkmark:after {
  border-radius: 4px;
  box-shadow: none;
}

input[type=checkbox]:focus:not(:cheked)+.checkmark:after {
  border-color: #809dcb;
}

input[type=checkbox]:disabled+.checkmark:after {
  background: #ccc;
}

label:hover input[type=checkbox]:not(:checked):not(:disabled)+.checkmark:after {
  border-color: #809dcb;
  border-radius: 4px;
}


.u-anker {
  padding-top: 100px;
}

.u-anker__inner {
  padding-top: 100px;
  margin-top: -100px;
}


.p-hamburger {
  display: none;
}



@media screen and (max-width: 1024px) {
  .p-hamburger {
    display: block;
  }
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0;
  /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #EFEFEF;
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  display: none;
  z-index: 999;
}

#g-nav.panelactive ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

.p-drawer {
  display: none;
}

@media screen and (max-width: 1024px) {
  .p-drawer {
    display: block;
  }
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 16px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #383635;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (max-width: 768px) {
  .openbtn {
    top: 8px;
  }  
}

/*コラム*/

.p-question-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(3,1fr);
  gap: 30px;
  width: 100%;
}



/* .p-question-ch {
  width: 400px;
} */

.column {
  margin: 0 auto;
  max-width: 1200px;
}

.column-kiji {
  width: 100%;
  display: inline-block;
}

.column-title {
  width: 100%;
  background: #ffdf1c;
  margin: 0 auto;
  text-align: center;
  padding: 12px;
  font-size: 50px;
  font-weight: bold;
  color: #ff0000;
  display: inline-block;
}

.column-table {
  width: 90%;
  margin: 0 auto;
  max-width: 800px;
  border-spacing: 0px;
  border-collapse: collapse;
  border-spacing: 0 13px ;
}

.column-table td {
  border: #888888 solid 1px;
  padding: 5px;
}

.column-table .td1 {
  width: 20%;
}



.link-under {
text-decoration:underline;
}

.column-title span {
  font-size: 17px;
  font-weight: normal;
  color: #131010;
}

.column-answer {
  position: relative;
  padding: 2em 1.5em 1em;
  margin: 6em 2em;
  border: solid 3px #46aebb;
  border-radius: 8px;
  color: #333;
  max-width: 800px;
  margin: 80px auto;
}

.column-answer .column-ans-b {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 10px;
  line-height: 1;
  font-size: 1.8em;
  /*タイトル文字サイズ*/
  background: #ffffff;
  /*タイトル文字背景色*/
  color: #46aebb;
  /*タイトル文字色*/
  font-weight: bold;
}

.column-answer p {
  margin: 0;
  padding: 0;
  font-size: 1.5em;
}

.clear {
  clear: both;
}

section.column-main img {
    width: 100%;
    margin: 0 auto;
}


/* 引用符 */
blockquote {
  position: relative;
  padding: 10px 15px 10px 50px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  color: #464646;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

blockquote:before{
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  content: "“";
  font-family: sans-serif;
  color: #f7921e;
  font-size: 60px;
  line-height: 1;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

blockquote sub {
display: block;
text-align: right;
margin: 20px 0;
}


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

  .p-question-grid {
    gap: 10px;
    display: block;
    margin: 0 auto;
  }

  .column {
    margin: 0 auto;
    width: 100%;
  }

  .column-kiji {
    margin: 0 auto;
    width: 95%;
    display: block;
  }

  .column-kiji img {
width: 100%;
height: auto;
  }

  .column-title {
    width: 100%;
    background: #ffdf1c;
    margin: 0 auto;
    text-align: center;
    padding: 12px;
    font-size: 50px;
    font-weight: bold;
    color: #ff0000;
    display: block;
  }

  .column-title span {
    font-size: 12px;
    display: block;
  }
}

/*コラム*/

/* お客様の声 voice */

.voice-catch__img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.voice__inner {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.voice-icon {
  width: 170px;
}

.voice-icon img {
  width:100%;
}

.voice-icon p {
  font-size: 12px;
  text-align: center;
}

.balloon1-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 7px 10px;
  min-width: 70px;
  width: 80%;
  font-size: 16px;
  background: #e0edff;
}

.balloon1-left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #e0edff;
}

.balloon1-left p {
  margin: 0;
  padding: 0;
}

.balloon1-right {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 16px;
  background: #e0edff;
}

.balloon1-right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #e0edff;
}

.balloon1-right p {
  margin: 0;
  padding: 0;
}

@media screen and (max-width:599px) {
  .voice__inner {
    gap: 15px;
  }

  .balloon1-left {
    min-width: 100px;
    max-width: 90%;
  }

  .balloon1-right {
    min-width: 100px;
    max-width: 90%;
  }
}