@charset "utf-8";

/*----------------------------------------
2019.07
style.css

コンテンツ内の各記述を明記します。
・トップ
・コンテンツ
----------------------------------------*/


/* --------------------- 共通要素 --------------------- */
main {
  position: relative;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}
input, button, textarea, select {
  outline: none;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
div.anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
  clear: both;
}

@media only screen and (max-width: 960px) 
{ /* SP */
main {
  overflow: hidden;
}
div.anchor {
  display: block;
  padding-top: 60px;
  margin-top: -60px;
}
}





/* --------------------- h2共通 --------------------- */
.c-heading {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  flex-shrink: 0;
}
.c-heading__sub {
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
  color:#25498D;
  position: relative;
}
.c-heading__sub:after {
  content: "";
  position: absolute;
  width: 36px;
  height: 1px;
  background: #2b2b2b;
  right: -35px;
  top: 50%;
  transform: translateY(-50%) rotate(-40deg);
  transform-origin: center;
}
.c-heading__main {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  padding-left: 40px;
}
/* 2行にする場合 */
.c-heading.noflex {
  display: block !important;
}
.c-heading__main.noflex {
  padding-left: 0 !important;
  margin-top: 15px;
}
@media only screen and (max-width: 960px) 
{ /* SP */
.c-heading {
  margin-bottom: 35px;
}
.c-heading__sub {
  font-size: 15px;
}
.c-heading__sub:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 1px;
  background: #2b2b2b;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(-40deg);
  transform-origin: center;
}
.c-heading__main {
  font-size: 32px;
  line-height: 1.5;
  padding-left: 35px;
}
/* 2行にする場合 */
.c-heading.noflex {
  display: block !important;
}
.c-heading__main.noflex {
  padding-left: 0 !important;
  margin-top: 10px;
}
}



/* --------------------- kv --------------------- */
.c-mainvisual {
  padding: 200px 0 120px;
}
.c-mainvisual__ttl {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 35px;
}
.c-mainvisual__ttlSub {
  font-size: 20px;
  font-weight: 600;
  color:#25498D;
}
.c-mainvisual__txt {
  margin-top: 40px;
}
@media only screen and (max-width: 960px) 
{ /* SP */
.c-mainvisual {
  padding: 140px 0 100px;
}
.c-mainvisual__ttl {
  font-size: 38px;
  margin-bottom: 25px;
}
.c-mainvisual__ttlSub {
  font-size: 17px;
}
}
/* iPhone SE系（321px〜375px） */
@media screen and (min-width: 321px) and (max-width: 375px) {

}
/* iPhone X以上（376px〜414px） */
@media screen and (min-width: 376px) and (max-width: 414px) {

}



/* ----------------- p-about ----------------- */
.p-about__inner {
  display: flex;
  padding: 140px 0;
  position: relative;
  z-index: 1;
}
.p-about__inner:after {
  position: absolute;
  background: #f3f5f9;
  content: "";
  width: 70%;
  height: 100%;
  left: 0;
  top: 0;
  display: inline-block;
  background-size: cover;
  z-index: 0;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  background-position-y: center;
  z-index: -1;
  border-radius: 0 120px 120px 0;
}
.p-about__img {
  max-width: 580px;
}
.p-about__lead {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color:#25498D;
  background: #D3DAE8;
  padding: 12px;
  line-height: 1;
  margin-bottom: 30px;
}
.p-about__ttl {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-about__inner {
  display: block;
  padding: 60px 0;
}
.p-about__inner:after {
  position: absolute;
  background: #f3f5f9;
  content: "";
  width: 80%;
  height: 100%;
  left: 0;
  top: 0;
  display: inline-block;
  background-size: cover;
  z-index: 0;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  background-position-y: center;
  z-index: -1;
  border-radius: 0 120px 120px 0;
}
.p-about__img {
  max-width: 100%;
  margin-top: 40px;
}
.p-about__lead {
  display: inline-block;
  font-size: 17px;
  color:#25498D;
  background: #D3DAE8;
  padding: 12px;
  line-height: 1;
  margin-bottom: 20px;
}
.p-about__ttl {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 35px;
}
}


/* ----------------- p-issue ----------------- */
.p-issue {
  padding: 140px 0 160px;
}
.p-issue__inner {
  display: flex;
  justify-content: space-between;
  justify-content: space-between;
  align-items: baseline;
}
.p-issue__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  margin-left: 70px;
}
.p-issue__item {
  background: #F3F5F9;
  border-radius: 12px;
  padding: 40px 25px 190px 25px;
  position: relative;
}
.p-issue__itemHead {
  display: flex;
  align-items: flex-start;
 justify-content: space-between;
}
.p-issue__itemHead-ttl {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.p-issue__itemHead-num {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: center; /* 右中央を基準に回転 */
  color: #25498D;
  font-weight: 600;
  font-size: 16px; /* 回転後の幅の基準 */
  white-space: nowrap; /* 折り返し防止 */
  width: 16px; /* 回転後の幅をフォントサイズ（1文字分の幅）に設定 */
  height: auto; /* 回転後の高さはテキストの自然な幅に */
  text-align: left; /* 縦書き時のテキスト揃え */
}
.p-issue__itemSolution {
  background: #ECE664;
  border-radius: 6px;
  padding: 20px 15px;
  position: absolute;
  width: calc(100% - 50px);
  left:50%;
  transform: translateX(-50%);
  bottom: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height:140px;
}
.p-issue__itemSolution-icon {
  text-align: center;
  line-height: 1;
}
.p-issue__itemSolution-icon img{
  width: 32px;
}
.p-issue__itemSolution-icon span {
  font-size: 12px;
  color: #25498D;
  font-weight: 600;
  line-height: 1;
}
.p-issue__itemSolution-lead {
  color: #25498D;
  line-height: 1.5;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid  #91A1C6;
  font-weight: 600;
}
@media screen and (min-width: 960px) and (max-width: 1030px)
{
.p-issue__item {
  padding: 40px 25px 220px 25px;
}
.p-issue__list {
  margin-left: 20px;
}
.p-issue__itemHead-ttl {
  font-size: 18px;
}
}

@media only screen and (max-width: 960px) 
{ /* SP start */
.p-issue {
  padding: 80px 0 100px;
}
.p-issue__inner {
  display: block;
}
.p-issue__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
  margin-left: 0;
}
.p-issue__item {
  background: #F3F5F9;
  border-radius: 12px;
  padding: 30px 20px ;
  position: relative;
}
.p-issue__itemHead {
  display: flex;
  align-items: flex-start;
 justify-content: space-between;
}
.p-issue__itemHead-ttl {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 25px;
}
.p-issue__itemHead-num {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: center; /* 右中央を基準に回転 */
  color: #25498D;
  font-weight: 600;
  font-size: 14px; /* 回転後の幅の基準 */
  white-space: nowrap; /* 折り返し防止 */
  width: 14px; /* 回転後の幅をフォントサイズ（1文字分の幅）に設定 */
  height: auto; /* 回転後の高さはテキストの自然な幅に */
  text-align: left; /* 縦書き時のテキスト揃え */
}
.p-issue__itemSolution {
  background: #ECE664;
  border-radius: 6px;
  padding: 18px 15px;
  position: inherit;
  width:100%;
  left:inherit;
  transform: inherit;
  bottom: inherit;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height:auto;
}
.p-issue__itemSolution-icon {
  text-align: center;
  line-height: 1;
}
.p-issue__itemSolution-icon img{
  width: 32px;
}
.p-issue__itemSolution-icon span {
  font-size: 12px;
  color: #25498D;
  font-weight: 600;
  line-height: 1;
}
.p-issue__itemSolution-lead {
  color: #25498D;
  line-height: 1.5;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid  #91A1C6;
  font-weight: 600;
}
}




/* ----------------- p-reason ----------------- */
.p-reason {
  padding:0 0 140px;
  background: #F3F5F9;
  margin-bottom: 140px;
  border-radius: 0 0 0 120px;
}
.p-reason__img {
  margin-bottom: 3vw;
  position: relative;
}
.p-reason__img:before {
  position: absolute;
  background: url(../img/sitegrowth_illust_01.svg) no-repeat;
  top: -70px;
  content: "";
  width: 88px;
  height: 92px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  left: 20%;
}
.p-reason__img:after {
  position: absolute;
  background: url(../img/sitegrowth_illust_02.svg?ver2) no-repeat;
  top: -185px;
  content: "";
  width: 162px;
  height: 200px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  right: 0;
}
.reasonSlide .swiper-wrapper {
  transition-timing-function: linear;
}
.reasonSlide.swiper-outer {
  position: relative;
  width: 100%;
  margin: auto;
}
.reasonSlide .swiper-container {
  margin-top: 80px;
  height: auto;
  width: 100%;
  overflow: visible;
}
.reasonSlide .swiper-slide {
  width: 700px;
  margin: 0 45px;
  box-sizing: border-box;
}
.reasonSlide .swiper-button-prev,
.reasonSlide .swiper-button-next {
 display: none;
}
.reasonSlide .swiper-pagination {
  position: relative; /* 絶対配置を解除して親要素に対して相対的に配置 */
  margin-top: 20px;
}
.reasonSlide .swiper-pagination-bullet-active {
  background: #25498d;
}
.reasonSlide_num {
  font-size: 110px;
  color: #25498D;
  font-weight: 600;
  text-align: right;
  line-height: 1;
  margin: -80px 20px 0 0 ;
}
.reasonSlide_ttl {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 25px;
}
.reasonSlide_list_item:not(:last-child) {
  margin-bottom: 15px;
}
.reasonSlide_list_item {
  position: relative;
  padding-left: 38px;
}
.reasonSlide_list_item:before {
  position: absolute;
  background: url(../img/icon_check.svg) no-repeat;
  top: 15px;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  left: 0;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-reason {
  padding:0 0 80px;
  background: #F3F5F9;
  margin-bottom: 80px;
  border-radius: 0 0 0 60px;
}
.p-reason__img {
  margin-bottom: 60px;
  position: relative;
}
.p-reason__img:before {
  position: absolute;
  background: url(../img/sitegrowth_illust_01.svg) no-repeat;
  top: -55px;
  content: "";
  width: 58px;
  height: 60px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  left: 10%;
}
.p-reason__img:after {
  position: absolute;
  background: url(../img/sitegrowth_illust_02.svg) no-repeat;
  top: -110px;
  content: "";
  width: 92px;
  height: 114px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  right: 0;
}
.reasonSlide .swiper-container {
  width: calc(100% - 40px);
  height: auto;
  margin: 0 20px;
  box-sizing: border-box;
}
.reasonSlide .swiper-button-next, .reasonSlide .swiper-button-prev {
  width: 50px;
  height: 50px;
  position: absolute;
}
.reasonSlide .swiper-slide {
  width: 100%;
  margin: 0 10px;
}
.reasonSlide .swiper-pagination {
  position: relative; /* 絶対配置を解除して親要素に対して相対的に配置 */
  margin-top: 10px;
}
.reasonSlide_num {
  font-size: 70px;
  color: #25498D;
  font-weight: 600;
  text-align: right;
  line-height: 1;
  margin: -55px 15px 0 0 ;
}
.reasonSlide_ttl {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 15px 0 25px;
}
.reasonSlide_list_item:not(:last-child) {
  margin-bottom: 12px;
}
.reasonSlide_list_item {
  position: relative;
  padding-left: 35px;
  font-size: 15px;
}
.reasonSlide_list_item:before {
  position: absolute;
  background: url(../img/icon_check.svg) no-repeat;
  top: 15px;
  transform: translateY(-50%);
  content: "";
  width: 25px;
  height: 25px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  left: 0;
}
}




/* ----------------- p-price ----------------- */
.p-price {
  padding-bottom: 140px;
}
.p-price .c-heading {
  justify-content: center;
}
.p-price__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}
.p-price__item {
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #DDDDDD;
}
.p-price__item-ttl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
}
.p-price__item-lead {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}
.p-price__item-lead span {
  font-size: 120px;
  font-weight: 500;
  color: #25498D;
}
.p-price__list {
  display: flex;
  justify-content: center;
}
.p-price__listItem {
  position: relative;
  padding-left: 32px;
  margin: 0 10px;
}
.p-price__listItem:before {
  position: absolute;
  background: url(../img/icon_check.svg) no-repeat;
  top: 15px;
  transform: translateY(-50%);
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  left: 0;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-price {
  padding-bottom: 80px;
}
.p-price .c-heading {
  justify-content: inherit;
}
.p-price__inner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}
.p-price__item {
  padding: 30px 20px;
  border-radius: 12px;
}
.p-price__item-ttl {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 40px;
}
.p-price__item-lead {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.p-price__item-lead span {
  font-size: 80px;
  font-weight: 500;
  color: #25498D;
}
.p-price__listWrap {
  text-align: center;
  display: block;
}
.p-price__list {
  display: inline-block;
}
.p-price__listItem {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  text-align: left;
}
.p-price__listItem:before {
  position: absolute;
  background: url(../img/icon_check.svg) no-repeat;
  top: 15px;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
}
}




/* ----------------- p-cv ----------------- */
.p-cv {
  background: #25498d;
  padding: 95px;
  overflow: hidden;
}
.p-cv__wrap {
  position: relative;
  z-index: 1;
}
.p-cv__wrap:after {
  position: absolute;
  background: url(../img/cv_bg.png) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1653px;
  height: 1083px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  left: 150px;
  z-index: -1;
}
.p-cv__ttl {
  color: #fff;
  font-weight: 400;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
.p-cv__lead {
  font-size: 36px;
  color: #fff;
  line-height: 1.5;
  margin: 18px 0 40px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-cv {
  padding: 50px 0 200px;
}
.p-cv__wrap {
  position: relative;
  z-index: 1;
}
.p-cv__wrap:after {
  position: absolute;
  background: url(../img/cv_bg.png) no-repeat;
  top: 38%;
  transform: translateY(-50%);
  content: "";
  width: 800px;
  height: 524px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
 left:50%;
transform: translateX(-50%) rotate(30deg);
  z-index: -1;
}
.p-cv__ttl {
  font-size: 14px;
}
.p-cv__lead {
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  margin: 18px 0 30px;
}
}




/* ----------------- flow ----------------- */
.p-flow {
  padding: 140px 0;
}
.p-flow__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.p-flow__item:not(:last-child) {
  margin-bottom: 40px;
}
.p-flow__item {
  display: flex;
  align-items: baseline;
  border-left: 1px solid #25498D;
  padding: 15px 0;
}
.p-flow__item-num {
  font-size: 28px;
  font-weight: 500;
  color: #25498D;
  line-height: 1;
  margin: 0 50px 0 45px;
}
.p-flow__item-ttl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.p-flow__item-txt {
  margin-bottom: 30px;
}
.p-flow__item-note {
  font-size: 13px;
  margin-bottom: 20px;
}
.p-flow__item .c-btn2 {
  padding: 18px 22px;
  width: 240px;
}
.p-flow__itemList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px 55px;
  margin-bottom: 30px;
}
.p-flow__itemList-li {
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}
.p-flow__itemList-li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #25498D;
  width: 12px; 
  height: 12px;
  left: 0;
  border-radius: 100px;
}
.p-flow__itemAtteniion {
  background: #EEF0F6;
  border-radius: 6px;
  padding: 25px 30px;
}
.p-flow__itemAtteniion span {
  position: relative;
  padding-left: 40px;
  display: inline-block;
}
.p-flow__itemAtteniion span:before {
  position: absolute;
  background: url(../img/icon_attention.svg) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  left: 0;
}
.p-flow__itemPlanning {
  display: flex;
  align-items: center;
}
.p-flow__itemPlanning-name {
  font-size: 15px;
  color: #25498D;
  font-weight: 600;
  padding: 8px 10px;
  border: 1px solid #25498D;
}
.p-flow__itemPlanning-icon {
  width: 15px;
  margin: 0 10px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-flow {
  padding: 80px 0;
}
.p-flow__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.p-flow__item:not(:last-child) {
  margin-bottom: 30px;
}
.p-flow__item {
  padding: 10px 0;
}
.p-flow__item-num {
  font-size: 22px;
  margin: 0 20px 0 15px;
}
.p-flow__item-ttl {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.p-flow__item-txt {
  margin-bottom: 25px;
}
.p-flow__item-note {
  font-size: 12px;
}
.p-flow__item .c-btn2 {
  padding: 18px 22px;
  width: 240px;
}
.p-flow__itemList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 12px;
  margin-bottom: 20px;
}
.p-flow__itemList-li {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding-left: 18px;
}
.p-flow__itemList-li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #25498D;
  width: 10px; 
  height: 10px;
  left: 0;
  border-radius: 100px;
}
.p-flow__itemAtteniion {
  background: #EEF0F6;
  border-radius: 6px;
  padding: 25px 20px;
  font-size: 14px;
}
.p-flow__itemAtteniion span {
  position: relative;
  padding-left: 36px;
  display: inline-block;
}
.p-flow__itemAtteniion span:before {
  position: absolute;
  background: url(../img/icon_attention.svg) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 26px;
  height: 26px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  left: 0;
}
.p-flow__itemPlanning {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-flow__itemPlanning-name {
  font-size: 14px;
  color: #25498D;
  font-weight: 600;
  padding: 6px 10px;
  border: 1px solid #25498D;
}
.p-flow__itemPlanning-icon {
  width: 15px;
  margin: 0 10px;
}
}




/* ----------------- p-faq ----------------- */
.p-faq {
  margin-bottom: 140px;
}
.p-faq__inner {
  display: flex;
}
.faq-area{
  list-style: none;
  width: 100%;
  margin-left: 70px;
}
.faq-area li{
  border-radius: 6px;
  background-color: #EEF0F6;
  margin-bottom: 30px;
}
/*アコーディオンタイトル*/
.faq-area .faq_title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  transition: all .5s ease;
  color: #2B2B2B;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  line-height: 1.5;
    padding:30px 40px;
}
.faq-area .faq_title span.icon {
  margin-right: 20px;
  flex-shrink: 0;
  font-size:30px;
  font-weight: 400;
  line-height: 100%;
  color: #25498D;
}
/*アイコンの＋×*/
.faq-area .faq_title::after{    
  content: " ";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 30px;
  background: url(../img/icon_plus.svg) no-repeat left top;
  background-size: contain;
  transition: .3s;
}
/*　closeというクラスがついたら形状変化　*/
.faq-area .faq_title.close::after{
  content: " ";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 30px;
  background: url(../img/icon_minus.svg) no-repeat left top;
  background-size: contain;
}
/*アコーディオンで現れるエリア*/
.faq-area .faq_box {
  display: none;/*はじめは非表示*/
  padding:0 40px 20px;
}
.faq_answer_txt {
  display: inline-block;
  line-height: 1.6;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-faq {
  margin-bottom: 80px;
}
.p-faq__inner {
  display: block;
}
.faq-area{
  margin:50px auto 0;
}
.faq_question {
  font-size: 16px;
}
.faq-area li{
  margin-bottom: 20px;
}
.faq-area .faq_title span.icon {
  margin-right: 18px;
  font-size:25px;
}
/*アイコンの＋×*/
.faq-area .faq_title::after{    
  content: " ";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  right: 10px;
  top: 40%;
  background: url(../img/icon_plus.svg) no-repeat left top;
  background-size: contain;
}
/*　closeというクラスがついたら形状変化　*/
.faq-area .faq_title.close::after{
  content: " ";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  right: 10px;
  top: 40%;
  background: url(../img/icon_minus.svg) no-repeat left top;
  background-size: contain;
}
/*アコーディオンタイトル*/
.faq-area .faq_title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size:15px;
  font-weight: normal;
  padding:20px 40px 20px 20px; 
  transition: all .5s ease;
  font-weight: 700;
  display: flex;
}
/*アコーディオンで現れるエリア*/
.faq-area .faq_box {
  display: none;/*はじめは非表示*/
  padding:20px;
}
.faq-area .faq_answer span.icon {
  font-size:25px;
  margin-right: 18px;
}
}




/* ----------------- p-service ----------------- */
.p-service {
  margin-bottom: 140px;
}
.p-service .widthFix {
  padding: 140px 0;
  position: relative;
  z-index: 1;
}
.p-service .widthFix:after {
  position: absolute;
  background: #f3f5f9;
  content: "";
  width: 90%;
  height: 100%;
  left: 0;
  top: 0;
  display: inline-block;
  background-size: cover;
  z-index: 0;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  background-position-y: center;
  z-index: -1;
  border-radius: 0 120px 120px 0;
}
.p-service .c-heading {
  justify-content: center;
}
.p-service__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}
.p-service__item {
  border-radius: 12px;
  padding: 40px 35px;
  background: #fff;
  display: flex;
  color: #2B2B2B;
  pointer-events: none;
}
.p-service__item-img {
  width: 100%;
  max-width: 128px;
  margin-right: 35px;
}
.p-service__item-ttl {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  line-height: 1.5;
}

/*
.p-service__item-ttl:before {
  position: absolute;
  background: url(../img/icon_arrow_blu_circle.svg) no-repeat;
  top: 0;
  content: "";
  width: 32px;
  height: 32px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  right: 0;
  transition: .3s;
}
.p-service__item:hover .p-service__item-ttl:before {
  right: -10px;
}
*/

.p-service__item.active {
pointer-events: inherit;
}
.p-service__item-ttl.active:before {
  position: absolute;
  background: url(../img/icon_arrow_blu_circle.svg) no-repeat;
  top: 0;
  content: "";
  width: 32px;
  height: 32px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  right: 0;
  transition: .3s;
}
.p-service__item:hover .p-service__item-ttl.active:before {
  right: -10px;
}

.p-service__item-txt {
  margin: 15px 0 18px;
}
.p-service__itemList-li:not(:last-child) {
  margin-bottom: 15px;
}
.p-service__itemList-li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
}
.p-service__itemList-li:before {
  position: absolute;
  background: url(../img/icon_check.svg) no-repeat;
  top: 15px;
  transform: translateY(-50%);
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  left: 0;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-service {
  margin-bottom: 80px;
}
.p-service .widthFix {
  padding: 60px 0;
}
.p-service .c-heading {
  justify-content: left;
}
.p-service__inner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}
.p-service__item {
  border-radius: 12px;
  padding: 30px 20px;
  background: #fff;
  display: block;
}
.p-service__item-img {
  width: 100%;
  max-width: 40%;
  margin-right: 0;
  margin: 0 auto 20px;
}
.p-service__item-ttl {
  font-size: 17px;
  font-weight: 600;
  position: relative;
  padding-right: 35px;
}
/*
.p-service__item-ttl:before {
  position: absolute;
  background: url(../img/icon_arrow_blu_circle.svg) no-repeat;
  top: 0;
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  right: 0;
  transition: .3s;
}
*/
.p-service__item-ttl.active:before {
  position: absolute;
  background: url(../img/icon_arrow_blu_circle.svg) no-repeat;
  top: 0;
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  right: 0;
  transition: .3s;
}

.p-service__item-txt {
  margin: 15px 0 18px;
}
.p-service__itemList-li:not(:last-child) {
  margin-bottom: 12px;
}
.p-service__itemList-li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
}
.p-service__itemList-li:before {
  position: absolute;
  background: url(../img/icon_check.svg) no-repeat;
  top: 15px;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  left: 0;
}
}





/* ----------------- p-valuesHeading ----------------- */
.p-valuesHeading__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: #25498D;
  padding: 50px 50px 110px;
  border-radius: 120px;
  position: relative;
  z-index: 0;
  box-sizing: border-box;
}
.p-valuesHeading-ttlEn {
  font-size: 150px;
  font-weight: 600;
  text-align: center;
  color: #91A2C6;
  opacity: 0.9;
}
.p-valuesHeading-ttlJp {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin: -50px 0 60px;
  position:relative;
  z-index: 10;
}
.p-valuesHeading-lead {
  font-size: 36px;
  font-weight: 600;
  line-height:2;
  text-align: center;
  color: #fff;
}
.p-valuesHeading-img {
  position: absolute;
  top: 55%;
  left:50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  max-width: 530px;
  z-index: -1;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-valuesHeading__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 60px 80px;
  border-radius: 50px;
  box-sizing: border-box;
}

.p-valuesHeading-ttlEn {
  font-size: 70px;
  font-weight: 600;
  text-align: center;
  color: #91A2C6;
  opacity: 0.9;
}
.p-valuesHeading-ttlJp {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin: -30px 0 50px;
  position:relative;
  z-index: 10;
}
.p-valuesHeading-lead {
  font-size: 20px;
  font-weight: 600;
  line-height:2;
  text-align: center;
  color: #fff;
}
.p-valuesHeading-img {
  position: absolute;
  top: 55%;
  left:50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  max-width: 300px;
  z-index: -1;
}
}

@media only screen and (max-width: 740px) 
{ /* SP start */
.p-valuesHeading__inner {
  padding: 40px 20px 80px;
}
}




/* ----------------- p-values ----------------- */
.p-values {
  padding: 140px 0;
}
.p-values__inner {
  display: flex;
}
.p-values__itemList {
  margin-left: 240px;
}
.p-values__itemList-li:not(:last-child) {
  margin-bottom: 60px;
}
.p-values__itemList-li-ttl {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-values {
  padding: 80px 0;
}
.p-values__inner {
  display: block;
}
.p-values__itemList {
  margin-left: 0;
}
.p-values__itemList-li:not(:last-child) {
  margin-bottom: 45px;
}
.p-values__itemList-li-ttl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
}



/* ----------------- p-company ----------------- */
.p-company {
  padding: 140px  0;
  background: #F3F5F9;
  border-radius: 0 0 0 120px;
}
.p-company .c-heading {
  justify-content: center;
}
.p-companyList {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #25498D;
}
.p-companyList_item {
  display: flex;
  align-items: flex-start;
  padding:0 15px 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #25498D;
}
.p-companyList_item:first-child {
  padding-top: 25px;
}
.p-companyList_item_term {
  min-width: 160px;
  font-weight: 700;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-company {
  padding: 80px  0;
  border-radius: 0 0 0 60px;
}
.p-company .c-heading {
  justify-content: left;
}
.p-companyList {
  font-size: 15px;
}
.p-companyList_item {
  display: flex;
  align-items: flex-start;
  padding: 0 12px 15px;
  margin-bottom: 15px;
}
.p-companyList_item:first-child {
  padding-top: 15px;
}
.p-companyList_item_term {
  min-width: 120px;
}
}



/* ----------------- p-access ----------------- */
.p-access {
  padding: 140px  0;
}
.p-access .c-heading {
  justify-content: center;
}
.p-access__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
}
.p-access__map {
  width: 450px;
  margin-right: 40px;
}
.p-access__map iframe {
  width: 100%;
  height: 245px;
}
.p-accessList_item:not(:last-child) {
  margin-bottom: 30px;
}
.p-accessList_item_term {
  font-weight: 600;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-access {
  padding: 80px  0;
}
.p-access .c-heading {
  justify-content: left;
}
.p-access__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.p-access__map {
  width: 100%;
  margin-right: 0;
  margin: 0 0 30px;
}
.p-access__map iframe {
  width: 100%;
  height: 250px;
}
.p-accessList_item:not(:last-child) {
  margin-bottom: 25px;
}
}





/* ----------------- p-contact ----------------- */
.p-contact {
  padding: 140px  0;
  background: #F3F5F9;
  border-radius: 0 0 0 120px;
  margin-bottom: 140px;
}
.p-contact__headding-txt {
  text-align: center;
  margin-bottom: 50px;
}
.p-contact__table {
  color: #333;
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid #25498D;
}
.p-contact__row {
  display: flex;
  padding: 20px 40px;
  align-items: flex-start;
  border-bottom: 1px solid #25498D;
}
.p-contact__data input{
  width: 550px;
  max-width: 100%;
  border:none;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  background-color: #fff !important;
}
.p-contact__data select{
  width: 300px;
  max-width: 100%;
  border:none;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  background-color: #fff !important;
}
.p-contact__data textarea {
  width: 550px;
  border:none;
  border-radius: 4px;
  padding: 15px;
  min-height: 200px !important; /* 優先順位を上げる */
  height: 200px; /* 初期高さを明示 */
  font-size: 16px;
  resize: vertical; /* 縦方向にのみリサイズ可能 */
}
.p-contact__label {
  margin-right: 20px;
  font-size: 18px;
  font-weight: 500;
  width: 220px;
}
.p-contact__label--required {
  font-size: 11px;
  color: #fff;
  background: #EC3437;
  padding: 4px 6px;
  display: inline-block;
  margin-left: 10px;
  line-height: 1;
  border-radius: 2px;
}
.p-contact__label--note {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  margin-top: 5px;
}
.p-contact__privacy {
  text-align: center;
  font-size: 18px;
  margin-top: 30px;
  font-weight: 700;
}
.p-contact__privacyInput {
  text-align: center;
}
.p-contact__note {
  text-align: center;
  font-size: 18px;
  font-weight:normal;
  margin-top: 30px;
}
.p-contact__radio label {
  display: block;
}
.p-contact__radio label:not(:last-child) {
  margin-bottom: 20px;
}
.p-contact__submit {
  text-align: center;
}
.p-contact__submit input {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background: #25498D;
  padding: 25px 90px;
  border-radius: 100px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: .3s;
}
.p-contact__submit input:hover {
  opacity: 0.7;
}
.p-contact__submit input:disabled {
  opacity: 0.5
}
.p-contact__submit input:disabled:hover {
  opacity: 0.5;
}

.p-contact__thanks-txt {
  text-align: center;
  margin-bottom: 60px;
}
.p-contact__thanks-link {
  text-align: center;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-contact {
  padding: 80px  0;
  border-radius: 0 0 0 60px;
  margin-bottom: 80px;
}
.p-contact__headding-txt {
  text-align: left;
  margin-bottom: 40px;
}
.p-contact__table {
  max-width: 100%;
  margin: 0 auto;
}
.p-contact__row {
  display: block;
  padding: 20px 15px;
}
.p-contact__row:not(:last-child) {
  margin-bottom: 20px;
}
.p-contact__data input,
.p-contact__data select{
  width: 100%;
  max-width: 100%;
  border:none;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  box-sizing: border-box;
}
.p-contact__data textarea {
  width: 100%;
  max-width: 100%;
  border:none;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  box-sizing: border-box;
}
.p-contact__label {
  margin-right: 20px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  width: auto;
}
.p-contact__label--required {
  font-size: 13px;
  color: #fff;
  background: #EC3437;
  padding: 2px 4px;
  display: inline-block;
  margin-left: 10px;
}
.p-contact__label--note {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  margin-top: 5px;
}
.p-contact__privacy {
  text-align: center;
  font-size: 16px;
  margin-top: 30px;
  font-weight: 700;
}
.p-contact__privacyInput {
  text-align: center;
}
.p-contact__note {
  text-align: center;
  font-size: 15px;
  font-weight:normal;
  margin-top: 30px;
}
.p-contact__submit {
  text-align: center;
}
.p-contact__submit input {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 20px;
  border-radius: 100px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: .3s;
  width: 100%;
}
.p-contact__thanks-txt {
  text-align: left;
  margin-bottom: 50px;
}
.p-contact__thanks-link {
  text-align: center;
}
}




.wpcf7-spinner {
  visibility: hidden;
  display: block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 20px auto;
  position: relative;
}
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px !important;
  font-weight: normal;
  display: block;
}
/* 送信完了時、メッセージ以外は非表示 ※サンクスページ遷移させない場合*/
form.wpcf7-form.sent .p-contact__table,
form.wpcf7-form.sent .p-contact__privacy,
form.wpcf7-form.sent .p-contact__privacyInput,
form.wpcf7-form.sent .p-contact__note,
form.wpcf7-form.sent .p-contact__submit {
  display: none !important;
}














/* ----------------- p-privacy ----------------- */
.p-privacy {
  padding: 0 0 140px;
}

.p-privacy_block {
  margin-bottom: 60px;
}
.p-privacy__heading {
  margin-bottom: 50px;
}
.p-privacy__itemList-li:not(:last-child) {
  margin-bottom: 40px;
}
.p-privacy__itemList-li-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.p-privacy__itemList-li-ttl {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
.p-privacy__detailList {
  font-size: 14px;
}
.p-privacy__detailList-li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.p-privacy__detailList-li:not(:last-child) {
  margin-bottom: 8px;
}
.p-privacy__itemList-li-txt {
  margin-bottom: 30px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.p-privacy {
  padding: 0 0 80px;
}
.p-privacy_block {
  margin-bottom: 50px;
}

.p-privacy__itemList {
  margin-left: 0;
}
.p-privacy__itemList-li:not(:last-child) {
  margin-bottom: 45px;
}
.p-privacy__itemList-li-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
.p-privacy__itemList-li-ttl {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}
.p-privacy__detailList {
  font-size: 13px;
}
.p-privacy__itemList-li-txt {
  margin-bottom: 30px;
}
}









/* ----------------- xxxxxxxxxxxxx ----------------- */


@media only screen and (max-width: 960px) 
{ /* SP start */

}





/* ----------------- xxxxxxxxxxxxx ----------------- */


@media only screen and (max-width: 960px) 
{ /* SP start */

}





/* ----------------- xxxxxxxxxxxxx ----------------- */


@media only screen and (max-width: 960px) 
{ /* SP start */

}