@charset "UTF-8";
/* CSS Document */
/* ============================================ */
/*
768〜1200pxでフォントサイズ24px(2.4rem)〜36px(3.6rem)で可変　

計算式
calc(ZZ + ((1vw - XX) * YY))
ZZ = 24 * 0.1rem = 2.4rem
XX = (768 / 100 * 0.1rem) = 0.768rem
YY = 100 * (36 - 24) / (1200 - 768) = 2.777

font-size: calc(2.4rem + ((1vw - (768 / 100 * 0.1rem)) * 100 * (36 - 24) / (1200 - 768)));
*/
/* ============================================ */
.text-variable {
	font-size: 3.6rem;
	font-size: calc(2.4rem + ((1vw - 0.768rem) * 2.777));
}
.con-img {
	width: 50vw;
}
@media only screen and (min-width: 1200px) {
	.text-variable {
		font-size: 3.6rem;
	}
}
@media only screen and (max-width: 767px) {
	.text-variable {
		font-size: 2.4rem;
	}
}

/* テキスト */
/* ============================================ */
.heading-tpl {
	border-bottom: 2px solid #333;
	font-size: 2.4rem;
	font-weight: bold;
	padding: .25em 0;
	margin-bottom: .75em;
}
.lead {
	font-size: 2rem;
}

p a {
	color: #4aa8e5;
  font-weight: bold;
}
p a:hover {
	text-decoration: underline;
  -webkit-text-decoration: underline;
}
a.text-link-blank {
  padding-right: 10px;
}
a.text-link-blank::after {
  content: "";
  display: inline-block;
  margin-left: 2px;
  width: 19px;
  height: 17px;
  background-image: url(../img/icon_blank_s.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
p.caption {
  font-size: 1.6rem;
  position: relative;
  padding-left: 1.1em;
	margin-bottom: 0;
}
p.caption:before {
    content: "※";
    left: 0;
    position: absolute;
}
p.caption-nomal {
  position: relative;
  padding-left: 1.1em;
	margin-bottom: 0;
}
p.caption-nomal:before {
    content: "※";
    left: 0;
    position: absolute;
}
ul.caption-list li {
  font-size: 1.6rem;
  position: relative;
  padding-left: 1.1em;
	margin-bottom: 0;
}
ul.caption-list li:before {
    content: "※";
    left: 0;
    position: absolute;
}
.ol-list li {
  display: flex;
}
@media only screen and (max-width: 959px) {
p.caption {
  font-size: 1.3rem;
}
ul.caption-list li {
  font-size: 1.3rem;
}
a.text-link-blank::after {
  width: 14px;
  height: 12px;  
}
}

/* 幅レイアウト */
/* ============================================ */
.w-700center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.w-760center {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}



/* コンテンツのスタイル */
/* ============================================ */
.wrap {
  width: calc(100% - 1em - 1em);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mv {
  position: relative;
  width: 100%;
  height: 60vh;
  max-height: 450px;
  min-height: 300px;
  overflow: hidden;
}
.mv::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/mv_pc.jpg) no-repeat center bottom;
  background-size: cover;
  transform-origin: center;
  -webkit-animation: zoom 5s 1;
  animation: zoom 2s 1;
  animation-fill-mode: forwards;
}
@keyframes zoom {
	0% {
	transform: scale(1);
	}
	100% {
	transform: scale(1.1);
	}
}

.mv_txt {
  position: absolute;
  font-size: 4.8rem;
  font-weight: normal;
  line-height: 1.5;
  background: -moz-linear-gradient(left, #002e5f, #0078c6);
  background: -webkit-linear-gradient(left, #002e5f, #0078c6);
  background: linear-gradient(to right, #002e5f, #0078c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'KosugiMaru';
  text-align: center;
  
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  
  width: 100%;
  height: 450px;
  margin: auto;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 959px) {
.mv {
  width: 100%;
  min-height: auto;
  max-height: 200px;
}
.mv::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/mv_sp.jpg) no-repeat center bottom;
  background-size: cover;
  transform-origin: center;
  -webkit-animation: zoom 5s 1;
  animation: zoom 2s 1;
  animation-fill-mode: forwards;
}
.mv_txt {
  font-size: 2rem;
  font-size: calc(2rem + ((1vw - (375 / 100 * 0.1rem)) * 100 * (48 - 20) / (959 - 375)));
}
}


/*スムーステキスト*/
.smooth {
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.smooth.is-animated {
  clip-path: inset(0);
}

/* IEのみ */
@media all and (-ms-high-contrast: none){
  .mv_txt {
    color: #002e5f;
    background: none;
    margin: auto;
  }
}



/* news */
section.news {
  width: calc(100% - 1em - 1em);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  margin-bottom: 50px;
}
.news_inner {
  display: flex;
}
.news_ttl {
  font-size: 2.8rem;
  width: 280px;
  font-weight: 600;
  color: #fff;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  background: -moz-linear-gradient(left, #4b95e4, #69b8ec);
  background: -webkit-linear-gradient(left, #4b95e4, #69b8ec);
  background: linear-gradient(to right, #4b95e4, #69b8ec);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news_inner dl{
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 20px 30px;
  font-size: 1.6rem;
  background-color: #e3f4fd;
  width: calc( 100% - 280px );
}
.news_inner dt{
  width: 140px;
  font-weight: bold;
}
.news_inner dd{
  width: calc( 100% - 140px );
  margin-bottom: 0.5em;
}
.news_inner dd:last-of-type{
  margin-bottom: 0;
}
.news span.new {
  font-size: .6em;
  font-weight: bold;
  color: #fff;
  background-color: #ff3535;
  padding: 0.4em 0.5em;
  border-radius: 0.3em;
  margin: 0 0 0 0.2em;
  vertical-align: text-bottom;
}
.news_inner a{
  color: #4aa8e5;
  font-weight: bold;
}
.news_inner a:hover {
  text-decoration: underline;
  -webkit-text-decoration: underline;
}
.news_inner a.text-link-blank {
  padding-right: 20px;
}
.news_inner a.text-link-blank::after {
  width: 16px;
  height: 14px;
}

@media only screen and (max-width: 959px) {
section.news {
  padding-top: 0;
  width: auto;
}
.news_inner {
  flex-direction: column;
}
.news_ttl {
  font-size: 2rem;
  padding: 9px 0;
  width: auto;
}
.news_inner dl {
  padding: 20px 0;
  width: auto;
}
.news_inner dt,
.news_inner dd {
  width: calc(100% - 1em - 1em);
  margin-left: auto;
  margin-right: auto;
}
}


/* top-about */
.top-about {
  margin-bottom: 2.5em;
}
.top-about-lead {
  margin-bottom: 3rem;
}
.top-about-lead > span {
  font-size: 3.6rem;
  padding-right: 0.1em;
  font-family: 'KosugiMaru';
}
ul.col3-box-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}
ul.col3-box-wrap li{
  width: calc(100% / 3 - .35em);
  padding: 0.3em 0;
  background-color: #4aa8e5;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 0.5em;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 959px) {
.top-about-lead {
  font-size: 1.6rem;
}  
.top-about-lead > span {
  font-size: 2.8rem;
}
ul.col3-box-wrap li{
  width: calc(50% - 0.3em);
  padding: 0.3em;
}
ul.col3-box-wrap li br{
  display: none;
}
}


/* box01-wrap 共通 */
.box01-wrap{
  max-width: 1060px;
  margin: 0 auto 6rem;
}
.box01-wrap h2{
  font-size: 2.4rem;
  padding: 14px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: -moz-linear-gradient(left, #4b95e4, #69b8ec);
  background: -webkit-linear-gradient(left, #4b95e4, #69b8ec);
  background: linear-gradient(to right, #4b95e4, #69b8ec);
}
.box01-inner {
  padding: 3rem;
  background-color: #eef8fd;
}
.flex-center-2col {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5em auto;
}
.flex-center-2col li:first-of-type{
  margin-right: 2em;
}
.blank-btn {
  position: relative;
  display: inline-block;
  max-width: 310px;
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #df0615;
  padding: 0.7em 3em;
  transition: ease .2s;
}
.blank-btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 1em;
  bottom: calc(50% - 12px);
  width: 25px;
  height: 22px;
  background-image: url(../img/icon_blank_m.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .3s;
}
.excel-btn {
  position: relative;
  display: inline-block;
  max-width: 310px;
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #ff6d02;
  padding: 0.7em 3em;
  transition: ease .2s;
}
.excel-btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 1em;
  bottom: calc(50% - 12px);
  width: 23px;
  height: 22px;
  background-image: url(../img/icon_excel.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .3s;
}
.blank-btn:hover::after,
.excel-btn:hover::after {
  bottom: calc(50% - 5px);
}
@media only screen and (max-width: 959px) {
.box01-wrap{
  margin: 0 auto 5rem;
}
.box01-wrap h2{
  font-size: 1.6rem;
  padding: 12px;
}
.box01-inner {
  padding: 1rem;
}
.flex-center-2col{
  flex-direction: column;
  align-items: center;
}
.flex-center-2col li{
  display: block;
  width: 100%;
  text-align: center;
}
.flex-center-2col li:first-of-type{
  margin-right: 0;
  margin-bottom: 1rem;
}
.blank-btn {
  max-width: 500px;
}
.blank-btn::after {
  right: 1em;
  bottom: calc(50% - 10px);
  width: 20px;
  height: 18px;
}
.excel-btn {
  max-width: 500px;
}
.excel-btn::after {
  right: 1em;
  bottom: calc(50% - 10px);
  width: 20px;
  height: 19px;
}
}


/* container01 共通 */
.container01 {
  padding-top: 4rem;
  margin-bottom: 6rem;
}
.container01 h2 {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.container01 h2 span{
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin: 0 2rem;
  background: -moz-linear-gradient(left, #002e5f, #0078c6);
  background: -webkit-linear-gradient(left, #002e5f, #0078c6);
  background: linear-gradient(to right, #002e5f, #0078c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.container01 h2::before {
  content: "";
  display: inline-block;
  flex: 1;
  height: 2px;
  background: -moz-linear-gradient(right, #4b95e4, #69b8ec);
  background: -webkit-linear-gradient(right, #4b95e4, #69b8ec);
  background: linear-gradient(to left, #4b95e4, #69b8ec);
}
.container01 h2::after {
  content: "";
  display: inline-block;
  flex: 1;
  height: 2px;
  background: -moz-linear-gradient(left, #4b95e4, #69b8ec);
  background: -webkit-linear-gradient(left, #4b95e4, #69b8ec);
  background: linear-gradient(to right, #4b95e4, #69b8ec);
}
@media only screen and (max-width: 959px) {
.container01 {
  padding-top: 2rem;
  margin-bottom: 5rem;
}
.container01 h2 span {
  font-size: 2rem;
  margin: 0 1.4rem;
}
}
/* IEのみ */
@media all and (-ms-high-contrast: none){
  .container01 h2 span {
    color: #4c96e4;
    background: none;
  }
}

/* container02 共通 */
.container02 {
  padding-top: 4rem;
  margin-bottom: 6rem;
}
.container02 h2 {
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  background: -moz-linear-gradient(left, #4b95e4, #7bcbff);
  background: -webkit-linear-gradient(left, #4b95e4, #7bcbff);
  background: linear-gradient(to right, #4b95e4, #7bcbff);
  font-size: 2.4rem;
  color: #fff;
  font-family: 'KosugiMaru';
}
.container01 p,
.container02 p {
  margin-bottom: 1.2em
}

@media only screen and (max-width: 959px) {
.container02 h2 {
  font-size: 2rem;
}
}

/* address 共通 */
.address-name {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}
.adress-number {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}
.adress-number span{
  font-size: 1.3em;
  padding-left: 0.25em;
}
.adress-number li:first-of-type {
  margin-right: 6rem;
}
.mail-btn {
  width: 200px;
  margin: 0 auto 3rem;
}
.mail-btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #0cab00;
}
.mail-btn a::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 15px;
  margin-right: 5px;
  background-image: url(../img/icon_mail.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: ease .2s;
}
.mail-btn a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.mail-btn a:hover::before {
  margin-bottom: 10px;
  transition: all .3s;
}
.mail-btn2 {
  width: 270px;
  margin: 0 auto 3rem;
}
.mail-btn2 a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #00A967;
}

.mail-btn2 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.mail-btn2 a:hover::before {
  margin-bottom: 10px;
  transition: all .3s;
}
@media only screen and (max-width: 959px){
.address-name {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}  
.adress-number {
  font-size: 1.6rem;
  flex-direction: column;
  align-items: center;
}
.adress-number li:first-of-type {
  margin-bottom: 1rem;
  margin-right: 0;
}
}

/*参考リンク*/
.linkbtn-list {
  width: 860px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.2;
}
.linkbtn-list li {
  margin-bottom: 3rem;
}
.linkbtn-list li:last-of-type {
  margin-bottom: 6rem;
}
.linkbtn-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 420px;
  height: 60px;
  color: #fff;
  font-weight: bold;
  background: #4b95e4;
}
.linkbtn-list li a:hover {
  background: #1f6ec2;
}
.linkbtn-list li a.icon-blank {
  position: relative;
}
.linkbtn-list li a.icon-blank::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 22px;
  right: 2rem;
  top: calc((60px - 22px) / 2);
  background-image: url(../img/icon_blank_m.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*キラッとしたアニメーション ボタン形式のaタグにいれる*/
.btnshine{
  position: relative; 
  display:inline-block;
  color: #fff;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}
.btnshine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);
}
/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
  animation: shine 0.7s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*キラッとしたアニメーション終わり*/


@media only screen and (max-width: 959px){
.linkbtn-list {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.linkbtn-list li {
  width: 100%;
  margin-bottom: 1rem;
}
.linkbtn-list li a {
  width: 100%;
  height: 50px;
}
.linkbtn-list li a.icon-blank::after {
  width: 20px;
  height: 17px;
}
}


/* 下層ページ */
/* ============================================ */
.page-ttl {
  position: relative;
  width: 100%;
  height: 200px;
  background: url("../img/ttl_bg.jpg") no-repeat center center;
  background-size: cover;
  transform-origin: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10rem;
}

.page-ttl_txt {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 4.8rem;
  font-weight: normal;
  line-height: 1.6;
  background: -moz-linear-gradient(left, #002e5f, #0078c6);
  background: -webkit-linear-gradient(left, #002e5f, #0078c6);
  background: linear-gradient(to right, #002e5f, #0078c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'KosugiMaru';
  text-align: center;
}

/*英文フォントの見た目が小さいので英文タイトルの調整用*/
.page-ttl_txt_en {
  position: absolute;
  font-size: 5.8rem;
  font-weight: normal;
  line-height: 1.6;
  background: -moz-linear-gradient(left, #002e5f, #0078c6);
  background: -webkit-linear-gradient(left, #002e5f, #0078c6);
  background: linear-gradient(to right, #002e5f, #0078c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Nunito','KosugiMaru';
  text-align: center;
}

@media only screen and (max-width: 959px) {
.page-ttl {
  height: 80px;
  padding-top: 25%;
  background-size: cover;
  transform-origin: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.page-ttl_txt {
  font-size: 2rem;
  font-size: calc(2rem + ((1vw - (375 / 100 * 0.1rem)) * 100 * (48 - 20) / (959 - 375)));
  top: 50%;
  transform: translateY(-50%);
  line-height: 1.6;
}
.page-ttl_txt_en {
  font-size: 2.8rem;
  font-size: calc(2.8rem + ((1vw - (375 / 100 * 0.1rem)) * 100 * (58 - 28) / (959 - 375)));
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  line-height: 1.6;
}
}
/* IEのみ */
@media all and (-ms-high-contrast: none){
  .page-ttl_txt,
  .page-ttl_txt_en {
    color: #002e5f;
    background: none;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
  }
}

/*ページ直下がpタグの場合（見出しなし）*/
.wrap.no-heading01 {
  margin-bottom: 6rem;
}
.wrap.no-heading01 > p {
  margin-bottom: 1.2em;
}
.wrap.no-heading01 > p:last-of-type {
  margin-bottom: 0;
}
/*活性化協議会とは*/
/* ============================================ */
.about_box01 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: calc(100% - 1em - 1em);
  max-width: 1050px;
  margin: 0 auto 6rem;
}
.about_box01_img {
  max-width: 480px;
  width: 40%;
}
.about_box01_img h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #4aa8e5;
  margin-bottom: 0.8em;
  text-align: center;
}
.about_box01_list {
  font-size: 2.4rem;
  font-weight: bold;
  max-width: 480px;
  width: 40%;
}
.about_box01_list .about_box01_01 ul {
  margin-bottom: 6rem;
}
.about_box01_list .about_box01_01 li {
  margin-bottom: 2.8rem;
}
.about_box01_list .about_box01_01 li:last-of-type {
  margin-bottom: 0;
}
.about_box01_list .about_box01_01 li,
.about_box01_list .about_box01_02 {
  padding: 0.2em;
  color: #fff;
  background-color: #4aa8e5;
  text-align: center;
  align-content: space-between;
}
@media only screen and (min-width: 960px) {
.about_box01_list li.about_box01_01,
.about_box01_list li.about_box01_02 {
  position:relative;
}
.about_box01_list li.about_box01_01::before,
.about_box01_list li.about_box01_02::before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 20px;
  width: 80px;
  background-color: #7bcbff;
  top: 40%;
  left: -38%;
}
.about_box01_list li.about_box01_01::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 25px solid transparent;
  border-left: 25px solid #7bcbff;
  top: calc(50% - 35px);
  left: -20%;
} 
.about_box01_list li.about_box01_02::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 25px solid transparent;
  border-left: 25px solid #7bcbff;
  top: -37px;
  top: calc(50% - 20px);
  left: -20%;
}  
  
}

@media only screen and (max-width: 959px) {
.about_box01 {
  display: block;
  margin: 0 auto 3.6rem;
}
.about_box01_img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 9.5rem;
}
.about_box01_img h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.about_box01_list li.about_box01_01 {
  position:relative;
}
.about_box01_list li.about_box01_01::before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 30px;
  width: 20px;
  background-color: #7bcbff;
  top: -70px;
  right: calc(50% - 20px);
}
.about_box01_list li.about_box01_01::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 26px solid transparent;
  border-top: 26px solid #7bcbff;
  top: -50px;
  left: calc(50% - 17px);
}
  
.about_box01_list {
  font-size: 1.8rem;
  max-width: 100%;
  width: 100%;
  display: block;
}
.about_box01_list .about_box01_01,
.about_box01_list .about_box01_02 {
  width: 100%;
  margin: auto;
  max-width: 500px;
}
.about_box01_list .about_box01_01 ul {
  margin: 0 auto 1.4rem;
}
.about_box01_list .about_box01_01 li {
  width: 100%;
  margin: 0 auto 1.4rem;
}
/*
.about_box01_list li.about_box01_02 {
  width: 49%;
  display: flex;
  align-items: center;
  justify-content: center;
}
*/
}

/*ご相談の流れ*/
/* ============================================ */

.flow {
  border: 2px solid #4aa8e5;
  margin-bottom: 6rem;
}
.flow > li {
  padding: 1em;
}
.flow > li:not(:first-of-type) {
  padding: 1.5em 1em 1em;
}
.flow > li:not(:last-child) {
  border-bottom: 2px solid #4aa8e5;
  position: relative;
}
.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 15%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child)::before {
  border-width: 21px;
  border-top-color: #4aa8e5;
}
.flow > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}
.flow > li dl {
  margin: 0;
  display: flex;
  justify-content: space-between;
}
.flow > li dl dt {
  width: calc(30% - 1em);
  min-width: 300px;
  font-size: 2rem;
  font-weight: 600;
  color: #002e5f;
  margin-right: 1em;
}
.flow > li dl dt .step-icon {
  font-size: 2.4rem;
  color: #fff;
  background: #002e5f;
  background: -moz-linear-gradient(left, #002e5f, #0078c6);
  background: -webkit-linear-gradient(left, #002e5f, #0078c6);
  background: linear-gradient(to right, #002e5f, #0078c6);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002e5f', endColorstr='#0078c6',GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 1rem;
  display: block;
  border-radius: 20px;
  width: 100%;
}
.flow > li dl dt .step-ttl {
  width: calc(100% - 1em);
  display: block;
  margin: 0 auto 10px;
} 

.flow > li dl dd{
  width: calc(70% - 1em);
}

  

@media screen and (max-width: 959px) {
.flow {
  margin-bottom: 5rem;
}
.flow > li:not(:first-of-type) {
  padding: 2em 1em 1em; 
}
.flow > li dl {
  display: block;
}
.flow > li dl dt {
  width: 100%;
  min-width: auto;
  font-size: 1.6rem;
  margin-right: 0;
  margin-bottom: 1rem
}
.flow > li dl dt .step-icon {
  font-size: 1.8rem;  
}
.flow > li dl dd {
  width: 100%;
}
}


/*Q&A*/
/* ============================================ */
.qa-list {
  margin-bottom: 10rem;
}
.qa-list dl {
  position: relative;
  margin: 0 0 6rem;
  cursor: pointer;
  border: 1px solid #4aa8e5;
}
.qa-list dl::after {
  position: absolute;
  top: 30px;
  right: 30px;
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 2px solid #4aa8e5;
  border-right: 2px solid #4aa8e5;
}
.qa-list .open::after {
  transform: rotate(-45deg);
}
.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 20px 50px 20px 60px;
  font-weight: bold;
  background: #eef8fd;
}
.qa-list dl dt::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 22px;
  left: 20px;
  display: block;
  content: 'Q.';
  color: #0092e6;
}
.qa-list dl dd::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 24px;
  left: 20px;
  display: block;
  content: 'A.';
  font-weight: bold;
  color: #df0615;
}
.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
}
.qa-list dl dd p {
  margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
  margin-top: 0;
}

@media screen and (max-width: 959px) {
.qa-list {
  margin-bottom: 4rem;
}
.qa-list dl {
  margin: 4rem 0;
}
.qa-list dl:after {
  top: 22px;
  right: 20px;
  width: 7px;
  height: 7px;
}
.qa-list dl dt {
  padding: 16px 30px 16px 50px;
  font-size: 14px;
}
.qa-list dl dt::before {
  font-size: 14px;
  top: 20px;
  left: 20px;
}
.qa-list dl dd::before {
  font-size: 14px;
  left: 20px;
  margin-top: 5px;
}
.qa-list dl dd {
  margin: 0;
  padding: 1em 1em 1em 50px;
  font-size: 14px;
}
.qa-list dl dd p {
  margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
  margin-top: 0;
}
table{
  border-collapse: collapse;
　border: solid 1px #FFFFFF;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 10px;
  border: solid 1px #FFFFFF;
  text-align:Left;
  box-sizing:border-box;
}
.tb01 th {
  background: #FFFFFF;
  color: #FFFFFF;
  border-bottom: solid 1px #FFFFFF;
  
}
@media screen and (max-width: 959px) {
  .tb01 {
    width: 100%;
  }
  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom: solid 1px #FFFFFF;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #FFFFFF;
  }
}
}