/* 赤い文字色 */
.s-text--cl{
  color: #D32F2F;
}

.s-background-transparent{
  background-color: transparent;
}

/* h1下のテキストとその下の解説テキストとの間隔を狭く調整 */
.s-headline-sub_top{
  margin-bottom: 8px;
}

/* セミナー情報の入る枠 */
.s-latest_item{
  padding: 16px;
  margin-bottom: 32px;
}

/* セミナー情報のタイトル */
.s-seminar-title{
  color: #000;
  margin: 0;
}

/* セミナー情報の画像 */
.s-latest_item-img{
  width: 90px;
  height: 90px;
  float: left;
  margin-right: 16px;
}

.s-latest_item_more-wrap{
  margin-top: 32px;
}

/* セミナー情報の日付 */
.s-latest_item-date{
  color: #003d7c;
  margin-bottom: 4px;
}

/* セミナー情報の講師情報 */
.s-speaker{
  display: flex;
  -webkit-flex-direction: column; /* Safari */
  flex-direction:         column;
}

/* セミナー情報 - 講師の所属 */
.s-speaker_info{
  margin-bottom: 4px;
}

/* セミナー情報 - 講師の名前 */
.s-speaker_name{
  margin-bottom: 8px;
}

/* ボタン上下の間隔調整 */
.s-seminar-button{
  margin: 32px 0;
}

/* 過去のセミナー情報と注意事項の間隔調整 */
.s-past_event{
  margin-top: 32px;
}

/* 過去のセミナー日付横のタグ */
.s-tag_seminar{
  color: #003d7c;
  border-color: #003d7c;
  border-radius: 4px;
  margin-right: 0px;
}

/* --------セミナー情報　詳細ページのスタイル-------- */

/* セミナー会場情報の注意 */
.s-text--attention{
  color: #777;
}

/* 日時や名前などの強調表示の文字サイズ */
.s-highlight{
  font-size: 20px;
  line-height: 32px;
  font-weight: bold;
}

/* セミナー情報の会場と日時の間隔調整 */
.s-d_list--place{
  margin-top: 16px;
}

/* 申込み情報の背景色 #00aeefのrgb値・透過0.1 */
.s-attend_info{
  background-color: rgba(0,174,239,0.1);
  margin: 32px 0;
  padding: 16px;
}

.s-attend_button{
  margin-top: 32px;
  margin-bottom: 32px;
}

/* 講師の画像を中央寄せ */
.s-speaker_img{
  display: block;
  margin: 32px auto;
}

/* 第〇部の下間隔 */
.s-seminar-part{
  margin-bottom: 16px;
}

/* 講師の名前 */
.s-d_list--name .s-highlight{
  font-size: 24px;
  line-height: 40px;
}

/* 名前、経歴間の間隔 */
.s-d_list--name{
  margin-bottom: 8px;
}

/* 講師経歴 */
.s-d_list--info{
  margin-bottom: 32px;
}

/* お問い合わせ先の項目の間隔調整 */
.s-contact{
  margin-bottom: 44px;
}

/* 下部ページャーの間隔調整 */
.s-pager-list{
  margin: 24px 0;
}

.s-accordion-button.is-open button:first-child{
  display: none;
}

.s-accordion-button.is-open button:last-child{
  display: block;
}

.s-accordion-button button:first-child{
  display: block;
}

.s-accordion-button button:last-child{
  display: none;
}


@media only screen and (min-width: 769px){
/* PC表示のスタイルここ以外だとスマホにも適応される */

/* セミナー情報　2カラムに */
.s-latest_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 1120px; /* PC表示で3列にならないようにwidth指定(widthはwrapperと同じ幅) */
  margin-top: 16px; 
  margin-right: auto;
  margin-left: auto;
}

/* セミナー情報の枠のサイズ設定 */
.s-latest_item{
  position: relative;
  width: 540px;
  margin-right: 36px;
  padding: 42px 42px;
}

.s-latest_item:nth-of-type(even){
  margin-right: 0;
}

/* セミナー情報のタイトル */
.s-seminar-title{
  margin-bottom: 16px;
}

/* セミナー情報の内容 - 高さ調整*/
.s-latest_item_contents{
  min-height: 120px;
  height: auto;
}

.s-latest_item_contents-dl--section{
  float: left;
}

.s-latest_item_contents-dl--section:after{
  content: "："
}

.s-latest_item_contents-dl--info{
  margin-left: 64px;
}

/* セミナー情報の詳細 - 高さ調整 */
.s-latest_item_details{
  min-height: 120px;
  height: auto;
}

/* セミナー情報の画像 */
.s-latest_item-img{
  width: 120px;
  height: 120px;
  margin-right: 16px;
}

.s-latest_item_more-wrap{
  height: 45px;
}

.s-latest_item_more{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  margin: 0 42px;
}

/* ボタンの幅 */
.s-seminar-button{
  width: 280px;
}

/* 過去のセミナー情報と注意事項の間隔調整 */
.s-past_event{
  margin-top: 42px;
}

/* 過去のセミナーリストともっと見るの間隔調整 */
.s-past_event_list{
  padding-bottom: 8px;
}

/* --------セミナー情報 詳細ページのスタイル-------- */

/* 日時や名前などの強調表示の文字サイズ */
.s-highlight{
  font-size: 24px;
  line-height: 40px;
}

/* 日付・会場下の間隔調整 */
.s-d_list--date,
.s-d_list--place{
  margin-bottom: 8px
}

/* セミナー会場情報の注意 a-text-notesと同じサイズ */
.s-text--attention{
  font-size: 13px;
}

/* セミナー申し込みの色付きの部分 */
.s-attend_info{
  padding: 48px;
}

/* セミナー申し込みボタン */
.s-attend_button{
  margin-top: 48px;
  margin-bottom: 48px;
}

/* 講師の画像を左寄せ */
.s-speaker_img{
  display: block;
  margin-top: 0;
  margin-right: 32px;
  float: left;
}

/* 講師の名前と第〇部を一列に */
.s-inline-block_pconly{
  display: inline-block; 
}

/* 名前と所属の間隔をPC用に */
.s-seminar-part{
  margin-bottom: 0;
}

/* お問い合わせ先項目の間隔を均等に */
.s-contact{
  margin-right: auto;
  margin-bottom: 0;
}

}

.o-content__inner.s-seminar-link-wrap {
    margin-top: 48px;
    margin-bottom: 48px;
}

.s-seminar-backnumber {
    text-align: center;
    border: 1px solid #d32f2f;
    padding: 1em;
}
.s-seminar-backnumber--text {
    font-size:14px;
    color: #d32f2f;
}

.s-seminar_detail-dd + .s-seminar_detail-dt {
  margin-top: 16px;
}

.s-seminar_detail-dd {
  padding-left: 1em;
}

@media only screen and (min-width: 769px){
    .s-seminar-backnumber--text {
        font-size:16px;
    }   
}

.s-lecturer {
    margin-bottom: 48px;
}
.s-lecturer:last-child {
    margin-bottom: 0;
}
.s-lecturer--image {
    text-align: center;
    margin-bottom:24px;
}
.s-lecturer--image img {
    width: 100%;
    max-width: 200px;
}
.s-lecturer--info-name {
    margin-bottom: 24px;
}
.s-lecturer--info-name .s-highlight {
    font-size: 24px;
    line-height: 40px;
}
@media only screen and (min-width: 769px){
    .s-lecturer--image {
        float: left;
        width: 200px;
        margin-bottom:0;
    }
    .s-lecturer--info {
        margin-left: 232px;
    }
    .s-lecturer--info-name {
        margin-bottom: 24px;
    }
}

/* --------投資相談会　ページのスタイル-------- */

.s-toushi_point {
  margin-bottom: 48px;
}

.s-toushi_point-item {
  position: relative;
  padding: 16px 0;
  padding-left: 32px;
  padding-right: 8px;
  border-top: 2px solid #ededed;
}

.s-toushi_point-item:before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #003e7c;
  border-radius: 50%;
}

.s-toushi_point-item-marker {
  color: #003e7c;
  font-size: 18px;
  font-weight: bold;
}


.s-toushi_intro-img,
.s-toushi_intro-text {
  text-align: center;
}
.s-toushi_intro-text.txtCntr {
  text-align: center;
  margin:0 auto;
}

.s-toushi_intro-text-heading {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 26px;
  line-height: 36px;
}

.s-toushi_intro-text-heading-small {
  font-size: 16px;
  line-height: 1;
}

.s-toushi_inquiry {
  margin-top: 32px;
}

.s-toushi_inquiry .s-attend_button {
  margin-top: 24px;
  margin-bottom: 24px;
}

.s-toushi_detail-title {
  margin-bottom: 24px;
}
.s-toushi_detail-text {
  margin-bottom: 32px;
}

.s-text--notes {
  margin-top: 16px;
  padding-left: 0;
  text-indent: 0;
}

.s-toushi_detail-tel {
  font-weight: bold;
  color: #e34563;
}

.s-toushi_strength-read {
  margin: 32px 0;
  margin-bottom: 0;
}

.s-toushi_strength {
  border-top: 2px solid #003e7c;
  margin-top: 64px;
  margin-bottom: 32px;
  padding: 32px 10px;
}

.s-toushi_strength-heading {
  text-align: center;
  margin-top: 0;
  font-weight: bold;
}

.s-toushi_strength-point {
  font-weight: bold;
}

.s-toushi_strength-point-item {
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
}

.s-toushi_strength-point-item:before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #003e7c;
  border-radius: 50%;
}

.s-toushi_strength-point-item:last-child {
  margin-bottom: 0;
}

.s-toushi_strength-text {
  text-align: center;
  margin-bottom: 64px;
}

.s-toushi_strength-read--notes,
.s-toushi_strength--notes {
  margin-top: 24px;
}

@media only screen and (min-width: 769px){
  .s-toushi_point {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .s-toushi_point-item {
    width: 30%;
    margin-right: 48px;
  }

  .s-toushi_point-item:nth-child(3n),
  .s-toushi_point-item:last-child {
    margin-right: 0;
  }

  .s-toushi_intro,
  .s-toushi_strength-read,
  .s-toushi_strength-read--notes,
  .s-toushi_strength,
  .s-toushi_strength-text {
    width: 768px;
    margin-left: auto;
    margin-right: auto;
  }

  .s-toushi_intro {
    display: flex;
  }

  .s-toushi_intro-img {
    margin: 0 32px;
  }

  .s-toushi_intro-text {
    text-align: left;
    margin-left: 32px;
  }

  .s-toushi_detail {
    display: flex;
    justify-content: space-between;
  }

  .s-toushi_detail-item {
    width: 31%;
  }

  .s-toushi_strength {
    padding: 32px;
    padding-right: 0;
  }

  .s-toushi_strength-heading,
  .s-toushi_strength-text {
    text-align: left;
  }
  
}

.s-image--center {
    margin-right: auto;
    margin-left: auto;
}

/* アメリカ不動産 200805追記 */
.s-america-fudosanseminar_list .s-latest_item_contents_h {
  display: block;
  font-weight: bold;
}
.s-america-fudosanseminar_list .s-detail{
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
    flex-direction: row;
}
.s-america-fudosanseminar_list .s-detail dt{
    font-weight: bold;
}
.s-america-fudosanseminar_list .s-detail dd{
    margin-bottom: 6px;
    flex-basis: 100%;
}

@media only screen and (min-width: 769px){
  .s-america-fudosanseminar_list .s-latest_item {
    width: auto;
    margin-right: 0;
  }
  .s-america-fudosanseminar_list .s-latest_item_contents{
    min-height: auto;
  }
  .s-america-fudosanseminar_list .s-latest_item_details{
    min-height: 120px;
  }
  .s-america-fudosanseminar_list .s-latest_item-img{
    margin-right: 20px;
  }
  .s-america-fudosanseminar_list .s-detail{
    width: 896px;
  }
  .s-america-fudosanseminar_list .s-detail dt{
    margin-right: 16px;
    flex-basis: 60px;
  }
  .s-america-fudosanseminar_list .s-detail dd{
    flex-basis: 820px;
  }
}

/* セミナーの主な内容　時間追加 210614追記 */
.s-seminar_detail_2column_time{
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
}
@media only screen and (min-width: 769px){
    .s-seminar_detail_2column{
        display: flex;
    }
    .s-seminar_detail_2column_time{
        width: 120px;
    }
}

/* セミナー一覧ページ　講師が二人以上のスタイル 210614追記 */
/*.s-latest_item_details.s-two_or_more,
.s-latest_item_details.s-two_or_more_end {
    min-height: 120px;
}*/

/* 20230117 追記 */
.s-list_twocol .s-item span {
  display: block;
}
.s-list_twocol .s-item {
  margin-bottom: 16px;
}
@media only screen and (min-width: 769px){
  .s-list_twocol .s-item {
    display: flex;
  }
  .s-list_twocol .s-item span {
    display: inline-block;
    padding: 0 15px 0 0;
  }
  .s-list_twocol .s-item {
    margin-bottom: 8px;
  }
}
.s-list_twocol .s-item:last-child {
  margin-bottom: 0;
}

/*hawaii RE soudan　画像バーナー*/
.hawaii-re{
    margin-bottom: 50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.hawaii-re img{
    padding:5px;
}

@media only screen and (min-width: 769px){
  .hawaii-re{
      display:flex;
      flex-direction:row;
  }

  /* 230605 セミナー一覧タイトル部分　下部位置調整のため */
  .s-text0605{
    text-align: center;
  }
  .s-text072401{
      width: 60%;
  }
}

.s-text0724{
  padding: 42px 32px;
}

/* 231126 セミナースタイル調整 */
.s-seminar-Ver01 img {
  width: 100%;
  height: auto;
}
.s-seminar-Ver01 .s-bkw {background-color: #fff;}
.s-seminar-Ver01 .s-bkb01 {background-color: #5081A5;}
.s-seminar-Ver01 .s-bkb02 {background-color: #A7C0D2;}
.s-seminar-Ver01 .s-gry01 {background-color: #f6f6f6;}
.s-seminar-Ver01 .s-sec01,.s-seminar-Ver01 .s-sec02,.s-seminar-Ver01 .s-sec03,.s-seminar-Ver01 .s-sec04,.s-seminar-Ver01 .s-secpriv,.s-seminar-Ver01 .s-contact-box,.s-seminar-Ver01 .s-contactbox {
  margin-top: 32px;
}
.s-seminar-Ver01 .s-contact-box {
  padding-bottom: 32px;
}
.s-seminar-Ver01 .s-contact-box .a-button {
  margin: 0 auto;
  width: 90%;
}
.s-seminar-Ver01 .s-secpriv {
  padding: 3.5% 6%;
}
.s-seminar-Ver01 .s-secpriv_ttl {
  border-bottom: 1px solid #056496;
  font-size: 1.6rem;
  padding-bottom: 8px;
}
.s-seminar-Ver01 .s-secpriv_txt {
  font-size: 1.2rem;
  padding-top: 16px;
}
.s-seminar-Ver01 .s-contactbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  gap: 16px;
}
.s-seminar-Ver01 .s-contactbox .s-info-card {
  position: relative;
  width: calc((100% - 0px) / 1) ;
  height: auto;
}
.s-seminar-Ver01 .s-contactbox .s-info-card_tit {
  height: 55px;
  background-color: #BB8E00;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  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;
  text-align: center;
}
.s-seminar-Ver01 .s-contactbox .s-info-card_cnt {
  background-color: #fff;
  padding: 20px 20px 24px;
  text-align: center;
  height: calc(100% - 55px);
  font-size: 1.4rem;
  border-left: 1px solid #f6f6f6;
  border-right: 1px solid #f6f6f6;
  border-bottom: 1px solid #f6f6f6;
}
.s-seminar-Ver01 .s-contactbox .s-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.s-seminar-Ver01 .s-contactbox .s-num {
  margin: 0.5em 0;
  font-size: 2.8rem;
  color: #000;
  font-weight: bold;
  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;
}
.s-seminar-Ver01 .s-contactbox .s-num .i {
  width: 38px;
  height: 30px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  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;
}
.s-seminar-Ver01 .s-contactbox .s-num .n {
  font-family: 'livable';
  font-size: 26px;
  font-size: 2.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 1;
}
.s-seminar-Ver01 .s-contactbox .s-attention * {
  text-align: left;
  font-size: 1.2rem;
}
.s-seminar-Ver01 .s-contactbox .s-list-indent li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 6px;
}
.s-seminar-Ver01 .s-contactbox .s-list-indent li:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 769px){
  .s-seminar-Ver01 .s-mv {
    min-width: 1200px;
  }
  .s-seminar-Ver01 .s-sec01,.s-seminar-Ver01 .s-sec02,.s-seminar-Ver01 .s-sec03,.s-seminar-Ver01 .s-sec04,.s-seminar-Ver01 .s-secpriv,.s-seminar-Ver01 .s-contact-box,.s-seminar-Ver01 .s-contactbox {
    margin-top: 48px;
  }
  .s-seminar-Ver01 .s-contactbox {
    gap: 32px;
  }
  .s-seminar-Ver01 .s-contactbox.col2 .s-info-card {
    width: calc((100% - 32px) / 2);
    position: relative;
    overflow: hidden;
  }
  .s-seminar-Ver01 .s-contactbox .s-info-card_tit {
    font-size: 2.4rem;
  }
  .s-seminar-Ver01 .s-contactbox .s-info-card_cnt {
    padding: 24px 32px 32px;
  }
  .s-seminar-Ver01 .s-contactbox .s-num {
    margin: 16px 0;
    font-size: 44px;
    font-size: 4.4rem;
  }
  .s-seminar-Ver01 .s-contactbox .s-num .i {
    width: 50px;
    height: 40px;
  }
  .s-seminar-Ver01 .s-contactbox .s-num .n {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
.s-seminar231126 .s-bkb01 {background-color: #d6eefb;}
.s-seminar231126 .s-bkb02 {background-color: #056496;}
.s-seminar240324 .s-bkb01 {background-color: #207ea1;}
.s-seminar240727 .s-bky01 {background-color: #f0ece5;}
.s-seminar240727 .s-bkb01 {background-color: #4186b0;}

.s-text231205 {
  padding-left: 8px;
}
.s-text231205.s-toushi_point-item:before {
  display: none;
}
@media only screen and (min-width: 769px){
  .s-text231205 .s-toushi_point-item-marker {
    font-size: 20px;
  }
  .s-text231205 {
    width: 60%;
    font-size: 18px;
    line-height: 32px;

    width: calc(50% - 24px);
  }
}

.s-small240415 {
  font-size: 18px;
}

.a-link-grey{
    color:#999;
}

@media only screen and (min-width: 769px){
  .s-pct18 {
    font-size: 18px;
    line-height: 30px;
  }
}

.s-seminar250928 .s-sec01 {margin-top: 0px;}
.s-seminar250928 .s-sec01 img.u-display__pconly {padding-bottom: 2rem;}
.s-seminar250928 .s-sec01 img.u-display__sponly {padding-bottom: 1rem;}
.s-seminar250928 .s-gry01 {background-color: #eff0f0;}
.s-seminar250928 .s-secpriv_ttl {border-bottom: 1px solid #8a8a8a;}
@media only screen and (max-width: 768px){
  .s-seminar250928 .o-content__inner {margin-top: 0px;}
}

