@charset "UTF-8";

/* #header
-------------------------------------------------- */
#header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
}

.head_top{
  height: 80px;
  display: grid;
  grid-template-columns: 183px 1fr auto;
  gap: 20px;
  align-items: center;
  padding-left: 30px;
}

.head_btn{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.head_btn li a{
  height: 80px!important;
  padding: 0 15px;
  line-height: 1.4;
  display: flex!important;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  background: var(--color-red);
}

.head_btn li a.col2{
  background: var(--color-red2);
}

.gnav_wrap{
  z-index: 50;
}

.gnav_list{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.gnav_list > li{
  flex: 0 0 auto;
  font-weight: bold;
  font-size: 1.5rem;
}

.gnav_list-pc{
  display: flex;
  align-items: center;
}

.gnav_item{
  position: static;
}

.gnav_item:hover{
  background: #F2F3F5;
}

.gnav_btn,
.gnav_link{
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-decoration: none;
  text-align: center;
  padding: 8px 6px;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
	align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

.mega{
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding-bottom: 30px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  z-index: 100;
}

.gnav_list-pc .mega {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.gnav_list-pc .mega.is_open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega_inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  gap: 24px;
}

.mega_list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}

.mega_list li a{
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  font-weight: normal;
  border-bottom: 1px solid var(--color-red);
}

.mega_list li a:hover{
  color: var(--color-red);
}

.mega_list li a::before{
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url(../img/icon_arrow.svg) no-repeat center center / 18px auto;
  background-color: var(--color-red);
}

.hamburger{
  display: none;
}

.spMenu[hidden], .menuOverlay[hidden]{
  display:none !important;
}

.spMenu{
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  background: #fff;
  box-shadow: -16px 0 40px rgba(0,0,0,.18);
  z-index: 200;
  overflow: auto;
  padding: 12px;
}

.menuOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 150;
}

.gnav_list-sp{
  display: block;
  padding: 8px 16px 24px;
}
.gnav_list-sp .gnav_item{
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.gnav_list-sp .gnav_btn,
.gnav_list-sp .gnav_link{
  width: 100%;
  justify-content: space-between;
  padding: 14px 6px;
}

.gnav_list-sp .mega{
  position: static;
  box-shadow: none;
  border-bottom: 0;
}
.gnav_list-sp .mega_inner{
  padding: 0 6px 14px;
  max-width: none;
}
.gnav_list-sp .mega_inner.cols_2{
  grid-template-columns: 1fr;
}

@media (max-width: 1000px){
  .head_top{
    padding-left: 10px;
    grid-template-columns: 100px 1fr auto;
    gap: 10px;
  }
  .head_btn li a{
    height: 80px;
    padding: 0 10px;
    font-size: 1.2rem;
  }
  .gnav_btn, .gnav_link{
    font-size: 1.3rem;
  }
  .gnav_list{
    padding: 0;
  }
  .mega_list li a{
    font-size: 1.6rem;
  }
}
@media (max-width: 767px){
  .head_top{
    height: 60px;
  }
  #header .logo{
    flex: 0 1 100px;
    margin-left: 10px;
  }
  .head_btn{
    display: none;
  }
  .mega_list{
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .mega_list li a{
    gap: 10px;
  }
  .mega_list li a::before{
    width: 18px;
    height: 18px;
    background-size: 10px auto;
  }
  .gnav_list-pc{ 
    display: none;
  }
  .hamburger{
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-right: 0;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
  }
  .hamburger_bar{
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .hamburger[aria-expanded="true"] .hamburger_bar:nth-child(1){
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger[aria-expanded="true"] .hamburger_bar:nth-child(2){
    opacity: 0;
  }
  .hamburger[aria-expanded="true"] .hamburger_bar:nth-child(3){
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* footer
-------------------------------------------------- */
#footer{
  background: #fff;
}

#footer .footer_inner{
	padding: 120px 20px 70px 20px;
	background: #fff;
}

#footer .logo{
  width: 183px;
  margin: 0 auto;
}

.fnav{
  margin-top: 50px;
}

.fnav ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}

#footer .copyright{
	display: block;
  padding: 50px 10px;
  text-align: center;
	letter-spacing: 0.1em;
  border-top: 1px solid #B7B8BB;
}

#pageup{
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: ease-in-out .3s;
}

#pageup a{
  display: block;
  width: 60px;
  aspect-ratio: 1 / 1;
  text-indent: -9999px;
  border-radius: 50%;
  background: url(../img/icon_pageup.svg) no-repeat center center rgba(255,255,255,0.6);
}

#footer_cta{
  display: none;
}

@media screen and (max-width: 767px) {
  #footer{
    border-top: 1px solid #B7B8BB;
  }
  #footer .logo{
    display: none;
  }
  #footer .footer_inner{
    padding: 50px 20px;
  }
  .fnav{
    margin-top: 0;
    display: block;
  }
  #footer .copyright{
    display: block;
    font-size: 1rem;
    padding: 10px 10px 60px 10px;
  }
	#pageup{
	  bottom: 10px;
	  right: 10px;
	}
	#pageup a{
	  width: 40px;
	  padding: 10px;
	}
  #footer_cta{
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: orange;
  }
  #footer_cta .head_btn li a{
    height: 50px!important;
    padding: 0 10px;
    flex-direction: column;
    font-size: 1.3rem;
  }
}

/* 
-------------------------------------------------- */
main{
  overflow: hidden;
}

.page_body{
  padding: 80px 20px;
}

.title{
  text-align: center;
  font-size: 4rem;
  line-height: 1.3;
  color: var(--color-red);
  margin-bottom: 60px;
}

.title span{
  font-size: 1.8rem;
}

.page_body .sec{
  padding: 60px 0;
  border: 10px solid green;
}

.page_body .sec:first-child{
  padding-top: 0;
}

.page_body h2{
  margin: 60px 0 30px 0;
  font-size: 3rem;
}

.sec_inner h2.wp-block-heading{
  color: var(--color-red);
}

.page_body h2:first-child{
  margin-top: 0;
}

.page_body h3{
  margin: 60px 0 30px 0;
}

.page_body h4{
  margin: 20px 0 10px 0;
}

.page_body p{
  margin-bottom: 2em;
}

.page_body a{
  text-decoration: underline;
}

.page_body a:hover{
  color: var(--color-red2);
  text-decoration: none;
}



@media (max-width: 767px){
  .page_body{
    padding: 40px 20px 60px 20px;
  }
  .title{
    font-size: 3rem;
    margin-bottom: 40px;
  }
  .page_body h2{
    margin: 60px 0 20px 0;
    font-size: 2.2rem;
  }
  .page_body h3{
    margin: 40px 0 20px 0;
  }
}

.bnr_hybrid_training{
  padding: 20px 0 60px 0;
}

.bnr_hybrid_training a{
  padding: 20px;
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.bnr_hybrid_training a .txt{
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
}

.bnr_hybrid_training a .txt::before{
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon_movie.svg) no-repeat center center / contain;
}

.bnr_hybrid_training a p span{
  display: block;
  font-size: 2rem;
}

.bnr_hybrid_training a:hover{
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .bnr_hybrid_training{
    padding: 40px 10px;
  }
  .bnr_hybrid_training a{
    padding: 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bnr_hybrid_training a .txt{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,.5);
    margin: 0;
    padding: 10px;
    font-size: 2rem;
  }
  .bnr_hybrid_training a p::before{
    width: 30px;
  }
  .bnr_hybrid_training a p span{
    font-size: 1.5rem;
  }
}

.ttl{
  font-size: 4.5rem;
  line-height: 1.3;
  margin-bottom: 50px;
  color: var(--color-red);
}

.sec_wrap{
  padding: 100px 20px;
}

.wp-block-group.sec_wrap{
  padding: 0 0 80px 0;
}

.sec_inner{
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 60px;
  background: #fff;
  border-radius: 30px;
}

.flex_wrap{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4%;
}

.flex_wrap .txt{
  min-width: 0;
}

#feature{
  padding-top: 0;
  padding-bottom: 0;
}

#feature .txt h3{
  display: grid;
  grid-template-columns: 50px 1fr;
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

#feature .txt p + h3{
  margin-top: 50px;
}

#feature .txt p{
  padding-left: 50px;
}

@media (max-width: 1300px){
  .sec_inner{
    padding: 60px 4%;
  }
  .flex_wrap{
    grid-template-columns: 280px 1fr;
    gap: 3%;
  }
  #feature .txt h3{
    grid-template-columns: 40px 1fr;
    font-size: 2.4rem;
  }
  #feature .txt p + h3{
    margin-top: 40px;
  }
  #feature .txt p{
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .ttl{
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
  #feature{
    padding: 0 20px 60px 20px;
  }
  .wp-block-group.sec_wrap{
    padding: 0 0 40px 0;
  }
  .sec_inner{
    padding: 20px;
    border-radius: 10px;
  }
  .flex_wrap{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #feature .txt h3{
    grid-template-columns: 30px 1fr;
    font-size: 2rem;
  }
  #feature .txt p + h3{
    margin-top: 30px;
  }
  #feature .txt p{
    padding-left: 0;
  }
}

#philosophy h3{
  margin-bottom: 30px;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media (max-width: 767px){
  #philosophy h3{
    letter-spacing: 0em;
    font-size: 2.2rem;
    text-align: center;
  }
}

/*********************************************************************************/
.home_features{
  padding: 70px 60px;
  background: #fff;
  border-radius: 30px 0 0 30px;
  position: relative;
  left: 50%;
  margin-left: -660px;
  width: calc(50vw + 660px);
  overflow: hidden;
}

.home_features .in{
  max-width: 1200px;
  display: grid;
  grid-template-columns: 356px 1fr;
  gap: 30px;
  position: relative;
}

.home_features .in .ttl{
  color: var(--color-red);
}

.home_features .txt{
  width: calc(50vw + 600px - (356px + 60px)); 
  min-width: 0;
}

.home_features .txt h3{
  font-size: 3.4rem;
}

.home_features .txt p + h3{
  margin-top: 30px;
}

.home_features .txt p{
  margin-top: 20px;
  font-size: 1.8rem;
}

@media (max-width: 1400px) {
  .home_features{
    left: 20px;
    margin-left: 0;
    padding: 70px 30px;
    width: auto;
  }
  .home_features .txt{
    width: auto;
  }
}
@media (max-width: 1200px) {
  .home_features {
    left: 0;
    padding: 70px 20px;
    width: 100%;
  }
  .home_features .txt{
    width: auto;
  }
  .home_features .txt p{
    font-size: 1.6rem;
  }
  .home_features .in{
    grid-template-columns: 300px 1fr;
  }
}
@media (max-width: 850px) {
  .home_features{
    padding: 60px 20px;
    border-radius: 0;
  }
  .home_features .in{
    grid-template-columns: 1fr;
  }
  .home_features .in .img{
    text-align: center;
  }
  .home_features .in .img img{
    width: 70%;
    margin:  0auto;
  }
  .home_features .txt h3{
    font-size: 2.2rem;
  }
  .home_features .txt p{
    font-weight: normal;
  }
}
/*********************************************************************************/

#cases{
  padding: 100px 20px;
  color: #fff;
  background: #000;
}

#cases .ttl{
  color: #fff;
}

.case_list li + li{
  margin-top: 30px;
}

.case_item{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.case_item .num{
  flex: 0 1 auto;
  padding: 0 25px;
  display: flex;
	align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  background: var(--color-red);
}

.case_item .num span{
  display: block;
  margin-top: 10px;
  font-size: 4rem;
}

.case_item .img{
  flex: 0 1 auto;
  max-width: 320px;
  aspect-ratio: 6 / 7;
}

.case_item .img img{
  display: block;
	width: 100%!important;
	height: 100%!important;
	margin: 0!important;
	object-fit: cover!important;
}

.case_item .wrap{
  flex: 1 1 0%;
  min-width: 0;
  font-size: 1.8rem;
}

.case_item .wrap h3{
  font-size: 2.6rem;
  line-height: 1.4;
}

.case_item .wrap .name{
  display: inline-block;
  padding: 0 15px;
  color: var(--color-red);
  background: #fff;
}

.case_item .wrap p{
  margin: 20px 0 0 0;
}

@media (max-width: 1100px){
  .case_item .num{
    padding: 0 20px;
  }
  .case_item .img{
    max-width: 280px;
  }
  .case_item .wrap{
    font-size: 1.6rem;
  }
  .case_item .wrap h3{
    font-size: 2rem;
  }
}
@media (max-width: 950px){
  .case_item .num{
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    font-size: 1.6rem;
    font-weight: 500;
    aspect-ratio: 1 / 1;
  }
  .case_item .num span{
    margin-top: 5px;
    font-size: 2rem;
  }
}
@media (max-width: 767px){
  #cases{
    padding: 60px 20px;
  }
  .case_item{
    display: block;
    padding-bottom: 20px;
    border: 1px solid var(--color-red);
  }
  .case_item .num{
    margin-bottom: 20px;
    position: static;
    flex-direction: row;
    gap: 10px;
    padding: 8px;
    aspect-ratio: auto;
  }
  .case_item .num span{
    display: inline!important;
    margin-top: 0;
    line-height: 1;
    font-size: 2.8rem;
  }
  .case_item .img{
    max-width: 250px;
    margin: 0 auto 20px auto;
  }
  .case_item .wrap p{
    padding-left: 20px;
    padding-right: 20px;
    font-weight: normal;
  }
  .case_item .wrap h3{
    text-align: center;
  }
  .case_item .wrap .name{
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.check_list{
  margin: 20px 0 15px 0;
  display: inline-grid;
  grid-template-columns: max-content max-content;
  gap: 10px;
}

.check_list li{
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 2.2rem;
  background: #F2F3F5;
}

.check_list li::before{
  content: "";
  display: block;
  width: 33px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon_check.svg) no-repeat center center / contain;
}

#consultants p.copy{
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.4;
}

#consultants h4.name{
  font-size: 3.4rem;
}

#consultants h4.name span{
  display: inline-block;
  margin-left: 15px;
  font-size: 2.4rem;
  color: var(--color-red);
}

@media (max-width: 980px){
  #consultants p.copy{
    font-size: 2.8rem;
  }
  .check_list li{
    font-size: 1.6rem;
    gap: 6px;
  }
  .check_list li::before{
    width: 20px;
  }
  #consultants h4.name{
    font-size: 3rem;
  }
  #consultants h4.name span{
    margin-left: 15px;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  #consultants p.copy{
    font-size: 2rem;
  }
  .check_list{
    margin: 20px 0 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .check_list li::before{
    width: 18px;
  }
  #consultants h4.name{
    margin-bottom: 20px;
    line-height: 1;
    font-size: 2.6rem;
  }
  #consultants h4.name span{
    font-size: 1.3rem;
    font-weight: normal;
    letter-spacing: 0.1em;
  }
}

#company{
  padding: 100px 20px;
  color: #fff;
  background: var(--color-red);
}

#company h2.ttl{
  color: #fff;
}

@media (max-width: 767px) {
  #company{
    padding: 60px 20px;
  }
}

.home_sns{
  padding: 80px 20px;
}

.ttl_baloon{
  text-align: center;
}

.ttl_baloon span{
  display: inline-block;
  padding: 0 40px;
  font-size: 4.5rem;
  color: #fff;
  background: var(--color-red);
}

@media (max-width: 767px) {
  .ttl_baloon span{
    padding: 0 20px;
    font-size: 2.4rem;
  }
}

.layout_wrapper{
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 30px;
  align-items: start;
}

.layout_main{

}

.post_list > li{
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.post_list > li:first-child{
  padding-top: 0;
}

.post_list .tt{
  margin: 0 0 6px 0;
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: left;
}

.post_list .tt a{
  text-decoration: none;
}

.post_list .tt a:hover{
  text-decoration: underline;
}

.post_meta{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 1.4rem;
  line-height: 1;
}

.single .post_meta{
  margin-top: 20px;
}

.cate_link_wrap{
  display: flex;
  align-items: center;
  gap: 10px;
}

.cate_link{
  padding: 2px 6px;
  color: var(--color-red2);
  border: 1px solid var(--color-red2);
}

.post_list .txt{
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
}

.single_ttl{
  margin-bottom: 30px;
  font-size: 2.4rem;
  border-bottom: 1px solid #000;
}

.article_body > * + *{
  margin-top: 1.2em;
}

.article_body a{
  text-decoration: underline;
  color: var(--color-red);
}

.article_body a:hover{
  text-decoration: none;
}

@media (max-width: 767px){
  .post_list > li{
    padding: 16px 0;
  }
  .post_list .tt{
    font-size: 17px;
  }
}

.layout_side{
  padding: 20px 30px;
  background: #fff;
}

@media (min-width: 768px){
  .layout_side{
    position: sticky;
    top: 180px;
    align-self: start;
  }
}

.sidebar_wrap + .sidebar_wrap{
  margin-top: 40px;
}

h2.sidebar_title{
  margin: 0 0 10px 0;
  text-align: left;
  font-size: 1.8rem;
  color: var(--color-red);
}

.sidebar_list li a:hover{
  text-decoration: underline;
}

@media (max-width: 767px){
  .layout_wrapper{
    grid-template-columns: 1fr;
  }
  .sidebar_wrap + .sidebar_wrap{
    margin-top: 20px;
  }
}

.faq_list dt {
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 20px;
  align-items: start;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
  padding: 20px 20px;
  background: #fff;
}

.faq_list dt::before {
  content: "Q.";
  color: var(--color-red);
}

.faq_list dt::after {
  content: "+";
}

.faq_list dt.is_open::after {
  content: "-";
}

.faq_list dd {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: start;
  padding: 0 20px;
  background: #fff;
  margin: 0;
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
}

.faq_list dd::before {
  content: "A.";
  color: #999;
  font-weight: 700;
  font-size: 2rem;
}

.faq_list dd p {
  margin: 0 0 20px 0;
}

@media (max-width: 767px){
  .faq_list dt {
    margin-top: 20px;
    column-gap: 15px;
    font-size: 1.6rem;
    padding: 10px 15px 10px 10px;

  }
}

.sns_list{
  margin-top: 60px;
  display: flex;
	align-items: center;
  justify-content: center;
  gap: 40px;
}

.sns_list li{
  flex: 0 1 60px;
}

@media (max-width: 767px){
  .sns_list{
    gap: 20px;
  }
  .sns_list li{
    flex: 0 1 50px;
  }
}

.rinen_copy span{
  font-weight: bold;
  font-size: 3rem;
  color: var(--color-red);
}

.consultants_item .wp-block-image {
    margin: 0!important;
}

.consultants_item h3{
  font-size: 3rem;
  line-height: 1;
  margin: 0 0 30px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}

.sec2_wrap{
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 70px 60px;
  background: #fff;
  border-radius: 30px;
  position: relative;
  position: relative;
}

.sec2_wrap + .sec2_wrap{
  margin-top: 100px;
}

.sec2_wrap .in{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}

.sec2_wrap h2{
  margin: 0;
  text-align: left;
}

.sec2_wrap .txt_wrap{
  min-width: 0;
}

@media (max-width: 767px){
  .rinen_copy span{
    font-size: 1.8rem;
  }

  .sec2_wrap{
    padding: 20px;
    border-radius: 10px;
  }
  .sec2_wrap .in{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sec2_wrap h2{
    font-size: 2.4rem;
  }

}

.voice_item{
  padding: 40px;
  background: #fff;
  border-radius: 30px;
}

.voice_item + .voice_item{
  margin-top: 40px;
}

.voice_item .wp-block-image{
  margin: 0;
}

.voice_item h2.wp-block-heading{
  margin: 0 0 15px 0;
  display: inline-block;
  padding: 0 10px;
  font-size: 1.6rem;
  background: #eee;
}

.voice_item h3.wp-block-heading{
  margin: 20px 0 10px 0;
  font-size: 1.8rem;
}

.voice_item h2.wp-block-heading + h3.wp-block-heading{
  margin-top: 0;
}

@media (max-width: 767px){
  .voice_item{
    padding: 30px 20px;
    border-radius: 10px;
  }
  .voice_item + .voice_item{
    margin-top: 30px;
  }
}

.arrow_link a{
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  font-weight: normal;
  text-decoration: none;
  border-bottom: 1px solid var(--color-red);
}

.arrow_link a:hover{
  color: var(--color-red);
}

.arrow_link a::before{
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url(../img/icon_arrow.svg) no-repeat center center / 18px auto;
  background-color: var(--color-red);
}

ul.ml40{
  margin-left: 40px;
}

@media (max-width: 767px){
  ul.ml30{
    margin-left: 20px;
  }
}
