@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.u-clearfix {
  *zoom: 1;
}

.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/*------------------------------------------------------------
    Default
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

body, table,
input, textarea, select, option, button {
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
  max-width: 100%;
  transition: all .5s;
}

iframe {
  width: 100%;
  height: 100%;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}

a {
  color: #2A72BE;
  text-decoration: none;
  display: inline-block;
  transition: all .5s;
}

a.link {
  text-decoration: underline;
}

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

.u-bgcover {
  position: relative;
  -webkit-background-size: cover !important;
          background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.u-pd70 {
  padding: 70px 0;
}

@media screen and (max-width: 767px) {
  .u-pd70 {
    padding: 50px 0;
  }
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .u-df {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.u-df .f-left, .u-df .f-right {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .u-df .f-left, .u-df .f-right {
    width: 100%;
  }
}

.u-fz1 {
  font-size: 24px;
}
.u-fz2 {
  font-size: 26px !important;
}
@media screen and (max-width: 767px) {
  .u-fz1 {
    font-size: 1.9rem;
  }
  .u-fz2 {
    font-size: 2.1rem !important;
  }
}

.u-bg1 {
  background-color: #EBF5FF;
}
.u-bg2 {
  background-color: #F5FAFF;
}
.u-op {
  opacity: 1 !important;
}

.u-red {
  color: #FF0000;
}


.u-hover {
  overflow: hidden;
  transition: all .5s;
  position: relative;
}
.u-hover .u-bgcover:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .5s;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.u-hover.is-hover .u-bgcover:after {
  transform: scale(1.1);
}
.u-hover.is-hover img {
  transform: scale(1.1);
}
.u-hover.is-hover .c-btn01 {
  color: #fff !important;
  background-color: #2A72BE !important;
}

.none-hover .u-hover.is-hover .u-bgcover:after {
  transform: none;
}


/* .fadein
------------------------------------------------------------*/
.u-fadein {
  opacity: 0;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
      transform: translateY(100px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.u-fadein.on {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
}

/*------------------------------------------------------------
  effect（ページ遷移）
------------------------------------------------------------*/
.u-effect {
  position: relative;
}
.u-effect::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2A72BE;
  /* 背景カラー */
  background-image: url(../image/common/ic-loading.png);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9998;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  -webkit-transition: opacity .6s ease;
  /* アニメーション時間は 0.6秒 */
  transition: opacity .6s ease;
}

@media screen and (max-width: 767px) {
  .u-effect::after {
    /* background-size: 70px; */
  }
}

.u-effect.show::after {
  opacity: 1;
}

.u-effect.show article {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}


/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
  color: #2A72BE;
  min-width: 768px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.s-target__list li span,
.s-issues__list li span {
	font-family: "acumin-pro-semi-condensed", 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 500;
}
/*"yu-gothic-pr6n",*/

@media screen and (max-width: 767px) {
  body {
    min-width: auto;
    font-size: 1.4rem;
  }
}

.l-container {
  margin: 0 auto;
  width: 1110px;
}

@media screen and (max-width: 1200px) and (min-width: 767px) {
  .l-container {
    width: 94%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .l-container {
    width: 94%;
    margin: 0 auto;
  }
}

.p-content section {
  border-bottom: 3px solid #DFEEFE;
}


/*------------------------------------------------------------
header
------------------------------------------------------------*/
.c-header {
	position: relative;
  font-family: 'Noto Sans JP', sans-serif;
}

.c-header__nav {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  justify-content: space-between;
	-webkit-transition: 500ms;
	transition: 500ms;
	padding: 20px;
  height: 97px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
	.c-header__nav {
    padding: 15px;
    height: 68px;
	}
}

.c-header__nav .nav-logo, .c-header__nav .nav-menu {
  display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  align-items: center;
}

@media screen and (max-width: 800px) {
  .c-header__nav .nav-menu {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
	.c-header__nav .nav-logo p {
		display: none;
	}
}
@media screen and (max-width: 1070px) {
	.c-header__nav .nav-menu li.last {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.c-header__nav .nav-logo img {
    max-width: 70%;
	}
}

.c-header__nav .nav-logo p {
  color: #2A72BE;
  font-size: 10px;
  margin-left: 16px;
}

@media screen and (max-width: 767px) {
	.c-header__nav .nav-menu {
		display: none;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		position: fixed;
		top: 48px;
		width: 100%;
		left: 0;
		z-index: 2;
		height: calc(100vh - 48px);
		overflow-x: hidden;
		background-color: rgba(0, 0, 0, 0.85);
	}
}

.c-header__nav .nav-menu .menu-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  padding-right: 60px;
}

@media screen and (max-width: 767px) {
	.c-header__nav .nav-menu .menu-list {
		display: block;
		background: #fff;
	}
}

.c-header__nav .nav-menu .nav-parent {
  border-left: 1px solid #ACCFF4;
}

@media screen and (max-width: 767px) {
	.c-header__nav .nav-menu .nav-parent {
		border-top: 1px solid #BFD5C4;
	}
}

.c-header__nav .nav-menu .nav-parent > a {
	height: 100%;
	padding: 5px 13px;
  font-size: 12px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}
.c-header__nav .nav-menu .nav-parent >  a img {
  margin-bottom: 4px;
}
/* .c-header__nav .nav-menu a:before {
  content: "";
  width: 23px;
  height: 23px;
  display: block;
  margin: 0 auto 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: #EBF5FF;
} */
.c-header__nav .nav-menu .nav-parent > a:hover, .c-header__nav .nav-menu .nav-parent:not(:last-child).active {
  background-color: #EBF5FF;
}
.c-header__nav .nav-menu a:hover:before, .c-header__nav .nav-menu li.active a:before {
  background-color: #2A72BE;
}

.c-header__nav .nav-menu li.last {
  padding: 0 20px 0 40px;
}
.c-header__nav .nav-menu li.last a {
	color: #fff;
	background: #2A72BE;
  border-radius: 27px;
  min-width: 242px;
}
.c-header #nav-toggle:hover,
.c-header__nav .nav-menu li.last a:hover {
	background-color: #1E4CAF;
	opacity: 1;
}
.c-header__nav .nav-menu li.last a span {
  display: block;
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}
.c-header__nav .nav-menu li.last a:before {
  content: none;
}

.c-header__nav.nav-fixed {
	-webkit-transition: 500ms;
	transition: 500ms;
	background: rgba(255, 255, 255, 0.9);
	-webkit-box-shadow: 0 0 15px 5px rgba(153, 153, 153, 0.5);
	box-shadow: 0 0 15px 5px rgba(153, 153, 153, 0.5);
}

/* nav-toggle */
.c-header #nav-toggle.fixed span {
  background: #000;
}

.c-header #nav-toggle.fixed.on span {
  background: #ccc;
}

.c-header #nav-toggle {
  cursor: pointer;
  z-index: 9999;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 59px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2A72BE;
}

.c-header #nav-toggle div {
  position: relative;
  width: 27px;
  height: 23px;
  margin: 0 auto;
}

.c-header #nav-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background: #fff;
  border-radius: 1px;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.c-header #nav-toggle span:nth-child(1) {
  top: 0px;
}

.c-header #nav-toggle span:nth-child(2) {
  top: 10px;
}

.c-header #nav-toggle span:nth-child(3) {
  top: 20px;
}

.c-header #nav-toggle.on span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.c-header #nav-toggle.on span:nth-child(2) {
  width: 0;
  left: 50%;
}

.c-header #nav-toggle.on span:nth-child(2)::before,
.c-header #nav-toggle.on span:nth-child(2)::after {
  width: 0;
  height: 0;
}

.c-header #nav-toggle.on span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.c-header .header-menu-inner {
  visibility: hidden;
  position: relative;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.c-header .header-menu-inner.open {
  visibility: visible;
  -webkit-transition: opacity .24s ease;
  transition: opacity .24s ease;
}

.c-header #header-menu-bg {
  display: block;
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all .6s;
  transition: all .6s;
}

.c-header .header-menu-inner.open #header-menu-bg {
  visibility: visible;
  opacity: 1;
}

.c-header .g-nav-box {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100%;
  -webkit-transition: all .6s;
  transition: all .6s;
  font-family: 'Noto Sans JP', sans-serif;
}
.c-header .g-nav-wrapper {
  width: 100%;
  height: 100%;
}

.c-header .header-menu-inner.open .g-nav-box {
  visibility: visible;
  opacity: 1;
}

.c-header .g-nav-logo {
  width: 30%;
  padding: 15px;
  text-align: center;
  background-color: #CEE5FE;
}

.c-header .g-nav-logo .logo-bg {
  padding: 15px;
  height: 100%;
  border-radius: 20px;
  background: url(../image/common/logo-bg.jpg);
}

.c-header .g-nav-logo img {
	width: 130px;
	height: auto;
}

.c-header .g-nav-inner {
  width: 75%;
  background-color: #EBF5FF;
  /* background: url(../image/common/nav-bg.png); */
}

.c-header .g-nav-inner, .c-header .g-nav-logo .logo-bg {
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.c-header .g-nav-inner h2 {
  font-size: 33px;
  text-align: center;
}

.c-header .g-nav {
  padding-top: 40px;
  justify-content: center;
}

.c-header .g-nav ul + ul {
}
.c-header .g-nav .g-nav-right {
  margin-left: 9%;
}
.c-header .g-nav .u-bt {
  margin-top: 15px;
  padding-top: 16px;
  border-top: 1px solid #2A72BE;
}
.c-header .g-nav ul.g-nav-parent > li + li {
}
.c-header .g-nav ul.g-nav-parent li {
  padding-top: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #CEE5FE;
}
.c-header .g-nav ul.g-nav-parent li.no_border {
  border-bottom: none !important;
}
.c-header .g-nav ul.g-nav-parent > li a {
  font-size: 20px;
}
.c-header .g-nav ul.g-nav-child {
  margin: 15px 0 0 10px;
}
.c-header .g-nav ul.g-nav-child li + li {
  padding-top: 6px;
}

.c-header .g-nav li {
}

.c-header .g-nav li.u-bd {
  margin-bottom: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2A72BE;
}
.c-header .g-nav .g-nav-social {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.c-header .g-nav .g-nav-social li + li {
  margin-left: 2.3vw;
}
.c-header .g-nav .g-nav-social a:hover {
  transform: scale(1.1);
}

.c-header .g-nav li a {
  display: block;
}

@media screen and (max-width: 767px) {
  .c-header #nav-toggle {
    width: 45px;
    height: 45px;
    top: 12px;
    right: 12px;
  }
  .c-header #nav-toggle div {
    width: 24px;
    height: 18px;
  }
  .c-header #nav-toggle span {
    height: 2px;
  }
  .c-header #nav-toggle span:nth-child(2) {
    top: 8px;
  }
  .c-header #nav-toggle span:nth-child(3) {
    top: 16px;
  }
  .c-header #nav-toggle.on span:nth-child(1), .c-header #nav-toggle.on span:nth-child(3) {
    top: 8px;
  }

  .c-header .g-nav-wrapper {
    height: auto;
    flex-direction: column-reverse;
  }
  .c-header .g-nav-box {
    top: 0;
    overflow-x: hidden;
  }
  .c-header .g-nav-logo, .c-header .g-nav-inner {
    width: 100%;
    padding: 30px 4%;
  }
  .c-header .g-nav-logo .logo-bg {
    padding: 4%;
    border-radius: 10px;
  }
  .c-header .g-nav-logo img {
    max-width: 30%;
  }
  .c-header .g-nav-inner {
  }
  .c-header .g-nav-inner h2 {
    font-size: 2.5rem;
  }
  
  .c-header .g-nav {
    padding-top: 25px;
  }
  .c-header .g-nav .g-nav-right {
    margin-left: 0;
  }
  .c-header .g-nav ul.g-nav-parent > li + li {
  }
  .c-header .g-nav ul.g-nav-parent > li a {
    font-size: 1.9rem;
    padding: 7px 0;
  }
  .c-header .g-nav ul.g-nav-child {
    margin: 10px 0 0 10px;
  }
  .c-header .g-nav ul.g-nav-child li + li {
    padding-top: 3px;
  } 
  .c-header .g-nav .g-nav-social {
    margin-top: 15px;
  }
  .c-header .g-nav .g-nav-social li + li {
    margin-left: 20px;
  }
}

/*------------------------------------------------------------
c-gnavdrop
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .c-gnavdrop {
      position: absolute;
      top: 78px;
      left: 0;
      right: 0;
      z-index: 999;
      overflow: hidden;
      transition: .3s;
      -webkit-animation-duration: 1s;
      animation-duration: 1s;
      -webkit-animation-fill-mode: both;
      animation-fill-mode: both;
      animation-name: fadeIn;
      max-height: 0;
      visibility: hidden;
      background-color: #fff;
      /*box-shadow: 0 0 15px 5px rgb(153 153 153 / 50%);*/
  }
  .c-gnavdrop.is_hover {
    visibility: visible;
      max-height: 500px;
      transition-duration: 0.9s;
  }
}

@media screen and (max-width: 767px) {
  .c-gnavdrop {
      position: unset;
      display: none;
  }
}
.c-gnavdrop ul {
  display: flex;
  align-items: stretch; /* 各liの高さを揃える */
}

.c-gnavdrop li {
  display: flex;
  align-items: center; /* li内のコンテンツを中央揃えに */
  justify-content: center; /* 水平方向の中央揃え */
  width: calc(100% / 6); /* 均等な幅を確保 */
  padding: 8px 0; /* 上下のpaddingを調整 */
}

.c-gnavdrop li a {
  font-size: 16px;
  display: block;
  width: 100%;
  text-decoration: none; /* リンクの下線を除去 */
  color: inherit; /* リンクの色を継承 */
	
  border: 3px solid #D5E7F8; /* 枠線 */
	text-align: center;
	line-height: 1.3;
	border-radius: 100px;
	margin: 10px 10px;
	padding: 6px 8px;
}
.c-gnavdrop li a:hover {
	background-color: #2A72BE;
	color: #fff;
}
@media screen and (max-width: 870px) {
  .c-gnavdrop li a  {
	  font-size: 13px
  }
}


/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
  background: #2A72BE;
}
.c-footer, .c-footer a {
  color: #fff;
}

.c-footer__top .f-left {
  padding: 30px 4%;
  justify-content: space-around;
  border-right: 1px solid #fff;
}
.c-footer__top .f-right {
  padding: 10px;
}
.c-footer__top ul + ul {
}
.c-footer__top ul a {
  font-size: 14px;
}
.c-footer__top .u-bt {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #fff;
}
.c-footer__top--parent {}
.c-footer__top--child {
  margin-left: 10px;
}
.c-footer__top--social.u-bt {
  display: flex;
  margin-top: 56px;
}
.c-footer__top--social li + li {
  margin-left: 2.3vw;
}
.c-footer__top--social a:hover {
  transform: scale(1.1);
}

.c-footer__bottom {
  font-size: 12px;
  padding: 50px 4%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.c-footer__bottom .f-left p {
  padding-top: 20px;
}
.c-footer__bottom .f-right {
  justify-content: center;
}
.c-footer__bottom--txt {
}
.c-footer__bottom--txt, .c-footer__bottom--inner ul + ul {
  margin-left: 25px;
}
.c-footer__bottom--txt h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.c-footer__bottom--inner ul li {
  padding-top: 2px;
}
.c-footer__copyright {
  font-size: 12px;
  text-align: center;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .c-footer ul a {
    font-size: 1rem;
  }
  .c-footer__top .f-left {
    border-right: 0;
    border-bottom: 1px solid #fff;
  }
  .c-footer__top ul + ul {
    margin-left: 0;
  }
  .c-footer__top--parent {
    column-count: 2;
  }
  .c-footer__top--child {
    margin-left: 10px;
  }
  .c-footer__top--social.u-bt {
    margin-top: 10px;
  }
  .c-footer__top--social {
    margin-top: 20px;
  }
  .c-footer__top--social li + li {
    margin-left: 20px;
  }
  .c-footer__top .f-right {
    display: none;
  }
  .c-footer__top .f-right iframe {
    height: 50vw;
  }
  
  .c-footer__bottom {
    padding: 35px 4%;
  }
  .c-footer__bottom--inner {
    flex-direction: row;
  }
  .c-footer__bottom--inner ul {
    width: 49%;
  }
  .c-footer__bottom .f-left {
    text-align: center;
  }
  .c-footer__bottom .f-left p {
    padding-top: 10px;
  }
  .c-footer__bottom .f-right {
    margin: 30px 0 0;
  }
  .c-footer__bottom--logo {
    width: 100%;
    text-align: center;
  }
  .c-footer__bottom--txt {
    width: 100%;
  }
  .c-footer__bottom--txt, .c-footer__bottom--inner ul + ul {
    margin-left: 0;
  }
  .c-footer__bottom--txt h3 {
    font-size: 1.5rem;
    text-align: center;
  }
  .c-footer__bottom--txt {
    /* margin-top: 20px; */
  }
  .c-footer__copyright {
    padding: 12px 0;
  }
}

/*------------------------------------------------------------
c-title
------------------------------------------------------------*/
.c-title01 {
  text-align: center;
  margin-bottom: 35px;
}
.c-title01 p {
  opacity: .3;
  font-size: 23px;
  padding-bottom: 10px;
  font-family: 'Noto Sans JP', sans-serif;
}
.c-title01 img {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .c-title01 {
    margin-bottom: 26px;
  }
  .c-title01 p {
    font-size: 1.9rem;
    padding-bottom: 7px;
  }
}

/*------------------------------------------------------------
c-btn
------------------------------------------------------------*/
.c-btn01 {
  color: #fff;
  display: table;
  min-width: 200px;
  padding: 8px 40px;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 50px;
  transition: all .5s;
  background-color: #2A72BE;
  font-family: 'Noto Sans JP', sans-serif;
}
a.c-btn01:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
  .c-btn01 {
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    min-width: 160px;
    padding: 6px 30px;
  }
}

.c-btn01--icon:after {
  content: "〉";
  transform: rotate(90deg);
  display: inline-block;
  vertical-align: -5px;
  margin-left: 7px;
  line-height: 0;
}



/*------------------------------------------------------------
c-list
------------------------------------------------------------*/
.c-list01 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-list01 li {
  width: calc((100% - 6%) / 3);
  margin-top: 4%;
}

@media screen and (max-width: 767px) {
  .c-list01 li {
    width: 100%;
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .c-list01 li:not(:nth-child(3n)) {
    margin-right: 3%;
  }
  .c-list01 li:nth-child(-n+3) {
    margin-top: 0;
  }
}

.c-list01 a {
  display: block;
}

.c-list01 img {
  width: 100%;
}
.c-list01 .c-list01__img {
  height: 234px;
}
.c-list01__cate {
  margin-left: 4%;
  padding-left: 4%;
  border-left: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .c-list01 .c-list01__img {
    height: 60vw;
  }
  .c-list01__cate {
    margin-left: 10px;
    padding-left: 10px;
  }
}

.c-list01 p {
  font-size: 15px;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .c-list01 p {
    font-size: 1.4rem;
  }
}

.c-list01 h3 {
  font-size: 20px;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .c-list01 h3 {
    font-size: 1.6rem;
    padding-top: 6px;
  }
}

.c-list02 {
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-list02 li {
  width: calc((100% - 4%) / 3);
  margin-right: 2%;
}

.c-list02 li:nth-child(3n) {
  margin-right: 0;
}

.c-list02__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-list02 p {
  text-align: center;
}

/*------------------------------------------------------------
	c-other
------------------------------------------------------------*/
#main_slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#main_slider .slide {
  overflow: hidden;
  position: relative;
  opacity: 1 !important;
}

#main_slider .slide span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: transparent no-repeat center center;
  -webkit-background-size: cover;
          background-size: cover;
  opacity: 0;
  -webkit-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
      transform: scale(1.2, 1.2);
  -webkit-transition: 0s;
  transition: 0s;
}

#main_slider .slide.slick-start span {
  opacity: 1;
  -webkit-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
      transform: scale(1.2, 1.2);
  -webkit-transition: ease 0s;
  transition: ease 0s;
}

#main_slider .slide.slick-active span {
  opacity: 1;
  -webkit-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
      transform: scale(1.2, 1.2);
  -webkit-transition: ease 6s;
  transition: ease 6s;
}

#main_slider .slide.slick-continue span {
  opacity: 0;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
      transform: scale(1, 1);
  -webkit-transition: ease 6s;
  transition: ease 6s;
}

/* --------------------------------------------------
	 7. Slick
-------------------------------------------------- */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::before,
.slick-track::after {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  /* width: 100%; */
  /* display: block; */
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.onayami .slick-slide a {
	pointer-events: none;
}
.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 10px;
}

.slick-prev, .slick-next {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  width: 43px;
  height: 43px;
  position: absolute;
  top: 25%;
  padding: 0;
  line-height: 0;
  outline: none;
  border-radius: 50%;
  background-color: #2A72BE;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  cursor: pointer;
  z-index: 1;
  opacity: .8;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.slick-prev {
	border-left: none;
}

.slick-next {
	border-right: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev::before,
.slick-next::before {
  position: absolute;
  top: 16px;
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  opacity: .75;
}

.slick-prev {
  left: -60px;
}

.slick-prev::before {
  left: 18px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.slick-next {
  right: -60px;
}

.slick-next::before {
  right: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

@media screen and (max-width: 1300px) {
  .slick-prev {
    left: -5px;
  }
  .slick-next {
    right: -5px;
  }
}
@media screen and (max-width: 767px) {
  .slick-prev, .slick-next {
    width: 40px;
    height: 40px;
  }
  .slick-prev::before, .slick-next::before {
    top: 15px;
  }
  .slick-prev::before {
    left: 17px;
  }
  .slick-next::before {
    right: 17px;
  }
}


.slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 13%;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .slick-dots {
    bottom: 60px;
  }
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 15px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .slick-dots li {
    margin: 0 7px;
  }
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  width: 50px;
  height: 8px;
  outline: none;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  border-radius: 5px;
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .slick-dots li button {
    width: 25px;
    height: 4px;
    border-radius: 3px;
  }
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover::before,
.slick-dots li button:focus::before {
  background-color: #0044DE;
}

.slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .slick-dots li button::before {
    border-radius: 3px;
  }
}

.slick-dots li.slick-active button::before {
  background-color: #0044DE;
}


/* c-mainvisual
------------------------------------------------------------*/
.c-mainvisual {
  padding: 16px;
  text-align: center;
  background-color: #EBF5FF;
  margin-top: 97px;
  position: relative;
}
.c-mainvisual__inner {
  border-radius: 20px;
  padding: 30px 0 60px;
  background: url(../image/top/visual-bg.jpg);
}
.c-mainvisual--btn {
  display: block;
  font-size: 13px;
  text-align: center;
  max-width: 365px;
  padding: 10px;
  margin: 0 auto;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid #2A72BE;
  font-family: 'Noto Sans JP', sans-serif;
}
.c-mainvisual--btn:before {
  background: #2A72BE;
  content: "";
  height: 300px;
  left: -150px;
  opacity: .2;
  position: absolute;
  top: -50px;
  width: 50px;
  -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
  z-index: -10;
}

.c-mainvisual--btn:hover:before {
  left: 120%;
  -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.c-mainvisual--btn span {
  font-size: 23px;
  display: block;
  line-height: 1.3;
}
.c-mainvisual h1 {
  font-size: 49px;
  padding-top: 45px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .c-mainvisual {
    padding: 10px;
    margin-top: 68px;
  }
  .c-mainvisual__inner {
    border-radius: 10px;
    padding: 30px 10%;
  }
  .c-mainvisual--btn {
    max-width: 270px;
    padding: 7px;
    border-radius: 36px;
  }
  .c-mainvisual--btn span {
    font-size: 1.9rem;
  }
  .c-mainvisual h1 {
    font-size: 3.2rem;
	  padding-top: 10px;
	  padding-bottom: 10px;
  }
}


/* c-breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  position: absolute;
  left: 40px;
  bottom: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 93%; /* 最大幅を設定（必要に応じて調整） */
}

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    left: 20px;
    bottom: 20px;
    text-align: left;
  }
}

.c-breadcrumb ul li {
  display: inline-block;
}

.c-breadcrumb ul li img {
  vertical-align: -2px;
}

.c-breadcrumb ul li {
  font-size: 12px;
}

.c-breadcrumb ul li:after {
  content: "〉";
  margin-left: 10px;
  font-size: 11px;
}

.c-breadcrumb ul li:last-of-type:after {
  content: none;
}


/* section-contact
  ------------------------------------------------------------*/
.s-entry .l-container {
  padding-top: 70px;
}
.s-entry__label {
  font-size: 19px;
  display: table;
  margin: 0 auto;
  padding: 10px 40px;
  border-radius: 36px;
  border: 1px solid #2A72BE;
}
.s-entry__list li {
  padding: 5% 2%;
}
.s-entry__list a img {
  margin-right: 10px;
  vertical-align: -8px;
}
.s-entry__list {
  align-items: center;
}
.s-entry__list .f-left {
  text-align: right;
  border-right: 1px dashed #5089C6;
}
.s-entry__list .f-left a {
  font-size: 43px;
}
.s-entry__list .f-right a {
  font-size: 19px;
  margin: 0;
  width: 74%;
  padding: 12px;
}

@media screen and (max-width: 767px) {
  .s-entry .l-container {
    padding-top: 50px;
  }
  .s-entry__label {
    font-size: 1.6rem;
    padding: 8px 33px;
  }
  .s-entry__list li {
    padding: 30px 0;
  }
  .s-entry__list a img {
    max-width: 13%;
  }
  .s-entry__list .f-left {
    text-align: center;
    border-right: 0;
    border-bottom: 1px dashed #5089C6;
  }
  .s-entry__list .f-left a {
    font-size: 3.5rem;
  }
  .s-entry__list .f-right a {
    width: 100%;
    font-size: 1.6rem;
    margin: 0 auto;
    padding: 8px 30px;
  }
}

/* section-target
  ------------------------------------------------------------*/
.s-target h2 {
  text-align: center;
}
.s-target__list {
  display: flex;
}
.s-target__list li {
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  border: 4px solid #D5E7F8;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .s-target__list li:not(:last-child) {
    margin-right: 2%;
  }
}
.s-reality .s-target__list li p {
	color: #454545;
	font-weight: bold;
}
.s-target__list h3 {
  color: #fff;
  font-size: 17px;
  padding: 0px 12px 0px;
  background-color: #2A72BE;
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1070px) {
	.s-target__list h3 {
		font-size: 15px;
	}
}
.s-target__list h3 img {
  display: block;
  margin: 6px auto 7px;
}
.p-features .s-target__list h3 img {
	margin: 0 auto 1px;
}
.s-target__list .s-target__list--txt {
  padding: 12px 4%;
}
.s-target__list p {
  font-size: 18px;
}
.s-target__list p + h4 {
  padding-top: 10px;
}
.s-target__list h4 {
  font-size: 20px;
}
.s-target__list h4 span {
  font-size: 42px;
  margin-right: 3px;
}
.s-target__txt {
  margin-top: 16px;
}
.s-target__list small {
  font-size: 12px;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .s-target__list {
    flex-wrap: wrap;
  }
  .s-target__list li {
    margin-bottom: 2%;
  }
  .s-target__list h3 {
    font-size: 1.6rem;
    padding: 6px 0 12px 0;
    min-height: 83px;
  }
  .s-target__list .s-target__list--txt {
    padding: 20px 4%;
  }
  .s-target__list p {
    font-size: 1.6rem;
  }
  .s-target__list p + h4 {
    padding-top: 5px;
  }
  .s-target__list h4 {
    font-size: 1.6rem;
  }
  .s-target__list h4 span {
    font-size: 3.3rem;
  }
}
.s-descript .s-target__list--txt {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 94px);
}
@media screen and (max-width: 767px) {
  .s-descript .s-target__list--txt {
    height: auto;
  }
}

/* s-reason, s-reality
  ------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-management .s-target__list li, .p-rate .s-reason .s-target__list li, 
  .p-building .s-target__list li, .s-strength__list li,
  .p-measures .s-target__list li, .p-land .s-target__list li,
  .p-solve .s-reality .s-target__list li, .p-solve .s-reason .s-target__list li,
  .p-asset .s-target__list li,
  .p-inheritance .s-reason .s-target__list li {
    width: calc((100% - 4%) / 3);
  }
  .s-reality .s-target__list {
    flex-wrap: wrap;
  }
  .p-management .s-target__list li:nth-child(3n), .p-rate .s-reason .s-target__list li:nth-child(3n), 
  .s-strength__list li:nth-child(3n), .s-reality .s-target__list li:nth-child(3n),
  .p-measures .s-reason .s-target__list li:nth-child(3n), .p-land .s-reason .s-target__list li:nth-child(3n),
  .p-solve .s-reason .s-target__list li:nth-child(3n),
  .p-inheritance .s-reason .s-target__list li:nth-child(3n) {
    margin-right: 0;
  }
  .p-management .s-target__list li:not(:nth-child(-n+3)), .p-rate .s-reason .s-target__list li:not(:nth-child(-n+3)), 
  .s-strength__list li:not(:nth-child(-n+3)), .s-reality .s-target__list li:not(:nth-child(-n+3)),
  .p-measures .s-reason .s-target__list li:not(:nth-child(-n+3)), .p-land .s-reason .s-target__list li:not(:nth-child(-n+3)),
  .p-solve .s-reason .s-target__list li:not(:nth-child(-n+3)), 
  .p-inheritance .s-reason .s-target__list li:not(:nth-child(-n+3)) {
    margin-top: 2%;
  }
}

@media screen and (max-width: 767px) {
  .p-management .s-target__list li, .p-rate .s-reason .s-target__list li, 
  .p-building .s-target__list li, .s-strength__list li,
  .p-measures .s-target__list li, .p-land .s-target__list li,
  .p-solve .s-reality .s-target__list li, .p-solve .s-reason .s-target__list li, 
  .p-asset .s-target__list li,
  .p-inheritance .s-target__list li {
    width: 100%;
  }
}

.s-reason .s-target__list {
  flex-wrap: wrap;
}
.s-reason .s-target__list li {
  background-color: #DEEFFF;
  border: none;
}
.s-reason .s-target__list--txt, .s-reality .s-target__list--txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* section-com01
  ------------------------------------------------------------*/
.s-com01 ul {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.s-com01 .slick-list li {
  margin: 0 15px;
}
.s-com01 ul a {
  display: block;
}
.s-com01__img {
  height: 183px;
  overflow: hidden;
  border-radius: 8px;
}
.s-com01 ul li img {
  border-radius: 8px;
  width: 100%;
  max-height: 183px;
  object-fit: cover;
}
.s-com01 ul h4 {
  font-size: 13px;
  padding: 6px;
  margin-top: 16px;
  text-align: center;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid #2A72BE;
}
.s-com01 ul h3 {
  font-size: 18px;
  margin-top: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #5089C6;
}
.s-com01 ul p {
  /*padding-top: 6px;*/
  font-size: 13px;
  margin-top: 10px;
}
.s-com01 ul span {
  font-size: 13px;
  display: block;
  margin-top: 6px;
}

@media screen and (max-width: 767px) {
  .s-com01 ul h3 {
    font-size: 1.6rem;
  }
}

/* section-com02
  ------------------------------------------------------------*/
.s-com02__list li {
  border-radius: 8px;
  margin-bottom: 4%;
}

.s-com02__list--img { 
  width: 33%;
  overflow: hidden;
}
.s-com02__list--txt {
  width: 70%;
  padding: 3% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.s-com02__list--txt p {
  padding-top: 7px;
  margin-top: 7px;
  line-height: 1.7;
  border-top: 3px solid #D3D8E6;
}
.s-com02__list li .c-btn01 {
  color: #2A72BE;
  background-color: #fff;
  border: 1px solid #2A72BE;
  margin-top: 20px;
}
.s-com02__list--contact {
  align-items: center;
  position: relative;
  text-align: center;
}
.s-com02__list--contact:after {
  content: "";
  width: 1px;
  height: 75%; 
  left: 50%;
  bottom: -5px;
  position: absolute;
  background-color: #9DB9D5;
}
.s-com02__list--contact .f-right {
}
.s-com02__list--contact a {
  color: #fff;
}
.s-com02__list--contact h3 {
  font-size: 28px;
  margin-top: 20px;
}
.s-com02__list--contact img {
  margin-right: 5px;
}
  
@media screen and (max-width: 767px) {
  .s-com02__list li {
    margin-bottom: 30px;
  }
  .s-com02__list--img { 
    width: 100% !important;
    height: 60vw;
  }
  .s-com02__list--txt {
    width: 100%;
    padding: 26px 20px 30px;
  }
  .s-com02__list--txt p {
    border-top: 1.5px solid #D3D8E6;
  }
  .s-com02__list li .c-btn01 {
    margin: 20px auto 0 !important;
  }
  .s-com02__list--contact:after {
    content: none;
  }
  .s-com02__list--contact .f-right {
    /* margin-top: 20px; */
    /* border-top: 1px solid #9DB9D5; */
  }
}


/* s-recruit
  ------------------------------------------------------------*/
.s-recruit .s-com02__list--img.img01:after {
  background: url(../image/management/recruit-img01.png) center no-repeat;
}
.s-recruit .s-com02__list--img.img02:after {
  background: url(../image/management/recruit-img02.png) center no-repeat;
}
.s-recruit .s-com02__list li {
  margin-bottom: 0;
}
.s-recruit .s-com02__list .f-right {
  margin-left: 2%;
}
.s-recruit .s-com02__list--img {
  width: 42%;
  min-height: 240px;
}
.s-recruit .s-com02__list--txt {
  background-color: #EBF5FF;
}
.s-com02__list--desc {
  margin-bottom: 10px;
}
.s-recruit .s-com02__list--txt p {
  border-top: 1px dashed #5089C6;
}

@media screen and (max-width: 767px) {
  .s-recruit .s-com02__list .f-right {
    margin: 30px 0 0;
  }
}


/* s-ensure
  ------------------------------------------------------------*/
.s-ensure__box {
	padding: 4%;
	margin-top: 35px;
	border-radius: 8px;
	background-color: #EBF5FF;
  align-items: center;
  justify-content: flex-start;
}
.s-ensure__box--img {
	text-align: center;
	padding-bottom: 10px;
}
.s-ensure__box p {
	text-align: left;
	margin-top: 20px;
}
.s-ensure__box--logo {
	text-align: center;
}
.s-ensure__box--txt {
	width: 72%;
	margin-left: 4%;
}
.s-ensure__box--txt h3 {
	font-size: 24px;
}
.s-ensure__btn {
	color: #2A72BE;
    padding: 8px;
    display: block;
    text-align: center;
    max-width: 562px;
    margin: 50px auto 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 21px;
    box-sizing: border-box;
    border: 1px solid #2A72BE;

}
.s-ensure__btn:hover {
  color: #fff !important;
  background-color: #2A72BE !important;
}
@media only screen and (max-width: 767px) {
	.s-ensure__box {
		padding: 25px;
		flex-direction: column;
	}
	.s-ensure__box--logo {
		width: 100%;
	}
	.s-ensure__box--txt {
		width: 100%;
		margin: 25px 0 0;
	}
}

/* section-customer
  ------------------------------------------------------------*/
.s-customer li {
  padding: 2%;
  background-color: #fff;
}
.s-customer li .s-com02__list--img {
  overflow: hidden;
  border-radius: 8px;
}
.s-customer li .s-com02__list--img:after {
  border-radius: 8px;
}
.s-customer .s-com02__list--img.img01:after {
  background: url(../image/rate/customer-img01.png) center no-repeat;
}
.s-customer .s-com02__list--img.img02:after {
  background: url(../image/rate/customer-img02.png) center no-repeat;
}
.s-customer .s-com02__list--img.img03:after {
  background: url(../image/rate/customer-img03.png) center no-repeat;
}
.s-customer .s-com02__list--txt {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .s-customer li {
    padding: 4%;
  }
}

/* section-slider
  ------------------------------------------------------------*/
.s-slider .slick-list {
}
.s-slider .slick-prev, .s-slider .slick-next {
  top: 50%;
}
.s-slider .slick-prev {
  left: calc((100% - 660px - 140px) / 2);
}
.s-slider .slick-next {
  right: calc((100% - 660px - 140px) / 2);
}
.s-slider .slick-track {
    display: flex !important;
}
.s-slider .slick-slide {
  display: flex;
  height: inherit !important;
}
.s-slider__item {
  padding: 16px 30px 0 0px;
  border-radius: 12px;
  max-width: 660px;
  margin: 0 50px;
  opacity: .5;
  background-color: #fff;
  border: 4px solid #D5E7F8;
}
.s-slider__item.slick-current {
  opacity: 1;
}
.s-slider__item--img {
  width: 34%;
  text-align: center;
}
.s-slider__item--img:after {
  background: url(../image/management/management-img.png);
  background-size: unset !important;
}
.s-slider__item--txt {
  width: 62%;
  margin-top: 20px;
	margin-bottom: 26px;
}
.s-slider__item--txt h3 {
  color: #3C3C3C;
  font-size: 22px;
}
.s-slider__item--txt p {
  padding-top: 22px;
}


.min_slide_cont .s-slider__item {
	padding-top: 0;
}
.min_slide_cont .s-slider__item {
	/* min-height: 150px; */
	/* width: 660px; */
  width: 100%;
}
.min_slide_cont .s-slider__item a {
  width: 100%;
}
.min_slide_cont .s-slider__item--img {
	/* min-height: 210px; */
  width: 27%;
}
.min_slide_cont .s-slider__item--txt {
  width: 65%;
	margin-top: 30px;
}
.min_slide_cont .s-slider__item--txt h3 {
	margin-top: 16px;
}


.c-react {
  display: flex;
  padding-top: 22px;
}
.c-react dd {
  color: #8B8B8B;
  margin-left: 20px;
}
.c-react img {
  margin-right: 8px;
  vertical-align: bottom;
}
.s-slider .u-hover.is-hover dl img {
  /* transform: none; */
}
@media screen and (max-width: 820px) {
  .s-slider .slick-prev {
    left: 12px;
  }
  .s-slider .slick-next {
    right: 12px;
  }
}
@media screen and (max-width: 767px) {
  .s-slider .slick-slide {
    display: block;
  }
  .s-slider__item {
    padding: 0px 30px 20px 30px;
    border-radius: 8px;
    max-width: 312px;
    margin: 0 20px;
    border: 2px solid #D5E7F8;
  }
  .s-slider__item--img {
    width: 100% !important;
    height: 225px;
  }
  .s-slider__item--txt {
    width: 100% !important;
  }
  .s-slider__item--txt h3 {
    font-size: 1.8rem;
	  font-weight: bold;
	  line-height: 1.5;
  }
}
/* キャラクター設定 */
.s-slider__item--img.pic1:after {
  background: url(../image/common/img1_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic2:after {
  background: url(../image/common/img2_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic3:after {
  background: url(../image/common/img3_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic4:after {
  background: url(../image/common/img4_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic5:after {
  background: url(../image/common/img5_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic6:after {
  background: url(../image/common/img6_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic7:after {
  background: url(../image/common/img7_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic8:after {
  background: url(../image/common/img8_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic9:after {
  background: url(../image/common/img9_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic10:after {
  background: url(../image/common/img10_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic11:after {
  background: url(../image/common/img11_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic12:after {
  background: url(../image/common/img12_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}
.s-slider__item--img.pic13:after {
  background: url(../image/common/img13_x2_80.jpg);
  background-size: 100% auto !important;
  background-position: center bottom !important;
}

@media screen and (max-width: 767px) {
	.s-slider__item--img.pic1:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic2:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic3:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic4:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic5:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic6:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic7:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic8:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic9:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic10:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic11:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic12:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic13:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic14:after {
	  background-size: auto 100% !important;
	}
	.s-slider__item--img.pic15:after {
	  background-size: auto 100% !important;
	}
}



/* section-column
  ------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .s-column__list li {
    width: calc((100% - 4%) / 3);
    margin: 40px 2% 0 0 !important;
  }
  .s-column__list li:nth-child(-n+3) {
    margin-top: 0 !important;
  }
  .s-column__list li:nth-child(3n), .s-column__list li:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .s-column__list li {
    width: 100%;
    margin: 0 0 40px;
  }
  .s-column__list li:last-child {
    margin-bottom: 0;
  }
}

/* section-taxonomy
  ------------------------------------------------------------*/
.s-column__taxonomy {
  padding: 30px 0;
  border-radius: 25px;
  margin-bottom: 60px;
  position: relative;
  background-color: #EFF6FF;
  border: 1px solid #BBC5E0;
}
.s-column__taxonomy .u-df {
  align-items: center;
  justify-content: center;
}

.s-column__taxonomy:after {
  content: "";
  width: 1px;
  left: 50%;
  top: 10px;
  bottom: 10px;
  position: absolute;
  background-color: #BBC5E0;
}
.s-column__taxonomy h3 {
  color: #1B43AA;
  font-size: 21px;
  margin-right: 20px;
}
.s-column__taxonomy select {
  color: #3C3C3C;
  height: 50px;
  width: 250px;
  padding: 10px 20px;
  font-size: 16px;
  resize: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #1B43AA;
  vertical-align: middle;
  border-radius: 8px;
  background-color: #fff;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s, -webkit-box-shadow linear 0.2s;
}
.s-column__taxonomy select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../image/common/ic-select.png);
  background-repeat: no-repeat;
  background-position: center right 20px;
}
@media screen and (max-width: 767px) {
  .s-column__taxonomy:after {
    content: none;
  }
  .s-column__taxonomy {
    padding: 30px 20px;
    border-radius: 16px;
    margin-bottom: 42px;
  }
  .s-column__taxonomy h3 {
    font-size: 1.9rem;
    margin: 0 0 10px;
  }
  .s-column__taxonomy .f-left {
    margin-bottom: 23px;
    padding-bottom: 30px;
    border-bottom: 1px solid #BBC5E0;
  }
  .s-column__taxonomy select {
    width: 230px;
    height: 42px;
    font-size: 1.4rem;
  }
}

/* section-strengths
  ------------------------------------------------------------*/
.s-strengths__list {
  flex-wrap: wrap;
}
.s-strengths__list li {
  border-radius: 8px;
  padding: 3%;
  width: calc((100% - 4%) / 2);
  background-color: #EBF5FF;
}
@media screen and (min-width: 768px) {
  .s-strengths__list li:not(:nth-child(-n+2)) {
    margin-top: 4%;
  }
  .s-strengths__list li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
.s-strengths__list li a {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.s-strengths__list--txt {
  width: 65%;
}
.s-strengths__list--img {
  width: 40%;
  text-align: right;
}
.s-strengths__list--txt p {
  font-size: 18px;
  padding-top: 10px;
}
.s-strengths__list--txt .c-btn01 {
  color:#2A72BE;
  background-color: #fff;
  border: 1px solid #2A72BE;
}

@media screen and (max-width: 767px) {
  .s-strengths__list li {
    padding: 0;
    width: 100%;
  }
  .s-strengths__list li:not(:last-child) {
    margin-bottom: 30px;
  }
  .s-strengths__list--txt {
    align-self: center;
    padding: 20px 10px 20px 20px;
  }
  .s-strengths__list--txt p {
    font-size: 1.5rem;
  }
  .s-strengths__list li:nth-child(3) .s-strengths__list--img {
    /* width: 50%; */
  }
}

/* section-strength
  ------------------------------------------------------------*/
.s-strength__list {
  flex-wrap: wrap;
}
.s-strength__list li {
  padding: 2%;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #D5E7F8;
}
.s-strength__list--img { 
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
}
.s-strength__list--txt {
  padding: 18px 0;
}
.s-strength__list--txt h3 {
  text-align: center;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .s-strength__list li {
    padding: 4%;
    margin-bottom: 30px;
  }
  .s-strength__list--img {
    height: 42vw;
  }
}

/* section-consult
  ------------------------------------------------------------*/
.s-consult {
  /* border-bottom: 3px solid #DFEEFE; */
}
.s-consult .s-com02__list--img:after {
  background: url(../image/common/consult-img.png) center no-repeat;
}
  
.s-consult .s-com02__list--txt {
  color: #fff;
  background-color: #2A72BE;
}
.s-consult .u-hover.is-hover .c-btn01 {
  color: #2A72BE !important;
  background-color: #fff !important;
}


/* section-issues
  ------------------------------------------------------------*/
.s-issues__frame {
  padding: 0 3% 4%;
  border-radius: 8px;
  margin-top: 70px;
  border: 3px solid #2A72BE;
}
.s-issues h3 {
  text-align: center;
}
.s-issues__label {
  padding: 15px 5px;
  max-width: 753px;
  border-radius: 21px;
  position: relative;
  margin: -38px auto 0;
  border: 3px solid #2A72BE;
  background-color: #C5DAEF;
}
.s-issues__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end; 
  justify-content: space-between;
  padding: 20px 0 10px;
  border-bottom: 1px dashed #5089C6;
}
.s-issues__list li h4, .s-issues__list li h5 {
  margin-left: 4%;
}
.s-issues__list li h5 {
  font-size: 34px;
  line-height: 1;
  margin-top: 7px;
  display: inline-block;
  background: linear-gradient(to bottom, transparent 70%, #F5FF00 50%);
}
.s-issues__list li h5 span {
  font-size: 60px;
}
.s-issues__ttl {
  padding: 55px 0 30px;
}
.s-issues__list .s-issues__list--btn {
  color: #fff;
  font-size: 22px;
  padding: 6px 0;
  width: 45%;
  text-align: center;
  background-color: #2A72BE;
}

@media screen and (max-width: 767px) {
  .s-issues__frame {
    border: 1.5px solid #2A72BE;
  }
  .s-issues__label {
    padding: 10px 5px;
    margin: -25px auto 0;
    border: 1.5px solid #2A72BE;
  }
  .s-issues__list li {
    display: block;
    text-align: center;
  }
  .s-issues__list li h4, .s-issues__list li h5 {
    margin: 12px 0 0;
  }
  .s-issues__list li h5 {
    font-size: 2.3rem;
  }
  .s-issues__list li h5 span {
    font-size: 4rem;
  }
  .s-issues__list .s-issues__list--btn {
    width: 100%;
  }
}



/*------------------------------------------------------------
p-top
------------------------------------------------------------*/
.top-visual h1 {
  font-size: 33px;
}
.top-visual img {
  margin-top: 25px;
}
.top-visual .slick-prev, .top-visual .slick-next {
  top: 50%;
}
.top-visual .slick-prev {
  left: 3%;
}
.top-visual .slick-next {
  right: 3%;
}
@media screen and (max-width: 767px) {
  .top-visual h1 {
    font-size: 1.7rem;
  }
  .top-visual .slick-prev {
    left: -9%;
  }
  .top-visual .slick-next {
    right: -9%;
  }
}

/**
 *  Progress Bar
 */
 .top-progress {
  position: relative;
 }
 .slider-progress {
  display: block;
  height: 3px;
  margin-top: 30px;
  overflow: hidden;
  background-color: #E1E5F5;
  background-image: linear-gradient(to right, #ACCFF4, #ACCFF4);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size .4s ease-in-out;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.slider-number {
  color: #2A72BE;
  font-size: 16px;
  position: absolute;
  right: 20px;
  bottom: -4px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (min-width: 768px) {
  .slider-number {
    right: 12px;
  }
}

/* section-target
  ------------------------------------------------------------*/
.p-top .s-target__list li {
  width: calc((100% - 8%) / 5);
}
@media screen and (max-width: 767px) {
  .p-top .s-target__list li {
    width: calc((100% - 2%) / 2);
  }
  .p-top .s-target__list li:not(:nth-child(2n)) {
    margin-right: 2%;
  }
}


/* section-voice
  ------------------------------------------------------------*/
.p-top .s-voice .s-com02__list--img:after {
  background: url(../image/top/voice-img01.png) center no-repeat;
}
.p-top .s-voice .s-com02__list li .c-btn01 {
  margin-left: 0;
}
.p-top .s-voice .s-com02__list--txt {
  background-color: #F7F7F7;
}

/* section-customer
  ------------------------------------------------------------*/
.p-top .s-customer li, .p-top .s-customer .s-com02__list--txt {
  background-color: #EBF5FF;
}

.p-top .s-column {
  background-color: #EBF5FF;
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-contact
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.s-contact {
  color: #3B3B3B;
  background-color: #EBF5FF;
  font-family: 'Noto Sans JP', sans-serif;
}
.c-note {
  font-size: 18px;
}
.c-note__list {
  padding: 3%;
  line-height: 1.7;
  border-radius: 10px;
  background-color: #fff;
}
.c-note__list p {
  padding-top: 20px;
}
.c-note__list li + li {
  margin-top: 36px;
}
.c-note__list li {
  position: relative;
  padding-left: 20px;
}
.c-note__list li:before {
  content: "● ";
  color: #1B43AA;
  top: 7px;
  left: 0;
  font-size: 10px;
  position: absolute;
}
.c-note__alert {
  color: #F7004C;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .c-note {
    font-size: 1.6rem;
  }
  .c-note__list {
    padding: 25px 23px 25px 20px;
  }
  .c-note__list li  {
    padding-left: 15px;
  }
  .c-note__list li + li {
    margin-top: 25px;
  }
}


.s-contact__form {
}
.s-contact__label {
  color: #fff;
  font-size: 23px;
  padding: 20px 0;
  text-align: center;
  margin-top: 60px;
  background-color: #2A72BE;
}
@media screen and (max-width: 767px) {
  .s-contact__label {
    font-size: 1.9rem;
    padding: 17px 0;
  }
}
.s-contact__inner {
  /* align-items: baseline; */
}
.s-contact__inner.flex-end {
  align-items: flex-end;
}
.s-contact__item {
  margin-top: 40px;
}
.s-contact__inner + .s-contact__full,
.s-contact__full + .s-contact__inner {
  padding-top: 38px;
}
.s-contact__item {
}
.s-contact__item .f-left {
  margin-right: 5%;
}
.s-contact__item h3 {
  color: #1B43AA;
  border-radius: 24px;
  text-align: center;
  padding: 12px;
  max-width: 264px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  border: 1px solid #1B43AA;
  background-color: #D7E7FC;
}
.s-contact__item--ttl {
  position: relative;
  margin-bottom: 40px;
}
.s-contact__item--ttl:after {
  content: "";
  height: 2px;
  width: 100%;
  left: 0; 
  top: 50%;
  transform: translate(0, -50%);
  position: absolute;
  background-color: #1B43AA;
}

@media screen and (max-width: 767px) {
  .s-contact__item--ttl:after {
    height: 1px;
  }
}
.s-contact__form table {
}
@media screen and (max-width: 767px) {
  .s-contact__form table {
    width: 100%;
  }
  .s-contact__form table + table {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .s-contact__item h3 {
    padding: 10px;
    max-width: 210px;
  }
}
.s-contact__form table th,
.s-contact__form table td {
  display: block;
  text-align: left;
  font-weight: 500;
}

.s-contact__form table th span {
  color: #fff;
  margin-left: 30px;
  font-size: 13px;
  padding: 5px 20px;
  border-radius: 13px;
  vertical-align: middle;
  background-color: #70A7EF;
  border: 2px solid #1B43AA;
}
@media screen and (max-width: 767px) {
  .s-contact__form table th span {
    padding: 4px 13px;
    margin-left: 15px;
    font-size: 1.2rem;
    border: 1px solid #1B43AA;
  }
}
.s-contact__form table th small {
  font-size: 14px;
}

.s-contact__inner + .s-contact__inner,
.s-contact__form table tr + tr th {
  padding-top: 38px;
}

.s-contact__form table td {
  padding-top: 15px;
}

.s-contact__form table input,
.s-contact__form table textarea,
.s-contact__form table select {
  height: 60px;
  padding: 16px 20px;
  font-size: 16px;
  resize: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #707070;
  background-color: #fff;
  vertical-align: middle;
  border-radius: 6px;
  /* font-family: "メイリオ", "meiryo", sans-serif; */
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s,
    -webkit-box-shadow linear 0.2s;
}

@media screen and (max-width: 767px) {
  .s-contact__form table input,
  .s-contact__form table textarea,
  .s-contact__form table select {
    padding: 12px 15px;
    height: 50px;
    font-size: 1.4rem;
  }
}

.s-contact__form table input,
.s-contact__form table textarea {
  width: 100%;
}

.s-contact__form table textarea:focus,
.s-contact__form table input:focus,
.s-contact__form table select:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
}

.s-contact__form table input.w850 {
  max-width: 75%;
}
.group-checkbox .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.group-checkbox .wpcf7-checkbox .wpcf7-list-item {
  margin-top: 10px;
  margin-left: 0;
  width: calc((100% - 4%) / 2);
}
.group-checkbox .wpcf7-checkbox .wpcf7-list-item:not(:nth-child(odd)) {
  margin-right: 4%;
}
.group-checkbox .wpcf7-checkbox .wpcf7-list-item.first {
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #5089C6;
}
.s-contact__form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  vertical-align: -2px;
  margin: 0 10px 0 0;
  border-radius: 0 !important;
}
@media screen and (max-width: 767px) {
  .group-checkbox .wpcf7-checkbox {
    display: block;
  }
  .group-checkbox .wpcf7-checkbox .wpcf7-list-item {
    width: 100%;
  }
  .group-checkbox .wpcf7-checkbox .wpcf7-list-item:not(:nth-child(odd)) {
    margin-right: 0;
  }
  .s-contact__form input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin: 0 5px 0 0;
  }
}

.s-contact__form table select {
  width: 290px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* background-image: url(../img/common/ic_select.png);
  background-repeat: no-repeat;
  background-position: center right 20px; */
}

@media screen and (max-width: 767px) {
  .s-contact__form table select {
    /* -webkit-background-size: 12px 7px; */
    /* background-size: 12px 7px; */
  }
}

.s-contact__form .group-select .wpcf7-form-control-wrap:after {
  position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    width: 6px;
    height: 6px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform: translateY(-50%) rotate(45deg);
}
.s-contact__form .group-select .wpcf7-not-valid-tip {
  position: absolute;
}

.s-contact__form table select::-ms-expand {
  display: none;
}

.s-contact__form table textarea {
  height: 420px;
}
@media screen and (max-width: 767px) {
  .s-contact__form .group-content textarea {
    height: 300px;
  }
}

.s-contact__rules {
  margin-top: 40px;
  padding: 4%;
  height: 320px;
  line-height: 2;
  overflow-x: hidden;
  border-radius: 10px;
  background-color: #F2F2F2;
  border: 1px solid #707070;
}
.s-contact__rules li {
  padding-top: 50px;
}

@media screen and (max-width: 767px) {
  .s-contact__rules {
      height: 220px;
      padding: 30px 25px;
  }
  .s-contact__rules li {
    padding-top: 30px;
  }
}

.s-contact__checkbox {
  text-align: center;
  padding: 50px 0 26px;
}
@media screen and (max-width: 767px) {
  .s-contact__checkbox {
    padding: 40px 0 15px;
  }
}

.s-contact__form .form-submit input:hover {
  transform: scale(1.1);
}

.s-contact__form .form-submit input,
.s-contact__form .wpcf7cp-btns button {
  border: none;
  cursor: pointer;
  width: 35%;
  font-size: 16px;
  color: #fff;
  display: block;
  padding: 8px 40px;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 50px;
  transition: all .5s;
  background-color: #2A72BE;
  font-family: 'Noto Sans JP', sans-serif;
}
.wpcf7 .wpcf7-submit:disabled {
  background: #dddddd;
	color: #404040;
	border: 1px solid #404040 !important;
}
@media screen and (max-width: 767px) {
  .s-contact__form .form-submit input,
  .s-contact__form .wpcf7cp-btns button {
    width: 45% !important;
    font-size: 1.4rem;
    padding: 6px 30px;
  }
}

.s-contact__form .wpcf7cp-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.s-contact__form .wpcf7-spinner {
  position: absolute;
}

.wpcf7cp-form-hide {
  opacity: 0;
}


#wpcf7cpcnf table {
}
#wpcf7cpcnf table tr {
  display: flex;
}
#wpcf7cpcnf table th {
  width: 33%;
  color: #fff;
  text-align: left;
  background-color: #2A72BE;
  border-top: 1px solid #1B43AA;
  border-left: 1px solid #1B43AA;
}
#wpcf7cpcnf table td {
  width: 70%;
  background-color: #fff;
  border-top: 1px solid #1B43AA;
  border-right: 1px solid #1B43AA;
  border-left: 1px solid #1B43AA;
}
#wpcf7cpcnf table th, #wpcf7cpcnf table td {
  padding: 20px 4%;
}
#wpcf7cpcnf table tr:nth-last-child(2) th, #wpcf7cpcnf table tr:nth-last-child(2) td {
  border-bottom: 1px solid #1B43AA;
}
#wpcf7cpcnf table tr:last-child {
  display: none;
}
@media only screen and (max-width: 767px) {
  #wpcf7cpcnf table tr {
    display: block;
  }
  #wpcf7cpcnf table tr + tr {
    margin-top: 30px;
  }
  #wpcf7cpcnf table th {
    padding: 12px 4%;
  }
  #wpcf7cpcnf table th, #wpcf7cpcnf table td {
    width: 100%;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-features
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/* section-descript
  ------------------------------------------------------------*/
.p-features .s-descript__list {
  display: flex;
  flex-wrap: wrap;
}
.p-features .s-descript__list li {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-features .s-descript__list li {
    width: calc((100% - 6%) / 4);
  }
  .p-features .s-descript__list li:not(:nth-child(4n)) {
    margin-right: 2%;
  }
}
.p-features .s-descript__list p {
  padding-top: 30px;
}
.p-features .s-descript__label {
  display: block;
  font-size: 24px;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  margin: 40px auto 0;
  max-width: 500px;
  background-color: #EBF5FF;
  border: 1px solid #2A72BE;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 767px) {
  .p-features .s-descript__list li {
    margin-bottom: 20px;
    width: calc((100% - 3%) / 2);
  }
  .p-features .s-descript__list li:not(:nth-child(2n)) {
    margin-right: 3%;
  }
  .p-features .s-descript__list p {
    padding-top: 15px;
  }
  .p-features .s-descript__label {
    font-size: 2rem;
    padding: 10px;
    margin: 20px auto 0;
  }
}

/* s-problems
  ------------------------------------------------------------*/
/* .p-features .s-target__list {
  flex-wrap: wrap;
}
.p-features .s-target__list li {
  border-radius: 8px;
  background-color: #2A72BE;
}
.p-features .s-target__list .s-target__list--txt {
  color: #fff;
  padding: 30px 2%;
}
.p-features .s-target__list h4 span {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-features .s-target__list li {
    width: calc((100% - 3%) / 2);
  }
  .p-features .s-target__list li:nth-child(2n) {
    margin-right: 0;
  }
  .p-features .s-target__list li:not(:nth-child(-n+2)) {
    margin-top: 2%;
  }
}

@media screen and (max-width: 767px) {
  .p-features .s-target__list li {
    width: 100%;
  }
} */

/* s-column
  ------------------------------------------------------------*/
.p-features .s-com01__img.img01:after {
  background: url(../image/features/column-img01.png);
}
.p-features .s-com01__img.img02:after {
  background: url(../image/features/column-img02.png);
}
.p-features .s-com01__img.img03:after {
  background: url(../image/features/column-img03.png);
}

@media screen and (min-width: 768px) {
  .p-features .s-topics__list li {
    width: calc((100% - 2%) / 2);
    margin: 25px 2% 0 0 !important;
  }
  .p-features .s-topics__list li:nth-child(-n+2) {
    margin-top: 0 !important;
  }
  .p-features .s-topics__list li:nth-child(2n), .p-features .s-topics__list li:last-child {
    margin-right: 0 !important;
  }
}

.p-features .s-topics .f-right {
  margin-left: 2%;
}
.p-features .s-topics__pick .s-com01__img {
  height: 300px;
}
.p-features .s-topics__pick .s-com01__img:after {
  background: url(../image/features/pick-img.png);
}
.p-features .s-topics__list .s-com01__img.img01:after {
  background: url(../image/features/topics-img01.png);
}
@media screen and (max-width: 767px) {
  .p-features .s-topics__list li {
    width: 100%;
    margin: 0 0 40px;
  }
  .p-features .s-topics__list li:last-child {
    margin-bottom: 0;
  }
  .p-features .s-topics .f-right {
    margin: 30px 0 0;
  }
  .p-features .s-topics__pick .s-com01__img {
    height: 52vw;
  }
}

.p-features .s-target {
  padding-bottom: 30px;
}
.p-features .s-strengths .c-mainvisual--btn {
  margin-top: -37px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-features .s-strengths .c-mainvisual--btn {
    margin-top: -32px;
  }
}

/* s-aboutus
  ------------------------------------------------------------*/
.p-features .s-aboutus .s-aboutus__img {
  float: left;
  margin-right: 5%;
  text-align: center;
}
.p-features .s-aboutus .s-aboutus__img p {
  padding-top: 16px;
}
.p-features .s-aboutus .s-aboutus__txt {
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
}
.p-features .s-aboutus .s-aboutus__txt p + p {
  padding-top: 3%;
}

@media screen and (max-width: 767px) {
  .p-features .s-aboutus .s-aboutus__img {
    float: none;
    margin-right: 0;
  }
  .p-features .s-aboutus .s-aboutus__txt {
    margin-top: 30px;
	  line-height: 1.7;
	  font-size: 1.5rem;
  }
  .p-features .s-aboutus .s-aboutus__txt p + p {
    padding-top: 20px;
  }
}

/* section-target
  ------------------------------------------------------------*/
.p-features .s-target__list {
  flex-wrap: wrap;
}
.p-features .s-target__list li {
  width: calc((100% - 8%) / 5);
}
@media screen and (min-width: 768px) {
  .p-features .s-target__list li:nth-child(5n) {
    margin-right: 0;
  }
  .p-features .s-target__list li:not(:nth-child(-n+5)) {
    margin-top: 2%;
  }
  .p-features .s-target__list h3 {
  }
  .p-features .s-target__list .s-target__list--txt {
    /* padding: 20px 4%; */
  }
}
@media screen and (max-width: 767px) {
  .p-features .s-target__list li {
    width: calc((100% - 2%) / 2);
  }
  .p-features .s-target__list li:not(:nth-child(2n)) {
    margin-right: 2%;
  }
}

/* s-about
  ------------------------------------------------------------*/
.p-features .s-about .s-com01__img.img01:after {
  background: url(../image/features/about-img01.png);
}
.p-features .s-about .s-com01__img.img02:after {
  background: url(../image/features/about-img02.png);
}
.p-features .s-about .s-com01__img.img03:after {
  background: url(../image/features/about-img03.png);
}
.p-features .s-about .s-com01__img.img04:after {
  background: url(../image/features/about-img04.png);
}
.p-features .s-about .s-com01__img.img05:after {
  background: url(../image/features/about-img05.png);
}
.p-features .s-about .s-com01__img.img06:after {
  background: url(../image/features/about-img06.png);
}

.p-features .s-about .s-com01__img {
  height: auto;
  margin-bottom: 16px;
}
.p-features .s-about .s-com01__img img {
  max-height: 100%;
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-management
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/* section-person
  ------------------------------------------------------------*/
.p-management .s-person .l-container {
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-management .s-person .l-container {
    padding-top: 50px;
  }
}
.p-management .s-person__img {
  text-align: center;
}
.p-management .s-person__txt  {
  border-radius: 8px;
  padding: 15px 4%;
  max-width: 726px;
  text-align: center;
  margin: 50px auto 30px;
  border: 1px solid #2A72BE;
  background-color: #EBF5FF;
}
  
/* section-reason
  ------------------------------------------------------------*/
.p-management .s-reason {
  background-color: #EBF5FF;
}
.p-management .s-descript .s-target__list {
  max-width: 990px;
  margin: 0 auto;
}

/* section-pickup
  ------------------------------------------------------------*/
.p-management .s-pickup .s-com02__list--img.img01:after {
  background: url(../image/management/pickup-img01.png) center no-repeat;
}
.p-management .s-pickup .s-com02__list--img.img02:after {
  background: url(../image/management/pickup-img02.png) center no-repeat;
}
.p-management .s-pickup .s-com02__list--txt {
  background-color: #F5F5F5;
}
 
.p-management .s-column {
  background-color: #EBF5FF;
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-voice
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.p-voice .s-customer li, .p-voice .s-customer .s-com02__list--txt {
  background-color: #EBF5FF;
}

/* section-voice
  ------------------------------------------------------------*/
.p-voice .s-voice__frame{
  padding: 5%;
  border-radius: 8px;
  background-color: #fff;
}
.js .slider-single > div:nth-child(1n+2) { display: none }
.js .slider-single.slick-initialized > div:nth-child(1n+2) { display: block }
.p-voice .s-voice h2 {
  padding-bottom: 25px;
  margin-bottom: 40px;
  border-bottom: 1px solid #B5B5B5;
}
.p-voice .s-voice .slider-item {
  border-radius: 8px;
  background-position: center top 20% !important;
}

.p-voice .s-voice .slider-single .slider-item {
  height: 470px;
}
.p-voice .s-voice .slider-nav .slick-track {
  width: auto !important;
  display: flex;
  justify-content: center;
}

.p-voice .s-voice .slider-nav .slider-item {
  width: 320px !important;
  height: 185px;
  margin: 20px 20px 0 0;
}

.p-voice .s-voice__text {
  margin-top: 16px;
}
.p-voice .s-voice__text--bottom {
  margin-top: 25px;
  padding-top: 35px;
  border-top: 1px solid #B5B5B5;
}
.p-voice .s-voice__text dl + dl {
  padding-top: 25px;
}
.p-voice .s-voice__text dl dd {
  padding-top: 10px;
}
.p-voice .s-voice__text dl small {
  color: #000000;
  font-size: 14px;
}
.p-voice .s-voice__text dl h3 {
  font-size: 19px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-voice .s-voice .slider-single .slider-item {
    height: 60vw;
  }
  .p-voice .s-voice .slider-nav .slider-item {
    width: 25vw !important;
    height: 15vw;
    margin: 10px 10px 0 0;
  }
  .p-voice .s-voice__text dl h3 {
    font-size: 1.7rem;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-rate
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/* section-target
  ------------------------------------------------------------*/
.p-rate .s-descript .s-target__list li {
  width: calc((100% - 6%) / 4);
}

/* section-rate
  ------------------------------------------------------------*/
.p-rate .s-rate .c-title01 p {
  font-size: 18px;
}
.p-rate .s-rate__img {
  text-align: center;
}

.p-rate .s-reason {
  background-color: #EBF5FF;
}

/* section-pickup
  ------------------------------------------------------------*/
.p-rate .s-pickup .s-com02__list--img.img01:after {
  background: url(../image/rate/pickup-img01.png) center no-repeat;
}
.p-rate .s-pickup .s-com02__list--img.img02:after {
  background: url(../image/rate/pickup-img02.png) center no-repeat;
}
.p-rate .s-pickup .s-com02__list--img.img03:after {
  background: url(../image/rate/pickup-img03.png) center no-repeat;
}
.p-rate .s-pickup .s-com02__list--txt {
  background-color: #F5F5F5;
}

.p-rate .s-customer li, .p-rate .s-customer li .s-com02__list--txt {
  background-color: #EBF5FF;
}

.p-rate .s-column {
  background-color: #EBF5FF;
}

@media screen and (max-width: 767px) {
  .p-rate .s-descript .s-target__list li {
    width: 100% !important;
  }
  .p-rate .s-rate .c-title01 p {
    font-size: 1.6rem;
  }
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-building
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/* section-descript
  ------------------------------------------------------------*/
.p-building .s-target__list {
  max-width: 660px;
  margin: 0 auto;
}

/* s-customer, s-recruit
  ------------------------------------------------------------*/
.p-building .s-customer {
  padding-top: 60px;
}
.p-building .s-recruit {
  padding-bottom: 70px;
}
.p-building .s-customer li, .p-building .s-customer .s-com02__list--txt{
  /* background-color: #F7F7F7; */
}
.p-building .s-customer .s-com02__list--img.img01:after {
  background: url(../image/building/customer-img01.png) center no-repeat;
}
.p-building .s-customer .s-com02__list--img.img02:after {
  background: url(../image/building/customer-img02.png) center no-repeat;
}

.p-building .s-recruit .s-com02__list--img.img01:after {
  background: url(../image/building/recruit-img01.png) center no-repeat;
}
.p-building .s-recruit .s-com02__list--img.img02:after {
  background: url(../image/building/recruit-img02.png) center no-repeat;
}
.p-building .s-recruit .s-com02__list--txt {
  background-color: #F7F7F7;
}

@media screen and (max-width: 767px) {
  .p-building .s-customer {
    padding-top: 50px;
  }
  .p-building .s-recruit {
    padding-bottom: 60px;
  }
}

/* section-pickup
  ------------------------------------------------------------*/
.p-building .s-pickup .s-com02__list--img.img01:after {
  background: url(../image/building/pickup-img01.png) center no-repeat;
}
.p-building .s-pickup .s-com02__list--img.img02:after {
  background: url(../image/building/pickup-img02.png) center no-repeat;
}
.p-building .s-pickup .s-com02__list--txt {
  background-color: #F5F5F5;
}

/* section-strengths
  ------------------------------------------------------------*/
.p-building .s-strength .s-strength__list--img.img01:after {
  background: url(../image/building/strengths-img01.png) center no-repeat;
}
.p-building .s-strength .s-strength__list--img.img02:after {
  background: url(../image/building/strengths-img02.png) center no-repeat;
}
.p-building .s-strength .s-strength__list--img.img03:after {
  background: url(../image/building/strengths-img03.png) center no-repeat;
}
.p-building .s-strength .s-strength__list--img.img04:after {
  background: url(../image/building/strengths-img04.png) center no-repeat;
}
.p-building .s-strength .s-strength__list--img.img05:after {
  background: url(../image/building/strengths-img05.png) center no-repeat;
}
.p-building .s-strength .s-strength__list--img.img06:after {
  background: url(../image/building/strengths-img06.png) center no-repeat;
}

.p-building .s-column {
  background-color: #EBF5FF;
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-measures
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/* section-descript
  ------------------------------------------------------------*/
.p-measures .s-descript .s-target__list, .p-solve .s-descript .s-target__list, .p-asset .s-descript .s-target__list {
  max-width: 980px;
  margin: 0 auto;
}

/* section-pickup
  ------------------------------------------------------------*/
.p-measures .s-pickup .s-com02__list--img.img01:after {
  background: url(../image/measures/pickup-img01.png) center no-repeat;
}
.p-measures .s-pickup .s-com02__list--img.img02:after {
  background: url(../image/measures/pickup-img02.png) center no-repeat;
}
.p-measures .s-pickup .s-com02__list--txt {
  background-color: #fff;
}  
.p-measures .s-reality .s-target__list p,
.p-solve .s-reality .s-target__list p {
  color: #3C3C3C;
}
.p-measures .s-reality .s-target__list p span,
.p-solve .s-reality .s-target__list p span {
  font-size: 14px
}
.s-reality .c-react {
  justify-content: center;
}

.p-measures .s-column {
  background-color: #EBF5FF;
}

.p-measures .s-writer {
  
}
.p-measures .s-writer__inner {
  padding: 4%;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #2A72BE
}
.p-measures .s-writer__profile {
  width: 27%;
  text-align: center;
}
.p-measures .s-writer__profile--img {
}
.p-measures .s-writer__profile h3 {
  padding-top: 15px;
}
.p-measures .s-writer__profile--desc {
  font-size: 14px;
  padding-top: 18px;
}
.p-measures .s-writer__text {
  width: 70%;
  line-height: 1.7;
}
.p-measures .s-writer__text p + p {
  padding-top: 25px;
}

@media screen and (max-width: 767px) {
  .p-measures .s-writer__inner {
    padding: 20px;
  }
  .p-measures .s-writer__profile {
    width: 100%;
  }
  .p-measures .s-writer__text {
    width: 100%;
    margin-top: 25px;
  }
  .p-measures .s-writer__text p + p {
    padding-top: 20px;
  }
}

.p-measures .s-issues__frame {
  background-color: #fff;
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-solve
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* section-descript
  ------------------------------------------------------------*/
.p-solve .s-descript li {
  width: calc((100% - 6%) / 4);
}
.p-solve .s-descript li:last-child {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .p-solve .s-descript li {
    width: 100% !important;
  }
}

.p-solve .s-target__list--icon {
  display: block;
  margin-bottom: 5px;
}

/* section-strengths
  ------------------------------------------------------------*/
.p-solve .s-strength .s-strength__list--img.img01:after {
  background: url(../image/solve/strengths-img01.png) center no-repeat;
}
.p-solve .s-strength .s-strength__list--img.img02:after {
  background: url(../image/solve/strengths-img02.png) center no-repeat;
}
.p-solve .s-strength .s-strength__list--img.img03:after {
  background: url(../image/solve/strengths-img03.png) center no-repeat;
}

/* section-pickup
  ------------------------------------------------------------*/
.p-solve .s-pickup .s-com02__list--img.img01:after {
  background: url(../image/solve/pickup-img01.png) center no-repeat;
}
.p-solve .s-pickup .s-com02__list--img.img02:after {
  background: url(../image/solve/pickup-img02.png) center no-repeat;
}
.p-solve .s-pickup .s-com02__list--img.img03:after {
  background: url(../image/solve/pickup-img03.png) center no-repeat;
}
.p-solve .s-pickup .s-com02__list--img.img04:after {
  background: url(../image/solve/pickup-img04.png) center no-repeat;
}
.p-solve .s-pickup .s-com02__list--img.img05:after {
  background: url(../image/solve/pickup-img05.png) center no-repeat;
}
.p-solve .s-pickup .s-com02__list--txt {
  background-color: #fff;
}

.p-solve .s-customer .s-com02__list--img.img01:after {
  background: url(../image/solve/customer-img01.png) center no-repeat;
}
.p-solve .s-customer .s-com02__list--img.img02:after {
  background: url(../image/solve/customer-img02.png) center no-repeat;
}
.p-solve .s-customer .s-com02__list--img.img03:after {
  background: url(../image/solve/customer-img03.png) center no-repeat;
}

.p-solve .s-consult .s-com02__list--txt {
  width: 100%;
}
.p-solve .s-consult .s-com02__list >.f-right {
  margin-left: 4%;
}
.p-solve .s-consult .f-left .s-com02__list--txt {
  background-color: #2A72BE;
  border-radius: 10px;
  overflow: hidden;
}
.p-solve .s-consult li {
  border-radius: 10px;
  overflow: hidden;
}
.p-solve .s-consult li.f-left {
  background-color: #2A72BE;
}
.p-solve .s-consult li.f-right {
  background-color: #EBF5FF;
  border: 1px solid #B1C8F8;
}
.p-solve .s-consult .f-right .s-com02__list--txt {
  color: #2A72BE;
  background-color: #EBF5FF;
}
.p-solve .s-consult .s-com02__list >.f-right .c-btn01 {
  margin-right: 0;
}
@media screen and (max-width: 1070px) {

}
@media screen and (max-width: 767px) {
  .p-solve .s-consult .s-com02__list >.f-right {
    margin-left: 0;
  }
}


/* section-recruit
  ------------------------------------------------------------*/
.s-recruit .s-com02__list--img.img01:after {
  background: url(../image/solve/recruit-img01.png) center no-repeat;
}
.s-recruit .s-com02__list--img.img02:after {
  background: url(../image/solve/recruit-img02.png) center no-repeat;
}
.p-solve .s-recruit .s-com02__list--txt {
  background-color: #fff;
}

.p-solve .s-column {
  background-color: #EBF5FF;
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-asset
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/* section-pickup
  ------------------------------------------------------------*/
.p-asset .s-pickup .s-com02__list--img.img01:after {
  background: url(../image/asset/pickup-img.png) center no-repeat;
}

.p-asset .s-column {
  background-color: #EBF5FF;
}
  

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-inheritance
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/* section-owner
  ------------------------------------------------------------*/
.p-inheritance .s-owner__profile {
  display: flex;
  text-align: center;
  justify-content: center;
}
.p-inheritance .s-owner__profile dl + dl {
  margin-left: 2%;
}
.p-inheritance .s-owner__profile dd {
  color: #707070;
  font-size: 18px;
  padding-top: 10px;
}
.p-inheritance .s-owner__assets {
  margin-top: 45px;
  padding-top: 40px;
  border-top: 1px dashed #5089C6;
}
.p-inheritance .s-owner__assets--item {
  width: calc((100% - 5%) / 3);
}
.p-inheritance .s-owner__assets--item + .s-owner__assets--item {
  margin-left: 2.5%;
}
.p-inheritance .s-owner__assets h3 {
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 8px;
  margin-bottom: 8px;
  background-color: #2A72BE;
}
.p-inheritance .s-owner__assets h3 span {
  font-size: 16px;
}
.p-inheritance .s-owner__assets ul li {
  color: #121212;
  padding: 6px 0;
  border-bottom: 1px dashed #5089C6;
}

.p-inheritance .s-writer__inner, .p-faq .s-writer__inner {
  align-items: flex-end;
}
.p-inheritance .s-writer__profile, .p-faq .s-writer__profile{
  width: 30%;
  text-align: center;
}
.p-inheritance .s-writer__profile h3, .p-faq .s-writer__profile h3 {
  padding-top: 12px;
  font-size: 19px;
}
.p-inheritance .s-writer__profile--desc, .p-faq .s-writer__profile--desc {
  font-size: 14px;
}
.p-inheritance .s-writer__profile--desc, .p-faq .s-writer__profile--desc p {
  padding-top: 3px;
}
.p-inheritance .s-writer__text, .p-faq .s-writer__text {
  width: 70%;
  line-height: 1.7;
  margin-left: 4%;
  padding-left: 4%;
  border-left: 1px solid #9BC3ED;
}

@media screen and (max-width: 767px) {
  .p-inheritance .s-owner__profile dl + dl {
    margin-left: 4%;
  }
  .p-inheritance .s-owner__profile dd {
    font-size: 1.5rem;
    padding-top: 8px;
  }
  .p-inheritance .s-owner__assets--item {
    width: 100%;
  }
  .p-inheritance .s-owner__assets--item + .s-owner__assets--item {
    margin: 30px 0 0;
  }
  .p-inheritance .s-owner__assets h3 span {
    font-size: 1.4rem;
  }
  .p-inheritance .s-writer__inner {
  }
  .p-inheritance .s-writer__profile, .p-faq .s-writer__profile {
    width: 100%;
  }
  .p-inheritance .s-writer__profile h3, .p-faq .s-writer__profile h3 {
    padding-left: 15px;
  }
  .p-inheritance .s-writer__profile--img, .p-faq .s-writer__profile--img {
    justify-content: center;
  }
  .p-inheritance .s-writer__profile--desc, .p-faq .s-writer__profile--desc {
    padding-top: 10px;
    text-align: center;
  }
  .p-inheritance .s-writer__text, .p-faq .s-writer__text {
    width: 100%;
    margin: 25px 0 0;
    padding: 25px 0 0;
    border-left: 0;
    border-top: 1px solid #9BC3ED;
  }
}

/* section-situation
  ------------------------------------------------------------*/
.p-inheritance .s-situation__list {
  flex-wrap: wrap;
}
.p-inheritance .s-situation__list li {
  width: calc((100% - 12px) / 2);
  border: 5px solid #D5E7F8;
  padding: 10px 2.3%;
  border-radius: 8px;
  font-size: 19px;
}
.p-inheritance .s-situation__list li p span {
  color: #575757;
}
@media screen and (min-width: 768px) {
  .p-inheritance .s-situation__list li:not(:nth-child(2n)) {
    margin-right: 12px;
  }
  .p-inheritance .s-situation__list li:not(:nth-child(-n+2)) {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-inheritance .s-situation__list li {
    width: 100%;
    padding: 10px 4%;
    font-size: 1.6rem;
    border: 2.5px solid #D5E7F8;
  }
  .p-inheritance .s-situation__list li + li {
    margin-top: 10px;
  }
}


/* section-resolved
  ------------------------------------------------------------*/
.p-inheritance .s-resolved dl {
  border-radius: 8px;
  padding: 3% 4%;
  background-color: #fff;
}
.p-inheritance .s-resolved dl + dl {
  margin-top: 18px;
}
.p-inheritance .s-resolved dt {
  color: #434343;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #5089C6;
}
.p-inheritance .s-resolved dt span {
  color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 7px;
  background-color: #2A72BE;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 767px) {
  .p-inheritance .s-resolved dl {
    padding: 20px;
  }
}
    
/* section-comment
  ------------------------------------------------------------*/
.p-inheritance .s-commnet {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px dashed #5089C6;
}
.p-inheritance .s-commnet__frame {
  padding: 0 4% 3.2%;
  border-radius: 8px;
  margin-top: 70px;
  background-color: #fff;
  border: 3px solid #2A72BE;
}
.p-inheritance .s-commnet h3 {
  padding: 15px 5px;
  text-align: center;
  max-width: 900px;
  border-radius: 35px;
  position: relative;
  margin: -38px auto 35px;
  border: 3px solid #2A72BE;
  background-color: #FEFDE0;
}
.p-inheritance .s-commnet__img {
}
.p-inheritance .s-commnet__txt {
  color: #454545;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-inheritance .s-commnet__frame {
    padding: 0 20px 25px;
    border: 1.5px solid #2A72BE;
  }
  .p-inheritance .s-commnet h3 {
    padding: 10px 5px;
    margin: -50px auto 0px;
    border: 1.5px solid #2A72BE;
	  border-radius: 3px;
	  font-size: 2.1rem;
  }
  .p-inheritance .s-commnet__img {
    width: 100%;
    text-align: center;
  }
  .p-inheritance .s-commnet__txt {
    width: 100%;
    margin-top: 26px;
  }
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-land
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/* section-strengths
  ------------------------------------------------------------*/
.p-land .s-strength .s-strength__list--img.img01:after {
  background: url(../image/land/strengths-img01.png) center no-repeat;
}
.p-land .s-strength .s-strength__list--img.img02:after {
  background: url(../image/land/strengths-img02.png) center no-repeat;
}
.p-land .s-strength .s-strength__list--img.img03:after {
  background: url(../image/land/strengths-img03.png) center no-repeat;
}
.p-land .s-strength .s-strength__list--img.img04:after {
  background: url(../image/land/strengths-img04.png) center no-repeat;
}
.p-land .s-strength .s-strength__list--img.img05:after {
  background: url(../image/land/strengths-img05.png) center no-repeat;
}
.p-land .s-strength .s-strength__list--img.img06:after {
  background: url(../image/land/strengths-img06.png) center no-repeat;
}
.p-land .s-strength .s-strength__list--img.img07:after {
  background: url(../image/land/strengths-img07.png) center no-repeat;
}
.p-land .s-strength .s-strength__list--img.img08:after {
  background: url(../image/land/strengths-img08.png) center no-repeat;
}
.p-land .s-strength .s-strength__list--img.img09:after {
  background: url(../image/land/strengths-img09.png) center no-repeat;
}

/* section-consult
  ------------------------------------------------------------*/
.p-land .s-consult {
  background-color: #EBF5FF;
}
.p-land .s-consult .s-com02__list--img:after {
  background: url(../image/land/consult-img.png) center no-repeat;
}


/*------------------------------------------------------------
    s-single
    ------------------------------------------------------------*/
.s-single {
  color: #000;
}
.s-single__desc span {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #B5B5B5;
}
.s-single__desc h4 {
}

.s-single__frame {
  padding: 5%;
  border-radius: 6px;
  margin-top: 50px;
  border: 1px solid #EFF6FF;
}
.s-single__frame h3 {
  font-size: 18px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #1B43AA;
}
.s-single__img {
  border-radius: 8px;
  border: 1px solid #707070;
}
.s-single__txt {
  padding-top: 30px;
  line-height: 2;
}
.s-single__txt img {
  border-radius: 10px;
  margin: 20px auto;
}

@media screen and (max-width: 767px) {
  .s-single__frame {
    padding: 30px;
    margin-top: 40px;
  }
  .s-single__frame h3 {
    font-size: 1.6rem;
  }
}
/*------------------------------------------------------------
    c-pagination
    ------------------------------------------------------------*/
.c-pages {
  text-align: center;
  margin-top: 60px;
  font-family: 'Noto Sans JP', sans-serif;
}
.c-total {
  color: #3C3C3C;
  margin-top: 20px;
}
.c-pagination {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-pagination a,
.c-pagination span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin: 0 4px;
  font-size: 18px;
  border: 1px solid #2A72BE;
}
.c-pagination a:hover, .c-pagination span.current {
  color: #fff;
  background-color: #2A72BE;
}
.c-pagination .prev, .c-pagination .next, .c-pagination .all_next {
  
}

@media screen and (max-width: 767px) {
  .c-pagination a, .c-pagination span {
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
    margin: 0 3px;
  }
}

/* ########################################## */
/* SP向け調整 */
@media screen and (max-width: 767px) {
	.p-inheritance .s-commnet {
		margin-top: 40px;
	}
	.page-individual .l-container.u-pd70 {
		padding: 10px 0 40px 0;
	}
	.page-individual .s-contact__form table + table {
		margin-top: 20px;
	}
	.page-individual .s-contact__inner + .s-contact__full, .page-individual .s-contact__full + .s-contact__inner {
		margin-top: 30px;
	}
	.s-contact__label {
		margin-top: 30px;
	}
	.page-individual .s-contact__inner + .s-contact__full,
	.page-individual .s-contact__full + .s-contact__inner {
		margin-top: -10px;
	}
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-faq
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* section-faq
  ------------------------------------------------------------*/
.p-faq .s-faq {
  color: #221815;
}
.txt-center {
  text-align: center;
}
.ds-flex{
  display: flex;
}
.p-faq .s-faq--letter {
  width: 60px;
  height: 60px;
  z-index: 1;
  color: #fff;
  display: block;
  font-size: 36px;
  text-align: center;
  position: relative;
  margin: -35px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-faq .s-faq--letter:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  transform: rotate(45deg);
}
.p-faq .s-faq--title {
  font-size: 33px;
  text-align: center;
  font-weight: bold;
}
.p-faq .s-faq__question .s-faq--letter:after {
  background-color: #00B0C3;
}
.p-faq .s-faq__question dt {
  border-radius: 8px;
  border: 4px solid #E3E3E3;
}
.p-faq .s-faq__question dt h1 {
  padding: 3%;
}
.p-faq .s-faq__question dd {
  padding-top: 25px;
}

.p-faq .s-faq__answer {
  border-radius: 8px;
  margin-top: 80px;
  padding: 0 4% 8%;
  border: 4px solid #BAC4E6;
}
.p-faq .s-faq__answer .s-faq--letter:after {
  background-color: #7460A4;
}
.p-faq .s-faq__answer h1 {
  margin-top: 30px;
}
.p-faq .s-faq__answer ul {
  max-width: 840px;
  margin: 50px auto 0;
}
.p-faq .s-faq__answer li {
  font-size: 28px;
  padding: 18px 0 18px 8%;
  border-bottom: 1px dashed #5089C6;
  background: url(../image/faq/ic-check.png) left top 20px no-repeat;
}
.p-faq .s-faq__answer li span {
  font-size: 21px;
}

.p-faq .s-faq__answer .s-faq--table th {
  min-width: 125px;
  text-align: left;
  vertical-align: top;
}

/* .p-faq .s-consult .s-com02__list--img:after {
  background: url(../image/faq/consult-img.png) center no-repeat;
} */

.p-faq .s-faq__answer dl {
  max-width: 865px;
  margin: 70px auto 0;
}
.p-faq .s-faq__answer dt {
  display: flex;
  align-items: center;
}
.p-faq .s-faq__answer dt h4 {
  color: #816B9F;
  font-size: 12px;
  margin-right: 16px;
  display: flex;
  align-items: center;
}
.p-faq .s-faq__answer dt h4 span {
  color: #fff;
  font-size: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #816B9F;
}
.p-faq .s-faq__answer dt h3 {
}
.p-faq .s-faq__answer dd {
  border-top: 1px dashed #C3C3C3;
  padding-top: 8px;
  margin-top: 7px;
}
.p-faq .s-faq__answer .c-btn01 {
  color: #2A72BE;
  background-color: #fff;
  border: 1px solid #2A72BE;
}

/* p-invest */
.p-invest .s-faq__answer {
}
.p-invest .s-faq__answer h1 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-top: 30px;
  border-bottom: 1px dashed #C3C3C3;
}
.p-invest .s-faq__inner {
  display: table;
  margin: 0 auto;
}
.p-invest .s-faq__answer dl {
  margin: 20px auto 0;
}
.p-faq  .s-faq__textarea {
  margin-top: 50px;
}
.p-faq  .s-faq__textarea p + p {
  padding-top: 25px;
}

/* p-benefit */
.p-faq  .s-faq__box {
  margin-top: 10px;
}
.p-faq .s-faq__box + .s-faq__box {
  padding-top: 20px;
}


.p-faq .s-column {
  background-color: #EBF5FF;
}

@media screen and (max-width: 767px) {
  .s-faq__question {
    margin-top: 10px;
  }
  .p-faq .s-faq--letter {
    width: 47px;
    height: 47px;
    font-size: 2.7rem;
    margin: -27px auto 0;
  }
  .p-faq .s-faq--title {
    font-size: 2.5rem;
  }
  .p-faq .s-faq__question dt {
    border: 2px solid #E3E3E3;
  }
  .p-faq .s-faq__question dt h1 {
    padding: 30px 20px;
  }
  .p-faq .s-faq__question dd {
    padding-top: 20px;
  }
  
  .p-faq .s-faq__answer {
    padding: 0 4% 50px;
    border: 2px solid #BAC4E6;
  }
  .p-faq .s-faq__answer ul {
    margin: 30px auto 0;
  }
  .p-faq .s-faq__answer li {
    font-size: 2rem;
    padding: 16px 5px 16px 30px;
    background-size: 22px;
  }
  .p-faq .s-faq__answer li span {
    font-size: 1.6rem;
  }

  .p-faq .s-faq__answer .s-faq--table th {
    min-width: 105px;
  }

  .p-faq .s-faq__answer dl {
    margin: 50px auto 0;
  }
  .p-faq .s-faq__answer dt {
    flex-direction: column;
    text-align: center;
  }
  .p-faq .s-faq__answer dt h4 {
    margin-right: 0;
    margin-bottom: 6px;
  }

  .p-invest .s-faq__answer, .p-benefit .s-faq__answer {
    margin-top: 50px;
  }
  .p-invest .s-faq__answer h1 {
    padding-top: 15px;
  }
  .p-invest .s-faq__answer dl {
    margin: 12px auto 0;
  }
  .p-invest .s-faq__answer dt {
    flex-direction: row;
    text-align: left;
  }
  .p-invest .s-faq__answer dt h4 {
    margin: 0 7px 0 0;
  }
  .p-faq .s-faq__textarea {
    margin-top: 40px;
  }
}
  
.p-faq .s-faq__box--list li {
  padding: 8px 0 8px 45px;
  background: url(../image/faq/ic-check2.png) left top 5px no-repeat;
}
.p-faq .s-faq__box--phone {
  padding: 8px 0 8px 45px;
  background: url(../image/faq/ic-phone.png) left top 5px no-repeat;
}
.p-faq .s-faq__box--mail {
  padding: 8px 0 8px 45px;
  background: url(../image/faq/ic-mail.png) left top 5px no-repeat;
}
@media screen and (max-width: 767px) {
  .p-faq .s-faq__box--list li {
    background-size: 22px;
    padding: 4px 0 4px 33px;
  }
  .p-faq .s-faq__box--phone {
    background-size: 22px;
    padding: 4px 0 4px 33px;
  }
  .p-faq .s-faq__box--mail {
    background-size: 22px;
    padding: 4px 0 4px 33px;
  }
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// p-process
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/* section-process
  ------------------------------------------------------------*/
  .p-process .s-process__note {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
  }
  .p-process .s-process__note h3 {
    color: #fff;
    width: 48.5%;
    text-align: center;
    padding: 15px 0;
    border-radius: 8px;
  }
  .p-process .s-process__note--txt1 {
    background-color: #2A72BE;
  }
  .p-process .s-process__note--txt2 {
    background-color: #149517;
  }
  
  
  .p-process .s-process__list li {
    width: 48.5%;
    color: #2A72BE;
    border-radius: 8px;
    padding: 3% 4%;
    margin-top: 20px;
    position: relative;
    border: 3px solid #2A72BE;
    background-color: #EBF5FF;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .p-process .s-process__list--img {
    width: 146px;
    height: 146px;
    border-radius: 50%;
  }
  .p-process .s-process__list--txt {
    width: calc(100% - 146px - 4%);
  }
  @media screen and (max-width: 1440px) and (min-width: 768px) {
    .p-process .s-process__list--img {
      width: 12vw;
      height: 12vw;
      max-width: 146px;
    }
    .p-process .s-process__list--txt {
      width: calc(100% - 12vw - 4%);
    }
  }
  .p-process .s-process__list--txt h3 {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
  }
  .p-process .s-process__list--txt h3 span {
    border-radius: 10px;
    padding: 10px;
    font-size: 20px;
    margin-right: 15px;
    min-width: 83px;
    text-align: center;
    border: 1px solid #2A72BE;
  }
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .p-process .s-process__list--txt h3 {
      font-size: 2vw;
    }
    .p-process .s-process__list--txt h3 span {
      font-size: 16px;
    }
  }
  .p-process .s-process__list--img + .s-process__list--txt {
    margin-left: 4%;
  }

  .p-process .s-process__list .s-process__list--step03,  .p-process .s-process__list .s-process__list--step04 {
    float: right;
    clear: right;
  }
  .p-process .s-process__list .s-process__list--step05 {
    clear: both;
  }
  
  .p-process .s-process__list .s-process__list--step03, 
  .p-process .s-process__list .s-process__list--step04 {
    color: #0B9500;
    background-color: #F1FFEB;
    border: 3px solid #0B9500;
  }
  .p-process .s-process__list--step03 .s-process__list--txt h3 span,
  .p-process .s-process__list--step04 .s-process__list--txt h3 span {
    border: 1px solid #149517;
  }
  
  .p-process .s-process__list .s-process__list--step07 {
    width: 100%;
    color: #fff;
    background-color: #2A72BE;
    border: 3px solid #2A72BE;
  }
  .p-process .s-process__list--step07 .s-process__list--txt h3 span {
    border: 1px solid #fff;
  }

  .p-process .s-process__list .s-process__list--step01:after,
  .p-process .s-process__list .s-process__list--step02:after,
  .p-process .s-process__list .s-process__list--step03:before,
  .p-process .s-process__list .s-process__list--step03:after,
  .p-process .s-process__list .s-process__list--step04:after,
  .p-process .s-process__list .s-process__list--step05:before,
  .p-process .s-process__list .s-process__list--step05:after,
  .p-process .s-process__list .s-process__list--step06:before {
    content: "";
    position: absolute;
    border: 5px dashed;
    border-color: #CECECE !important;
    z-index: -1;
  }
  .p-process .s-process__list .s-process__list--step01:after,
  .p-process .s-process__list .s-process__list--step03:after,
  .p-process .s-process__list .s-process__list--step05:after,
  .p-process .s-process__list .s-process__list--step06:before {
    left: 50%;
    transform: translateX(-50%);
    bottom: -42px;
    height: 50px;
  }
  .p-process .s-process__list .s-process__list--step02:after,
  .p-process .s-process__list .s-process__list--step05:before  {
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    left: 126%;
  }
  .p-process .s-process__list .s-process__list--step03:before,
  .p-process .s-process__list .s-process__list--step04:after {
    left: 50%;
    transform: translate(-50%,-50%);
    height: 60%;
  }
  .p-process .s-process__list .s-process__list--step03:before {
    top: -33%;
  }
  .p-process .s-process__list .s-process__list--step04:after {
    bottom: -86%;
  }

  .p-process .s-process__list .s-process__list--step06 {
    margin-bottom: 138px;
  }
  .p-process .s-process__list .s-process__list--step06:after {
    content: "";
    width: 0; 
    height: 0; 
    left: 0;
    right: 0;
    bottom: -112px;
    margin: 0 auto;
    position: absolute;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 65px solid #CECECE;
  }

  
  .p-process .s-process__list--step01 .s-process__list--img {
    background: url(../image/process/step01.png);
  }
  .p-process .s-process__list--step02 .s-process__list--img {
    background: url(../image/process/step02.png);
  }
  .p-process .s-process__list--step03 .s-process__list--img {
    background: url(../image/process/step03.png);
  }
  .p-process .s-process__list--step04 .s-process__list--img {
    background: url(../image/process/step04.png);
  }
  .p-process .s-process__list--step05 .s-process__list--img {
    background: url(../image/process/step05.png);
  }
  .p-process .s-process__list--step06 .s-process__list--img {
    background: url(../image/process/step06.png);
  }
  .p-process .s-process__list--step07 .s-process__list--img {
    background: url(../image/process/step07.png);
  }
  
  
  @media screen and (max-width: 767px) {
    .p-process .s-process__note {
      padding-top: 15px;
    }
    .p-process .s-process__note h3 {
      font-size: 1.6rem !important;
    }
    .p-process .s-process__list li {
      width: 100%;
      float: none !important;
      padding: 20px 15px;
      border: 1.5px solid #2A72BE;
    }
  
    .p-process .s-process__list--img {
      width: 80px;
      height: 80px;
    }
    .p-process .s-process__list--txt {
      width: calc(100% - 80px - 4%);
    }
    .p-process .s-process__list--txt h3 {
      margin-bottom: 18px;
      font-size: 1.6rem !important;
    }
    .p-process .s-process__list--txt h3 span {
      padding: 7px;
      font-size: 1.6rem;
      margin-right: 10px;
      min-width: 73px;
    }

    .p-process .s-process__list .s-process__list--step03, 
    .p-process .s-process__list .s-process__list--step04 {
      border: 1.5px solid #0B9500;
    }
    .p-process .s-process__list .s-process__list--step07 {
      border: 1.5px solid #2A72BE;
    }

    .p-process .s-process__list .s-process__list--step01:after,
    .p-process .s-process__list .s-process__list--step02:after,
    .p-process .s-process__list .s-process__list--step03:before,
    .p-process .s-process__list .s-process__list--step03:after,
    .p-process .s-process__list .s-process__list--step04:after,
    .p-process .s-process__list .s-process__list--step05:before,
    .p-process .s-process__list .s-process__list--step05:after,
    .p-process .s-process__list .s-process__list--step06:before {
      border: 3px dashed;
    }
    .p-process .s-process__list .s-process__list--step03:before,
    .p-process .s-process__list .s-process__list--step05:before {
      content: none;
    }
    .p-process .s-process__list .s-process__list--step02:after {
      top: auto;
      transform: translate(-50%,0);
      width: auto;
      left: 50%;
      bottom: -42px;
      height: 50px;
    }
    .p-process .s-process__list .s-process__list--step06 {
      margin-bottom: 98px;
    }
    .p-process .s-process__list .s-process__list--step06:after {
      bottom: -83px;
      border-left: 18px solid transparent;
      border-right: 18px solid transparent;
      border-top: 48px solid #CECECE;
    }
  }