@charset "UTF-8";
/* CSS Document */

body{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-style: normal;
  transition: all .3s;
}

.pc { display: block !important; }
.sp { display: none !important; }
 
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

p , dd , li{
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt" 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6em;
}

a{
  text-decoration: none;
  color: #000;
  width: 100%;
  height: 100%;
  display: block;
}

a:hover{
  color: #000;
}

a:visited{
  color: #000;
}

.inline-link{
  display: inline;
  text-decoration: underline;
}

body li{
  list-style: none;
}

img{
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

h1,h2,h3,h4,h5,h6,dt{
  font-weight: 700;
}

.small-cap{
  font-size: 0.8em;
  font-weight: 400;
}

.pc-br{
  display: inline;
}

.sp-br{
  display: none;
}

.mt{
  margin-top: 50px;
}

.pc-center-p{
  text-align: center;
  line-height: 2em;
  margin: 20px 0;
}

@media only screen and (max-width: 750px) {
  p{
    letter-spacing: 0.1em;
  }
  
  .sp-br{
    display: inline;
  }
  
  .pc-br{
    display: none;
  }
  
  .mt{
    margin-top: 30px;
  }
  
  .pc-center-p{
    text-align: justify;
  }
}

/*--------------------------------------- container -*/

.container{
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

/*--------------------------------------- header -*/

header{
  width: 100%;
  min-width: 1200px;
  height: 70px;
  position: fixed;
  top: 0;
  padding: 15px 20px 15px 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FB6CA9;
  z-index: 9998;
}

.g-nav-openbtn{
  display: none;
}

.logo-container{
  box-sizing: border-box;
  height: 100%;
}

.logo-container a{
  display: flex;
  align-items: center;
  color: #fff;
}

.logo-mark{
  height: 100%;
  padding-right: 15px;
}

nav ul{
  display: flex;
}

nav ul li{
  margin-left: 1.5em;
}

nav ul li:first-child{
  margin-left: 0;
}

.g-nav-a , .g-nav-a:hover , .g-nav-a:visited{
  color: #fff;
}

.g-nav-a{
  position: relative;
  height: 100%;
}

.g-nav-li{
  position: relative;
  line-height: 70px;
  height: 70px;
}

.g-nav-a::after {
  position: absolute;
  left: 0;
  bottom: 18px;
  content: '';
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all .3s;
}

.g-nav-a:hover::after {
  width: 100%;
}

.g-nav-child {
  position: absolute;
  margin-top: -20px;
  padding: 10px 0 5px;
  border-radius: 10px;
  background-color: #e0e7ee;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  transition: all .3s;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  width: fit-content;
}

.g-nav-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #e0e7ee;
  translate: -50% -100%;
}

.g-nav-li:hover .g-nav-child{
  opacity: 1;
  transform: translateX(-50%);
  visibility: visible;
  margin-top: -5px;
}

.g-nav-child-ul{
  display: inline-block;
  padding: 0;
  margin: 0;
}

.g-nav-child-li{
  margin-left: 0;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 16px;
}

.g-nav-child-a{
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 5px 0;
  transition: all .3s;
}

.g-nav-child-a:hover{
  color: #FB6CA9;
}

.g-nav-child-a::before{
  position: absolute;
  content: "";
  height: 1px;
  bottom: 5px;
  left: 0;
  background-color: #FB6CA9;
  color: #000;
  transition: all .3s;
}

.g-nav-child-a:hover::before{
  width: 100%;
}

.g-nav-li:hover .g-nav-child-a{
  height: 100%;
}

@media only screen and (max-width: 750px) {
  header{
    height: 50px;
    display: block;
    padding: 10px;
    min-width: 100%;
  }
  
  .g-nav-openbtn{
    display: block;
    position: fixed;
    cursor: pointer;
    width: 50px;
    height:50px;
    z-index: 9999;
    background: none;
    top: 0;
    right: 0;
  }

  .g-nav-openbtn span{
    display: inline-block;
    transition: all .3s;
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 2px;
    background: #000;
    width: 45%;
  }

  .g-nav-openbtn span:nth-of-type(1) {
    top:15px;
  }

  .g-nav-openbtn span:nth-of-type(2) {
    top:23px;
  }

  .g-nav-openbtn span:nth-of-type(3) {
    top:31px;
  }

  .g-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .g-nav-openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .g-nav-openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  
  nav ul{
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  
  nav ul li{
    margin-left: 0;
  }
  
  .g-nav-ul{
    position: fixed;
    top: -100%;
    left: 0;
    background-color: rgba(251,108,169,0.95);
    padding: 10px 30px 30px;
    transition: all .3s;
    opacity: 0;
  }
  
  .g-nav-ul.active{
    top: 50px;
    opacity: 1;
  }
  
  .g-nav-li{
    width: 100%;
    border-top: dotted 1px #FFF;
    line-height: 50px;
    height: 50px;
  }
  
  .g-nav-li:last-child{
    width: 100%;
    border-bottom: dotted 1px #FFF;
  }
  
  .g-nav-a{
    padding: 0;
    position: relative;
  }
  
  .g-nav-a:hover::after {
    width: 0;
  }
  
  .g-nav-a::before{
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    top: 50%;
    right: 8px;
    transform: translatey(-50%);
  }
  
  .g-nav-li:hover::after{
    width: 0;
  }
  
  .g-nav-child{
    display: none;
  }
  
  .g-nav-child:hover{
    display: none;
  }
}


/*--------------------------------------- hero-*/

.hero{
  height: 700px;
  top: 70px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-img-container{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-img-container::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 44%;
  bottom: 0;
  left: 0;
  background: #A6BFCC;
  opacity: .7;
}

.hero-img-container img{
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: ChangeImage 32s infinite;
  opacity: 0;
}

@keyframes ChangeImage{
  0%{ opacity: 0;}
  10%{ opacity: 1;}
  20%{ opacity: 1;}
  30%{ opacity: 0;}
  100%{ opacity: 0;}
}

.hero-img-container img:nth-of-type(1) {
  animation-delay: 0s;
}
.hero-img-container img:nth-of-type(2) {
  animation-delay: 8s;
}
.hero-img-container img:nth-of-type(3) {
  animation-delay: 16s;
}
.hero-img-container img:nth-of-type(4) {
  animation-delay: 24s;
}

.hero.child-hero{
  height: 450px;
  flex-wrap: wrap;
  background-position: center;
}

.hero-title-container{
  width: 80%;
  margin: 50px auto 80px;
}

.lead-h2{
  font-size: 18px;
  letter-spacing: .15em;
  line-height: 30px;
  text-align: center;
  font-weight: 400;
}

.contents-main-title-container{
  width: 800px;
  height: 200px;
  display: flex;
  align-content: center;
  position: relative;
  display: block;
  margin: 0 auto;
  background: rgba(255,255,255,0.8);
  box-sizing: border-box;
  padding-bottom: 20px;
  top: -5px;
}

.contents-main-title-container::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px #fff;
  top: 10px;
  left: 10px;
}

.top-hero .contents-main-title-container{
  width: 715px;
  height: auto;
}

.contents-main-title{
  position: relative;
  text-align: center;
  font-size: 2.5em;
  letter-spacing: 5px;
  padding-top: 1.1em;
}

.main-title-en{
  position: absolute;
  color: #FB6CA9;
  letter-spacing: 0em;
  font-family: "Allison", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 900px){
  .hero-title-container{
    width: 85%;
  }
  
  .child-hero .contents-main-title-container{
    width: 85%;
  }
  
  .top-hero .contents-main-title-container{
    width: 85%;
  }
}

@media only screen and (max-width: 750px) {
  .hero{
    height: 80vh;
    top: 50px;
  }
  
  .hero.top-hero{
    height: 90vh;
  }
  
  .hero-title-container{
    width: 70%;
  }
  
  .contents-main-title{
    font-size: 2.2em;
  }
  
  .hero-title-container{
    width: 80%;
    margin: 30px auto 20px;
  }
  
  .lead-h2{
    width: 80%;
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 16px;
    line-height: 1.5em;
    margin: 10px auto 0;
  }
  
  .hero-img-container::after{
    height: 52%;
  }
}

/*--------------------------------------- qr-set-container-*/
.qr-set-container{
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.child-hero .qr-set-container{
  position: absolute;
  background: #FB6CA9;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  left: calc(50% + 300px);
  top: 90px;
}

.two-column-inner-container .qr-set-container{
  width: 350px;
  align-items: center;
  margin: 0 auto;
  padding: 10px 0;
}

.qr-p{
  font-weight: 700;
  text-align: center;
  margin: -8px 0 5px;
  letter-spacing: 0;
}

.child-hero .qr-p{
  font-size: 0.8em;
  color: #fff;
  width: 100%;
}

.two-column-inner-container .qr-p {
  position: relative;
  display: inline-block;
  height: 12px;
  line-height: 12px;
  margin-right: 6px;
  padding: 0.5rem 1rem 0.5rem 1rem;
  color: #000;
  background: #fff;
}

.two-column-inner-container .qr-p:before {
  position: absolute;
  top: 0;
  right: -12px;
  content: '';
  border-width: 14px 0 14px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

.two-column-inner-container .qr-p:after {
  position: absolute;
  top: calc(50% - 3px);
  right: -5px;
  width: 7px;
  height: 7px;
  content: '';
  border-radius: 50%;
  background: #fff;
}

.qr-container{
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 5px;
  margin: 0 auto;
}

.two-column-inner-container .qr-container{
  width: 110px;
  height: 110px;
  
}

@media only screen and (max-width: 900px){
  .child-hero .qr-set-container{
    left: auto;
    right: 10px;
  }
}

@media only screen and (max-width: 750px){
  .child-hero .qr-set-container{
    width: 110px;
    height: 110px;
  }
  .child-hero .qr-set-container .qr-p{
    font-size: 0.7em;
  }
  .child-hero .qr-container{
    width: 50px;
    height: 50px;
  }
  
  .two-column-inner-container .qr-set-container{
    width: 100%;
  }
  
  .two-column-inner-container .qr-container{
    width: 75px;
    height: 75px;
  }
  .two-column-inner-container .qr-p{
    padding: 0.5rem;
  }
}

/*--------------------------------------- main-title-img-container-*/

.main-title-img-container{
  margin-left: -10%;
  width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  position: absolute;
  height: 380px;
  top: 50%;
  left: 50%;
  display: block;
  transform: translateX(-50%) translateY(-50%);
}

.title-img-a{
  background: #00f;
  width: 240px;
  height: 380px;
  display: block;
  position: absolute;
  right: 0;
  margin-right: 0;
}

.sp-br2{
  display: none;
}

@media only screen and (max-width: 1200px){
  .main-title-img-container{
    width: calc(100vw - 180px);
    height: 300px;
  }
  .title-img-a{
    width: 180px;
    height: 300px;
  }
}

@media only screen and (max-width: 1000px){
  .main-title-img-container{
    width: 180px;
    height: 300px;
    right: -80px;
    transform: translateX(0) translateY(-50%);
  }
  .img-set{
    width: 60%;
    transform: translateX(0);
  }
  
  .sp-br2{
    display: block;
  }
  .img-set .contents-main-title{
    margin-top: 5px;
  }
}

@media only screen and (max-width: 750px){
  .main-title-img-container{
    width: 120px;
    height: 200px;
    right: 30%;
    transform: translateX(-10%) translateY(-14%);
  }
  
  .img-set{
    height: 80%;
  }
  
  .img-set .contents-main-title{
    margin-top: -110px;
  }
  
  .title-img-a{
    width: 120px;
    height: 200px;
  }
  
  .pink-hover{
    top: 70px;
    left: -16%;
    padding: 0 2.5em!important;
  }
}


/*--------------------------------------- main-container-*/

.main-container{
  width: 1100px;
  margin: 50px auto;
  box-sizing: border-box;
  position: relative;
  display: block;
}

.main-inner-container{
  margin: 80px 0 0;
}

.small-width{
  width: 900px;
  margin: 50px auto;
  box-sizing: border-box;
  position: relative;
}

.pink-header{
  font-size: 1.7em;
  color: #FB6CA9;
  text-align: center;
  margin-bottom: 30px;
}

.marker-header{
  background: #E6E6E6;
  padding: 5px;
}

.small-width p{
  line-height: 1.6em;
}

@media only screen and (max-width: 1200px){
  .main-container{
    width: calc(100% - 100px);
    margin: 50px;
  }
}

@media only screen and (max-width: 1000px){
  .small-width{
    width: 100%;
  }
}

@media only screen and (max-width: 750px) {
  .main-container{
    width: calc(100% - 60px);
    margin: 30px;
  }
}



/*--------------------------------------- two-column -*/

.two-column-container{
  display: flex;
  margin: 50px 0;
}

.two-column-container section{
  margin-right: 2em;
  width: 50%;
}

.two-column-container section:last-child{
  margin-right: 0;
}

.two-column-inner-container{
  margin-right: 2em;
  width: 50%;
}

.two-column-inner-container:last-child{
  margin-right: 0;
}

.two-column-inner-container .sub-section{
  width: 100%;
}

.inner-flex{
  display: flex;
  align-items: center;
}

.inner-flex p{
  flex: 1;
}

@media only screen and (max-width: 750px) {
  .two-column-container{
    display: block;
    margin: 30px 0;
  }
  
  .two-column-container section , .two-column-inner-container{
    margin-right: 0;
    width: 100%;
  }
  
  .two-column-container section:last-child ,.two-column-inner-container:last-child{
    margin-top: 30px;
  }
}

/*--------------------------------------- news-section -*/

.news-container{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-top: solid 3px #7EBBD5;
  border-bottom: solid 3px #7EBBD5;
}

.news-title-container{
  position: relative;
  background: url("../img/icn_news.svg") center / 40% no-repeat;
}

.news-title{
  font-size: 20px;
  color: #4A8CC9;
}

.news-inner-container{
  border-left: solid 1px #7EBBD5;
  margin: 0;
  padding: 0 0 0 1em;
  width: calc(100% - 115px);
}

.news-ul{
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.news-li{
  background: url("../img/icn_right_blue.svg") no-repeat;
  background-position: right 10px center;
  background-size: .5em;
  transition: all .3s;
}

.news-li:hover{
  background-position: right 5px center;
}

.news-li:first-child{
  margin-bottom: 5px;
}

.archive-list-a{
  margin: 0;
  padding: 5px 30px 5px 5px;
  display: block;
  text-align: left;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}

.archive-list-a::after{
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #7EBBD5;
  left: 0;
  bottom: 0;
  transition: all .3s;
}

.archive-list-a:hover::after{
  width: 100%;
}

.news-date , .news-content{
  display: inline-block;
  margin: 0;
  padding: 0;
}

.news-date{
  color: #4A8CC9;
}

@media only screen and (max-width: 750px){
  .news-container{
    display: block;
  }
  
  .news-title-container{
    background: url("../img/icn_news.svg") left / 1.5em no-repeat;
    height: 2em;
    line-height: 2em;
    padding-left: 2em;
    margin: 5px 0 20px;;
  }
  
  .news-title{
    margin: 0;
  }
  
  .news-inner-container{
    border-left: none;
    border-top: solid 1px #7EBBD5;
    padding: 10px 0 0 0;
    width: 100%;
  }
}

/*--------------------------------------- about-section -*/

.about-btn , .about-section-B{
  box-sizing: border-box;
  padding: 2em;
  background-color: #FFAD30;
  border-radius: 10px;
  position: relative;
  z-index: 100;
  transition: all .3s;
}

.about-btn:hover{
  opacity: 0.8;
}

.about-btn::before , .about-section-B::before{
  position: absolute;
  content: "";
  width: calc(100% - 1em);
  height: calc(100% - 1em);
  border: solid 1px #fff;
  border-radius: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
}

.about-section-B{
  margin-top: 50px;
  padding-top: 1em;
}

.about-section-B .two-column-container{
  position: relative;
  margin: 0;
}

.about-title{
  text-align: center;
}

.icn-conteiner{
  width: 3em;
  margin: 0 auto;
}

.about-topics-ul{
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.about-txt-container .about-topics-ul{
  justify-content: flex-start;
}

.about-topics-li{
  padding: 5px 2em;
  border-radius: 1em;
  margin-right: 1em;
  font-size: 0.8em;
  background: #C93B00;
  color: #fff;
}

.about-topics-li:last-child{
  margin-right: 0;
}

.career-counseling .about-topics-li{
  padding: 2px 2em;
  font-size: 1em;
}

.about-txt-container .about-p{
  margin: 10px 0;
}

.hover-action{
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  border: solid 1px #fff;
  color: #fff;
  overflow: hidden;
  transition: all .3s;
  z-index: 300;
}

.hover-action::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: -100%;
  transition: all .3s;
}

.job-sumida-txt-container .hover-action{
  border: solid 1px #000;
  color: #000;
}

.job-sumida-txt-container .hover-action::before{
  background-color: #000;
}

.hover-action.pink-hover{
  color: #FB6CA9;
  border: solid 1px #FB6CA9;
  text-align: center;
  width: fit-content;
  margin: -20px auto 0;
  padding: 0 6em;
  justify-content: center;
}

.hover-action.pink-hover::before{
  background-color: #FB6CA9;
}

.hover-action.pink-hover:hover::before{
  left: 0;
}

.hover-action.pink-hover a{
  color: #FB6CA9;
  text-align: center;
  width: 100%;
  padding: 0 auto;
  transition: all .3s;
}

.hover-action.pink-hover:hover a{
  color: #fff;
  z-index: 900;
}

.hover-p{
  margin: 5px 0;
  padding: 0;
  z-index: 301;
}

.job-sumida-txt-container .hover-action .hover-p{
  line-height: 1em;;
}

.about-btn:hover .hover-action{
  color: #FFAD30;
}

.sumida-btn:hover .job-sumida-txt-container .hover-action{
  color: #fff;
}

.about-btn:hover .hover-action::before , .sumida-btn:hover .job-sumida-txt-container .hover-action::before{
  left: 0;
}

.about-btn:hover .hover-action > .hover-p , .sumida-btn:hover .job-sumida-txt-container .hover-action > .hover-p{
  font-weight: 700;
}

@media only screen and (max-width: 750px){
  .about-topics-li{
    padding: 5px 1.5em;
    text-align: center;
  }
  
  .career-counseling .about-topics-ul{
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .career-counseling .about-topics-li{
    box-sizing: border-box;
    min-width: 47%;
    padding: 2px auto;
    width: auto;
    margin: 0;
  }
  
  .career-counseling .about-topics-li:nth-child(n+3){
    margin-top: 0.5em;
  }
  
  .about-txt-container .about-topics-ul{
    justify-content: center;
  }
}

/*--------------------------------------- banner-section -*/

.banner-container{
  border-radius: 10px;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 30px 0 20px;
}

.job-sumida , .banner-counseling{
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all .3s;
}

.job-sumida::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("../img/banner_job_sumida_img.png") center center no-repeat;
  background-size: cover;
  z-index: -1;
  transition: all .3s;
}

.job-sumida:hover::before{
  transform: scale(1.1);
}

.banner-counseling{
  margin-bottom: 100px;
}

.sumida-btn , .banner-counseling .about-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  transition: all .3s;
}

.job-sumida:hover{
  opacity: .8;
}

.pink-circle{
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: #FA388E;
  text-align: center;
  transform: rotate(-15deg);
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.pink-circle h4{
  line-height: 1.8em;
}

.circle-strong{
  font-size: 28px;
}

.job-sumida-txt-container{
  width: 430px;
  height: 100%;
  margin-right: 15px;
}

.banner-title-sumida{
  width: 100%;
}

.banner-title-sumida img{
  width: 100%;
}

.job-sumida-txt-container p{
  margin: 10px 0;
}

.about-title-container{
  width: calc(100% - 500px);
  margin-left: 20px;
}

.about-title-container .icn-conteiner{
  width: 42%;
  margin: -7px auto 0;
}

.about-title-container .icn-conteiner img{
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}

.about-title-container .about-title{
  margin: 0 5px 5px;
}

.about-txt-container{
  width: 420px;
  margin: 0 20px;
}

@media only screen and (max-width: 1000px){
  .job-sumida-txt-container{
    width: calc(100% - 200px);
    margin-right: 20px;
  }
  .pink-circle{
    margin-left: 20px;
  }
  
  .about-title-container{
    width: calc(100% - 60% - 60px);
  }
  
  .about-txt-container{
    width: 60%;
  }
}

@media only screen and (max-width: 750px){
  .banner-container{
    height: auto;
  }
  
  .sumida-btn , .banner-counseling .about-btn{
    display: block;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .banner-counseling .about-btn{
    padding-bottom: 30px;
  }
  
  .pink-circle{
    width: 100%;
    height: 40px;
    margin: 0 auto 20px;
    transform: rotate(0);
    border-radius: 10px;
  }
  
  .job-sumida-txt-container , .about-txt-container{
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .banner-counseling{
    margin-bottom: 30px;
  }
  
  .about-title-container{
    width: 100%;
    margin: 10px 0 20px 0;
  }
  
  .about-title-container .icn-conteiner{
    width: 6em;
  }
}

/*--------------------------------------- informatino-contianer -*/

.informatino-contianer{
  background: #FDCCE1;
  padding: 5px 30px;
  margin: 30px 0;
}

.informatino-contianer .sub-section-title{
  border-bottom-color: #fff;
}

.comment-p{
  border-left: solid 3px #FB6CA9;
  border-right: solid 3px #FB6CA9;
  padding: 5px 20px;
}

/*--------------------------------------- access-section -*/

.icn-title-container{
  padding-top: 80px;
  position: relative;
  text-align: center;
}

.icn-title-single-container{
  margin-top: 60px;
  display: flex;
}

.basic-title{
  font-size: 2em;
  margin-top: -0.3em;
  line-height: 1.5em;
}

.career-counseling .basic-title{
  margin-top: 0.5em;
}

.icn-title-single-container .basic-title{
  font-size: 1.9em;
  display: inline-block;
}

.icn-title-single-container .icn-conteiner{
  height: 2.3em;
  margin: -7px 5px 0 0;
  padding: 0;
  display: inline-block;
}

.icn-title-single-container .icn-conteiner img{
  height: 100%;
}

@media only screen and (max-width: 750px){
  .icn-title-single-container .basic-title{
    line-height: 1em;
    font-size: 1.6em;
  }
  
  .icn-title-single-container .basic-title .small-cap{
    font-size: .7em;
  }
  
  .icn-title-single-container .icn-conteiner{
    margin: 0 5px 0 0;
  }
}

.sub-section-title i{
  color: #FB6CA9;
}

.sub-section-title{
  border-bottom: solid 1px #D2D2D2;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1em;
}

.phone-num{
  color: #FB6CA9;
  font-size: 2.8em;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.phone-num .small-cap{
  font-size: 0.5em;
  margin-right: 0.3em;
}

.access-section-p{
  margin-top: 0;
}

.sub-section-ul{
  padding: 0;
}

.sub-section-li{
  position: relative;
  padding-left: 1.2em;
}

.sub-section-li::before{
  position: absolute;
  content: "○";
  left: 0;
  top: 0.2em;
  font-size: 0.6em;
  color: #FB6CA9;
}

@media only screen and (max-width: 750px) {
  .phone-num{
    font-size: 2.2em;
    text-align: left;
  }
  .sub-section-li{
    margin-bottom: 0.8em;
  }
}

.access-section .two-column-container{
  margin-bottom: 10px;
}

/*--------------------------------------- sticky-container -*/

.sticky-container{
  position: sticky;
  top: 90px;
  left: 0;
  margin-bottom: 70px;
}

.side-balloon-title-container{
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 12px;
  padding: 13px;
  border: 1px solid #eb699f;
  background-color: #ffffff;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.side-balloon-title-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 12px 12.5px 0 12.5px;
  border-color: #eb699f transparent transparent;
  translate: -50% 100%;
}

.side-balloon-title-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10.6px 11.1px 0 11.1px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

.side-balloon-icn-container{
  width: 2.1em;
  margin: 0;
  display: block;
  margin-right: 10px;
}

.side-balloon-icn-container img{
  width: 100%;
  height: auto;
}

.side-balloon-title{
  margin: 0;
  font-size: 17px;
  letter-spacing: normal;
}

.side-strong{
  font-size: 22px;
}

/*--------------------------------------- side-banner -*/

.side-banner{
  width: 100%;
  height: auto;
  text-align: center;
  box-sizing: border-box;
  margin: 20px 0;
}

.side-banner:hover{
  opacity: .8;
}

.side-gousetsu , .side-saiyou{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 0 0 0;
  overflow: hidden;
  box-sizing: border-box;
}

.side-gousetsu::before , .side-saiyou::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all .3s;
}

.side-gousetsu:hover::before , .side-saiyou:hover::before{
  transform: scale(1.1);
}

.side-gousetsu::before{
  background: url("../img/bg_side_gousetsu.png") center no-repeat;
  background-size: cover;
}

.side-saiyou::before{
  background: url("../img/bg_side_saiyou.png") center no-repeat;
  background-size: cover;
}

.side-gousetsu-inner , .side-saiyou-inner{
  width: 100%;
  height: 100%;
  padding: 0 35px 25px;
  box-sizing: border-box;
  position: relative;
}

.side-gousetsu-inner{
  background: rgba(255,173,48,.6);
}

.side-saiyou-inner{
  background: rgba(251,108,169,.6);
}

.side-banner-h4{
  background: #000;
  color: #fff;
  padding: 2px 2em 3px;
  position: absolute;
  width: 6em;
  top: -2.1em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
}

.side-banner-h3{
  margin-bottom: 15px;
  padding: 25px 0 15px;
  border-bottom: solid 1px #000;
  position: relative;
  display: block;
  font-size: 22px;
  box-sizing: border-box;
}

.side-banner-h3::after{
  content: "";
  position: absolute;
  width: 1.6em;
  height: 5px;
  background: #000;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.side-banner-p-container , .side-banner-p{
  padding: 0;
  margin: 0;
}

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

footer{
  background: #E6E6E6;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
}

.services-section{
  width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

.white-box{
  background: #fff;
  padding: 3px 20px;
  border-radius: 10px;
  box-sizing: border-box;
}

.services-title{
  border-bottom: solid 3px #FB6CA9;
  color: #FB6CA9;
  padding-bottom: 10px;
}

@media only screen and (max-width: 1200px){
  .services-section{
    width: calc(100% - 100px);
  }
}

@media only screen and (max-width: 750px) {
  .services-section{
    width: calc(100% - 60px);
  }
  
  .services-title{
    text-align: center;
    line-height: 1.5em;
  }
  
  .white-box{
    padding: 3px 20px;
  }
}

.footer02{
  background: #000;
  color: #fff;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 30px;
}

.footer-nav{
  display: block;
}

.footer-nav-ul{
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav-ul:first-child{
  margin-top: 30px;
  margin-bottom: 5px;
}

.footer-nav-ul:last-child{
  margin-top: 0;
  margin-bottom: 50px;
}

.footer-nav-li{
  height: 1.5em;
  line-height: 1.5em;
  margin-bottom: .2em;
  position: relative;
  width: content-fit;
}

.footer-nav-li .g-nav-a{
  font-size: 0.9em;
  height: 100%;
  padding-bottom: 0;
}

.footer-nav-li .g-nav-a::after {
  bottom: 0;
  height: 1px;
}

.copyright-p{
  text-align: center;
  font-size: 0.8em;
  line-height: 1em;
}

@media only screen and (max-width: 750px){
  
  .footer-nav{
    margin: 30px 30px 40px;
  }
  
  .footer-nav-li{
    border-top: dotted 1px #FFF;
    height: 50px;
    line-height: 50px;
  }
  
  .last-a{
    border-bottom: dotted 1px #FFF;
    height: 50px;
    line-height: 50px;
  }
  .copyright-p{
    line-height: 1.4em;
  }
}

/*---------------------------------------pagetop*/

.pagetop{
  position: fixed;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #676767;
  border-radius: 50%;
  text-align: center;
  transition: .5s;
  right: 20px;
  bottom: 0;
  z-index: 500;
  opacity: 0;
}

.pagetop.pt-active{
  opacity: 1;
}

.pagetop a , .pagetop a:hover , .pagetop a:visited{
  color: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.pagetop a i{
  position: absolute;
  top: 50%;
  right: 48%;
  transform: translateX(50%) translateY(-50%);
  -webkit- transform: translateX(50%) translateY(-50%);
  font-size: 0.9em;
}

/*---------------------------------------contact*/

.contact-cintainer{
  width: 900px;
  margin: 30px auto;
  text-align: center;
  padding: 0;
}

@media only screen and (max-width: 1000px){
  .contact-cintainer{
    width: calc(100% - 100px);
    margin: 30px 50px 30px 45px;
  }
}

@media only screen and (max-width: 750px){
  .contact-cintainer{
    width: calc(100% - 20px);
    margin: 30px 10px 30px 5px;
  }
}

.contact-label{
  margin: 0;
  padding: 0;
}

.contact-p{
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: -10px;;
}

.label-small{
  font-size: 0.9em;
  color: #4d4d4d;
}

.form-area{
  width: 100%;
  padding: 10px;
  margin: 0 0 20px;
  background: #E6E6E6;
  border-radius: 5px;
  border: none;
}

.submit-btn{
  width: 80%;
  background: #FB6CA9;
  border-radius: 5px;
  color: #fff;
  border: none;
  padding: 10px;
  transition: all .3s;
  margin: 1.8em auto 0;
  text-align: center;
  display: block;
  font-weight: 700;
  font-size: 1.4em;
}

.submit-btn:hover{
  opacity: 0.8;
}

.label-mark{
  background: #FB6CA9;
  color: #fff;
  border-radius: 5px;
  margin-left: 5px;
  padding: 0 10px;
  font-size: 0.8em;
}

.contact-cap{
  text-align: center;
  margin-bottom: 1em;
}


/*---------------------------------------jigyou*/

#about-event , #about-advice{
  padding-bottom: 0;
  display: block;
  position: relative;
  margin-top: -50px;
  padding-top: 50px;
}

.bg-white-container.two-column-container{
  align-items: flex-end;
  align-content: flex-end;
}

.bg-white-right-container{
  width: 300px;
  margin-left: 50px;
  position: relative;
}

@media only screen and (max-width: 750px){
  .bg-white-right-container{
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
}

.service-headline-container{
  display: flex;
  align-items: center;
  
}

.service-headline-bk{
  background: #000;
  color: #fff;
  padding: 0 .8em 4px;
  font-size: 18px;
  margin: 0;
}

.service-headline-pk{
  color: #FB6CA9;
  font-size: 50px;
  margin: -12px 0 0 10px;
}

.ul-bk-title{
  padding-bottom: 10px;
  border-bottom: solid 1px #000;
  width: 100%;
  font-size: 32px;
  margin: 15px 0;
  display: block;
}

.label-img , .label-img img{
  width: 100%;
}

.c {
  text-align: center;
}
.overlay { /* グレーの背景 */
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s 0s ease;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#pop-up , #pop-up2 {
  display: none;
}
#pop-up:checked + .overlay , #pop-up2:checked + .overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  background-color: #000000D0;
  width: 100%;
}
.popWindow {
   border-radius: 5px;
  overflow: auto; /* スクロールバー用 */
  height: 90%; /* すき間 */
  width: fit-content; /* 横幅が広い時に白の部分が大きくならないため */
  position: fixed;
  top: 50%; /* 中央に */
  left: 50%; /* 中央に */
  transform: translate(-50%, -50%); /* 中央に */
  z-index: 100010;
  font-size: 13px;
  line-height: 18px;
  margin: 10px auto;
  padding: 4px 10px;
  background: #FFFD; /* 枠の色 */
  text-align: center; /* 文字を中央寄せ */
  transition: all 500ms ease-in-out;
}

.popWindow2 {
   border-radius: 5px;
  overflow: auto; /* スクロールバー用 */
  height: fit-content; /* すき間 */
  width: 70%; /* 横幅が広い時に白の部分が大きくならないため */
  position: fixed;
  top: 50%; /* 中央に */
  left: 50%; /* 中央に */
  transform: translate(-50%, -50%); /* 中央に */
  z-index: 100010;
  font-size: 13px;
  line-height: 18px;
  margin: 10px auto;
  padding: 4px 10px;
  background: #FFFD; /* 枠の色 */
  text-align: center; /* 文字を中央寄せ */
  transition: all 500ms ease-in-out;
}

.popWindow img{
  width: auto;
  height: 100%;
}

.popWindow2 img{
  width: 100%;
  height: auto;
}
.popWindow .close , .popWindow2 .close {
  position: absolute;
  top: 8px;
  right: 10px;
  transition: all 300ms;
  font-size: 24px;
  line-height: inherit;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  padding: 2px;
}
.popWindow .close:hover , .popWindow2 .close:hover {
  color: #06D85F;
}
.popWindow::-webkit-scrollbar-track , .popWindow2::-webkit-scrollbar-track {
  background: none;
}
.popWindow::-webkit-scrollbar , .popWindow2::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.popWindow::-webkit-scrollbar-thumb , .popWindow2::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}
.clickable:hover {
  cursor: pointer;
}

.hover-pink-line , .hover-pink-fill{
  text-align: center;
  width: fit-content;
  text-align: center;
  position: relative;
  border: solid 1px #FB6CA9;
  overflow: hidden;
  transition: all .3s;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.hover-pink-line{
  color: #FB6CA9;
  padding: 0 3em;
}

.hover-pink-fill{
  padding: 0;
  width: 100%;
  color: #fff;
}

.hover-pink-line::before , .hover-pink-fill::before , .hover-pink-fill::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  transition: all .3s;
}

.hover-pink-line::before , .hover-pink-fill::before{
  left: -100%;
}

.hover-pink-fill::after{
  background-color: #FB6CA9;
  left: 0;
}

.hover-pink-line::before{
  background-color: #FB6CA9;
}

.hover-pink-fill::before{
  background-color: #fff;
}

.hover-pink-line:hover::before , .hover-pink-fill:hover::before{
  left: 0;
}

.hover-pink-fill:hover::after{
  left: 100%;
}

.hover-pink-line a{
  text-align: center;
  width: 100%;
  display: block;
  color: #FB6CA9;
  transition: all .3s;
}

.hover-pink-line a:hover{
  color: #fff;
  font-weight: 700;
}

.hover-pink-fill:hover{
  color: #FB6CA9;
  font-weight: 700;
}

.bg-gray-container{
  display: block;
  position: relative;
  width: 100%;
  height: fit-content;
  top: 0;
  left: 0;
  padding: 50px 0;
  box-sizing: border-box;
}

.bg-gray-container::before{
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #D5DCE3;
  z-index: -1;
}

.service-sub-title{
  display: block;
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 0 0 1.5em;
  font-size: 25px;
  margin: 25px 0 10px;
  box-sizing: border-box;
}

.service-sub-title::before{
  content: "";
  position: absolute;
  width: 1em;
  height: 4px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #FB6CA9;
  z-index: -1;
}