@charset "UTF-8";
/* CSS Document */
.header {
  /*width: 375px;*/
  height: 54px;
  background-color: #aebac3;
}
.header__navigation {
  display: none;
}
.header h1 {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 18px;
  color: #fff;
  padding-top: 11px;
}
/*header-pc*/
@media (min-width: 480px) {
  .header {
    /*width: 1440px;*/
    height: 100px;
    background-color: #aebac3;
  }
  .header__navigation {
    display: block;
  }
  .header h1 {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 22px;
    color: #fff;
    padding-top: 30px;
    margin-left: 24px;
  }
  .header__navigation ul {
    position: absolute;
    right: 200px;
    display: flex;
    gap: 50px;
    margin-top: -30px;
  }
  .header__navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    max-width: 1040px;
    margin: 0 auto;
  }
  /*ゆっくり透明に*/
  .header__navigation a {
  transition: .3s;
  }

/*ホバー時に透明度50%*/
  .header__navigation a:hover {
  opacity: 0.5;
  }
}
/*Franchise-sp*/
.section_Franchise {
  /*width: 375px;*/
  background-color: #f7f7f7;
}
.logo-background_sp {
  margin-top: 80px;
}
.section_Franchise p {
  font-size: 1.2rem;
  padding-top: 64px;
  color: #545458;
}
.section_Franchise h2 {
  font-size: 3.0rem;
  color: #545458;
  font-weight: 300;
  margin-top: -17px;
  border-bottom: solid 1px #d8d8d6;
}
p.section_Franchise_read_pc {
  display: none;
}
p.section_Franchise_read_sp {
  font-size: 1.4rem;
  text-align: center;
  padding-top: 0;
  margin-top: 25px;
  padding-bottom: 100px;
  color: #545458;
}
p.section_Franchise_read_sp.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section_Franchise h3 {
  font-size: 1.8rem;
  margin-top: -360px;
  text-align: center;
  position: relative;
  color: #545458;
}
.section_Franchise h3.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section_Franchise h3::before {
  content: "";
  position: absolute;
  background-image: url("../images/common/WorldBurger-ashirai_sp.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25%;
  height: 40px;
  top: 27px;
  left: 230px
}

/*slider*/
.slider-2 .slick-slide {
  width: 600px;
  height: 400px;
  margin: 0 40px;
  position: relative;
  overflow: hidden;
}
.slider-2 .slick-slide img {
  display: block;
  /*width: 300px;
  height: 300px;*/
  object-fit: cover;
}
.slider-2 li{
  width: 300px;
  height: 300px;
}
.slider-2 .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 180px;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.slider-2 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
.slider-2 .slick-next {
  right: 0;
}
.slider-2 .slick-prev {
  left: 0;
}
.slider-2 .slick-next::before {
  left: 20px;
}
.slider-2 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}
.dots-2 .slick-dots {
  text-align: center;
}
.dots-2 .slick-dots li {
  display: inline-block;
}
.dots-2 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots-2 .slick-dots .slick-active button {
  background: #0a467d;
}
/*Franchise-pc*/
@media (min-width: 480px) {
  .section_Franchise {
    /*width: 1440px;*/
    background-color: #f7f7f7;
  }
  .section_Franchise p {
    font-size: 2rem;
    padding-top: 125px;
  }
  .section_Franchise h2 {
    font-size: 6rem;
    font-weight: 300;
    margin-top: -17px;
    border-bottom: solid 1px #d8d8d6;
    width: 1040px;
  }
  .logo-background_sp {
    width: 60%;
    text-align: center;
  }
  .logo {
    text-align: center;
  }
  p.section_Franchise_read_sp {
    display: none;
  }
  p.section_Franchise_read_pc {
    display: block;
    font-size: 2rem;
    line-height: 48px;
    text-align: center;
    padding-top: 0;
    padding-bottom: 100px;
    transform: translate(10px, -220px);
  }
  p.section_Franchise_read_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
  .section_Franchise h3 {
    font-weight: 300;
    font-size: 3rem;
    transform: translate(10px, -350px);
    position: relative;
  }
  .section_Franchise h3::before {
    content: "";
    position: absolute;
    background-image: url("../images/common/WorldBurger-ashirai_pc.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 20%;
    height: 60px;
    top: 30px;
    left: 680px;
  }
}
/*Recruitment_started-sp*/
.section_Recruitment_started {
  background-color: #f7f7f7;
}

/*slider*/
.slider-8 .slick-slide {
  width: 300px;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.slider-8 .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section_Recruitment_started h3 {
  font-size: 1.6rem;
  color: #545458;
  text-align: center;
  margin: 50px auto 0;
}
.section_Recruitment_started h3.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Recruitment_started_read_sp {
  display: block;
  color: #545458;
  font-size: 1.4rem;
  margin-top: 20px;
  margin-left: 30px;
  padding-bottom: 50px;
}
.Recruitment_started_read_sp.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Recruitment_started_read_pc {
  display: none;
}
/*Recruitment_started-pc*/
@media (min-width: 480px) {
  .section_Recruitment_started h3 {
    font-size: 2.4rem;
    text-align: center;
    margin: 100px auto 0;
  }
  .Recruitment_started_read_pc {
    color: #545458;
    display: block;
    font-size: 1.8rem;
    line-height: 27px;
    text-align: center;
    margin: 60px auto 0;
    padding-bottom: 70px;
  }
  .Recruitment_started_read_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
  .Recruitment_started_read_sp {
    display: none;
  }
}
/*Message-sp*/
.Message_read_pc {
  display: none;
}
p.Message_read_sp {
  display: block;
  font-size: 1.4rem;
  color: #FFF;
  transform: translate(30px, 120px);
}
p.Message_read_sp.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section_Message {
  background-image: url("../images/top/globe-sp.png");
  background-size: cover;
  background-repeat: no-repeat;
  /*width: 375px;*/
  height: 578px;
}
.Message-ja {
  font-size: 1.2rem;
  padding-top: 110px;
  text-align: center;
  color: #FFF;
}
.section_Message h2 {
  font-size: 3rem;
  text-align: center;
  font-weight: 300;
  margin-top: -20px;
  position: relative;
  color: #eeeeee;
}
.section_Message h2::before {
  content: '';
  border-bottom: 1px solid #FFF;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
}
.Message-content {
  transform: translate(75px, 90px);
}
/*Message-pc*/
@media (min-width: 480px) {
  p.Message_read_pc {
    display: block;
    font-size: 1.6rem;
    color: #FFF;
    transform: translate(400px, 130px);
  }
  p.Message_read_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
  p.Message_read_sp {
    display: none;
  }
  .section_Message {
    background-image: url("../images/top/globe-pc.png");
    background-size: cover;
    background-repeat: no-repeat;
    /*width: 1440px;
    height: 646px;*/
    width: 100vw;
    height: 45vw;
  }
  .Message-ja {
    font-size: 1.2rem;
    padding-top: 110px;
    text-align: center;
    color: #FFF;
  }
  .section_Message h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: 300;
    margin-top: -20px;
    position: relative;
    color: #eeeeee;
  }
  .section_Message h2::before {
    content: '';
    border-bottom: 1px solid #FFF;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
  }
  .Message-content {
    transform: translate(240px, 70px);
  }
}
/*Support-sp*/
.section_Support {
  background-color: #f7f7f7;
}
.Support-ja {
  font-size: 1.2rem;
  padding-top: 110px;
  text-align: center;
  color: #545458;
}
.section_Support h2 {
  font-size: 3rem;
  text-align: center;
  font-weight: 300;
  margin-top: -20px;
  position: relative;
  color: #545458;
}
.section_Support h2::before {
  content: '';
  border-bottom: 1px solid #545458;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  margin-top: 5px;
}
.support-img.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Support-content {
  transform: translate(0px, -40px);
}
.section-Support-title_pc {
  display: none;
}
.section-Support-read_pc {
  display: none;
}
.section-Support-title_sp {
  display: block;
  color: #545458;
  line-height: 27px;
  font-size: 1.4rem;
  margin-top: 25px;
  margin-left: 30px;
}
.section-Support-title_sp.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section-Support-read_sp {
  display: block;
  color: #545458;
  line-height: 27px;
  white-space: nowrap;
  font-size: 1.4rem;
  margin-top: 25px;
}
.section-Support-read_sp.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*Support-pc*/
@media (min-width: 480px) {
  .section_Support {
    background-color: #f7f7f7;
  }
  .support-img {
    width: 327px;
    height: 300px;
  }
  .support-img_content {
    display: flex;
  }
  .Support-ja {
    font-size: 1.2rem;
    padding-top: 110px;
    text-align: center;
    color: #545458;
  }
  .section_Support h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: 300;
    margin-top: -20px;
    position: relative;
    color: #545458;
  }
  .section_Support h2::before {
    content: '';
    border-bottom: 1px solid #545458;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    margin-top: 5px;
  }
  .Support-content {
    transform: translate(100px, 40px);
  }
  .section-Support-title_sp {
    display: none;
  }
  .section-Support-read_sp {
    display: none;
  }
  .section-Support-title_pc {
    display: block;
    color: #545458;
    line-height: 27px;
    font-size: 1.6rem;
    white-space: nowrap;
    transform: translate(115px, 130px);
  }
  .section-Support-title_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
  .section-Support-read_pc {
    display: block;
    color: #545458;
    line-height: 27px;
    white-space: nowrap;
    font-size: 1.4rem;
    transform: translate(-250px, 200px);
  }
  .section-Support-read_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
}
/*Funtoknow-sp*/
.section_Funtoknow {
  background-color: #f7f7f7;
  padding-bottom: 70px;
}
.Funtoknow-ja {
  font-size: 1.2rem;
  padding-top: 110px;
  text-align: center;
  color: #545458;
}
.section_Funtoknow h2 {
  font-size: 3rem;
  text-align: center;
  font-weight: 300;
  margin-top: -20px;
  position: relative;
  color: #545458;
}
.section_Funtoknow h2::before {
  content: '';
  border-bottom: 1px solid #545458;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
}
.funtoknow-img.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Funtoknow-content {
  transform: translate(0px, -40px);
}
.section-funtoknow-title_pc {
  display: none;
}
.section-funtoknow-read_pc {
  display: none;
}
.section-funtoknow-title_sp {
  display: block;
  color: #545458;
  font-size: 1.4rem;
  margin-top: 25px;
  margin-left: 30px;
}
.section-funtoknow-title_sp.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section-funtoknow-read_sp {
  display: block;
  color: #545458;
  font-size: 1.4rem;
  white-space: nowrap;
  margin-top: 25px;
}
.section-funtoknow-read_sp.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*Funtoknow-pc*/
@media (min-width: 480px) {
  .section_Funtoknow {
    background-color: #f7f7f7;
    padding-bottom: 145px;
  }
  .funtoknow-img {
    width: 327px;
    height: 300px;
  }
  .funtoknow-img_content {
    display: flex;
  }
  .funtoknow-ja {
    font-size: 1.2rem;
    padding-top: 110px;
    text-align: center;
    color: #333;
  }
  .section_funtoknow h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: 300;
    margin-top: -20px;
    position: relative;
    color: #333;
  }
  .section_funtoknow h2::before {
    content: '';
    border-bottom: 1px solid #333;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    margin-top: 5px;
  }
  .Funtoknow-content {
    transform: translate(100px, 40px);
  }
  .section-funtoknow-title_sp {
    display: none;
  }
  .section-funtoknow-read_sp {
    display: none;
  }
  .section-funtoknow-title_pc {
    display: block;
    color: #545458;
    line-height: 27px;
    font-size: 1.6rem;
    white-space: nowrap;
    transform: translate(105px, 100px);
  }
  .section-funtoknow-title_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
  .section-funtoknow-read_pc {
    display: block;
    color: #545458;
    line-height: 27px;
    white-space: nowrap;
    font-size: 1.4rem;
    transform: translate(-170px, 175px);
  }
  .section-funtoknow-read_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
}