@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Noto+Sans+JP:wght@400;500;600&display=swap');
html {
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

body {
  transition-duration: 0.5s;
  transition: all 1s ease-out;
  color: #323232;
  background-color: #FAFAFA;
  width: 100%;
}

h1, h2, h3 {
  line-height: 1.65;
  color: #323232;
  letter-spacing: 0.02em;
  font-weight: 600;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 2.1rem;
}

p {
  font-size: 1.5rem;
  font-weight: 400;
}

@media screen and (min-width: 769px) {
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 2.8rem;
  }
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #323232;
}

div.hide {
  position: absolute;
  bottom: -100%;
}

::placeholder {
  color: rgba(255, 255, 255, .7);
  font-size: 1.8rem;
}

input {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0);
}

:focus {
  outline: none;
}

::selection {
  background-color: #F86D65;
}

article {
  display: block;
  width: 100%;
}

.headline {
  position: relative;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

.headline span,
.headline span.headline {
  display: inline-block;
  padding: 14px 0;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  border-bottom: 1px solid #C8C8C8;
}


.headline span::before,
.headline span::after,
.headline span.headline::before,
.headline span.headline::after 

{
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 1px;
  height: 16px;
  background: #c6c6c6;
  /* バツ印の色 */
  cursor: pointer;
}


.headline span::before,
.headline span.headline::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.headline span::after,
.headline span.headline::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.for .headline span {
  border-bottom: none;
}

body.for .headline span.headline {
  border-bottom: 1px solid #C8C8C8;
}


body.for .headline span::before,
body.for .headline span::after {
display:none;
}


body.for .headline span.headline::before,
body.for .headline span.headline::after {
display: block;
}


/*


*/


header {
  width: 100%;
  position: absolute;
  z-index: 3;
}

header.fixed {
  position: fixed;
  top: 0;
}




  body.for header {
  width: 100%;
  position: absolute;
  z-index: 3;
  display:none;
}

  body.for header.fixed {
  position: fixed;
  top: 0;
  display:block;
}

  body.for header.fixed div.mask_bgcolor{
display: none;
}



header nav {
  top: 0;
  right: -100%;
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  background: rgb(250, 250, 250);
}

header nav div.logo {
  position: relative;
  padding-top: 90px;
  padding-left: 30px;
}

header nav div.logo img {
  width: 175px;
  height: auto;
}

header nav ul {
  position: relative;
  display: block;
  padding-top: 40px;
  padding-left: 30px;
}

header nav ul li {
  display: block;
  padding-bottom: 15px;
}

header nav ul li a {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #323232;
  font-weight: 600;/*font-weight: 500;*/
}

header nav .mascot {
  position: absolute;
  bottom: 75px;
  right: 44px;
}

header nav .mascot img {
  width: 126px;
  height: auto;
}



div.over {
  display: none;
}

header nav.active {
  display: block;
}

.menu {
  padding-right: 20px;
}

nav .menu {
  position: absolute;
  top: 15px;
  right: 0;
  padding-right: 13px;
  z-index: 1;
}

.menu-trigger {
  position: relative;
  width: 30px;
  height: 13px;
  display: block;
}


/*trigger*/

.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 30px;
  height: 13px;
}

.menu-trigger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #323232;
  border-radius: 0px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 6px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}


/*trigger_move*/

.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 .75s forwards;
  animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(6px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(6px) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.menu-trigger span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 .75s forwards;
  animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-6px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar02 {
  0% {
    transform: translateY(-6px) rotate(-46deg);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.menu-trigger.active span {
  width: 16px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .75s forwards;
  animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(6px) rotate(45deg);
  }
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .75s forwards;
  animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-6px) rotate(-45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(-6px) rotate(-45deg);
  }
}

div.gheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  background-color: #fff;
  position: relative;
  height: 50px;
}

body.for div.gheader {
  background-color: transparent;
}

div.gheader h1 {
  padding: 17px;
}

div.gheader h1 img {
  height: 16px;
  width: auto;
}


/*header_end*/


/* ---footer------------------------------------- */

footer {
  background-color: #FFFFFF;
  padding: 0 6%;
  padding-top: 0;
  padding-bottom: 30px;
  text-align: left;
  position: relative;
  margin: 0 auto;
}

footer div.logo {
  position: relative;
  padding-top: 60px;
  padding-left: 0;
  padding-bottom: 40px;
}

footer div.logo img {
  width: 175px;
  height: auto;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer ul li {
  font-size: 13px;
  line-height: 27px;
  display: block;
  padding-bottom: 15px;
}

footer ul li a {
  font-size: 13px;
  line-height: 27px;
  color: #323232;
}

footer div.ft2 ul {
  padding-top: 35px;
}

footer small {
  font-size: 10px;
  line-height: 12px;
}


/* ---footer_end------------------------------------- */


/*Main*/

body.top main {
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
  width: 100%;
  height: calc(100vh - 97px);
  overflow: hidden;
}

body.top.list main {
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 50px);
}

body.top main .ttl {
    position: absolute;
    width: 100%;
    top: 50px;
    z-index:2;
}


  body.top main .ttl img{
    width: 325px;
    height: auto;
    position: relative;
    margin:0 auto;
    display: block;
}

body.top main .lead {
    width: 100%;
    max-width: 325px;
    position: relative;
    padding-top: 22px;
    display: block;
   margin:0 auto;
}
body.top main .lead h2 {
position: relative;
font-size: 30px;
line-height: 45px;
padding-bottom: 19px;
}

body.top main .lead p {
     position: relative;
font-size: 14px;
line-height: 27px;
}

body.top main .circle.bg_yellow {
    position: absolute;
    top: -55px;
    left: -63px;
    right: auto;
    width: 325px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

body.top main .circle.bg_red {
    position: absolute;
    top: auto;
    bottom: 72px;
    left: 22px;
    width: 127px;
    aspect-ratio: 1/1;
    border-radius: 50%;
  animation: fuwafuwa 3s infinite;
}

body.top main .circle.bg_green {
    position: absolute;
    top: 272px;
    left: auto;
    right: -75px;
    width: 205px;
    aspect-ratio: 1/1;
    border-radius: 50%;
  animation: fuwafuwa 3.5s infinite;
}

body.top main .mascot {
    position: absolute;
    width: 270px;
    bottom: 35px;
    left: calc(50% - 135px);
}



/*Section Anime*/
div.section_anime {
position: relative;
padding-top: 30px;
width: 100%;
}

div.section_anime .mascot{
width: 122px;
top: 0;
left: auto;
right: 25px;
position: absolute;
z-index:1;
}

div.section_anime.bg_green{
padding-top: 70px;
}

div.section_anime.bg_green .mascot{
width: 115px;
top: 0;
left: 25px;
position: absolute;
z-index:1;
}

/*Section*/

  body.top section {
padding-top: 60px;
padding-left: 7%;
padding-right: 7%;
margin: 0 auto;
}

  body.for.hr section.company_info *{
color: #fff;
}


  body.for div.headline section {
padding:0;

}


body.top section div.for.business {
  background-color: #96F4E7;
  padding: 50px 20px;
}
body.top section div.for.hr {
  background-color: #FD8168;
  padding: 50px 20px;
}
body.top section div.for.public {
  background-color: #E7FF64;
  padding: 50px 20px;
}

body.for div.headline section div.for {
  padding: 0px ;
min-height: 900px;
}
/*
body.for div.headline section div.for.padding {
padding-top: 46px;
}*/

body.top section div.for.hr *{
  color: #fff;
}



body.for.hr section div.for.hr *{
    color: #323232;
}

body.for.hr section div.for.hr div.ft *{
  color: #fff;
}





body.top section div.for {
margin-bottom: 40px;
border-radius: 20px;
}

body.top.for section div.for {
margin-bottom: 0;
}



body.for div.headline section div.for {
border-radius: 0;
}

body.top section div.for div.hd {
border-bottom: 1px solid #fff;
padding: 0px 20px;
padding-bottom:25px;
}




body.for div.headline section div.hd {
padding: 0;
border-bottom: none;
}

body.for div.headline section div.for.padding  div.hd {
padding-top: 46px;
}



body.top section div.for div.hd strong{
font-weight: 600;/*font-weight: 500;*/
font-size: 14px;
line-height: 22px;
text-align:center;
display:block;
}


  body.for div.headline section div.for div.hd strong{
background-color: #fff;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    margin-top: -1px;
    margin-bottom: -1px;
    padding: 20px 0;
font-size: 16px;
line-height: 24px;
}



body.top section div.for h2 {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: flex-start;
}

  body.for div.headline section div.for h2 {
    padding-top:45px;
background-color: #fff;
}


  body.for div.headline section div.for.padding h2 {
    padding-top:90px;
}


body.top section div.for h2 span{
display:block;
padding: 9px 0;
}

body.top section div.for h2 span img{
height: 35px;
width: auto;
}

body.top.for section div.for h2 span img{
margin:0 auto;
height: 35px;
width: auto;
}

body.top section div.for div.ft {

padding-top: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: flex-start;
}



  body.for div.headline section div.for div.ft {
  padding: 20px 20px 0px 20px;
}

body.top section div.for div.ft div.txt{
width: 100%;
}
body.top section div.for div.ft div.mascot{
padding-top: 30px;
width: 100%;
text-align: center;
}

body.for section div.for div.ft div.mascot {
padding-top: 0;
width: 100%;
    margin: 0 auto;
    text-align: center;
}

body.for section div.for div.ft div.mascot img{
width: 207px;
height: auto;
margin:0 auto;
}


body.top section div.for div.ft div.txt h3{
  font-size: 25px;
  line-height: 37px;
}


body.top.for section div.for div.ft div.txt h3{
  font-size: 30px;
  line-height: 45px;
}

body.top section div.for div.ft div.txt p{
font-size: 14px;
  line-height: 27px;
display:block;
padding-top: 21px;
}

body.top.for section div.for div.ft div.txt p{
font-size: 14px;
  line-height: 27px;
display:block;
padding-top: 21px;
}

body.for .headline section div.link {
    padding: 50px 0 30px 0;
    display: flex;
    padding-left: 7%;
    padding-right: 7%;
    align-content: stretch;
    flex-direction: column;
    justify-content: space-between;
}
body.for .headline section div.link a {
    display: block;
    width: 200px;
    background-color: #2EC4DE;
    color: #fff;
    font-size: 14px;
    font-weight: 600;/*font-weight: 500;*/

    border-radius: 25px;
    padding: 12.5px 0;
    text-align: center;
    margin:0 auto;
    margin-bottom: 20px;
}

body.for.hr section div.for.hr div.ft div.link a {
    background-color: #FFC400;
    color: #323232;
}


body.for.public section div.for.public div.ft div.link a {
    background-color: #89D027;
    color: #fff;
}






body.top section div.for div.ft div.txt p.link{
font-size: 16px;
  line-height: 27px;
padding-top: 29px;
text-decoration: underline;
}


body.top section div.for.business .mascot img{
width: 237px;
height: auto;
margin: 0 auto;
}

body.for.business section div.for.business div.ft div.mascot img{
width: 277px;
margin:40px auto;
}

body.for.hr section div.for.hr div.ft div.mascot img{
width: 207px;
margin:40px auto;
}

body.for.public section div.for.public div.ft div.mascot img{
width: 261px;
margin:20px auto 40px;
}





body.top section div.for.hr .mascot img{
width: 177px;
height: auto;
margin: 0 auto;

}
body.top section div.for.public .mascot img{
width: 223px;
height: auto;
margin: 0 auto;

}

body.top section.features {

  background-color: #96F4E7;
padding-top: 60px;
padding-left: 0;
padding-right: 0;
margin: 0 auto;
}

body.top section.features h2{
margin:0 auto;
text-align: center;
font-size: 30px;
line-height: 57px;
padding-bottom: 54px;
}

body.top section.features div.box{
padding: 0;
    width: 100%;
    display: flex;
    background: url(../img/circle3sp.png) center center no-repeat;
    background-size: cover;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    align-content: flex-start;
    min-height: calc( 370px * 3);
}

body.top section.features div.box div.feature{
width: 76%;
margin: 0 auto;
text-align:left;
min-height: 200px;
padding: 0;
}

body.top section.features div.box div.feature h3{
font-size: 22px;
line-height: 33px;
padding-bottom: 25px;
}

body.top section.features div.box div.feature p{
display:block;
text-align: left;
font-size: 14px;
line-height: 27px;
}


body.top section.features div.box div.feature img.nmbr{
height: 49px;
width: auto;
margin-bottom: 30px;
}

body.top section.features h3.ttl {
padding-top: 80px;
text-align: center;
font-size: 22px;
line-height: 38px;
padding-bottom: 18px;
}

body.top section.features div.bnr_list {
width: 65%;
margin:0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
padding-bottom: 18px;
}

body.top section.features div.bnr_list img.bnr{
width: 90px;
height: auto;
padding: 28px 0;
}

/*  body.top section.case */
body.top section.column.case {
padding-top: 60px;
padding-left: 7%;
padding-right: 7%;
background-color:#fafafa;
}

body.top section.column.case h2 {
  padding-top: 40px;
  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 30px;
  line-height: 1;
  margin: 0 auto;
padding-bottom: 46px;
}

body.top section.column.case div.column {
width: 100%;
    max-width: 1183px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: center;
    padding-top: 0;
    padding-bottom: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}


body.top section.column.case div.column div.item {
    position: relative;
    margin:0;
    width: 325px;
    min-width: 325px;
    padding: 0;
    margin-right: 0;
    border-radius: 20px;
    padding-top: 0;
  background-color: transparent;}


body.for section.column.case div.column div.item div.item_area{
  background-color: transparent;
}

body.for section.column.case div.column div.item time{
font-size: 14px;
line-height: 40px;
}
body.for section.column.case div.column div.item h3{
font-size: 22px;
line-height: 33px;
}
body.for section.column.case div.column div.item p{
font-size: 14px;
line-height: 27px;
color: #323232!important;
}




body.top section.column.case div.column div.item:nth-child(3) {
    margin-right: 0;
}


body.top section.column.case div.column div.item div.img {
width: 100%;
height: 216px;
position:relative;
}


body.top section.column.case div.column div.item div.img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
border-radius: 20px;
}

/*  body.top section.column */

body.top.for section.column {
    padding-top: 0;
background-color:#fafafa;
}

body.for section.column.case {
background-color:#fff;
}



/*  body.top section.column */

body.top section.column {
padding-top: 60px;
padding-left: 0;
padding-right: 0;
}

body.top section.column h2 {
  padding-top: 40px;
  text-align: center;
    font-weight: 600;
  font-size: 30px;
  line-height: 1;
  margin: 0 auto;
padding-bottom: 46px;
}

body.top section.column h2 span {
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
    font-weight: 600;/*font-weight: 500;*/
}

body.top section.column h2 span.txt {
 padding: 0 7%;
  padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
  letter-spacing: 0;
  display: block;
margin:0 auto;
 text-align: left;
}

body.top section.column div.column {
  width: 100%;
  max-width: 1183px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: stretch;
  padding-top: 55px;
  padding-bottom: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body.for section.column div.column {
  padding-top: 0;
}


body.top section.column div.column::-webkit-scrollbar{
  display: none;
}

body.top section.column div.column div.item {
 position: relative;
  margin-left: 20px;
  width: 270px;
  min-width: 270px;
  padding: 20px;
  border-radius: 20px;
  padding-top: 288px;
  background-color: #fff;
}

body.top section.column div.column div.item time{
display: block;
padding-top: 22px;
font-size: 11px;
}

body.for section.column.case div.column div.item time{
padding-top: 20px;
}

body.for section.column.case div.column div.item h3{
padding: 10px 0 20px 0;
font-size: 22px;
line-height: 33px;
}

body.for section.column.case div.column div.item p{
padding: 0 0 72px 0;
}

body.top section.column div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 288px;
     border-radius: 20px 20px 0 0;
}

span.ctg {
    position: absolute;
    bottom:0;
    left:0;
    z-index:1;
font-size: 12px;
font-weight :500;
line-height: 1;
padding: 9px 0;
text-align:center;
     border-radius: 5px 5px 0 0;
width: 100px;
}

body.top section.column div.column div.item div.img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
border-radius: 20px 20px 0 0;
}


body.top section.column div.column div.item04 {
  width: 1px;
  min-width: 1px;
  margin: 0;
  background-color: transparent;
}

body.for section.column.case div.column div.item div.item_area {
  height: auto;
}

body.top section.column div.column div.item div.item_area {
  padding-top: 10px;
  /*height: 75px*/;
  background-color: #fff;
  overflow:hidden;
}

body.top section.column div.column div.item p {
  display: block;
  text-align: left;
    font-size: 16px;
    line-height: 24px;
  font-weight: 600;
}

  body.for.business section.column div.column div.item p {
color:#16C9AF;
  font-size: 13px;
  line-height: 23px;
    font-weight: 600;/*font-weight: 500;*/
}

  body.for.hr section.column div.column div.item p {
color:#F25B3B;
  font-size: 13px;
  line-height: 23px;
    font-weight: 600;/*font-weight: 500;*/
}

  body.for.public section.column div.column div.item p {
color:#89D027;
  font-size: 13px;
  line-height: 23px;
    font-weight: 600;/*font-weight: 500;*/
}


  body.top section.column div.more {
padding: 50px;
text-align: center;
}

  body.top section.column div.more a.more{
display: block;
text-align:center;
padding: 18px 0;
width: 200px;
font-size: 14px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#fff;
background-color: #FD8168;
margin:0 auto;
border-radius: 30px;
}

  body.for.business section.column div.more a.more{
background-color: #96F4E7;
color:#323232;
}

  body.for.hr section.column div.more a.more{
background-color: #FD8870;
color:#fff;
}

  body.for.public section.column div.more a.more{
background-color: #E7FF64;
color:#323232;
}









<!-- company_info -->
body.top section.company_info {
padding-top: 60px;
padding-left: 7%;
padding-right: 7%;
padding-bottom: 70px;
margin: 0 auto;
}

body.top section.company_info h2{
    padding-top: 0;
    text-align: center;
    font-weight: 600;
font-size: 20px;
line-height: 29px;
padding-bottom: 55px;
letter-spacing: 0.05em;
}

body.top section.company_info div.info {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
padding-bottom: 70px;
}

  body.top section.company_info div.info div.img{
width: 100%;
}

  body.top section.company_info div.info div.img img{
border-radius: 20px;
}

  body.top section.company_info div.info div.txt{
width: 100%;
padding-top:30px;
}

  body.top section.company_info div.info div.txt p{
  font-size: 14px;
  line-height: 27px;
}
  body.top section.company_info div.info div.txt a.link{
margin-top: 40px;
width: 100%;
font-size: 14px;
line-height: 1;
display: block;
text-align:center;
padding: 20.5px 0;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
border-radius: 30px;
}

/*  body.terms */

  body.terms main {
position: relative;
margin-top :60px;
height: 150px;
}

  body.terms main h1{
padding-top: 60px;
font-size: 30px;
font-weight: 600;/*font-weight: 500;*/
letter-spacing: 0.05em;
text-align: center;
}

  body.terms section {
padding-left: 7%;
padding-right: 7%;
padding-bottom: 70px;
border-bottom: 1px solid #C8C8C8;
}
  body.terms section p{
font-size: 14px;
line-height: 27px;
text-align: left;
}

/*  body.contact */

  body.contact {
background-color: #fff;
}

  body.contact main {
position: relative;
margin-top :60px;
height: 150px;
}

  body.contact main h1{
padding-top: 60px;
font-size: 30px;
font-weight: 600;/*font-weight: 500;*/
letter-spacing: 0.05em;
text-align: center;
}

  body.contact section {
padding-left: 7%;
padding-right: 7%;
padding-bottom: 70px;
border-bottom: 1px solid #C8C8C8;
}
  body.contact section p{
font-size: 14px;
line-height: 27px;
text-align: left;
  color: #323232;
display:block;
padding: 0 20px 20px 20px;
}


section.contact {
  display: block;
  max-width: 650px;
  min-height: 650px;
  color: #323232;
  margin: 0 auto;
  font-size: 13px;
  padding: 40px 0 100px 0;
}

div.contact {
  font-size: 13px;
  position: relative;
}

p.contact_ld {
  padding-bottom: 4em;
  color: #323232;
}

div.box {
display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-between;
}

div.contact div.area {
  margin:0;
  padding:0;
  padding-top: 1.5em;
  width: 100%;
  
}

div.contact.form {}

div.contact.form p {
  color: #323232;
  padding-bottom: .5em;
  font-size: 14px;
}

.textbox {
  width: 100%;
  /* display: block; */
  width: 100%;
  padding: 13.5px;
  border: none;
  background-color: #fff;
  font-size: 13px;
  color: #323232;
  border-radius: 4px;
  border: 1px solid #C8C8C8!important;
}

div.textarea {
  padding-top: 1.5em;
  width: 100%;
}

div.textarea p {
  padding-bottom: 0.5em;
  font-size: 13px;
  color: #323232;
}

textarea.textarea {
  display: block;
  width: 100%;
  padding: 13.5px;
  border: none;
  background-color: #fff;
  font-size: 13px;
  color: #323232;
  border-radius: 4px;
  /* resize: vertical; */
  resize: none;
  height: 370px;
  border: 1px solid #C8C8C8!important;
}

select {
  position: relative;
  height: 4.2em;
  -webkit-appearance: none;
  appearance: none;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
  color: #000;
  border: none;
  border-radius: 4px;
  width: 100%;
  padding: 13.5px;
  border: none;
  background-color: #fff;
  font-size: 13px;
  border: 1px solid #C8C8C8!important;
}

div.check {
  padding: 40px 0;
  text-align: center;
  width: 100%;
  color: #323232;
  font-size: 12px;
  letter-spacing: 0.02em;
}

div.check a {
  color: #323232;
  border-bottom: 1px solid #323232;
}

div.submit {
  text-align: center;
}

input.submit {
  width: 100%;
  max-width: 200px;
  font-family: cantiga, dnp-shuei-gothic-gin-std, sans-serif;
  color: #fff;
  background-color: #2EC4DE;
  padding: 18px 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  border-radius: 25px;
  border: none;
}

div.select {
  position: relative;
}

div.select:after {
  content: "";
  position: absolute;
  border-right: 1px solid #323232;
  width: 10px;
  height: 10px;
  bottom: 25px;
  right: 18px;
  rotate: 135deg;
  border-top: 1px solid #323232;
}

div.select p {
  position: relative;
  display: block;
}






/*  body.faq */


  body.faq {
background-color: #fff;
}

  body.faq main {
position: relative;
margin-top :60px;
height: 150px;
}

  body.faq main h1{
padding-top: 60px;
font-size: 30px;
font-weight: 600;/*font-weight: 500;*/
letter-spacing: 0.05em;
text-align: center;
}

  body.faq section {
padding-left: 7%;
padding-right: 7%;
padding-bottom: 70px;
border-bottom: 1px solid #C8C8C8;
}

  body.faq div.faq_menu {

display: flex;
padding-bottom: 30px;
padding-left: 7%;
padding-right: 7%;
    flex-wrap: nowrap;
    justify-content: space-evenly;
margin: 14px auto;
}

  body.faq div.faq_menu div.selected{
font-weight: bold;
}

body.faq div.faq {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

body.faq div.faq.q {
padding-top:10px;
}

body.faq div.faq.q:first-of-type {
border:none;
}

body.faq div.faq.a {
border-bottom: 1px solid #C8C8C8;
padding-bottom:10px;
}

body.faq div.faq.a:last-of-type {
border:none;
}





body.faq div.faq div.ttl{
padding:0;
width: 50px;
border-radius: 25px;
background-color:#B4B4B4;
color:#fff;
font-size: 23px;
line-height: 1;
padding: 13.5px 0;
text-align:center;
margin: 10px 0;
}

body.faq div.faq.q div.ttl{
background-color:#FD8168;
}
body.faq div.faq.a div.ttl{}

  body.faq section p{
font-size: 14px;
line-height: 27px;
text-align: left;
}

  body.faq section h3{
font-size: 17px;
line-height: 27px;
color:#F25B3B;
width: calc(100% - 70px);
padding: 20px 0 20px 20px;
}

  body.faq section h4{
font-size: 14px;
line-height: 27px;
color:#323232;
width: calc(100% - 70px);
padding: 20px 0 20px 20px;
}

/*  body.column section.column */

body.column {
background-color:#fff;
}



body.column section {
padding-top: 80px;
padding-left: 7%;
padding-right: 7%;
}

body.column section div.entry p{
font-size: 14px;
line-height: 27px;
margin-bottom: 60px;
display: block;
}

body.column section div.entry strong{
font-size: 22px;
line-height: 33px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 35px;
display: block;
}

body.column section div.entry time{
font-size: 12px;
line-height: 36px;
}

body.column section div.entry h2{
font-size: 25px;
line-height: 37px;
}

body.column section div.entry div.tags {
padding: 22px 0;
}

body.column section div.entry div.tags a{
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
}

body.column section div.entry div.tags a.tag{
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
border-radius: 4px;
padding:4px 8px;
margin-right: 10px;
font-weight: 600;/*font-weight: 500;*/
}

body.column section div.entry div.hdr {
width: 100%;
height: auto;
aspect-ratio: 6/4;
overflow:hidden;
position:relative;
margin :20px 0 50px 0;
border-radius: 20px;
}

body.column section div.entry div.hdr img{
width:100%;
height: 100%;
position:absolute;
object-fit: cover;
}


  body.column section div.more a.more{
display: block;
text-align:center;
padding: 18px 0;
width: 200px;
font-size: 14px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px;
margin-bottom: 70px;
}



body.column section.column {
padding-top: 60px;
padding-left: 0;
padding-right: 0;
background-color:#FAFAFA;
}

body.column section.column h2 {
  padding-top: 40px;
  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 30px;
  line-height: 1;
  margin: 0 auto;
padding-bottom: 46px;
}

body.column section.column h2 span {
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
}

body.column section.column h2 span.txt {
 padding: 0 7%;
  padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
  letter-spacing: 0;
  display: block;
margin:0 auto;
 text-align: center;
}

body.column section.column div.column {
  width: 100%;
  max-width: 1183px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: stretch;
  padding-top: 55px;
  padding-bottom: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}


body.column section.column div.column::-webkit-scrollbar{
  display: none;
}

body.column section.column div.column div.item {
 position: relative;
  margin-left: 20px;
  width: 270px;
  min-width: 270px;
  padding: 20px;
  border-radius: 20px;
  padding-top: 180px;
  background-color: transparent;
}

body.column section.column div.column div.item time{
display: block;
padding-top: 22px;
font-size: 11px;
font-weight: 600;
}


body.column section.column div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
     border-radius: 20px 20px 0 0;
}

span.ctg {
    position: absolute;
    bottom:0;
    left:0;
    z-index:1;
font-size: 12px;
font-weight :500;
line-height: 1;
padding: 9px 0;
text-align:center;
     border-radius: 5px 5px 0 0;
width: 100px;
}

body.column section.column div.column div.item div.img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
     border-radius: 20px;
}


body.column section.column div.column div.item04 {
  width: 1px;
  min-width: 1px;
  margin: 0;
  background-color: transparent;
}



body.column section.column div.column div.item div.item_area {
  padding-top: 10px;
  /*height: 75px*/;
  background-color: transparent;
  overflow:hidden;
}

body.column section.column div.column div.item p {
  display: block;
  text-align: left;
  font-size: 16px;
  line-height: 25px;
font-weight: 600;
letter-spacing: 0.05em;
}

  body.column section.column div.more {
padding: 50px;
text-align: center;
}

  body.column section.column div.more a.more{
display: block;
text-align:center;
padding: 18px 0;
width: 200px;
font-size: 14px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px;
}









/*  body.column.list section.column */




body.column.list section.column {
padding-top: 60px;
padding-left: 0;
padding-right: 0;
}


body.column.list section.column div.menu ul{
padding-left: 10%;
padding-right: 10%;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}


body.column.list section.column div.menu ul li{
display: inline-block;
width: 33%;
text-align: center;
font-size: 16px;
}


body.column.list section.column div.menu ul li:nth-child(1),
body.column.list section.column div.menu ul li:nth-child(2) {
width: 50%;
text-align:left;
}

body.column.list section.column div.menu ul li:nth-child(1) {
width: clac(50% - 20px);
padding-right: 20px;
text-align:right;
}




body.column.list section.column h2 {
  padding-top: 40px;
  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 30px;
  line-height: 1;
  margin: 0 auto;
padding-bottom: 0;
}

body.column.list section.column h2 span {
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
}

body.column.list section.column h2 span.txt {
 padding: 0 7%;
  padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
  letter-spacing: 0;
  dispaly: block;
margin:0 auto;
 text-align: left;
}

body.column.list section.column div.column {
width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 55px;
    padding-bottom: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

}


body.column.list section.column div.column::-webkit-scrollbar{
  display: none;
}

body.column.list section.column div.column div.item {
 position: relative;
  margin-left: 0;
  width: 86%;
  min-width: 325px;
  padding: 20px;
  border-radius: 20px;
  padding-top: 288px;
  background-color: #fff;
  margin-bottom: 60px;
}

body.column.list section.column div.column div.item time{
display: block;
padding-top: 22px;
font-size: 11px;
}


body.column.list section.column div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 288px;
     border-radius: 20px 20px 0 0;
}

span.ctg {
    position: absolute;
    bottom:0;
    left:0;
    z-index:1;
font-size: 12px;
font-weight :500;
line-height: 1;
padding: 9px 0;
text-align:center;
     border-radius: 5px 5px 0 0;
width: 100px;
}

body.column.list section.column div.column div.item div.img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
border-radius: 20px 20px 0 0;
}


body.column.list section.column div.column div.item04 {
  width: 1px;
  min-width: 1px;
  margin: 0;
  background-color: transparent;
}



body.column.list section.column div.column div.item div.item_area {
  padding-top: 10px;
  /*height: 75px*/;
  background-color: #fff;
  overflow:hidden;
}

body.column.list section.column div.column div.item p {
  display: block;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

  body.column.list section.column div.more {
padding: 0 0 50px 0;
text-align: center;
}


  body.column.list section.column div.more div.breadcrumb{
display: flex;
    margin: 0 auto;
    width: 150px;
    font-size: 16px;
    line-height: 37px;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

  body.column.list section.column div.more a.more{
display: block;
text-align:center;
padding: 18px 0;
width: 200px;
font-size: 14px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#fff;
background-color: #FD8168;
margin:0 auto;
border-radius: 30px;
}



/*  body.search.list section.column */

body.search.list section.column {
padding-top: 60px;
padding-left: 0;
padding-right: 0;
}


body.search.list section.column div.menu ul{
padding-left: 10%;
padding-right: 10%;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}


body.search.list section.column div.menu ul li{
display: inline-block;
width: 33%;
text-align: center;
}


body.search.list section.column div.menu ul li:nth-child(1),
body.search.list section.column div.menu ul li:nth-child(2) {
width: 50%;
}




body.search.list section.column h2 {
  padding-top: 40px;
  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 22px;
  line-height: 37px;
  margin: 0 auto;
padding-bottom: 0;
}

body.search.list section.column h2 span {
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
}

body.search.list section.column h2 span.txt {
 padding: 0 7%;
  padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
  letter-spacing: 0;
  dispaly: block;
margin:0 auto;
 text-align: left;
}

  body.search.list section.column p {
    display: block;
 text-align: center;
    font-size: 14px;
    line-height: 27px;
    padding-top: 0;
}


body.search.list section.column div.column {
width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 60px;
    padding-bottom: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

}


body.search.list section.column div.column::-webkit-scrollbar{
  display: none;
}

body.search.list section.column div.column div.item {
 position: relative;
  margin-left: 0;
  width: 86%;
  min-width: 325px;
  padding: 0;
  border-radius: 20px;
  padding-top: 216px;
  background-color: transparent;
  margin-bottom: 52px;
}

body.search.list section.column div.column div.item time{
display: block;
padding-top: 30px;
padding-bottom: 30px;
font-size: 16px;
font-weight: 600;/*font-weight: 500;*/
}



body.search.list section.column div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 216px;
     border-radius: 20px;
}

span.ctg {
    position: absolute;
    bottom:0;
    left:0;
    z-index:1;
font-size: 12px;
font-weight :500;
line-height: 1;
padding: 9px 0;
text-align:center;
     border-radius: 5px 5px 0 0;
width: 100px;
}

body.search.list section.column div.column div.item div.img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
border-radius: 20px;
}


body.search.list section.column div.column div.item04 {
  width: 1px;
  min-width: 1px;
  margin: 0;
  background-color: transparent;
}



body.search.list section.column div.column div.item div.item_area {
  padding-top: 0;
  /*height: 75px*/;
  background-color: transparent;
  overflow:hidden;
}

body.search.list section.column div.column div.item p {
  display: block;
  text-align: left;
  font-size: 13px;
  line-height: 23px;
}

  body.search.list section.column div.column div.item h3 {
font-size: 22px;
line-height: 33px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 21px;
display: block;
color:#16C9AF;
}

  body.search.list section.column div.column div.item div.tags {
padding: 18px 0;
}

  body.search.list section.column div.column div.item div.tags span{
display: inline-block;
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
border-radius: 4px;
padding:0 9px;
margin-right: 10px;
margin-bottom: 10px;
font-weight: 600;/*font-weight: 500;*/
white-space: nowrap;
}



  body.search.list section.column div.more {
padding: 0 0 50px 0;
text-align: center;
}


  body.search.list section.column div.more div.breadcrumb{
display: flex;
    margin: 0 auto;
    width: 150px;
    font-size: 16px;
    line-height: 37px;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

  body.search.list section.column div.more a.more{
display: block;
text-align:center;
padding: 18px 0;
width: 200px;
font-size: 14px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#fff;
background-color: #FD8168;
margin:0 auto;
border-radius: 30px;
}

/*  body.entry section.column */

body.entry {
background-color:#fff;
}



body.entry section {
padding-top: 30px;
padding-left: 7%;
padding-right: 7%;
}

body.entry section div.entry p{
font-size: 14px;
line-height: 27px;
margin-bottom: 60px;
display: block;
}

body.entry section div.entry strong{
font-size: 22px;
line-height: 33px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 35px;
display: block;
}

body.entry section div.entry time{
font-size: 12px;
line-height: 36px;
}

body.entry section div.entry h2{
font-size: 27px;
line-height: 40px;
color: #16C9AF;
padding-top: 40px;
padding-bottom: 50px;
}

body.entry.hr section div.entry h2{
color: #F25B3B;
}

body.entry.public section div.entry h2{
color: #B1D008;
}



body.entry section div.entry div.tags {
    padding: 22px 0;
    position: absolute;
    top: -90px;
}


body.entry section div.entry div.tags a.tag{
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
border-radius: 4px;
padding:0 8px;
margin-right: 10px;
margin-bottom: 10px;
font-weight: 600;/*font-weight: 500;*/
display: inline-block;
}


body.entry.hr section div.entry div.tags a.tag{
background-color:#FFBEB1;
}

body.entry.public section div.entry div.tags a.tag{
background-color:#F0FF9B;
}


body.entry section div.entry div.tags a.ctgry{
font-size: 12px;
line-height: 26px;
background-color:#fff;
border-radius: 4px;
padding:0;
margin-bottom: 10px;
font-weight: 600;/*font-weight: 500;*/
display: block;
text-align: center;
width: 100px;
}




body.entry section div.entry div.hdr {
width: 100%;
height: auto;
aspect-ratio: 6/4;
overflow:hidden;
position:relative;
margin :20px 0 50px 0;
border-radius: 20px;
}


body.entry section div.entry div.hdr.movie {
  width: 100%;
  aspect-ratio: 16 / 9;
}

body.entry section div.entry div.hdr.movie iframe {
  width: 100%;
  height: 100%;
}


body.entry section div.entry div.hdr img{
width:100%;
height: 100%;
position:absolute;
object-fit: cover;
}


body.entry section div.entry div.hdr_box {
position: relative;
}





  body.entry section div.more a.more{
display: block;
text-align:center;
padding: 18px 0;
width: 200px;
font-size: 14px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px;
margin-bottom: 70px;
}

body.entry.hr section div.more a.more{
background-color: #FD8168;
}

/*プログラムの特長*/
body.entry section.feature {
padding: 70px;
padding-left: 7%;
padding-right: 7%;
background-color:#fafafa;
}

body.entry section.feature *{
color:#323232;
}

body.entry section.feature h2 {

  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 30px;
  line-height: 45px;
  margin: 0 auto;
padding-bottom: 50px;

}

body.entry section.feature div.feature {
display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
body.entry section.feature div.feature div {
max-width: 325px;
padding: 125px 45px;
background: url(../img/feature_box.svg) center center no-repeat;
background-size: contain;
min-height: 440px;
}

body.entry.hr section.feature div.feature div {
background: url(../img/feature_hr_box.svg) center center no-repeat;
background-size: contain;
min-height: 440px;
}

body.entry.public section.feature div.feature div {
background: url(../img/feature_public_box.svg) center center no-repeat;
background-size: contain;
min-height: 440px;
}


body.entry section.feature div.feature h3{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:22px;
line-height: 33px;
padding: 0 0 21px 0;
text-align: center;
}

body.entry section.feature div.feature p{
font-size:14px;
line-height: 27px;
}



/*企業メリット*/
body.entry section.advantage {
padding-top: 70px;
padding-left: 7%;
padding-right: 7%;
background-color:#2EC4DE;
}

body.entry.hr section.advantage {
background-color:#FFC400;
}

body.entry.public section.advantage {
background-color:#89D027;
}

body.entry section.advantage *{
color: #fff;
}

body.entry section.advantage h2 {

  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 30px;
  line-height: 45px;
  margin: 0 auto;
padding-bottom: 50px;

}

body.entry section.advantage div.advantage {
display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 70px;
}
body.entry section.advantage div.advantage div {
width: 100%;
}
body.entry section.advantage div.advantage div.txt {
width: 100%;
padding-left: 0%;
}

body.entry section.advantage div.advantage div.txt strong{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:16px;
line-height: 34px;
padding: 30px 0 23px 0;
}

body.entry section.advantage div.advantage div.txt h3{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:22px;
line-height: 33px;
padding: 0 0 21px 0;
}

body.entry section.advantage div.advantage div.txt p{
font-size:14px;
line-height: 27px;
}




body.entry section.advantage div.advantage div.img {
border-radius: 20px;
aspect-ratio: 325/216;
overflow:hidden;
position: relative;
}

body.entry section.advantage div.advantage div.img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  object-fit: cover;
border-radius: 20px;
}

body.entry section.advantage div.advantage2 {
display: flex;
}

body.entry section.advantage div.section_anime .mascot {
    width: 113px;
    top: -60px;
    left: auto;
    right: 0;
    position: absolute;
    z-index: 1;
}

body.entry section.advantage div.voice {

}

body.entry section.advantage div.voice h3{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:16px;
line-height: 34px;
padding: 0 0 20px 0;
}


body.entry section.advantage div.voice_box {
background-color:#fff;
padding:60px 20px 0 20px;
border-radius: 20px;
}

body.entry section.advantage div.voice_box * {
color: #323232;
}


body.entry section.advantage div.voice div.voice_box {
display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

body.entry section.advantage div.voice_box div.voice_ {
width: 100%;
}

body.entry section.advantage div.voice_box div.voice_ div.img {
border-radius: 50%;
width: 160px;
aspect-ratio: 1/1;
overflow:hidden;
position: relative;
margin:0 auto;
}

body.entry section.advantage div.advantage div.img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  object-fit: cover;
}

body.entry section.advantage div.voice_box div.voice_ strong{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:14px;
line-height: 34px;
padding: 30px 0 20px 0;
}

body.entry section.advantage div.voice_box div.voice_ h4{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:19px;
line-height: 28px;
padding: 0 0 21px 0;
}

body.entry section.advantage div.voice_box div.voice_ p{
font-size:14px;
line-height: 27px;
padding: 0 0 60px 0;
}

body.entry section.advantage div.link{

padding:0;
padding: 50px 0 50px 0;
display: flex;
    width: 100%;
    flex-direction: column-reverse;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

body.entry section.advantage div.link a{
display: block;
width: 200px;
background-color: #fff;
color:#323232;
font-size: 16px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 20px;
text-align: center;
border-radius: 25px;
padding: 13px 0;
}





/* body.entry section.column*/

body.entry section.column {
padding-top: 30px;
padding-left: 0;
padding-right: 0;
background-color:transparent;
}


body.entry section.column2 {
padding-top: 30px;
background-color:#fafafa;
}

body.entry section.column h2 {
  padding-top: 40px;
  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 30px;
  line-height: 1;
  margin: 0 auto;
padding-bottom: 50px;
}

body.entry section.column h2 {
  padding-top: 40px;
  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 30px;
  line-height: 1;
  margin: 0 auto;
padding-bottom: 51px;
}

body.entry section.column h2 span {
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
}

body.entry section.column h2 span.txt {
 padding: 0 7%;
  padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
  letter-spacing: 0;
  display: block;
margin:0 auto;
 text-align: center;
}

body.entry section.column div.column {
  width: 100%;
  max-width: 1183px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: stretch;
  padding-top: 0;
  padding-bottom: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body.entry section.column2 div.column {
  padding-top: 0;
}


body.entry section.column div.column::-webkit-scrollbar{
  display: none;
}

body.entry section.column div.column div.item {
 position: relative;
  margin-left: 20px;
  width: 270px;
  min-width: 270px;
  padding: 0;
  border-radius: 20px;
  padding-top: 180px;
  background-color: #fff;
}


body.entry section.column2 div.column div.item {
 position: relative;
  margin-left: 20px;
  width: 270px;
  min-width: 270px;
  padding: 0 20px 30px 20px;
  border-radius: 20px;
  padding-top: 288px;
  background-color: #fff;
}


body.entry section.column div.column div.item time{
display: block;
padding-top: 22px;
font-size: 13px;
font-weight: 600;
}


body.entry section.column2 div.column div.item time{
display: block;
padding-top: 22px;
font-size: 11px;
}


body.entry section.column div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
     border-radius: 20px 20px 0 0;
}


body.entry section.column2 div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 288px;
     border-radius: 20px 20px 0 0;
}

span.ctg {
    position: absolute;
    bottom:0;
    left:0;
    z-index:1;
font-size: 12px;
font-weight :500;
line-height: 1;
padding: 9px 0;
text-align:center;
     border-radius: 5px 5px 0 0;
width: 100px;
}

body.entry section.column div.column div.item div.img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
     border-radius: 20px;
}

body.entry section.column2 div.column div.item div.img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
     border-radius: 20px 20px 0 0;
}


body.entry section.column div.column div.item04 {
  width: 1px;
  min-width: 1px;
  margin: 0;
  background-color: transparent;
}



body.entry section.column div.column div.item div.item_area {
  padding-top: 10px;
  height: auto;
  background-color: transparent;
  overflow:hidden;

}

body.entry section.column div.column div.item p {
  display: block;
  text-align: left;
  font-size: 16px;
  line-height: 25px;
font-weight: 600;
}

body.entry section.column2 div.column div.item p {
  display: block;
  text-align: left;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;/*font-weight: 500;*/
  color: #16C9AF;
}

body.entry.hr section.column2 div.column div.item p {
  color: #F25B3B;
}

body.entry.public section.column2 div.column div.item p {
  color: #89D027;
}


  body.entry section.column div.more {
padding: 50px;
text-align: center;
}

  body.entry section.column div.more a.more{
display: block;
text-align:center;
padding: 18px 0;
width: 200px;
font-size: 14px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px;
}

  body.entry.hr section.column div.more a.more{
background-color: #FD8168;
color:#fff;
}

  body.entry.public section.column div.more a.more{
background-color: #E9FE72;
}

/*  body.for section.program */

body.for section.program {
padding-top: 0;
padding-left: 7%;
padding-right: 7%;
}


body.for section.program div.menu ul{
padding-left: 10%;
padding-right: 10%;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}


body.for section.program div.menu ul li{
display: inline-block;
width: 33%;
text-align: center;
}


body.for section.program div.menu ul li:nth-child(1),
body.for section.program div.menu ul li:nth-child(2) {
width: 50%;
}




body.for section.program h2 {
  padding-top: 40px;
  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 30px;
  line-height: 37px;
  margin: 0 auto;
padding-bottom: 0;
}

body.for section.program h2 span {
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
}

body.for section.program h2 span.txt {
 padding: 0;
  padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
  letter-spacing: 0;
  dispaly: block;
margin:0 auto;
 text-align: left;
}

  body.for section.program p {
    display: block;
 text-align: center;
    font-size: 14px;
    line-height: 27px;
    padding-top: 0;
}


body.for section.program div.program  {
width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 50px;
    padding-bottom: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

}


body.for section.program div.program ::-webkit-scrollbar{
  display: none;
}



  body.for section.program div.program div.item {
position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    padding-bottom: 70px;
    background-color: transparent;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}


body.for section.program div.program div.item div.img{
 position: relative;
  margin-left: 0;
  width: 86%;
  min-width: 325px;
    aspect-ratio: 520/345;
  padding: 0;
  border-radius: 20px;
  background-color: transparent;
  margin-bottom: 0;
}


body.for section.program div.program  div.item div.txt{
  width: 100%;
  margin: 0 auto;
}


body.for section.program div.program  div.item time{
display: block;
padding-top: 30px;
padding-bottom: 30px;
font-size: 16px;
font-weight: 600;/*font-weight: 500;*/
}



body.for section.program div.program  div.item div.img{
    position: relative;

    width: 100%;
    aspect-ratio: 520/345;
     border-radius: 20px;
}

span.ctg {
    position: absolute;
    bottom:0;
    left:0;
    z-index:1;
font-size: 12px;
font-weight :500;
line-height: 1;
padding: 9px 0;
text-align:center;
     border-radius: 5px 5px 0 0;
width: 100px;
}

body.for section.program div.program  div.item div.img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
border-radius: 20px;
}


body.for section.program div.program  div.item04 {
  width: 1px;
  min-width: 1px;
  margin: 0;
  background-color: transparent;
}



body.for section.program div.program  div.item div.item_area {
  padding-top: 0;
  /*height: 75px*/;
  background-color: transparent;
  overflow:hidden;
}

body.for section.program div.program  div.item p {
  display: block;
  text-align: left;
  font-size: 13px;
  line-height: 23px;
}

  body.for section.program div.program  div.item h3 {
font-size: 22px;
line-height: 33px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 21px;
display: block;
color:#16C9AF;
}

  body.for.hr section.program div.program div.item h3 {
color:#F25B3B;
}

  body.for.public section.program div.program div.item h3 {
color:#B1D008;
}


  body.for section.program div.program div.item div.tags {
padding: 18px 0;
}

  body.for section.program div.program div.item div.tags span{
display: inline-block;
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
border-radius: 4px;
padding:0 9px;
margin-right: 10px;
margin-bottom: 10px;
font-weight: 600;/*font-weight: 500;*/
white-space: nowrap;
}

  body.for.hr section.program div.program div.item div.tags span{
background-color:#FFBEB1;
}

  body.for.public section.program div.program div.item div.tags span{
background-color:#F0FF9B;
}


  body.for section.program div.more {
padding: 0 0 50px 0;
text-align: center;
}


  body.for section.program div.more div.breadcrumb{
display: flex;
    margin: 0 auto;
    width: 150px;
    font-size: 16px;
    line-height: 37px;
   justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

  body.for section.program div.more a.more{
display: block;
text-align:center;
padding: 18px 0;
width: 200px;
font-size: 14px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px;
}


body.for.hr section.program div.more a.more {
background-color:#FFBEB1;
}


  body.for.public section.program div.more a.more {
background-color:#F0FF9B;
}





/*YorisoWeLのメリット*/
body.for section.merit {
padding: 70px;
padding-left: 7%;
padding-right: 7%;
background-color:#fafafa;
}


body.for.business section.merit {
background-color:#2EC4DE;
}

body.for.hr section.merit {
background-color:#FFC400;
}

body.for.public section.merit {
background-color:#89D027;
}

body.for section.merit *{
color:#323232;
}


body.for section.merit h2 {

  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 30px;
  line-height: 45px;
  margin: 0 auto;
padding-bottom: 50px;

}
body.for.public section.merit h2 {
color:#fff;
}




body.for section.merit div.merit {
display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
   margin:0 auto;
}
body.for section.merit div.merit div {
   margin:0 auto;
max-width: 325px;
padding: 125px 45px;
background: url(../img/merit_box.svg) center center no-repeat;
background-size: contain;
}



body.for section.merit div.merit h3{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:22px;
line-height: 33px;
padding: 0 0 21px 0;
text-align: center;
}

body.for section.merit div.merit p{
font-size:14px;
line-height: 27px;
}

body.for section.merit .mascot {
    width: 113px;
    top: -60px;
    left: auto;
    right: 0;
    position: absolute;
    z-index: 1;
}

/*  body.list section.program */

body.list main {
position: relative;
}

body.list main div.tags {
    padding: 18px 0;
}

body.list main div.slide_box div.tags {
    padding: 0;
}

body.list main div.tags span{
    display: inline-block;
    font-size: 12px;
    line-height: 26px;
    background-color: #BEF5EE;
    border-radius: 4px;
    padding: 0 9px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 600;/*font-weight: 500;*/
    white-space: nowrap;
}

body.list.hr main div.tags span{
    background-color: #FFBEB1;
}

body.list.public main div.tags span{
    background-color: #F0FF9B;
}




body.list main div.slide_box{
position: absolute;
bottom: 90px;
left: 7%;
width: 86vw;
}

body.list main div.slide_box h4{
font-weight: 600;/*font-weight: 500;*/
font-size: 25px;
line-height: 37px;
padding-bottom: 0;
min-height: 185px;

}



body.list section.program {
padding-top: 65px;
padding-left: 7%;
padding-right: 7%;
}




body.list section.program div.menu ul{
padding-left: 10%;
padding-right: 10%;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}


body.list section.program div.menu ul li{
display: inline-block;
width: 33%;
text-align: center;
}


body.list section.program div.menu ul li:nth-child(1),
body.list section.program div.menu ul li:nth-child(2) {
width: 50%;
}




body.list section.program h2 {
  padding-top: 40px;
  text-align: center;
    font-weight: 600;/*font-weight: 500;*/
  font-size: 22px;
  line-height: 37px;
  margin: 0 auto;
padding-bottom: 0;
}

body.list section.program h2 span {
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
}

body.list section.program h2 span.txt {
 padding: 0;
  padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
  letter-spacing: 0;
  dispaly: block;
margin:0 auto;
 text-align: left;
}

  body.list section.program p {
    display: block;
 text-align: center;
    font-size: 14px;
    line-height: 27px;
    padding-top: 0;
}


body.list section.program div.program  {
width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 50px;
    padding-bottom: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

}


body.list section.program div.program ::-webkit-scrollbar{
  display: none;
}



  body.list section.program div.program div.item {
position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    padding-bottom: 70px;
    background-color: transparent;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}


body.list section.program div.program div.item div.img{
 position: relative;
  margin-left: 0;
  width: 86%;
  min-width: 325px;
    aspect-ratio: 520/345;
  padding: 0;
  border-radius: 20px;
  background-color: transparent;
  margin-bottom: 0;
}


body.list section.program div.program  div.item div.txt{
  width: 100%;
  margin: 0 auto;
}


body.list section.program div.program  div.item time{
display: block;
padding-top: 30px;
padding-bottom: 30px;
font-size: 16px;
font-weight: 600;/*font-weight: 500;*/
}



body.list section.program div.program  div.item div.img{
    position: relative;

    width: 100%;
    aspect-ratio: 520/345;
     border-radius: 20px;
}

span.ctg {
    position: absolute;
    bottom:0;
    left:0;
    z-index:1;
font-size: 12px;
font-weight :500;
line-height: 1;
padding: 9px 0;
text-align:center;
     border-radius: 5px 5px 0 0;
width: 100px;
}

body.list section.program div.program  div.item div.img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
border-radius: 20px;
}


body.list section.program div.program  div.item04 {
  width: 1px;
  min-width: 1px;
  margin: 0;
  background-color: transparent;
}



body.list section.program div.program  div.item div.item_area {
  padding-top: 0;
  /*height: 75px*/;
  background-color: transparent;
  overflow:hidden;
}

body.list section.program div.program  div.item p {
  display: block;
  text-align: left;
  font-size: 13px;
  line-height: 23px;
}

  body.list section.program div.program  div.item h3 {
font-size: 22px;
line-height: 33px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 21px;
display: block;
color:#16C9AF;
}

  body.list.hr section.program div.program div.item h3 {
color:#F25B3B;
}

  body.list.public section.program div.program div.item h3 {
color:#B1D008;
}


  body.list section.program div.program div.item div.tags {
padding: 18px 0;
}

  body.list section.program div.program div.item div.tags span{
display: inline-block;
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
border-radius: 4px;
padding:4px 9px;
margin-right: 10px;
margin-bottom: 10px;
font-weight: 600;/*font-weight: 500;*/
white-space: nowrap;
}

  body.list.hr section.program div.program div.item div.tags span{
background-color:#FFBEB1;
}

  body.list.public section.program div.program div.item div.tags span{
background-color:#F0FF9B;
}


  body.list section.program div.more {
padding: 0 0 50px 0;
text-align: center;
}


  body.list section.program div.more div.breadcrumb{
display: flex;
    margin: 0 auto;
    width: 150px;
    font-size: 16px;
    line-height: 37px;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

  body.list section.program div.more a.more{
display: block;
text-align:center;
padding: 18px 0;
width: 200px;
font-size: 14px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px;
}


body.list.hr section.program div.more a.more {
background-color:#FFBEB1;
}


  body.list.public section.program div.more a.more {
background-color:#F0FF9B;
}


.tab-area {
  display: flex;
  cursor: pointer;/* カーソルポインターに */
  margin:0;
}
.tab {
  padding: 0 24px;
  text-align: left;
  border-radius: 10px;
  background-color: #E6E6E6;
  color: #323232;
  font-size: 16px;
  font-weight: 600;/*font-weight: 500;*/
  line-height: 40px;
  margin-bottom: 20px;
  margin-right: 10px;
}

.tab span {
display: inline-block;
	box-sizing: border-box;
	width: 25px;
	height: 25px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #fff url(../img/open_btn.svg) center center no-repeat;
    background-size: contain;
    vertical-align: sub;
    transform: translate(10px,2px) rotate(180deg);
}


.tab.active span {
    transform: translate(10px,2px) rotate(0deg);
}

.tab.active {
  background-color: #96F4E7;
  color: #323232;
  font-size: 16px;
  font-weight: 600;/*font-weight: 500;*/
  line-height: 40px;
}

body.list.hr .tab.active {
  background-color: #FD8168;
}

body.list.public .tab.active {
  background-color: #E9FE72;
}


.panel {
  display: none;
  text-align: left;
  padding: 30px 13px;
  border-radius: 20px;
  position: relative;
}
.panel.active {
  display: block;
  background-color: #fff;
}


body.list .panel div.tags {
}

body.list .panel div.tags a {
    display: inline-block;
    font-size: 12px;
    line-height: 26px;
    border: 1px solid #BEF5EE;
    border-radius: 4px;
    padding: 0 9px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 600;/*font-weight: 500;*/
    white-space: nowrap;
}

body.list.hr .panel div.tags a {
    border: 1px solid #FFBEB1;
}

body.list.public .panel div.tags a {
    border: 1px solid #F0FF9B;
}

body.list.hr .panel div.tags a.recommend {
    background-color: #FFBEB1;
}

body.list.public .panel div.tags a.recommend {
    background-color: #F0FF9B;
}


.panel input[type="text"] {
    color: #323232;
    border: none;
    border-radius: 25px;
    width: 100%;
    /* display: block; */
    width: 100%;
    padding: 13.5px 13.5px 13.5px 60px;
    border: none;
    background-color: #fff;
    font-size: 16px;
    border: 1px solid #C8C8C8!important;
    font-weight: 400;
}


.panel input[type="submit"] {
position: absolute;
    left: 44px;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background: url(../img/search_btn.svg) center center no-repeat;
    background-size: contain;
    border:none;
}



.pc_only {display: none;}
.sp_only {display: inline-block;}
/* ================== SP 
_end================== */
/* ================== PC ================== */

@media screen and (min-width: 769px) {
  header nav {
    top: 0;
    right: -600px;
    position: fixed;
    height: 100vh;
    width: 600px;
    z-index: 1;
    background: rgb(250, 250, 250);
  }
  header nav div.logo {
    position: relative;
    padding-top: 120px;
    padding-left: 50px;
  }
  header nav div.logo img {
    width: 175px;
    height: auto;
  }
  header nav ul {
    position: relative;
    display: block;
    padding-top: 60px;
    padding-left: 50px;
  }
  header nav ul li {
    display: block;
    padding-bottom: 20px;
  }
  header nav ul li a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #323232;
    font-weight: 600;/*font-weight: 500;*/
  }
  header nav .mascot {
    position: absolute;
    bottom: 80px;
    right: 85px;
  }
  header nav .mascot img {
    width: 214px;
    height: auto;
  }
  div.over {
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    transition-duration: 0.5s;
    transition: all 1s ease-out;
  }
  div.over.mask {
    display: block;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
  }
  div.gheader {
height: 60px;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    margin-top: 0;
    margin-bottom: -1px;
  }

body.for div.gheader {
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
}


  div.gheader h1 {
    padding: 24px;
  }
  div.gheader h1 img {
    height: 21px;
    width: auto;
  }
  /*header_end*/
  /* ---footer------------------------------------- */
  footer {
    background-color: #FFFFFF;
    padding-top: 45px;
    padding-left: calc( 50% - 640px);
    padding-right: calc( 50% - 640px);
    padding-bottom: 20px;
    text-align: left;
    position: relative;
    margin: 0 auto;
overflow-x: auto;
  }
  footer div.logo {
    position: relative;
    padding: 40px;
    padding-top: 60px;
  }
  footer div.ft1 {
    padding: 0 40px;
    display: flex;
  }
  footer div.ft1 ul {
    column-count: 3;
  }
  footer div.ft1 ul li {
    display: block;
    width: 170px;
  }
  footer div.ft2 {
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
  footer div.ft2 ul {
    column-count: 2;
  }
  footer div.ft2 ul {
    padding-top: 0;
  }
  footer div.ft2 ul li {
    display: block;
    width: 150px;
    padding-bottom: 0;
    text-align: right;
  }
  footer div.ft2 small {
    display: block;
    line-height: 27px;
    width: 200px;
    text-align: right;
  }

  /* ---footer_end------------------------------------- */
  /*Main*/
  body.top main {
    position: relative;
    margin: 0 auto;
    margin-top: 60px;
    max-width: 1280px;
    height: calc(100vh - 107px);
  }
body.top.list main {
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 60px);
}


  body.top main .ttl {
    position: absolute;
    top: 50%;
    width: 600px;
    left: 65px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index:2;
}

  body.top main .ttl img{
    width: 600px;
    height: auto;
}
  body.top main .lead {
    max-width: 415px;
    padding-top: 64px;
    position: relative;
    margin-left: 0;
}
  body.top main .lead h2 {
    position: relative;
font-size: 40px;
line-height: 58px;
padding-bottom: 22px;
}
  body.top main .lead p {
    position: relative;
font-size: 16px;
line-height: 29px;

}
  body.top main .circle.bg_yellow {
    position: absolute;
    top: 0;
    left: 138px;
    right: auto;
width: 44%;
    max-width: 560px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    z-index:1;
  }
body.top main .circle.bg_red {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 500px;
width: 22%;
    max-width: 280px;
    aspect-ratio: 1/1;
    border-radius: 50%;
  animation: fuwafuwa 3s infinite;
}


body.top main .circle.bg_green {
    position: absolute;
    top: 207px;
    left: auto;
    right: 75px;
width: 29%;
    max-width: 366px;
    aspect-ratio: 1/1;
    border-radius: 50%;
  animation: fuwafuwa 3.5s infinite;
}
  body.top main .mascot {
    position: absolute;
    width: 36%;
    max-width: 464px;
    z-index:1;
    top: auto;
    bottom: 50px;
    left: auto;
    right: 133px;
}


/*Section Anime*/
div.section_anime {
position: relative;
padding-top: 70px;
width: 100%;
}

div.section_anime .mascot{
width: 218px;
top: 0;
left: auto;
right: 125px;
position: absolute;
z-index:1;
}


div.section_anime.bg_green{
padding-top: 100px;
}

div.section_anime.bg_green .mascot{
width: 206px;
top: 0;
left: 125px;
position: absolute;
z-index:1;
}

/*Section*/

body.top section {
padding-top: 130px;
width: auto;
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
}

  body.for div.headline section {
padding:0;
}



body.top section div.for.business {
  background-color: #96F4E7;
  padding: 29px 60px;
}
body.top section div.for.hr {
  background-color: #FD8168;
  padding: 29px 60px;
  color: #fff;
}

body.top section div.for.public {
  background-color: #E7FF64;
  padding: 29px 60px;
}


body.top section div.for.hr *{
  color: #fff;
}

body.top section div.for {
margin-bottom: 40px;
border-radius: 20px;
}

body.for .headline section div.for {
margin:0;
height: 100vh;
min-height: 900px;
}

body.top section div.for div.hd {
padding:0;
border-bottom: 1px solid #fff;
padding-bottom:29px;
}


body.for .headline section div.for div.hd {
border:none;
}

body.top section div.for div.hd strong{
font-weight: 600;/*font-weight: 500;*/
font-size: 14px;
line-height: 27px;
text-align:center;
display:block;
}


body.for .headline section div.for div.hd strong{
padding-bottom: 35px;
font-size: 19px;
line-height: 1;
}



body.top.for section div.for h2 {
padding-top: 0;
}


body.top section div.for h2 {
padding-top: 0;
display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: flex-start;
}



body.top section div.for h2 span{
display:block;
padding: 22px 8px;
}

body.for .headline div.for h2 span{
padding: 60px 8px 15px 8px;
}




body.for.business div.headline section div.for h2 span{
width: 350px;
}

body.for.business div.headline section div.for h2 span:first-child{
width: 300px;
}


body.for.hr div.headline section div.for h2 span{
width: 200px;
}

body.for.hr div.headline section div.for h2 span:first-child{
width: 300px;
}

body.for.public div.headline section div.for h2 span{
width: 280px;
}

body.for.public div.headline section div.for h2 span:first-child{
width: 300px;
}




body.top section div.for h2 span img{
height: 42px;
width: auto;
}




body.for div.headline section div.for h2 span img{
height: 48px;
width: auto;
float:left;
}

body.for div.headline section div.for h2 span:first-child img{
float:right;
}




body.for.hr div.headline section div.for h2 span{
}

body.for.hr div.headline section div.for h2 span:first-child{

}






body.top section div.for div.ft {
padding-top: 39px;
display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: flex-start;
}



body.for .headline section div.for div.ft {
max-width: 1120px;
    margin: 0 auto;
    padding-top: 39px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;
    align-content: flex-start;

}


body.for .headline section div.link {
padding: 60px 0 0 0;
    display: flex;
    padding-left: calc( 50% - 285px );
    padding-right: calc( 50% - 285px );
    align-content: stretch;
    flex-direction: row;
    justify-content: space-between;
}
body.for .headline section div.link a {
    display: block;
    width: 270px;
    background-color: #2EC4DE;
    color: #fff;
    font-size: 16px;
    font-weight: 600;/*font-weight: 500;*/
    margin-bottom: 0;
    border-radius: 30px;
    padding: 18px 0;
    text-align: center;
    margin-left: 0;
}



body.top section div.for div.ft div.txt{
width: 50%;
}
body.top section div.for div.ft div.mascot{
width: 50%;
}

body.for .headline section div.for div.ft div.txt{
width: 50%;
min-width: 570px;
}
body.for .headline section div.for div.ft div.mascot{
width: calc(100% - 570px);
}



body.top section div.for div.ft div.txt h3{
  font-size: 31px;
  line-height: 46px;
}

body.top.for section div.for div.ft div.txt h3{
  font-size: 40px;
  line-height: 58px;
}



body.top section div.for div.ft div.txt p{
font-size: 14px;
  line-height: 27px;
display:block;
padding-top: 21px;
}

body.top.for section div.for div.ft div.txt p{
font-size: 16px;
  line-height: 29px;
display:block;
padding-top: 21px;
}



body.top section div.for div.ft div.txt p.link{
padding-top: 37px;
text-decoration: underline;
}

body.top section div.for.business .mascot img{
width: 422px;
height: auto;
margin: auto;
margin-right: 0;
}
body.top section div.for.hr .mascot img{
width: 316px;
height: auto;
margin: auto;
margin-right: 0;
}
body.top section div.for.public .mascot img{
width: 398px;
height: auto;
margin: auto;
margin-right: 0;
}


body.for.business section div.for.business div.ft div.mascot img{
width: 469px;
margin:0 auto;
margin-right: 0;
}

body.for.hr section div.for.hr div.ft div.mascot img{
width: 351px;
margin:0 auto;
margin-right: 0;
}

body.for.public section div.for.public div.ft div.mascot img {
width: 443px;
margin:0 auto;
margin-right: 0;
}




body.top section.features {
padding-left: calc( 50% - 615px );
padding-right: calc( 50% - 615px );
  background-color: #96F4E7;
overflow-x: auto;
}


body.top section.features h2{
margin:0 auto;
text-align: center;
font-size: 40px;
line-height: 59px;
padding-bottom: 78px;
}

body.top section.features div.box{

padding-top: 39px;
    width: 100%;
    min-width: 1230px;
    display: flex;
    background: url(../img/circle3.png) center center no-repeat;
    background-size: contain;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: flex-start;
    min-height: 480px;
}



body.top section.features div.box div.feature{
width: 300px;
text-align:left;
padding: 40px 0;
}

body.top section.features div.box div.feature h3{
font-size: 26px;
line-height: 38px;
}

body.top section.features div.box div.feature p{
display:block;
text-align: left;
font-size: 14px;
line-height: 27px;
}

body.top section.features div.box div.feature img.nmbr{
height: 70px;
width: auto;
margin-left: -20px;
}

body.top section.features h3.ttl {
padding-top: 145px;
text-align: center;
font-size: 24px;
line-height: 35px;
padding-bottom: 18px;
}


body.top section.features div.bnr_list {
width: 926px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
padding-bottom: 56px;
}

body.top section.features div.bnr_list img.bnr{
width: 90px;
height: auto;
padding: 28px 0;
}

/*  body.top section.case */
body.top section.column.case {
padding-left: 0;
padding-right: 0;
background-color:#fafafa;
}

body.top section.column.case h2 {
    padding-top: 55px;
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 40px;
line-height: 59px;
padding-bottom: 80px;
  }

body.for section.column.case div.column {
    padding: 0;
    padding-left: calc(50% - 540px);
    padding-right: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    overflow-x: scroll;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: stretch;
    padding-top: 0;
    padding-bottom: 130px;
  }

body.for section.column.case div.column div.item {
    position: relative;
    margin:0;
    width: 420px;
    min-width: 420px;
    padding: 0;
    margin-right: 70px;
    border-radius: 20px;
    padding-top: 0;
  background-color: transparent;
}

body.for section.column.case div.column div.item div.item_area{
  background-color: transparent;
}

body.for section.column.case div.column div.item time{
padding:0;
font-size: 16px;
line-height: 40px;
}
body.for section.column.case div.column div.item h3{
padding:13px 0;
font-size: 22px;
line-height: 33px;
}

body.for section.column.case div.column div.item p{
padding:8px 0;
font-size: 14px;
line-height: 27px;
color: #323232!important;
}

body.top section.column.case div.column div.item:nth-child(3) {
    margin-right: calc(50vw - 540px);
}


body.top section.column.case div.column div.item div.img {
width: 100%;
height: 280px;
position:relative;
}


body.top section.column.case div.column div.item div.img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
border-radius: 20px;
}



/*  body.top section.column */

body.for section.column {
background-color:#fafafa;
}

body.for section.column.case {
background-color:#fff;
}


/*  body.top section.column */

body.top section.column {
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
}

  body.top section.column h2 {
    padding-top: 55px;
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 40px;
line-height: 59px;
padding-bottom: 80px;
  }
  body.top section.column h2 span {
    display: block;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
  }
  body.top section.column h2 span.txt {
    padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0;
 text-align: center;
  }
  body.top section.column div.column {
    padding: 0;
    width: 100%;
    max-width: 1183px;
    margin: 0 auto;
    display: flex;
    overflow-x: scroll;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: stretch;
/*    padding-top: 55px;*/
    padding-bottom: 0;
  }


  body.for section.column div.column {
    padding-top: 0;
  }


  body.top section.column div.column div.item {
    position: relative;
    margin:0;
    width: 33%;
    max-width: 340px;
    padding: 35px;
    border-radius: 20px;
    padding-top: 360px;
  background-color: #fff;
  }

  body.top section.column.case div.column div.item {
    max-width: 420px;
}


body.top section.column div.column div.item time{
display: block;
padding-top: 30px;
font-size: 13px;
}


body.top section.column div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 360px;
     border-radius: 20px 20px 0 0;
}







  body.top section.column div.column div.item div.item_area {
  padding-top: 15px;
    /*height: 75px*/;
  background-color: #fff;
  overflow:hidden;
  }


  body.for section.column div.column div.item div.item_area {
height: auto;
}


  body.top section.column div.column div.item p {
    display: block;
    text-align: left;
    font-size: 17px;
    line-height: 25px;
  font-weight: 600;
  }




  body.for.business section.column div.column div.item p {
color:#16C9AF;
    font-size: 17px;
    line-height: 25px;
    font-weight: 600;/*font-weight: 500;*/
}

  body.for.hr section.column div.column div.item p {
color:#F25B3B;
    font-size: 17px;
    line-height: 25px;
    font-weight: 600;/*font-weight: 500;*/
}

  body.for.public section.column div.column div.item p {
color:#89D027;
    font-size: 17px;
    line-height: 25px;
    font-weight: 600;/*font-weight: 500;*/
}





  body.top section.column div.more {
padding: 80px;
text-align: center;
}

  body.top section.column div.more a.more{
display: block;
text-align:center;
padding: 22px 0;
width: 270px;
font-size: 16px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#fff;
background-color: #FD8168;
margin:0 auto;
border-radius: 30px;
}


  body.for.business section.column div.more a.more{
background-color: #96F4E7;
color:#323232;
}

  body.for.hr section.column div.more a.more{
background-color: #FD8870;
color:#fff;
}

  body.for.public section.column div.more a.more{
background-color: #E7FF64;
color:#323232;
}


<!-- company_info -->
body.top section.company_info {
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
}

body.top section.company_info h2{
    padding-top: 0;
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 30px;
line-height: 44px;
padding-bottom: 80px;
}


body.top section.company_info div.info {
display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
padding-bottom: 100px;
}

  body.top section.company_info div.info div.img{
width: 48%;
}

  body.top section.company_info div.info div.txt{
padding-top:0;
width: 45%;
max-width: 490px;
}

  body.top section.company_info div.info div.txt p{
  font-size: 14px;
  line-height: 27px;
}

  body.top section.company_info div.info div.txt a.link{
margin: 48px 0 48px;
width: 350px;
font-size: 17px;
line-height: 1;
display: block;
text-align:center;
padding: 20px 0;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
border-radius: 30px;
}

/*  body.terms */

  body.terms main {
position: relative;
margin-top :60px;
height: 250px;
}

  body.terms main h1{
padding-top: 100px;
font-size: 40px;
font-weight: 600;/*font-weight: 500;*/
letter-spacing: 0.05em;
text-align: center;
}


  body.terms section {
padding-left: calc( 50% - 360px );
padding-right: calc( 50% - 360px );
padding-bottom: 100px;
border-bottom: 1px solid #C8C8C8;
}

  body.terms section p{
font-size: 14px;
line-height: 27px;
text-align: left;
}

/*  body.contact */

  body.contact {
background-color: #fff;
}


  body.contact main {
position: relative;
margin-top :60px;
height: 250px;
}

  body.contact main h1{
padding-top: 100px;
font-size: 40px;
font-weight: 600;/*font-weight: 500;*/
letter-spacing: 0.05em;
text-align: center;
}


  body.contact section {
padding-left: calc( 50% - 360px );
padding-right: calc( 50% - 360px );
padding-bottom: 100px;
border-bottom: 1px solid #C8C8C8;
}

  body.contact section p{
font-size: 14px;
line-height: 27px;
text-align: left;
padding: 0 35px 20px 35px;
}

  section.contact {
    display: block;
    max-width: 84vw;
    min-height: 650px;
    color: #002D5E;
    margin: 0 auto;
    font-size: 14px;
    padding: 20px 0 80px 0;
  }
  div.contact {
    font-size: 14px;
    line-height: 23px;
    position: relative;
  }
  p.contact_ld {
    padding-bottom: 2em;
    color: #002D5E;
  }
div.box {
display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;

}

  div.contact div.area {
    padding-top: 1.5em;
    width: 48%;
  }
  div.contact.form {}
  div.contact.form p {
  color: #323232;
    padding-bottom: .5em;
    font-size: 14px;
  }
  .textbox {
    width: 100%;
    /* display: block; */
    width: 100%;
    padding: 13.5px;
    border: none;
    background-color: #fff;
    font-size: 14px;
  color: #323232;
    border-radius: 4px;
  border: 1px solid #C8C8C8!important;
  }
  div.textarea {
    padding-top: 1.5em;
    width: 100%;
  }
  div.textarea p {
    padding-bottom: 0.5em;
    font-size: 13px;
  }
  textarea.textarea {
    display: block;
  width: 100%;
  padding: 13.5px;
    border: none;
    background-color: #fff;
    font-size: 14px;
    color: #323232;
    border-radius: 4px;
    /* resize: vertical; */
    resize: none;
    height: 150px;
  border: 1px solid #C8C8C8!important;
  }
  select {
    position: relative;
    height: 4.2em;
    -webkit-appearance: none;
    appearance: none;
  }
  input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
 color: #323232;
    border: none;
    border-radius: 4px;
    width: 100%;
    /* display: block; */
    width: 100%;
    padding: 13.5px;
    border: none;
    background-color: #fff;
    font-size: 13px;
  border: 1px solid #C8C8C8!important;
  }
  div.check {
    padding: 20px 0 40px 0;
    text-align: left;
    width: 100%;
    font-size: 12px;
    white-space: nowrap;
 color: #323232;
  }
  div.check a {
 color: #323232;
    border-bottom: 1px solid #000;
  }
  div.submit {
    text-align: center;
  }
  input.submit {
    width: 100%;
    max-width: 270px;
    font-family: cantiga, dnp-shuei-gothic-gin-std, sans-serif;
    color: #fff;
  background-color: #2EC4DE;
    padding: 22px 0;
    font-size: 16px;
    lione-height: 1;
  border-radius: 30px;
  border: none;
  }
  div.select {
    position: relative;
  }
  div.select:after {
    content: "";
    position: absolute;
    border-right: 1px solid #000;
    width: 10px;
    height: 10px;
    bottom: 25px;
    right: 18px;
    rotate: 135deg;
    border-top: 1px solid #000;
  }
  div.select p {
    position: relative;
    display: block;
  }






/*  body.faq */


  body.faq {
background-color: #fff;
}

  body.faq main {
position: relative;
margin-top :60px;
height: 250px;
}

  body.faq main h1{
padding-top: 100px;
font-size: 40px;
font-weight: 600;/*font-weight: 500;*/
letter-spacing: 0.05em;
text-align: center;
}


  body.faq section {
padding-left: calc( 50% - 360px );
padding-right: calc( 50% - 360px );
padding-bottom: 100px;
border-bottom: 1px solid #C8C8C8;
}


  body.faq div.faq_menu {
display: flex;
    padding-top: 30px;
    padding-left: calc( 50% - 180px );
    padding-right: calc( 50% - 180px );
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

body.faq div.faq {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

body.faq div.faq.q {
padding-top:10px;
}

body.faq div.faq.q:first-of-type {
border:none;
}

body.faq div.faq.a {
border-bottom: 1px solid #C8C8C8;
padding-bottom:10px;
}

body.faq div.faq.a:last-of-type {
border:none;
}


body.faq div.faq div.ttl{
padding:0;
width: 50px;
border-radius: 25px;
background-color:#B4B4B4;
color:#fff;
font-size: 23px;
line-height: 1;
padding: 13.5px 0;
text-align:center;
margin: 10px 0;
}
body.faq div.faq.q div.ttl{
background-color:#FD8168;
}
body.faq div.faq.a div.ttl{
}

  body.faq section p{
font-size: 14px;
line-height: 27px;
text-align: left;
}

  body.faq section h3{
font-size: 17px;
line-height: 27px;
color:#F25B3B;
width: calc(100% - 70px);
padding: 20px 0 20px 20px;
}

  body.faq section h4{
font-size: 14px;
line-height: 27px;
color:#323232;
width: calc(100% - 70px);
padding: 20px 0 20px 20px;
}





/*  body.column section.column */

body.column {
background-color:#fff;
}

body.column section {
padding-top: 110px;
padding-left: calc( 50% - 310px );
padding-right: calc( 50% - 310px );
}

body.column section div.entry p{
font-size: 14px;
line-height: 27px;
margin-bottom: 100px;
display: block;
}

body.column section div.entry strong{
font-size: 26px;
line-height: 38px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 40px;
display: block;
}

body.column section div.entry time{
font-size: 12px;
line-height: 36px;
}


body.column section div.entry h2{
font-size: 30px;
line-height: 44px;
}

body.column section div.entry div.tags {
padding: 22px 0;
}

body.column section div.entry div.tags a.tag{
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
border-radius: 4px;
padding:4px 8px;
margin-right: 10px;
font-weight: 600;/*font-weight: 500;*/
}

body.column section div.entry div.hdr {
width: 100%;
height: auto;
aspect-ratio: 6/4;
overflow:hidden;
position:relative;
margin :20px 0 100px 0;
border-radius: 20px;
}

body.column section div.entry div.hdr img{
width:100%;
height: 100%;
position:absolute;
object-fit: cover;
}


  body.column section div.more a.more{
display: block;
text-align:center;
padding: 22px 0;
width: 270px;
font-size: 16px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px; 
margin-bottom: 100px;
}




body.column section.column {
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
background-color:#FAFAFA;
}

  body.column section.column h2 {
    padding-top: 55px;
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 40px;
line-height: 59px;
padding-bottom: 80px;
  }
  body.column section.column h2 span {
    display: block;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
  }
  body.column section.column h2 span.txt {
    padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0;
 text-align: center;
  }
  body.column section.column div.column {
    padding: 0;
    width: 100%;
    max-width: 1183px;
    margin: 0 auto;
    display: flex;
    overflow-x: scroll;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: stretch;
    padding-top: 0;
    padding-bottom: 0;
  }
  body.column section.column div.column div.item {
    position: relative;
    width: 33%;
    max-width: 340px;
    padding: 35px 0;
    border-radius: 20px;
    padding-top: 227px;
  background-color: transparent;
  }


body.column section.column div.column div.item time{
display: block;
padding-top: 30px;
font-size: 14px;
font-weight: 600;
}


body.column section.column div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 227px;
     border-radius: 20px;
}







  body.column section.column div.column div.item div.item_area {
  padding-top: 15px;
    /*height: 75px*/;
  background-color: transparent;
  overflow:hidden;
  }
  body.column section.column div.column div.item p {
    display: block;
    text-align: left;
    font-size: 17px;
    line-height: 25px;
font-weight: 600;
letter-spacing: 0.05em;
  }

  body.column section.column div.more {
padding: 80px;
text-align: center;
}





  body.column section.column div.more a.more{
display: block;
text-align:center;
padding: 22px 0;
width: 270px;
font-size: 16px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px;
}














/*  body.column.list section.column */


body.column.list section.column {
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
}

body.column.list section.column div.menu ul{
padding-left: calc( 50% - 230px );
    padding-right: calc( 50% - 230px );
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-direction: row;
}

body.column.list section.column div.menu ul li{
display: inline-block;
width: auto!important;
font-size: 16px;
}



  body.column.list section.column h2 {
    padding-top: 55px;
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 40px;
line-height: 59px;
padding-bottom: 0;
  }
  body.column.list section.column h2 span {
    display: block;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
  }
  body.column.list section.column h2 span.txt {
    padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0;
 text-align: center;
  }
  body.column.list section.column div.column {
padding: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 55px;
    padding-bottom: 0;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  body.column.list section.column div.column div.item {
    margin-bottom:60px;
    position: relative;
    width: 33%;
    max-width: 340px;
    padding: 35px;
    border-radius: 20px;
    padding-top: 360px;
  background-color: #fff;
  }


body.column.list section.column div.column div.item time{
display: block;
padding-top: 30px;
font-size: 13px;
}


body.column.list section.column div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 360px;
     border-radius: 20px 20px 0 0;
}







  body.column.list section.column div.column div.item div.item_area {
  padding-top: 15px;
    /*height: 75px*/;
  background-color: #fff;
  overflow:hidden;
  }
  body.column.list section.column div.column div.item p {
    display: block;
    text-align: left;
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  }

  body.column.list section.column div.more {
padding: 80px;
text-align: center;
}


  body.column.list section.column div.more div.breadcrumb{
display: flex;
    margin: 0 auto;
    width: 150px;
    font-size: 16px;
    line-height: 37px;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

  body.column.list section.column div.more a.more{
display: block;
text-align:center;
padding: 22px 0;
width: 270px;
font-size: 16px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#fff;
background-color: #FD8168;
margin:0 auto;
border-radius: 30px;
}

/*  body.search.list section.column */


body.search.list section.column {
padding-left: calc( 50% - 480px );
padding-right: calc( 50% - 480px );
}



  body.search.list section.column h2 {
    padding-top: 55px;
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 26px;
line-height: 42px;
padding-bottom: 0;
  }
  body.search.list section.column h2 span {
    display: block;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
  }
  body.search.list section.column h2 span.txt {
    padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0;
 text-align: center;
  }


  body.search.list section.column p {
    display: block;
 text-align: center;
    font-size: 14px;
    line-height: 27px;
    padding-top: 21px;
}

  body.search.list section.column div.column {
padding: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 100px;
    padding-bottom: 0;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  body.search.list section.column div.column div.item {
    margin-bottom:60px;
    position: relative;
    width: 44%;
    max-width: 420px;
    padding: 0;
    padding-top: 280px;
    background-color: transparent;
    border-radius: 20px;
  }


body.search.list section.column div.column div.item time{
display: block;
padding-top: 30px;
padding-bottom: 13px;
font-size: 13px;
font-weight: 600;/*font-weight: 500;*/
}


body.search.list section.column div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    border-radius: 20px;
}

body.search.list section.column div.column div.item div.img img{
    border-radius: 20px;
}






  body.search.list section.column div.column div.item div.item_area {
  padding-top: 0;
    /*height: 75px*/;
  background-color: transparent;
  overflow:hidden;
  }
  body.search.list section.column div.column div.item p {
    display: block;
    text-align: left;
    font-size: 13px;
    line-height: 23px;
    padding:0;
  }

  body.search.list section.column div.column div.item h3 {
font-size: 22px;
line-height: 33px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 21px;
display: block;
color:#16C9AF;
}

  body.search.list section.column div.column div.item div.tags {
padding: 30px 0;
}

  body.search.list section.column div.column div.item div.tags span{
display: inline-block;
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
border-radius: 4px;
padding:0 9px;
margin-right: 10px;
font-weight: 600;/*font-weight: 500;*/
white-space: nowrap;
}

  body.search.list section.column div.more {
padding: 80px;
text-align: center;
}

  body.search.list section.column div.more div.breadcrumb{
display: flex;
    margin: 0 auto;
    width: 150px;
    font-size: 16px;
    line-height: 37px;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

  body.search.list section.column div.more a.more{
display: block;
text-align:center;
padding: 22px 0;
width: 270px;
font-size: 16px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#fff;
background-color: #FD8168;
margin:0 auto;
border-radius: 30px;
}

/*  body.entry section.column */

body.entry {
background-color:#fff;
}

body.entry section {
padding-top: 0px;
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
}

body.entry section div.entry p{
font-size: 14px;
line-height: 27px;
margin-bottom: 100px;
display: block;


padding-left: calc( 50% - 360px );
padding-right: calc( 50% - 360px );
}

body.entry section div.entry strong{
font-size: 26px;
line-height: 38px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 40px;
display: block;
padding-left: calc( 50% - 360px );
padding-right: calc( 50% - 360px );
}

body.entry section div.entry time{
font-size: 12px;
line-height: 36px;
}


body.entry section div.entry h2{
font-size: 30px;
    line-height: 44px;
    position: absolute;
    top: -80px;
}

body.entry section div.entry div.tags {
padding: 22px 0;
    position: absolute;
    top: -140px;
}



body.entry section div.entry div.tags a.tag{
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
border-radius: 4px;
padding:4px 8px;
margin-right: 10px;
font-weight: 600;/*font-weight: 500;*/
}


body.entry section div.entry div.tags a.ctgry{
font-size: 12px;
line-height: 26px;
background-color:#fff;
border-radius: 4px;
padding:4px 8px;
margin-right: 10px;
font-weight: 600;/*font-weight: 500;*/
display:inline-block;
}




body.entry section div.entry div.hdr {
width: 100%;
height: auto;
aspect-ratio: 6/4;
overflow:hidden;
position:relative;
margin :20px 0 100px 0;
border-radius: 20px;
}

body.entry section div.entry div.hdr_box {
position: relative;
    padding-top: 150px;
}

body.entry section div.entry div.hdr img{
width:100%;
height: 100%;
position:absolute;
object-fit: cover;
}


  body.entry section div.more a.more{
display: block;
text-align:center;
padding: 22px 0;
width: 270px;
font-size: 16px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px; 
margin-bottom: 100px;
}

/*プログラムの特長*/
body.entry section.feature {
padding: 120px;
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
background-color:#fafafa;
overflow-x: auto;
}

body.entry section.feature *{
color:#323232;
}


body.entry section.feature h2 {
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 40px;
line-height: 59px;
padding-bottom: 80px;
  }

body.entry section.feature div.feature {
min-width: 1020px;
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;

}

body.entry section.feature div.feature div {
width; 33.3%;
max-width: 340px;
padding: 125px 45px;
background: url(../img/feature_box.svg) center center no-repeat;
background-size: contain;
min-height: 470px;
}




body.entry section.feature div.feature h3{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:22px;
line-height: 33px;
padding: 0 0 23px 0;
text-align: center;
}

body.entry section.feature div.feature p{
font-size:14px;
line-height: 27px;
text-align: left;
}

/*企業メリット*/
body.entry section.advantage {
padding: 120px;
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
background-color:#2EC4DE;
}

body.entry section.advantage *{
color: #fff;
}


body.entry section.advantage h2 {
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 40px;
line-height: 59px;
padding-bottom: 80px;
  }

body.entry section.advantage div.advantage {
display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 80px;
}

body.entry section.advantage div.advantage div {
width: 50%;
}

body.entry section.advantage div.advantage div.txt {
width: 48%;
padding-left: 2%;
}

body.entry section.advantage div.advantage div.txt strong{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:19px;
line-height: 43px;
padding: 0 0 23px 0;
}


body.entry section.advantage div.advantage div.txt h3{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:26px;
line-height: 38px;
padding: 0 0 23px 0;
}

body.entry section.advantage div.advantage div.txt p{
font-size:14px;
line-height: 27px;
}

body.entry section.advantage div.advantage2 div.txt {
width: 48%;
padding:0;
padding-right: 2%;
}


body.entry section.advantage div.advantage div.img {
border-radius: 20px;
aspect-ratio: 325/216;
overflow:hidden;
position: relative;
}

body.entry section.advantage div.advantage div.img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  object-fit: cover;
border-radius: 20px;
}

body.entry section.advantage div.advantage2 {
    display: flex;
    flex-direction: row-reverse;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

body.entry section.advantage div.section_anime .mascot {
    width: 200px;
    top: -110px;
    left: auto;
    right: 0;
    position: absolute;
    z-index: 1;
}



body.entry section.advantage div.voice h3{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:19px;
line-height: 28px;
padding: 0 0 31px 0;
}

body.entry section.advantage div.voice_box {
background-color:#fff;
padding:80px 60px;
border-radius: 20px;
}

body.entry section.advantage div.voice_box * {
color: #323232;
}

body.entry section.advantage div.voice div.voice_box {
display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

body.entry section.advantage div.voice_box div.voice_ {
width: 44%;
}



body.entry section.advantage div.voice_box div.voice_ div.img {
border-radius: 50%;
width: 200px;
aspect-ratio: 1/1;
overflow:hidden;
position: relative;
margin:0 auto;
}

body.entry section.advantage div.voice_box div.voice_ div.img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  object-fit: cover;
}


body.entry section.advantage div.voice_box div.voice_ strong{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:19px;
line-height: 43px;
padding: 0 0 23px 0;
}

body.entry section.advantage div.voice_box div.voice_ h4{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:26px;
line-height: 38px;
padding: 0 0 23px 0;
}

body.entry section.advantage div.voice_box div.voice_ p{
font-size:14px;
line-height: 27px;
padding: 0;
}


body.entry section.advantage div.link{
    padding: 60px 0 0 0;
    display: flex;
    padding-left: calc( 50% - 285px );
    padding-right: calc( 50% - 285px );
    align-content: stretch;
    flex-direction: row;
    justify-content: center;
}

body.entry section.advantage div.link a{
display: block;
width: 270px;
background-color: #fff;
color:#323232;
font-size: 16px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 0;
border-radius: 30px;
padding: 18px 0;
margin: 0 9px;
}





/* body.entry section.column*/


body.entry section.column {
padding-top: 30px;
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
background-color:transparent;
}

body.entry section.column2 {
background-color:#fafafa;
}

  body.entry section.column h2 {
    padding-top: 70px;
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 40px;
line-height: 59px;
padding-bottom: 80px;
  }
  body.entry section.column h2 span {
    display: block;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
  }
  body.entry section.column h2 span.txt {
    padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0;
 text-align: center;
  }
  body.entry section.column div.column {
    padding: 0;
    width: 100%;
    max-width: 1183px;
    margin: 0 auto;
    display: flex;
    overflow-x: scroll;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: stretch;
    padding-top: 0;
    padding-bottom: 0;
  }
  body.entry section.column div.column div.item {
    position: relative;
    width: 33%;
    max-width: 340px;
    padding: 0;
    border-radius: 20px;
    padding-top: 227px;
  background-color: transparent;
   margin:0;
  }

  body.entry section.column2 div.column div.item {
    position: relative;
    width: 33%;
    max-width: 340px;
    padding: 35px;
    border-radius: 20px;
    padding-top: 360px;
  background-color: #fff;
   margin:0;
  }


body.entry section.column div.column div.item time{
display: block;
padding-top: 30px;
font-size: 14px;
}

body.entry section.column2 div.column div.item time{
display: block;
padding-top: 30px;
font-size: 13px;
}


body.entry section.column div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 227px;
     border-radius: 20px;
}

body.entry section.column2 div.column div.item div.img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 360px;
     border-radius:  20px 20px 0 0;
}






  body.entry section.column div.column div.item div.item_area {
  padding-top: 15px;
    height: auto;
  background-color: transparent;
  overflow:hidden;
  }
  body.entry section.column div.column div.item p {
    display: block;
    text-align: left;
    font-size: 17px;
    line-height: 25px;
  }

  body.entry section.column2 div.column div.item p {
    display: block;
    text-align: left;
    font-size: 17px;
    line-height: 25px;
  }

  body.entry section.column div.more {
padding: 80px;
text-align: center;
}





  body.entry section.column div.more a.more{
display: block;
text-align:center;
padding: 22px 0;
width: 270px;
font-size: 16px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px;
}


/*  body.for section.program */


body.for section.program {
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
}



  body.for section.program h2 {
    padding-top: 55px;
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 40px;
line-height: 42px;
padding-bottom: 0;
  }
  body.for section.program h2 span {
    display: block;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
  }
  body.for section.program h2 span.txt {
    padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0;
 text-align: center;
  }


  body.for section.program p {
    display: block;
 text-align: center;
    font-size: 14px;
    line-height: 27px;
    padding-top: 21px;
}

  body.for section.program div.program  {
padding: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 100px;
    padding-bottom: 0;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: space-between;
}


  body.for section.program div.program div.item {
    position: relative;
    width: 100%; 
    max-width: 100%;
    padding: 0;
    padding-bottom: 100px;
    background-color: transparent;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
  }


body.for section.program div.program  div.item time{
display: block;
padding-top: 30px;
padding-bottom: 13px;
font-size: 19px;
font-weight: 600;/*font-weight: 500;*/
}


body.for section.program div.program  div.item div.img{
    position: relative;
    width: 50%;
    max-width: 520px;
    aspect-ratio: 520/345;
    border-radius: 20px;
    margin:0;
}

body.for section.program div.program  div.item div.txt{
    position: relative;
    width: calc(50% - 60px);
    margin:0;
}


body.for section.program div.program  div.item div.img img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}






  body.for section.program div.program  div.item div.item_area {
  padding-top: 0;
    /*height: 75px*/;
  background-color: transparent;
  overflow:hidden;
  }

  body.for section.program div.program  div.item p {
    display: block;
    text-align: left;
    font-size: 14px;
    line-height: 27px;
    padding:0;
  }

  body.for section.program div.program  div.item h3 {
font-size: 26px;
line-height: 38px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 21px;
display: block;
color:#16C9AF;
}

  body.for section.program div.program  div.item div.tags {
padding: 30px 0;
}

  body.for section.program div.program  div.item div.tags span{
display: inline;
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
border-radius: 4px;
padding:4px 9px;
margin-right: 10px;
font-weight: 600;/*font-weight: 500;*/
}

  body.for section.program div.more {
padding: 0 0 80px 0;
text-align: center;
}

  body.for section.program div.more div.breadcrumb{
display: flex;
    margin: 0 auto;
    width: 150px;
    font-size: 16px;
    line-height: 37px;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

  body.for section.program div.more a.more{
display: block;
text-align:center;
padding: 22px 0;
width: 270px;
font-size: 16px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px;
}

/*YorisoWeLのメリット*/
body.for section.merit {
padding: 120px;
padding-left: calc( 50% - 540px );
padding-right: calc( 50% - 540px );
background-color:#fafafa;
overflow-x: auto;
}

body.for.business section.merit {
background-color:#2EC4DE;
}

body.for.hr section.merit {
background-color:#FFC400;
}

body.for.public section.merit {
background-color:#89D027;
}





body.for section.merit div*{
color:#323232;
}


body.for section.merit h2 {
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 40px;
line-height: 59px;
padding-bottom: 80px;
color:#fff;
  }


body.for section.merit h2 {}


body.for section.merit div.merit {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 1020px;
}

body.for section.merit div.merit div {
width: 33.3%;
max-width: 340px;
padding: 125px 45px;
background: url(../img/merit_box.svg) center center no-repeat;
background-size: contain;
min-height: 480px;
}




body.for section.merit div.merit h3{
display: block;
font-weight: 600;/*font-weight: 500;*/
font-size:22px;
line-height: 33px;
padding: 0 0 23px 0;
text-align: center;
}

body.for section.merit div.merit p{
font-size:14px;
line-height: 27px;
text-align: left;
}

body.for section.merit .mascot {
    width: 200px;
    top: -110px;
    left: auto;
    right: 150px;
    position: absolute;
    z-index: 1;
}



/*  body.list section.program */

body.list main {
position: relative;
}

body.list main div.tags {
    padding: 18px 0;
}

body.list main div.tags span{
    display: inline-block;
    font-size: 12px;
    line-height: 26px;
    background-color: #BEF5EE;
    border-radius: 4px;
    padding: 0 9px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 600;/*font-weight: 500;*/
    white-space: nowrap;
}

body.list main div.slide_box{
position: absolute;
bottom: 150px;
left: 65px;
}

body.list main div.slide_box h4{
font-weight: 600;/*font-weight: 500;*/
font-size: 40px;
line-height: 58px;
padding-bottom: 0;
min-height: 116px;
}








body.list section.program {
padding-top: 100px;
padding-left: calc( 50% - 480px );
padding-right: calc( 50% - 480px );
}

  body.list section.program h2 {
    padding-top: 55px;
    text-align: center;
    font-weight: 600;/*font-weight: 500;*/
font-size: 26px;
line-height: 42px;
padding-bottom: 0;
  }
  body.list section.program h2 span {
    display: block;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
  }
  body.list section.program h2 span.txt {
    padding-top: 22px;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0;
 text-align: center;
  }


  body.list section.program p {
    display: block;
 text-align: center;
    font-size: 14px;
    line-height: 27px;
    padding-top: 21px;
}

  body.list section.program div.program  {
padding: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 100px;
    padding-bottom: 0;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: space-between;
}


  body.list section.program div.program div.item {
    position: relative;
    width: 100%; 
    max-width: 100%;
    padding: 0;
    padding-bottom: 100px;
    background-color: transparent;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
  }


body.list section.program div.program  div.item time{
display: block;
padding-top: 30px;
padding-bottom: 13px;
font-size: 13px;
font-weight: 600;/*font-weight: 500;*/
}


body.list section.program div.program  div.item div.img{
    position: relative;
    width: 50%;
    max-width: 520px;
    aspect-ratio: 520/345;
    border-radius: 20px;
    margin:0;
}

body.list section.program div.program  div.item div.txt{
    position: relative;
    width: calc(50% - 60px);
    margin:0;
}


body.list section.program div.program  div.item div.img img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}






  body.list section.program div.program  div.item div.item_area {
  padding-top: 0;
    /*height: 75px*/;
  background-color: transparent;
  overflow:hidden;
  }
  body.list section.program div.program  div.item p {
    display: block;
    text-align: left;
    font-size: 13px;
    line-height: 23px;
    padding:0;
  }

  body.list section.program div.program  div.item h3 {
font-size: 22px;
line-height: 33px;
font-weight: 600;/*font-weight: 500;*/
margin-bottom: 21px;
display: block;
color:#16C9AF;
}

  body.list section.program div.program  div.item div.tags {
padding: 30px 0;
}

  body.list section.program div.program  div.item div.tags span{
display: inline-block;
font-size: 12px;
line-height: 26px;
background-color:#BEF5EE;
border-radius: 4px;
padding:0 9px;
margin-right: 10px;
font-weight: 600;/*font-weight: 500;*/
    white-space: nowrap;
}

  body.list section.program div.more {
padding: 0 0 80px 0;
text-align: center;
}

  body.list section.program div.more div.breadcrumb{
display: flex;
    margin: 0 auto;
    width: 150px;
    font-size: 16px;
    line-height: 37px;
   justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

body.list section.program div.more a.more{
display: block;
text-align:center;
padding: 22px 0;
width: 270px;
font-size: 16px;
line-height: 1;
font-weight: 600;/*font-weight: 500;*/
color:#323232;
background-color: #96F4E7;
margin:0 auto;
border-radius: 30px;
}





.tab-area {
display: flex;
    cursor: pointer;
    margin: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;

}


.tab {
  padding: 0 24px;
  text-align: left;
  border-radius: 10px 10px  0 0 ;
  background-color: #E6E6E6;
  color: #323232;
  font-size: 16px;
  font-weight: 600;/*font-weight: 500;*/
  line-height: 40px;
    margin-bottom: 0;
    margin-right: 0;
}

.tab span{
display: none;
}



.tab.active {
  background-color: #96F4E7;
  color: #323232;
  font-size: 16px;
  font-weight: 600;/*font-weight: 500;*/
  line-height: 40px;
}
.panel {
  display: none;
  text-align: left;
  padding: 40px;
  border-radius: 0 0 20px 20px;
  position: relative;
}

.panel.active {
  display: block;
}

body.list .panel div.tags a {
    display: inline-block;
    font-size: 12px;
    line-height: 26px;
    border: 1px solid #BEF5EE;
    border-radius: 4px;
    padding: 0 9px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 600;/*font-weight: 500;*/
    white-space: nowrap;
}

body.list .panel div.tags a.recommend {
    background-color: #BEF5EE;
}


.panel input[type="text"] {
    color: #323232;
    border: none;
    border-radius: 25px;
    width: 100%;
    /* display: block; */
    width: 100%;
    padding: 13.5px 13.5px 13.5px 60px;
    border: none;
    background-color: #fff;
    font-size: 16px;
    border: 1px solid #C8C8C8!important;
    font-weight: 400;
}


.panel input[type="submit"] {
position: absolute;
    left: 55px;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background: url(../img/search_btn.svg) center center no-repeat;
    background-size: contain;
    border:none;
}







.pc_only {display: inline-block;}
.sp_only {display: none;}
}
/* ================== PC 
_end================== */



div.entry a {
word-break: break-all;
}





/* ==================is-animated================== */
.active .slide-skew {
  animation: slide-skew 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  transform: translate3d(0, 0, 0);
  will-change: top, left, opacity, margin, padding, width, height, transform;
}

@keyframes slide-skew {
  0% {
    transform: translate(180px,30px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
  20%,100% {
    opacity: 1;
  }
}

.fuwafuwa {
  animation: fuwafuwa 4s infinite;
  transform: translate3d(0, 0, 0);
  will-change: top, left, opacity, margin, padding, width, height, transform;
}
 
@keyframes fuwafuwa {
0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0px);
  }
}

.yurayura{
    transform-origin: center center;
    animation: yurayura 4s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: top, left, opacity, margin, padding, width, height, transform;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(3deg);
  }
  50%{
      transform: rotate(-3deg);
  }
}



/* ==================mask_clip================== */

.bg_white {
  background-color: #fff;
}

.bg_gray {
  background-color: #FAFAFA;
}

.bg_green {
  background-color: #96F4E7;
}

.bg_red {
  background-color: #FD8168;
}

.bg_yellow {
  background-color: #E7FF64;
}

.mask_clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  clip-path: url(#content-wave);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  will-change: top, left, opacity, margin, padding, width, height, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  line-height: 1em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.mask_clip2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  clip-path: url(#content-wave2);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  will-change: top, left, opacity, margin, padding, width, height, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  line-height: 1em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.mask_header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 360px;
  clip-path: url(#header-wave);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  will-change: top, left, opacity, margin, padding, width, height, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  line-height: 1em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.mask_bgcolor {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 35px;
}

@media screen and (min-width: 769px) {
  .mask_clip, .mask_clip2, .mask_header {
    height: 760px;
  }
  .mask_bgcolor {
    height: 75px;
  }
}


.wp-pagenavi a, .wp-pagenavi span {
border:none!important;
}

/* ==================mask_clip================== */

/*=============
slick
=============*/

.full div.img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
  background-color: #fff;
}

.full div.img div.hdr_img {
width: 100%;
height: 100%;
margin-top: 0;
max-height: calc( 100vh - 300px);
position: relative;
}

.full div.img div.hdr_img img{
width: 100%;
height: 100%;
position:absolute;
top:0;
left:0;
object-fit: cover;
}

.slick-dots {
}


.full .slick-dots {
  bottom: 10%;
  z-index: +1;
/* Y軸方向 半分に縮小 */
transform: scale(0.5, 0.5);
margin-left:0;
width: auto;
}

@media screen and (min-width: 769px) {
.full .slick-dots {
left: 40px;
}

.full div.img div.hdr_img {
width: 100%;
height: 100%;
margin-top: 0;
max-height: calc( 100vh - 290px);
position: relative;
}
}

