@charset "utf-8";
/*-------------------------------------*/
/*	ページ共通	*/
/*-------------------------------------*/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 0 auto 20px auto;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.ttl {
  font-size: 237%;
  font-weight: 700;
  line-height: 1.5;
  color: #2E59A7;
  margin-bottom: 60px;
  text-align: center;
}
a .img_wrap {
  overflow: hidden;
  width: 100%;
}
a:hover .img_wrap img {
  transform: scale(1.1);
  transition-duration: 0.5s;
  opacity: 1;
}
.img_radius25 {
  border-radius: 25px;
  overflow: hidden;
}
.img_radius15 {
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  .img_radius15 {
    border-radius: 8px;
  }
  .ttl {
    font-size: 125%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	index */
/*-------------------------------------*/
#main_img {
  background-image: url("../images/index/bg_main.png");
  background-position: center bottom;
  background-size: cover;
  padding: 170px 20px 70px 20px;
  background-color: #2E59A7;
}
#main_img .main_ttl {
  text-align: center;
}
#main_img .main_ttl h2 {
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  #main_img {
    background-image: url("../images/index/bg_main_sp.png");
    padding: 60px 20px 60px 20px;
  }
}
@media screen and (max-width: 550px) {}
/* セミナー情報 */
#top_seminar {
  background-color: #2E59A7;
}
#top_seminar .ttl {
  color: #FFFFFF;
}
#top_seminar .news_list .item .entry .date {
  color: #FFFFFF;
}
#top_seminar .news_list .item .title a {
  color: #FFFFFF;
}
#top_seminar .news_list .item .title a span::after {
  background-color: #FFFFFF; /* 下線の色 */
}
.topnews_wrap{
display: flex;
justify-content: space-between;
}
.topnews_wrap .ttl_box{
  width: 25%;
}
.topnews_wrap .list_box{
   width: 70%;
}
@media screen and (max-width: 1300px) {
  .topnews_wrap .ttl_box{
  width: 35%;
}
.topnews_wrap .list_box{
   width: 60%;
}
}
@media screen and (max-width: 768px) {
.topnews_wrap{
flex-direction: column;
}
.topnews_wrap .ttl_box{
  width: 100%;
}
.topnews_wrap .list_box{
   width: 100%;
}
}
@media screen and (max-width: 550px) {
}
/* sec01 */
#sec01 {
  background-color: #DCEFFF;
  position: relative;
  z-index: 1;
}
#sec01::before {
  content: "";
  width: 100%;
  height: 90px;
  background-image: url("../images/index/bg_wave.svg");
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -5px;
  z-index: -1;
}
#sec01::after {
  content: "";
  width: 100%;
  height: 280px;
  background-image: url("../images/index/bg_sec02.svg");
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#sec01 h2 {
  margin-bottom: 60px;
}
#sec01 .fukidashi01, #sec01 .fukidashi02 {
  display: flex;
  justify-content: center;
  gap: 40px 40px;
}
#sec01 .fukidashi01 li {
  position: relative;
  margin-bottom: 80px;
}
#sec01 .fukidashi01 li .fuki03 {
  position: absolute;
  right: -10px;
  bottom: -20px;
}
#sec01 .fukidashi02 {
 width: 80%;
 max-width: 1200px;
 margin: 0 auto;
}
.fukidashi_sld{
  display: none;
}
/*
.fuwafuwa01 {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.fuwafuwa02 {
  animation: floating-y2 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y2 {
  0% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(-10%);
  }
}
*/
@media screen and (max-width: 991px) {
  #sec01 .fukidashi01, #sec01 .fukidashi02 {
    display: none;
  }
  .fukidashi_sld{
  display: block;
}
}
@media screen and (max-width: 768px) {
  #sec01::before {
    content: "";
    width: 100%;
    height: 40px;
    background-image: url("../images/index/bg_wave_sp.svg");
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -5px;
  }
  #sec01 h2 {
    margin-bottom: 20px;
  }
  #top_seminar .ttl {
  margin-bottom: 10px;
}
#top_news .ttl {
  margin-bottom: 10px;
}
}
@media screen and (max-width: 550px) {}
/* sec02 */
#sec02 {
  background-color: #F2F8FC;
}
#sec02 .sec02_box {
  border: 8px solid #2E59A7;
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 60px;
}
#sec02 .sec02_box ul {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
#sec02 .sec02_box ul li {
  width: 48%;
}
#sec02 .sec02_box p {
  text-align: center;
}
#sec02 .contact_area{
  padding-top: 60px;
  padding-bottom: 160px;
}
@media screen and (max-width: 1200px) {
  #sec02 .sec02_box p {
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  #sec02 .sec02_box {
    border: 4px solid #2E59A7;
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 40px;
  }
  #sec02 .sec02_box ul {
    flex-direction: column;
  }
  #sec02 .sec02_box ul li {
    width: 80%;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 768px) {
  #sec02 .contact_area{
  padding-top: 30px;
  padding-bottom: 60px;
}
}
@media screen and (max-width: 550px) {
  #sec02 .sec02_box {
    padding: 20px;
  }
  #sec02 .sec02_box ul li {
    width: 90%;
  }
}
/* access */
#top_access {
  background-color: #F2F8FC;
}
.access_box {
  background-color: #FFFFFF;
  border-radius: 56px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px;
}
.access_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.access_box .inner .map iframe {
  width: 100%;
  height: 465px;
}
.access_box .inner dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 113%;
}
.access_box .inner dl dt {
  font-weight: 700;
  width: 20%;
  line-height: 40px;
}
.access_box .inner dl dd {
  width: 80%;
  margin-bottom: 20px;
  line-height: 40px;
}
@media screen and (max-width: 991px) {
  .access_box {
    border-radius: 25px;
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .access_box .inner .map iframe {
    width: 100%;
    height: 200px;
  }
  .access_box .inner dl {
    font-size: 100%;
  }
  .access_box .inner dl dt {
    line-height: 1.5;
  }
  .access_box .inner dl dd {
    line-height: 1.8;
  }
}
@media screen and (max-width: 550px) {
  .access_box {
    padding: 20px;
  }
}
#top_faq .contact_area{
    padding-top: 60px;
    padding-bottom: 145px;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
  #top_faq .contact_area{
    padding-top: 60px;
    padding-bottom: 80px;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	下層サブイメージ サブタイトル */
/*-------------------------------------*/
#sub_ttl {
  background-color: #DCEFFF;
  width: 100%;
  height: 300px;
}
#sub_ttl .inner {
  padding-top: 100px;
  height: 100%;
  display: flex;
  align-items: center;
}
#sub_ttl .inner h2 {
  margin: 0 auto;
  font-weight: 700;
  font-size: 237%;
  color: #2E59A7;
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1000px) {
  #sub_ttl {
    height: 100px;
  }
  #sub_ttl .inner {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #sub_ttl {
    height: 75px;
  }
  #sub_ttl .inner h2 {
    font-size: 125%;
  }
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	CTA	*/
/*-------------------------------------*/
.cta {
  background-color: #DCEFFF;
  padding-top: 170px;
  position: relative;
}
.cta::before {
  content: "";
  width: 100%;
  height: 90px;
  background-image: url("../images/index/bg_wave.svg");
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -5px;
  z-index: 1;
}
.service_list {
  display: flex;
  gap: 20px 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_list .service_box {
  width: calc(100% / 3 - 10px);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.service_list .service_box p {
  width: 100%;
  padding: 20px 40px 20px 20px;
  color: #FFFFFF;
  position: absolute;
  line-height: 1.2;
  left: 0;
  bottom: 0;
  font-weight: 700;
  font-size: 138%;
}
.service_list .service_box p span{
  font-weight: 700;
}
.service_list .service_box p::before {
  content: "";
  width: 30px;
  height: 20px;
  background-image: url("../images/menu_arrow_white.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
}
.service_list .service_box:hover p::before {
  right: 5px;
}
.service_list .service_box.inheritance p {
  background-color: #EC8789;
}
.service_list .service_box.estate p {
  background-color: #8AB64C;
}
.service_list .service_box.insurance p {
  background-color: #EF8467;
}
.service_list .service_box.elderly-care p {
  background-color: #67BDC0;
}
.service_list .service_box.eol-planning p {
  background-color: #C59D5D;
}
.service_list .service_box.others p {
  background-color: #FFFFFF;
  color: #3B3B3B;
}
.service_list .service_box.others p::before {
  background-image: url("../images/menu_arrow_gray.svg");
}
.cta .contact_area{
padding-bottom: 100px;
}
.contact_area .contact_wrap{
  padding-top: 60px;
}
@media screen and (max-width: 1200px) {
  .service_list .service_box p {
    font-size: 113%;
  }
}
@media screen and (max-width: 991px) {
  .service_list .service_box {
    width: calc(100% / 2 - 10px);
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .cta {
    padding-top: 100px;
  }
  .cta::before {
    content: "";
    width: 100%;
    height: 40px;
    background-image: url("../images/index/bg_wave_sp.svg");
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -5px;
    z-index: 1;
  }
  .service_list {
    display: flex;
    gap: 20px 10px;
  }
  .service_list .service_box {
    width: calc(100% / 2 - 10px);
    border-radius: 5px;
  }
  .service_list .service_box p {
    font-size: 100%;
    padding: 0 40px 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
  }
  .service_list .service_box img {
    padding-bottom: 20px;
  }
  .service_list .service_box p::before {
    content: "";
    width: 10px;
    height: 20px;
    right: 10px;
  }
    .service_list .service_box:hover p::before {
    right: 15px;
  }
.cta .contact_area{
padding-bottom: 60px;
}
.contact_area .contact_wrap{
  padding-top: 20px;
}
}
@media screen and (max-width: 550px) {
    .service_list .service_box p {
    font-size: 100%;
    padding: 0 20px 0 10px;
    height: 60px;
    display: flex;
    align-items: center;
  }
}
/*-------------------------------------*/
/*	相談メニュー	*/
/*-------------------------------------*/
.soudan_box {
  position: relative;
  margin-bottom: 200px;
  padding: 0 20px;
}
.soudan_box::before {
  content: "";
  width: 80%;
  height: 100%;
  position: absolute;
  right: 0;
  top: -50px;
  border-radius: 20px 0 0 20px;
}
.soudan_box.inheritance::before {
  background-color: #FFEEEE;
}
.soudan_box.estate::before {
  background-color: #F0FBE2;
}
.soudan_box.insurance::before {
  background-color: #FFEFEB;
}
.soudan_box.elderly-care::before {
  background-color: #ECFEFF;
}
.soudan_box.eol-planning::before {
  background-color: #FCF2E1;
}
.soudan_box.others::before {
  background-color: #EFF1F8;
}
.soudan_box .inner {
  display: flex;
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
.soudan_box .inner .img {
  max-width: 750px;
  width: 60%;
}
.soudan_box .inner .txt {
  width: 40%;
  padding-left: 80px;
}
.soudan_box .inner .txt h3 {
  font-size: 250%;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Noto Serif JP", serif;
}
.soudan_box.inheritance h3 {
  color: #EC8789;
}
.soudan_box.estate h3 {
  color: #8AB64C;
}
.soudan_box.insurance h3 {
  color: #EF8467;
}
.soudan_box.elderly-care h3 {
  color: #67BDC0;
}
.soudan_box.eol-planning h3 {
  color: #C59D5D;
}
.soudan_box.others h3 {
  color: #2E59A7;
}
.point_list {
  margin-bottom: 40px;
}
.point_list li {
  margin-bottom: 1.5em;
  font-size: 113%;
  font-weight: 700;
  padding-left: 1em;
  position: relative;
  line-height: 1.5;
}
.point_list li span {
  font-weight: 700;
  color: #EF8448;
}
.point_list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #EF8448;
  position: absolute;
  left: 0;
  top: 0.6em;
  border-radius: 50px;
}
.soudan_box .inner .txt p {
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .soudan_box {
    margin-bottom: 150px;
  }
  .soudan_box .inner .img {
    max-width: 750px;
    width: 50%;
  }
  .soudan_box .inner .txt {
    width: 50%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  .soudan_box {
    margin-bottom: 70px;
    padding: 0 20px;
  }
  .soudan_box::before {
    width: 95%;
    height: 80%;
    top: auto;
    bottom: 0;
  }
  .soudan_box .inner {
    flex-direction: column;
    padding-bottom: 60px;
  }
  .soudan_box .inner .img {
    max-width: 500px;
    width: 80%;
    margin: 0 auto 20px auto;
  }
  .soudan_box .inner .txt {
    width: 85%;
    padding-left: 0;
    margin: 0 auto;
  }
  .soudan_box .inner .txt h3 {
    font-size: 157%;
    margin-bottom: 20px;
  }
  .point_list {
    margin-bottom: 20px;
  }
  .soudan_box .inner .txt p {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	相談詳細	*/
/*-------------------------------------*/
.soudan_wrap {
  margin-bottom: 150px;
  display: flex;
}
.soudan_wrap .img {
  width: 40%;
}
.soudan_wrap .img img {
  border-radius: 0 15px 15px 0;
}
.soudan_wrap .txt {
  width: 60%;
  padding-left: 70px;
}
.soudan_wrap .txt .inner {
  max-width: 740px;
  width: 90%;
}
.soudan_detail .submenu {
  display: none;
}
.soudan_detail .detail_ttl {
  border-top: 1px solid #C8C8C8;
  padding: 35px 0;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}
.inheritance .detail_ttl {
  background-color: #FFEEEE;
  color: #EC8789;
}
.estate .detail_ttl {
  background-color: #F0FBE2;
  color: #8AB64C;
}
.insurance .detail_ttl {
  background-color: #FFEFEB;
  color: #EF8467;
}
.elderly-care .detail_ttl {
  background-color: #ECFEFF;
  color: #67BDC0;
}
.eol-planning .detail_ttl {
  background-color: #FCF2E1;
  color: #C59D5D;
}
.others .detail_ttl {
  background-color: #EFF1F8;
  color: #2E59A7;
}
.soudan_detail .detail_ttl .w1200 {
  position: relative;
}
.soudan_detail .detail_ttl .w1200 {
  padding: 0 60px 0 20px;
}
.soudan_detail .detail_ttl .w1200::before {
  content: "\f107";
  width: 40px;
  height: 40px;
  /*background-image: url("../images/page/menu_down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;*/
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.5s;
    font-family: FontAwesome;
    font-size: 40px;
    text-align: center;
    line-height: 1
}
.soudan_detail .detail_ttl.on .w1200::before {
  /*content: "\f106";*/
  transform:rotate(180deg);
  transform-origin: center;
  top: 0;
}
.soudan_detail .detail_ttl span {
  font-size: 187%;
  font-weight: 700;
  padding-left: 35px;
}
.soudan_detail .content {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 90%;
}
@media screen and (max-width: 1200px) {
  .soudan_wrap .img {
    width: 40%;
  }
  .soudan_wrap .txt {
    width: 60%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 991px) {
  .soudan_wrap {
    margin-bottom: 60px;
    flex-direction: column;
    padding: 0 20px;
  }
  .soudan_wrap .img {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px auto;
  }
  .soudan_wrap .img img {
    border-radius: 15px;
  }
  .soudan_wrap .txt {
    width: 100%;
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto;
  }
  .soudan_wrap .txt .inner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .soudan_wrap .img img {
    border-radius: 8px;
  }
  .soudan_detail .content {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 90%;
}
.soudan_detail .detail_ttl .w1200 {
  padding: 0 50px 0 20px;
}
  .soudan_detail .detail_ttl .w1200::before {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
  .soudan_detail .detail_ttl {
    padding: 20px 0;
  }
  .soudan_detail .detail_ttl span {
    font-size: 125%;
    font-weight: 700;
    padding-left: 0px;
  }
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	よくある質問 */
/*-------------------------------------*/
.qa_box dl {
  margin-bottom: 20px;
  border: 1px solid #2E59A7;
  padding: 0 20px;
}
.qa_box dl:last-of-type {
  margin-bottom: 0;
}
.qa_box dl dt {
  padding: 1.6em 80px 1.6em 60px;
  cursor: pointer;
  line-height: 1.5;
  position: relative;
  color: #2E59A7;
  font-size: 113%;
  font-weight: 500;
}
.qa_box dl dt::before {
  content: "Q";
  position: absolute;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  left: 10px;
  top: 0.6em;
  font-size: 150%;
}
.qa_box dl dt::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../images/faq_down.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 1.0s;
}
.qa_box dl dt.on::after {
  background-image: url("../images/faq_up.svg");
}
.qa_box dl dd {
  background: #FFF;
  padding: 1.5em 1em 2em 60px;
  line-height: 1.5;
  position: relative;
  border-top: 1px solid #2E59A7;
}
.qa_box dl dd p:not(:last-of-type) {
  margin-bottom: 30px;
}
.qa_box dl dd::before {
  content: "A";
  position: absolute;
  font-family: "Noto Serif JP", serif;
  left: 10px;
  top: 1em;
  font-size: 150%;
  font-weight: 900;
  color: #EF8448;
}
.qa_box .submenu {
  display: none;
}
#faq .contact_area{
  padding-top: 145px;
  padding-bottom: 145px;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  .qa_box dl dt::before {
    font-size: 125%;
    top: 0.7em;
    left: -0.4em;
  }
  .qa_box dl dd::before {
    font-size: 125%;
    top: 1em;
    left: -0.4em;
  }
  .qa_box dl dt::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../images/faq_down.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -10px;
  top: 50%;
}
  .qa_box dl dt {
    padding: 1.2em 20px 1.2em 20px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.5;
    position: relative;
    color: #2E59A7;
    font-size: 100%;
  }
  .qa_box dl dd {
    background: #FFF;
    padding: 1.5em 0 2em 25px;
    line-height: 1.5;
    position: relative;
    border-top: 1px solid #2E59A7;
  }
  #faq .contact_area{
  padding-top: 60px;
  padding-bottom: 60px;
}
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	ご相談の流れ	*/
/*-------------------------------------*/
#flow .flow_ttl {
  text-align: center;
  font-size: 237%;
  line-height: 1.8;
  margin-bottom: 65px;
  font-family: "Noto Serif JP", serif;
  color: #2E59A7;
  font-weight: 700;
}
.flow_box {
  padding: 50px 70px;
  border: 1px solid #2E59A7;
  border-radius: 15px;
  margin-bottom: 100px;
  position: relative;
}
.flow_box:not(:last-of-type)::before {
  content: "";
  background-image: url("../images/page/flow_arrow.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 80px;
  bottom: -81px;
}
.flow_box h3 {
  font-family: "Noto Serif JP", serif;
  color: #2E59A7;
  font-weight: 700;
  font-size: 237%;
  line-height: 1.5;
  margin-bottom: 30px;
}
.flow_box p {
  padding-left: 50px;
  font-size: 113%;
}
.flow_box p .red {
  font-weight: 700;
  font-size: 237%;
}
.flow_box dl {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.flow_box dl dt {
  max-width: 350px;
  width: 100%;
  text-align: center;
}
.flow_box dl dd {
  width: 100%;
  padding-right: 40px;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  #flow .flow_ttl {
    font-size: 175%;
    margin-bottom: 40px;
  }
  .flow_box {
    padding: 40px 30px;
    border: 1px solid #2E59A7;
    border-radius: 15px;
    margin-bottom: 50px;
    position: relative;
  }
  .flow_box:not(:last-of-type)::before {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -51px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .flow_box h3 {
    font-size: 175%;
    margin-bottom: 30px;
    text-align: center;
  }
  .flow_box p {
    padding-left: 0;
    font-size: 100%;
  }
  .flow_box p .red {
    font-size: 125%;
  }
  .flow_box dl {
    flex-direction: column;
  }
  .flow_box dl dt {
    display: none;
  }
  .flow_box dl dd {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	お知らせ　詳細	*/
/*-------------------------------------*/
.cat, a.cat {
  color: #FFFFFF;
  display: inline-block;
  padding: 0.3em 0.5em;
  border-radius: 5px;
  line-height: 1;
  font-weight: 500;
  background-color: #2E59A7;
}
@media screen and (max-width: 1100px) {}
@media screen and (max-width: 768px) {}
/*-------------------------------------*/
/*	お知らせ一覧	*/
/*-------------------------------------*/
.news_list {
  padding: 0;
}
.news_list li {
  padding-top: 20px;
  border-bottom: 1px solid #D2E2FE;
}
.news_list .item {
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
}
.news_list .item .entry {
  margin: 0;
  min-width: 120px;
  padding: 0;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
}
.news_list .item .entry .date {
  width: 100%;
}
.news_list .item .title {
  margin: 0;
  width: 100%;
  line-height: 1.5;
  padding-left: 15px;
}
.news_list .item .title a {
  display: block;
  padding: 0 20px 20px 0;
  position: relative;
}
.news_list .item .title a span {
  display: inline-block;
  position: relative;
}
.news_list .item .title a span::after {
  background-color: #333; /* 下線の色 */
  bottom: -4px; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 2px; /* 下線の高さ */
  left: 0; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transition: transform .3s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}
.news_list .item .title a:hover span::after {
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
.news_list .item .title.link a:after {
  content: "\f08e";
  font-family: FontAwesome;
  margin-left: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  .news_wrap {
    padding: 40px 40px;
    border-radius: 30px;
  }
  .news_list .item .entry {
    flex-direction: column-reverse;
  }
  .news_list .item .entry .date {
    width: 100%;
    margin-bottom: 5px;
  }
  .news_list .item .entry .cat_label {
    width: 100%;
    margin-bottom: 5px;
  }
  .news_list .item {
    flex-direction: column;
  }
  .news_list .item .entry .cat_label a {
    width: auto;
  }
  .news_list .item .title {
    padding-left: 0;
  }
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	セミナー　一覧	*/
/*-------------------------------------*/
.seminar_box {
  display: block;
}
.seminar_box .img_wrap {
  border-radius: 15px;
}
.seminar_box .meta_entry {
  padding: 15px 0;
}
.seminar_box .new {
  display: inline-block;
  background-color: #EF8448;
  color: #FFFFFF;
  padding: 0.4em 1em;
  border-radius: 5px 50px 50px 5px;
  border: 2px solid #FFFFFF;
  line-height: 1;
  position: absolute;
  left: 0;
  top: -15px;
  font-size: 125%;
  z-index: 1;
}
.seminar_box .meta_entry li {
  width: 100%;
  text-align: left;
}
.seminar_box .meta_entry li .cat {
  margin: 0 5px 5px 0;
  font-size: 88%;
}
.seminar_box .meta_entry li .date {
  color: #8E8F8F;
}
.seminar_box h3 {
  font-weight: 700;
  font-size: 138%;
  line-height: 1.5;
  padding-bottom: 15px;
  border-bottom: 1px dotted #3B3B3B;
  margin-bottom: 15px;
  text-align: left;
}
.seminar_box .detail li {
  line-height: 1.5;
  font-weight: 700;
  position: relative;
}
.seminar_box .detail .place {
  text-align: right;
  padding-left: 20px;
}
.seminar_box .detail .event_date {
  text-align: right;
}
.seminar_box .detail .place::before {
  margin-right: 5px;
  vertical-align: middle;
}
#seminar .seminar_box .detail .place::before {
  content: url("../images/ico_access-b.svg");
}
/* セミナー一覧（青背景） */
.pickup {
  background-color: #2E59A7;
}
.pickup .ttl {
  color: #FFFFFF;
}
.pickup .seminar_box {
  max-width: 500px;
}
.pickup .seminar_box .cat {
  background-color: #FFFFFF;
  color: #2E59A7;
}
.pickup .seminar_box .meta_entry li .date {
  color: #FFFFFF;
}
.pickup .seminar_box h3 {
  color: #FFFFFF;
  border-bottom: 1px dotted #FFFFFF;
}
.pickup .seminar_box .detail li {
  color: #FFFFFF;
}
.pickup .seminar_box .detail .place::before {
  content: url("../images/ico_access-w.svg");
}
/* slide */
.seminar_sld {
  margin-bottom: 50px;
}
.seminar_sld .slick-slide {
  margin: 20px;
  text-align: center;
}
.pickup .slick-next {
  right: -20px;
  z-index: 1;
}
.pickup .slick-prev {
  left: -20px;
  z-index: 1;
}
.pickup .slick-prev, .pickup .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 1;
}
.pickup .slick-prev:before, .pickup .slick-next:before {
  font-family: none;
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
}
.pickup .slick-prev:before {
  background-image: url("../images/sld_l.svg");
}
.pickup .slick-prev:before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 0;
  top: 0;
}
.pickup .slick-next:before {
  background-image: url("../images/sld_r.svg");
}
.pickup .slick-next:before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  right: 0;
  top: 0;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  .seminar_box .img_wrap {
    border-radius: 5px;
  }
  .seminar_box .new {
    left: 0;
    top: -20px;
    font-size: 88%;
    z-index: 1;
  }
  .seminar_box .meta_entry {
    flex-direction: column-reverse;
    padding: 5px 0;
  }
  .seminar_box .meta_entry li:first-child {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .seminar_box .meta_entry li:first-child .cat {
    width: 48%;
    text-align: center;
  }
  .seminar_box .meta_entry li:last-child {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  .seminar_box .meta_entry li .date {
    font-size: 88%;
  }
  .seminar_box h3 {
    font-size: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .seminar_box .detail li {
    font-size: 88%;
    font-weight: 400;
  }
  .seminar_box .detail .place::before {
    position: absolute;
    left: 0;
  }
  .seminar_box .detail .place {
    text-align: left;
  }
  .seminar_box .detail .event_date {
    text-align: left;
    padding-left: 20px;
  }
  .seminar_sld {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 550px) {
  .pickup .ttl {
    margin-bottom: 20px;
  }
  .pickup .slick-next {
    right: -10px;
    z-index: 1;
  }
  .pickup .slick-prev {
    left: -10px;
    z-index: 1;
  }
  .pickup .slick-prev, .pickup .slick-next {
    width: 25px;
    height: 25px;
  }
  .pickup .slick-prev:before, .pickup .slick-next:before {
    width: 25px;
    height: 25px;
  }
}
/*-------------------------------------*/
/*	セミナー・お知らせ　詳細	*/
/*-------------------------------------*/
#single {
  background-color: #DCEFFF;
  padding-top: 100px;
}
#single .inner {
  max-width: 1040px;
  margin: 0 auto;
}
#single p {
  font-size: 113%;
}
#single img {
  border-radius: 15px;
}
.bg_single {
  max-width: 1200px;
  background-color: #FFFFFF;
  margin: 0 auto;
  padding: 40px 40px 70px 40px;
  border-radius: 20px;
}
#single .single_ttl {
  color: #2E59A7;
  font-weight: 700;
  font-size: 200%;
  line-height: 1.5;
  margin-bottom: 40px;
}
#single .thm {
  margin-bottom: 40px;
}
#single .speakers dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
#single .speakers dl:last-of-type {
  margin-bottom: 0;
}
#single .speakers dl dt {
  max-width: 390px;
  width: 100%;
  text-align: center;
  padding-right: 90px;
}
#single .speakers dl dd {
  width: 100%;
}
#single .speakers dl dd h3 {
  font-size: 138%;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 3px solid #2E59A7;
  line-height: 1.5;
}
#single .speakers dl dd h3 span {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: #2E59A7;
}
.map {
  border-radius: 15px;
  overflow: hidden;
}
#single .map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 1000px) {
  #single {
    padding-top: 0;
  }
  .bg_single {
    padding: 40px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 991px) {
  #single .single_ttl {
    color: #2E59A7;
    font-weight: 700;
    font-size: 125%;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #single .thm {
    margin-bottom: 20px;
  }
  #single .speakers dl {
    flex-direction: column;
  }
  #single .speakers dl dt {
    max-width: 200px;
    width: 100%;
    text-align: center;
    margin: 0 auto 40px auto;
     padding-right: 0;
  }
  #single .speakers dl dd {
    width: 100%;
    padding-left: 0;
  }
  #single .speakers dl dd h3 {
    font-size: 100%;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  #single .speakers dl dd h3 span {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .map {
    border-radius: 8px;
  }
  #single .map iframe {
    width: 100%;
    height: 330px;
  }
}
@media screen and (max-width: 768px) {
  .bg_single {
    padding: 40px;
    border-radius: 8px;
  }
  #single p {
    font-size: 100%;
  }
  #single img {
    border-radius: 8px;
  }
}
@media screen and (max-width: 550px) {
  .bg_single {
    padding: 40px 20px;
  }
}
/*-------------------------------------*/
/*	ページャー	*/
/*-------------------------------------*/
#pager {
  margin: 40px 0;
  border-bottom: 1px solid #AAAAAA;
  border-top: 1px solid #AAAAAA;
}
#pager li.prev {
  width: 50%;
  float: left;
}
#pager li.next {
  width: 50%;
  float: right;
  text-align: right;
}
#pager li a {
  display: block;
  padding: 1em 0;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
#pager li a:hover {
  color: #07569f;
}
#pager li.prev a::before {
  content: "\f104";
  font-family: FontAwesome;
  margin-right: 10px;
  color: #000;
}
#pager li.next a::after {
  content: "\f105";
  font-family: FontAwesome;
  margin-left: 10px;
  color: #000;
}
/*-------------------------------------*/
/*	ページネーション	*/
/*-------------------------------------*/
.wp-pagenavi {
  clear: both;
  margin: 40px auto auto;
  text-align: center;
  font-size: 100%;
}
.wp-pagenavi a {
  text-decoration: none !important;
  padding: 0 !important;
  line-height: 50px;
  height: 50px;
  width: 50px;
  margin: 3px;
  display: inline-block;
  color: #EF8448 !important;
  background: #FFFFFF;
  border: 1px solid #EF8448;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-weight: 700;
  border-radius: 8px;
  font-size: 138%;
}
.wp-pagenavi span {
  color: #EF8448;
}
.wp-pagenavi span.current {
  text-decoration: none !important;
  padding: 0 !important;
  line-height: 50px;
  height: 50px;
  width: 50px;
  margin: 3px;
  display: inline-block;
  border: 1px solid #EF8448;
  color: #FFFFFF;
  background: #EF8448;
  font-weight: 700;
  border-radius: 8px;
  font-size: 138%;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #EF8448 !important;
}
.wp-pagenavi a:hover {
  border: 1px solid #EF8448;
  color: #FFFFFF !important;
  text-decoration: none !important;
  background: #EF8448;
}
.wp-pagenavi a:hover span {
  color: #FFFFFF;
}
.wp-pagenavi span {
  border: none !important;
}
.extend {
  padding: 0 10px 0 10px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi a, .wp-pagenavi span.current {
    font-size: 100% !important;
    line-height: 40px;
    height: 40px;
    width: 40px;
  }
}