@charset "UTF-8";



.editor{
  font-size: 16px;
  line-height: 2;
}

.wp-block-post-content{}

.editor-styles-wrapper{
  background: #f6f8fa;
}
.wp-block-post-content .e-spacer{
    background: #9f3b3b5e;  
}
.wp-block-post-content .e-spacer.size1:before{
  content: "(L)Spacer";
}
.wp-block-post-content .e-spacer.size2:before{
  content: "(M)Spacer";
}
.wp-block-post-content .e-spacer.size3:before{
  content: "(S)Spacer";
}


.editor *:first-child{
  margin-top: 0 !important;
}


.editor *:last-child{
  margin-bottom: 0 !important;
}


:not(.editor) > h1.wp-block-heading,
:not(.editor) > h2.wp-block-heading,
:not(.editor) > h3.wp-block-heading,
:not(.editor) > h4.wp-block-heading,
:not(.editor) > h5.wp-block-heading,
:not(.editor) > h6.wp-block-heading{
  margin-top: 0 !important;
}


h1.wp-block-heading + *,
h2.wp-block-heading + *,
h3.wp-block-heading + *,
h4.wp-block-heading + *,
h5.wp-block-heading + *,
h6.wp-block-heading + *{
  margin-top: 0 !important;
}  

.wp-block-image,
.wp-block-flexible-table-block-table,
.wp-block-buttons,
.e-talkSet,
.e-news,
.e-boxSet,
.e-slideSet,
.e-imgtxtSet,
.e-imgbtnSet,
.e-linkSet,
.e-imgSet,
.e-btnSet{
  margin-top: 70px;
  margin-bottom: 70px;
}

.wp-block-columns,
.e-historySet,
.e-eventSet,
ol.wp-block-list,
ul.wp-block-list,
.editor p{
  margin-top: 30px;
  margin-bottom: 30px;
}

.e-spacer + *{
  margin-top: 0 !important;
}
*:has(+ .e-spacer) {
  margin-bottom: 0 !important;
} 

.e-spacer{
  display: block;
}

.e-spacer.size1{
  height: 100px;
}
.e-spacer.size2{
  height: 60px;
}
.e-spacer.size3{
  height: 30px;
}



h2.wp-block-heading{
    margin-bottom: 29px;
    margin-top: 44px;
    background: #3A5596;
    color: #fff;
    font-family: 'Zen Maru Gothic';
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
    padding: 11px 33px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
h2.wp-block-heading:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/common/midasi_icon.svg) 0 0 no-repeat;
  background-size: contain;
  width: 73px;
  height: 60px;
  bottom: 0;
  right:0;
}


h3.wp-block-heading{
  margin-bottom: 39px;
  margin-top: 62px;
  font-family: 'Zen Maru Gothic';
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  padding: 0 0 13px 20px;
  border-bottom: dotted 2px #3A5596;
}
h3.wp-block-heading:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #3A5596;
  width: 4px;
  top: 3px;
  bottom: 13px;
  left: 0;
  border-radius: 10px;
}

h4.wp-block-heading{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-bottom: 17px;
  margin-top: 54px;
}

h5.wp-block-heading{}
h6.wp-block-heading{}

.editor p{
}

.editor p:after {
    display: block;
    content: "";
    clear: both;
}

.editor a{
  color: #1253CD;
  text-decoration: underline;
}
.editor a[target="_blank"]:after{
    content: "";
    background: url(../img/common/blank.svg) 0 0 no-repeat;
    background-size: contain;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    top: 4px;
    left: 0;
}
.editor a[href$=".pdf" i]:after{
    content: "PDF";
    display: inline-block;
    background: #fff;
    font-weight: 400;
    margin-left: 4px;
    margin-right: 4px;
    color: #fff;
    font-size: 13px;
    width: auto;
    height: auto;
    top: -1px;
    padding: 4px 4px;
    line-height: 1;
    font-family: var(--font-display-en);
    font-size: 12px;
    line-height: 1;
    color: #B23B3B;
}


ul.wp-block-list{
  list-style: none;
  padding: 0;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

ul.wp-block-list li{
  position: relative;
  z-index: 1;
  /* letter-spacing: 0.05em; */
  padding: 0 0 0 28px;
}
ul.wp-block-list li + li{
  margin-top: 24px;
}
ul.wp-block-list li:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #FFE18D;
  width: 12px;
  height: 12px;
  top: 7px;
  left: 0;
  border-radius: 100px;
}



ol.wp-block-list{
  counter-reset: li 0;
  list-style: none;
  padding: 0;
  line-height: 1.5;
  letter-spacing: 0.03em;  
}
ol.wp-block-list li{
  position: relative;
  z-index: 1;
  padding: 0 0 0 29px;
}
ol.wp-block-list li + li{
  margin-top: 24px;
}

ol.wp-block-list li:before{
  content: counter(li) ".";
  counter-increment: li;
  z-index: 1;
  position: absolute;
  top: 1px;
  left: 0;
  font-family: var(--font-display-en);
 }



ol.wp-block-list.come{
  font-size: 12px;
}
ol.wp-block-list.come li{
    padding: 0 0 0 24px;
}
ol.wp-block-list.come li:before{
  content: "※" counter(li);
  counter-increment: li;  
  z-index: 1;
  position: absolute;
  background: none;
  width: auto;
  height: auto;
  top: 0;
  left: 0;

} 

.wp-block-button__link{
    display: inline-flex;
    color: var(--color-my-black) !important;
    text-decoration: none !important;
    background: #fff;
    align-items: center;
    justify-content:center;
    position: relative;
    z-index: 1;
    padding: 7px 22px 7px;
    min-height: 56px;
    min-width: 300px;
    /* min-width: 169px; */ 
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
}

.wp-block-button__link:after,
.wp-block-button__link:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    width: calc(100% + 12px);
    height: 50%;
    background: #fff;
    transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.wp-block-button__link:after{
  top: auto;
  transform: translate(0px, 0px);
  bottom: 0;
}
.wp-block-button__link:before{
    transform: translate(-12px, 0px);
}
.wp-block-button__link span{
  position: relative;
  z-index: 1;
  padding-right: 29px;
}

.wp-block-button__link .c-arrow {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto !important;
}





/* hover */
@media (hover: hover) and (pointer: fine) {

      .wp-block-button__link:hover:after,
      .wp-block-button__link:hover:before {
        transform: translate(-6px, 0px);
      }  
}


.wp-block-flexible-table-block-table{
  border-radius: 10px;
  overflow: hidden;  
    border: 1px solid #DBDBDB !important;  
}
.wp-block-flexible-table-block-table table{

}


.has-fixed-layout td,
.has-fixed-layout th{
    background: #fff !important;
    border-top: none !important;
    border-left: none !important;
    border-right: 1px solid #DBDBDB !important;
    border-bottom: 1px solid #DBDBDB !important;
    padding: 14px 21px !important;
  }
.has-fixed-layout td:last-child,
.has-fixed-layout th:last-child{
    border-right: none !important;
}
.has-fixed-layout tr:last-child td,
.has-fixed-layout tr:last-child th{
    border-bottom: none !important;
}


  .has-fixed-layout th{
    background: #FFF4D7!important;
}


/* ----------------- */

.e-talkSet{
  --e-talkSet-left: 117px;
  padding-left: var(--e-talkSet-left);
}
.e-talkSet_ttl{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
  margin-bottom: 39px;
}
.e-talkSet_ttl:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #333;
  width: calc(var(--e-talkSet-left) - 24px);
  height: 1px;
  top: 11px;
  left: calc(var(--e-talkSet-left) * -1 );
}
.e-talkSet_main{
}
.e-talkSet_name{}

/* ----------------- */

.e-imgSet{
  display: grid;
  gir;
  gap: 53px 5.4%;
  /* margin: 60px 0; */
}
.e-imgSet.-col1{
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  /* width: 82.89%; */
}
.e-imgSet.-col2{
  grid-template-columns: 1fr 1fr;
}
.e-imgSet.-col3{
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 3.4%;
}
.e-imgSet_box{}
.e-imgSet_img{
  aspect-ratio: 968 / 575;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}


.e-imgSet_img.-move{
  aspect-ratio: 565 / 317;
  position: relative;
  z-index: 1;
  border-radius: 0;
}
.e-imgSet_img.-move iframe{position: absolute;z-index: 1;top: 0;left: 0;width: 100%;height: 100%;}

.e-imgSet_img .c-arrow{
  position: absolute;
  z-index: 5;
  bottom: 20px;
  right: 22px;
}

.e-imgSet_ttl{
    font-size: 14px;
    line-height: 1.5;
    margin-top: 15px !important;
    margin-bottom: 0px !important;
}
.e-imgSet_mes{
    font-size: 14px;
    margin-top: 20px !important;
}
.e-imgSet_ttl + .e-imgSet_mes{
    margin-top: 0px !important;
}

.e-imgSet_img_ttl{
  padding: 19px 65px 19px 20px;
  position: absolute;
  z-index: 5;
  left: 0px;
  right: 0;
  bottom: 0;
  background: rgba(74, 182, 255, 0.8);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin: 0;
}
.e-imgSet_img_ttl .c-arrow{
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto !important;
}
.e-imgSet_links{
    margin-top: 31px;
    display: grid;
    gap: 10px 0;
}
.e-imgSet_links_li{
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0 !important;
}
.e-imgSet_links_li a{
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 46px 0 0;
}
.e-imgSet_links_li .c-arrow{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto !important;
}



/* ----------------- */
.e-imgtxtSet{}

.e-imgtxtSet:after {
   content: "";
   display: block;
   clear: both;
}

.e-imgtxtSet_head{
  width: 45.7%;
}
.e-imgtxtSet_head.-left{
  float: left;
  margin-right: 4%;
  margin-bottom: 21px;
}
.e-imgtxtSet_head.-right{
  float: right;
  margin-left: 4%;
  margin-bottom: 21px;
}

.e-imgtxtSet_img{
  aspect-ratio: 968 / 570;
  overflow: hidden;
  /* border-radius: 10px; */
  width: 100%;
}
.e-imgtxtSet_main{}


.e-imgtxtSet_main h1,
.e-imgtxtSet_main h2,
.e-imgtxtSet_main h3,
.e-imgtxtSet_main h4,
.e-imgtxtSet_main h5,
.e-imgtxtSet_main h6{
  display: flex;
}

/* ----------------- */

.e-boxSet{
  border: 1px solid #3A5596;
  border-radius: 10px;
  padding: 43px 5.5%;
}


/* hover --------------------------------------- */


@media (hover: hover) and (pointer: fine) {

  .e-news_cat a:hover{
      background: #036eb8;
      color: #fff;
  }

  .e-news_list a:hover:before{
     opacity: 1; 
  }

}


/* sp --------------------------------------- */

@media screen and (max-width: 767px) {

  .editor{
    font-size: 14px;
  }

  .wp-block-post-content{}
  .editor-styles-wrapper{}
  .editor *:first-child{}
  .editor *:last-child{}
  :not(.editor) > h1.wp-block-heading,
  :not(.editor) > h2.wp-block-heading,
  :not(.editor) > h3.wp-block-heading,
  :not(.editor) > h4.wp-block-heading,
  :not(.editor) > h5.wp-block-heading,
  :not(.editor) > h6.wp-block-heading{}
  h1.wp-block-heading + *,
  h2.wp-block-heading + *,
  h3.wp-block-heading + *,
  h4.wp-block-heading + *,
  h5.wp-block-heading + *,
  h6.wp-block-heading + *{} 
   
  .wp-block-image,
  .wp-block-flexible-table-block-table,
  .wp-block-buttons,
  .e-talkSet,
  .e-news,
  .e-boxSet,
  .e-slideSet,
  .e-imgtxtSet,
  .e-imgbtnSet,
  .e-linkSet,
  .e-imgSet,
  .e-btnSet{
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .wp-block-columns,  
  .e-historySet,
  .e-eventSet,
  ol.wp-block-list,
  ul.wp-block-list,
  .editor p{
    margin-top: 20px;
    margin-bottom: 20px;
}

  .e-spacer{}

  .e-spacer.size1{
    height: 50px;
  }
  .e-spacer.size2{
    height: 30px;
  }
  .e-spacer.size3{
    height: 13px;
  }

  .h1-wp-block-heading,
  h1.wp-block-heading{
    font-size: 30px;
    margin-bottom: 30px;
    margin-top: 60px;
}
  .h1-wp-block-heading:before,
  h1.wp-block-heading:before {
    width: 35px;
    height: 16px;
    top: -26px;
    left: 0;
}
  h2.wp-block-heading{
    font-size: 22px;
    margin-bottom: 34px;
    margin-top: 44px;
    padding: 10px 16px;
}
  h2.wp-block-heading:before{
    /* width: 4px; */
}
  h3.wp-block-heading{
    font-size: 20px;
    margin-bottom: 37px;
    margin-top: 50px;
}
  h3.wp-block-heading:before{}
  h3.wp-block-heading:after{
    width: 60px;
}
  h4.wp-block-heading{
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 45px;
}
  h5.wp-block-heading{
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 12px;
    padding: 0 0 0 24px;
}
  h5.wp-block-heading:before{
    width: 10px;
    top: 10px;
}
  h6.wp-block-heading{}
  .editor p{}
  .editor p:after {}
  ul.wp-block-list{}
  ul.wp-block-list li{
    padding: 0px 0px 0 19px;
}
  ul.wp-block-list li + li{margin-top: 16px;}  
  ul.wp-block-list li:before{
    top: 9px;
    width: 10px;
    height: 10px;
    top: 5px;
}
  ul.wp-block-list.come{}
  ul.wp-block-list.come li{}
  ul.wp-block-list.come li:before{}
  ol.wp-block-list{}
  ol.wp-block-list li{
    padding: 0px 0 0 22px;
}
  ol.wp-block-list li + li{
    margin-top: 16px;
}
  ol.wp-block-list li:before{
    top: 1px;
    right: calc(100% - 20px);
}
ol.wp-block-list.come{}
ol.wp-block-list.come li{}
ol.wp-block-list.come li:before{} 

  .wp-block-button__link{
    font-size: 14px;
    min-width: 250px;
}
  .wp-block-button__link:after,
  .wp-block-button__link:before {}
  .wp-block-button__link:after{}
  .wp-block-button__link:before{}
  .wp-block-button__link span{
    padding-right: 23px;
}
  .wp-block-button__link .c-arrow {}



  .wp-block-flexible-table-block-table{}

  .has-fixed-layout td,
  .has-fixed-layout th{
    padding: 10px 15px !important;
}
    .has-fixed-layout th{}
    
/* ----------------- */
.e-talkSet{
    --e-talkSet-left: 46px;
}
.e-talkSet_ttl{
    font-size: 16px;
    margin-bottom: 15px;
}
.e-talkSet_ttl:before{
    width: calc(var(--e-talkSet-left) - 15px);
}
.e-talkSet_main{}
.e-talkSet_name{}

  /* ----------------- */
  .e-imgSet{
    gap: 30px 3.4%;
}
  .e-imgSet.-col1{
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
  .e-imgSet.-col2{
    grid-template-columns: 1fr;
    margin-left: 5%;
    margin-right: 5%;
  }
  .e-imgSet.-col3{
    grid-template-columns: 1fr 1fr;
    gap: 25px 4%;
  }
  .e-imgSet_box{}
  .e-imgSet_img{
    border-radius: 10px;
}
 
  .e-imgSet.-col1 .e-imgSet_img{
    /* width: 106%; */
    /* margin-left: -3%; */
    /* border-radius: 0; */
}

  .e-imgSet_img.-move{
    width: 100% !important;
    margin-left: 0 !important;
}
  .e-imgSet_img.-move iframe{}
  .e-imgSet_img .c-arrow{
    right: 10px;
    width: 32px;
    height: 20px;
    bottom: 10px;
}
  .e-imgSet_ttl{
    font-size: 11px;
    margin-top: 10px !important;
    margin-bottom: 3px !important;
}
  .e-imgSet_mes{
    font-size: 12px;
    margin-top: 13px !important;
}
  .e-imgSet_ttl + .e-imgSet_mes{}
  .e-imgSet_img_ttl{
    font-size: 17px;
    padding: 13px 60px 13px 15px;
}
  .e-imgSet_img_ttl .c-arrow{
    right: 13px;
    bottom: 0;
}
  .e-imgSet_links{
    gap: 4px 0;
    margin-top: 20px;
}
  .e-imgSet_links_li{
    font-size: 16px;
}
  .e-imgSet_links_li a{
    padding: 0 44px 0 0;
}
  .e-imgSet_links_li .c-arrow{}


  /* ----------------- */
  .e-imgtxtSet{}
  .e-imgtxtSet:after {}
  .e-imgtxtSet_head{
    width: auto;
}
  .e-imgtxtSet_head.-left{float: none;margin-right: 0;}
  .e-imgtxtSet_head.-right{
    float: none;
    margin-left: 0;
}
  .e-imgtxtSet_img{
}
  .e-imgtxtSet_main{}
  .e-imgtxtSet_main h1,
  .e-imgtxtSet_main h2,
  .e-imgtxtSet_main h3,
  .e-imgtxtSet_main h4,
  .e-imgtxtSet_main h5,
  .e-imgtxtSet_main h6{}
  /* ----------------- */

  /* ----------------- */

  .e-boxSet{
    border-radius: 10px;
    padding: 22px 5.5%;
  }

}

/* =========================================
   Gutenberg Layout Starter (Frontend)
   WP 6.8対応 / 自作テーマ用
   ========================================= */

/* -------- 基本変数のフォールバック -------- */
:root {
  --wp--style--block-gap: 20px;
  --wp--style--global--content-size: 1200px;
  --wp--style--global--wide-size: 1400px;
  --wp--style--global--padding-left: 1rem;
  --wp--style--global--padding-right: 1rem;
}

/* -------- Flow（縦積み） -------- */
.is-layout-flow > * + * {
  margin-block-start: var(--wp--style--block-gap);
}

/* -------- Flex -------- */
.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--style--block-gap);
  align-items: center;
}

/* -------- Grid -------- */
.is-layout-grid {
  display: grid;
  gap: var(--wp--style--block-gap);
}

/* -------- Constrained（中央カラム） -------- */
.is-layout-constrained {
  max-width: var(--wp--style--global--content-size);
  margin-inline: auto;
  padding-inline: var(--wp--style--global--padding-left);
}

/* -------- Wide / Full -------- */
.alignwide {
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* -------- Align -------- */
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

/* -------- Buttons / Group の最低限 -------- */
.wp-block-buttons.is-layout-flex {
  align-items: stretch;
}

/* -------- 画像のはみ出し防止 -------- */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}
/* -------- Content Justification (Flex) -------- */

.is-content-justification-left {
  justify-content: flex-start;
}

.is-content-justification-center {
  justify-content: center;
}

.is-content-justification-right {
  justify-content: flex-end;
}

.is-content-justification-space-between {
  justify-content: space-between;
}

.is-content-justification-space-around {
  justify-content: space-around;
}

.is-content-justification-space-evenly {
  justify-content: space-evenly;
}

/* -------- Vertical Alignment (Flex) -------- */
.is-vertically-aligned-top {
  align-items: flex-start;
}

.is-vertically-aligned-center {
  align-items: center;
}

.is-vertically-aligned-bottom {
  align-items: flex-end;
}