/*
Theme Name: yellv3(Final)
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');  

.zen-maru-gothic-light {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 300;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

.noto-sans-jp-regular {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html{
  font-family: 'Noto Sans JP', sans-serif, "Arial", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
  color: #000000;
  transition: 0.3s all ease-in-out;
}

p{
  font-size: 14px;
  line-height: 200%;
}

img{
  max-width: 100%;
  height: auto;
}

video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

h1, h2, h3, h4, h5, h6{
  margin: 0;
}

.font__bold{
  font-weight: bold;
}

.font__bolder{
  font-weight: 900;
}

body{
  overflow-x: hidden;
  background: rgb(249, 248, 243);
  color: rgb(0, 0, 0);
  margin: 0;
  padding: 0;
}


body[lang="en"]{
  font-family: 'Noto Sans JP', sans-serif, "Arial", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/** ---------------- ANIMATIONS ---------------- */
.fade.active {
	animation-name: fadeAnimation;
	animation-duration: 2s;
	animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

/* fadeUp */
.fadeUp.active {
  animation-name:fadeUpAnime;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode:forwards;
  opacity:0;
}


  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }


.fadeUp {
    opacity: 0;
}

.ani-delay-1s{
  animation-delay: 0.5s !important;
}

.ani-delay-2s{
  animation-delay: 1s !important;
}

.ani-delay-3s{
  animation-delay: 1.5s !important;
}

.ani-delay-4s{
  animation-delay: 2s !important;
}

.ani-delay-5s{
  animation-delay: 2.5s !important;
}

.ani-delay-6s{
  animation-delay: 3s !important;
}

.ani-delay-7s{
  animation-delay: 3.5s !important;
}

.ani-delay-8s{
  animation-delay: 4s !important;
}

@keyframes fadeAnimation {
  from {
  	filter: blur(10px);
	  opacity: 0;
  }

  to {
	  filter: blur(0);
	  opacity: 1;
  }
}

/* Navbar */
header{
  position: relative;
  z-index: 4;
  top: 0;
  width: 100%;
}

main{
	top: -23px;
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 135px;
  overflow: hidden;
}

.background-image-top{
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.background-image-middle{
  position: absolute; 
  top: 21%; 
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 
  width: 100%;
  z-index: -1;
}

.background-image-bottom{
  position: absolute;
  bottom: -5%;
  width: 100%;
  z-index: -1;
}


.background-image-top svg, .background-image-bottom svg, .background-image-top img, .background-image-bottom img, .background-image-middle svg, .background-image-middle img{
  height: auto;
  max-width: 100%;
  width: 100%;
}



.background-image-top .bg-top-pc-green,
.background-image-top .bg-top-pc-pink,
.background-image-middle .bg-middle-pc-pink,
.background-image-bottom .bg-bottom-pc-green,
.background-image-bottom .bg-bottom-pc-pink{
  display: block;
}

.background-image-top .bg-top-sp-green,
.background-image-top .bg-top-sp-pink,
.background-image-middle .bg-middle-sp-pink,
.background-image-bottom .bg-bottom-sp-green,
.background-image-bottom .bg-bottom-sp-pink{
  display: none;
}

.navigation{
  display: flex;
  justify-content: center;
  margin-top: 120px;
}

.navigation a, .navigation span{
  font-weight: 900;
  font-family: "Zen Maru Gothic", serif;
  border: 1px solid #DA6473;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #fff;
  color: #DA6473;
  height: 54px;
  width: 54px;
  margin: 0 10.5px;
}

.navigation a:hover{
  background: #DA6473;
  color: #fff;
}

.navigation span{
  background: #DA6473;
  color: #fff;
}



nav{
  color: rgba(135, 128, 132, 1);
  border-radius: 0;
  border: none;
  padding: 0;
  width: 100%;
}

nav ul li{
  list-style-type: none;
  padding: 0 15px;
}

nav ul li:first-child{
  padding: 0 15px 0 0;
}

nav ul li:last-child{
  padding: 0 0 0 15px;
}

nav > .container{
  width: 100%;
  background: transparent;
}

.main-nav, .main-nav-pc{
  top: 0;
  position: fixed;
  width: 100%;
  display: flex;
  padding: 30px 60px;
  align-items: center;
  justify-content: space-between;
  background: rgb(249, 248, 243, 0.3);
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px);
}

.main-nav > .company-logo > a{
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
}

.main-nav > .company-logo > a > img{
	width: 75px;
  height: 75px;
  margin-right: 20px;
}

.main-nav > .company-logo > a > .nav-company-name > p{
  display: flex;
  flex-direction: column;
  font-family: "Zen Maru Gothic", serif;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > .company-logo > a > .nav-company-name > p > span{
  font-size: 27px;
}

.nav-and-button-wrapper{
  position: relative;
  align-items: center;
  display: flex;
  justify-content: flex-end;
  /* width: 100%; */
}

.nav-and-button-wrapper[data-visible="true"]{
  height: 100%;
  transform: translateX(0);
}

.nav-links-wrapper{
  font-size: 0;
  display: flex;
}

ul.nav-menu{
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

ul.nav-menu > li > a.link-name-jap{
  color: #000000; 
  font-size: 14px; 
  font-family: "Zen Maru Gothic", serif; 
  font-weight: 700; 
  line-height: 14px; 
  letter-spacing: 1.40px; 
  word-wrap: break-word;
}

.nav-and-button-wrapper[data-visible="true"] ul.nav-menu > li > a.link-name-jap.active-link{
  color: #fff;
  border-bottom: 1px solid #fff;
}

ul.nav-menu > li > a.link-name-jap.active-link{
  color: #DA6473; 
}

ul.nav-menu > li > a.link-name-jap:hover{
  color: #DA6473;
}

ul.nav-menu > li > a.inquiry-button{
  background: #DA6473;
  color: #fff;
  border: 3px #DA6473 solid;
  border-radius: 24px;
  padding: 12px 30px;

}

ul.nav-menu > li > a.inquiry-button:hover{
  background: #F9F8F3;
  color: #DA6473;
}

.navbar-toggle-wrapper{
  display: none;
}

.close-menu-label {
  display: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-menu-design {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.heading-title{
  display: flex;
  align-items: center;
}

.heading-title > p{
  font-family: "Zen Maru Gothic", serif;
  font-size: 16px;
  font-weight: 900;
  color: #DA6473;
  margin-right: 10px;
}

/* GENERAL CLASSES */
.general-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 120px 180px 120px;
}

.section-title-heading{
  display: flex;
  align-items: center;
  color: #000000;
  margin-bottom: 100px;
}

.section-title-heading > h1 {
  font-family: "Zen Maru Gothic", serif;
  font-size: 36px;
  font-weight: 700;
  margin-right: 20px;
}

.section-title-heading > img {
  height: 43.45px;
  width: 45px;
}

.mini-section-heading-green{
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.mini-section-heading-green > img{
  height: 24.14px;
  width: 25px;
}

.mini-section-heading-green > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #97C455;
  font-size: 24px;
  font-weight: 900;
  margin-right: 10px;
}

a.general-link{
  cursor: pointer;
  position: relative;
  width: fit-content;
  display: inline-block;
}

a.general-link .link-wrapper{
  display: flex;
  align-items: center;
  color: #DA6473;
  font-size: 18px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1px;
}

a.general-link p{
  padding-right: 20px;
  font-size: 18px;
}

a.general-link svg.arrow-link-pc{
  display: block;
}

a.general-link svg.arrow-link-sp{
  display: none;
}

a.general-link .arrow-link-wrapper {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: #DA6473;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease-in-out;
}

a.general-link:hover .arrow-link-wrapper {
  transform: scale(0.2);
}

a.general-link:hover .arrow-link-wrapper svg {
  opacity: 0;
} 

a.general-link::after {
  content: "";
  position: absolute;
  bottom: -10px; 
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #DA6473;
  transform: scaleX(0); 
  transform-origin: left; 
  transition: transform .3s ease-in-out, transform-origin .3s ease-in-out;
}

a.general-link:hover::after {
  transform: scaleX(1); 
  transform-origin: left; 
}

a.general-link .arrow-link-wrapper svg {
  transition: opacity .3s ease-in-out;
}



/* 1 HTML - HOME */
.home-description-wrapper{
  position: relative;
}

.home-img > img.home-img-sp{
  display: none;
}

.home-img > img.home-img-pc{
  display: block;
}


.home-description-wrapper > .home-description{
  display: flex;
  position: relative;
  justify-content: flex-end;
  margin: 30px 0 10px 30px;
}

.home-description > .home-img-wrapper{
  width: 50%;
}


.home-description > .home-img{
  position: relative;
  max-height: 480px;
  width: 100%;
}

.home-img > img{
  max-height: 430px;
  width: 100%; 
  object-fit: cover;
  clip-path: inset(0 0 round 40px 0 0 40px);
}

.home-description > .home-title-and-content{
  max-width: 480px;
  width: 50%;
  padding-top: 50px;
  padding-right: 60px;
}

.home-description.reverse > .home-title-and-content{
  max-width: 420px;
  width: 50%;
  padding-left: 0;
}

/* Initial state before animation */
.home-title-and-content {
  opacity: 0;
  transform: translateX(-100vw); 
  transition: opacity 3s ease, transform 3s ease; 
}

.home-img-wrapper {
  opacity: 0;
  transform: translateX(80vw); 
  transition: opacity 3s ease, transform 3s ease;
}

.home-img {
  transform: scale(1.2); 
  transition: transform 3s ease;
}

/* Animation triggered on page load */
.home-title-and-content.animate {
  opacity: 1;
  transform: translateX(0); 
}

.home-img-wrapper.animate {
  opacity: 1;
  transform: translateX(0); 
}

.home-img-wrapper.animate .home-img {
  transform: scale(1); 
}



.home-title-and-content > .home-title > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 14px;
}

.home-title-and-content > .home-title > h1 > span{
  color: #DA6473;
  letter-spacing: 14px;
}

.home-title-and-content > .home-content{
  margin-top: 30px;
}

.home-title-and-content > .home-content > p{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 7px;
  color: #DA6473;
}

/* HOME ABOUT SECTION */
.home-about{
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px 90px 60px;
}

.home-about > .home-about-img-wrapper > img{
  max-height: 404px;
}

.home-about > .home-about-content{
  align-self: flex-end;
  width: 520px;
  margin-top: 40px;
}

.home-about-content > .home-about-heading-wrapper{
  display: flex;
  align-items: center;
}

.home-about-content > .home-about-heading-wrapper > img{
  height: 24.14px;
  width: 25px;
}

.home-about-content > .home-about-heading-wrapper > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1px;
  color: #DA6473;
  margin-right: 10px;
}


.home-about-content > .home-about-desc-wrapper{
  margin: 40px 0;
}

.home-about-desc-wrapper > .main-description{
  margin-bottom: 20px;
}

.home-about-desc-wrapper > .main-description > p{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1px;
}

.home-about-desc-wrapper > .sub-description > p{
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1px;
}

.home-about-link{
  display: flex;
  justify-content: end;
}

/* HOME BENEFITS CARDS */
.home-benefits-card.general-section{
  padding: 10px 120px 140px 120px;
}

.home-benefits-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home-benefits-card > .benefits-card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 28px 30px 28px;
  border-radius: 40px;
  background-color: #F9F8F3;
  max-width: 296px;
  box-shadow: 0 10px 35px -5px rgba(58, 57, 55, 0.4);
}

.benefits-card > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 10px;
  color: #DA6473;
}

.home-benefits-card > .benefits-card:first-child h1 br{
  display: none;
}


/* HOME SERVICE SECTION */
.home-service{
  display: flex;
  position: relative;
  justify-content: flex-end;
}

.home-service-img-wrapper .home-service-hooves-design{
  position: absolute;
  right: 0;
  bottom: -22%;
  z-index: 1;
}

.home-service-img-wrapper .home-service-hooves-design > img.hooves-design-trails-pc{
  display: block;
}


.home-service-img-wrapper .home-service-hooves-design > img.hooves-design-trails-sp{
  display: none;
}

.home-service > .home-service-img-wrapper{
  padding-left: 120px;
  width: 50%;
  position: relative;
}

.home-service-img-wrapper > .home-service-img{
  display: flex;
  justify-content: flex-end;
}

.home-service-img-wrapper > .home-service-img > img{
  max-height: 640px;
  width: 100%;
  object-fit: cover;
  clip-path: inset(0 0 round 40px 0 0 40px);
}

.home-service-img-wrapper > .home-service-img > img.home-service-img-pc{
  display: block;
}

.home-service-img-wrapper > .home-service-img > img.home-service-img-sp{
  display: none;
}

.home-service > .home-service-content{
  align-self: flex-end;
  max-width: 480px;
  width: 50%;
}

.home-service-content > .home-service-heading-wrapper{
  display: flex;
  align-items: center;
}

.home-service-content > .home-service-heading-wrapper > img{
  height: 24.14px;
  width: 25px;
}

.home-service-content > .home-service-heading-wrapper > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1px;
  color: #DA6473;
  margin-right: 10px;
}

.home-service-content > .home-service-desc-wrapper{
  margin-top: 40px;
}

.home-service-desc-wrapper > .main-description{
  margin-bottom: 20px;
}

.home-service-desc-wrapper > .main-description > h2{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1px;
}

.home-service-desc-wrapper > .sub-description > p{
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1px;
}

.home-service-link{
  display: flex;
  justify-content: end;
}

.home-service-content > .home-services-list{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.home-services-list > p.service-list{
  border: 1px solid #DA6473;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #DA6473;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 200%;
  padding: 4px 20px;
  margin-top: 10px;
  margin-right: 10px;
}

/* HOME activity SECTION */
.home-activity{
  display: flex;
  position: relative;
  flex-direction: column;
}

.home-activity.general-section{
  padding: 120px 120px 60px 120px;
}

.home-activity > .home-activity-img-wrapper{
  padding-left: 120px;
  width: 50%;
}

.home-activity-img-wrapper > .home-activity-img{
  display: flex;
  justify-content: flex-end;
}

.home-activity-img-wrapper > .home-activity-img > img{
  max-height: 640px;
  width: 100%;
  object-fit: cover;
  clip-path: inset(0 0 round 40px 0 0 40px);
}

.home-activity-content > .home-activity-heading-wrapper{
  display: flex;
  align-items: center;
}

.home-activity-content > .home-activity-heading-wrapper > img{
  height: 24.14px;
  width: 25px;
}

.home-activity-content > .home-activity-heading-wrapper > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1px;
  color: #DA6473;
  margin-right: 10px;
}

.home-activity-content > .latest-activitys-wrapper{
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}

.latest-activitys-wrapper > .latest-activity{
  max-width: 296px;
}

.latest-activity > .activity-img{
  border-radius: 5px;
  border: 1px solid #E5E5E5;
  height: 200px;
  /* width: 100%; */
  min-width: 296px;
  font-weight: 900;
  font-size: 20px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.activity-img > img{
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.latest-activity > p.activity-preview{
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 1px;
  margin: 20px 0;
  transition: all 0.3s ease-in-out;
}

.latest-activity > p.activity-date{
  font-size: 12px;
  line-height: 200%;
  letter-spacing: 1px;
  color: #808080;
}


.home-activity-link{
  display: flex;
  justify-content: end;
}



.latest-activity:hover > .activity-img {
  transform: scale(0.9);
}


.latest-activity:hover > .activity-img > img {
  transform: scale(1.2);
}

.latest-activity:hover > p.activity-preview{
  color: #DA6473;
}




/* HOME INQUIRY SECTION */
section.inquiry-section{
  width: 100%;
  background: #DA6473;
  padding: 60px 0 100px 0;
}

section.inquiry-section > .inquiry-section-wrapper{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
}

section.inquiry-section > .inquiry-section-wrapper > .heading-title > p{
  color: #fff;
}

section.inquiry-section > .inquiry-section-wrapper > .inquiry-content-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 40px;
}

.inquiry-content-wrapper > .inquiry-content-left{
  width: 50%;
}

.inquiry-content-wrapper > .inquiry-content-left > .inquiry-content-left-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 360px;
}

.inquiry-content-left-wrapper > .inquiry-message-wrapper > p{
  font-family: "Zen Maru Gothic", serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 180%;
}

.inquiry-content-left-wrapper > .inquiry-tel-wrapper{
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 100%;
  margin: 40px 0;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
}

.inquiry-content-left-wrapper > .inquiry-tel-wrapper > img {
  margin-right: 20px;
}

.inquiry-content-left-wrapper > .inquiry-tel-wrapper > h1{
  color: #fff;
  font-size: 39px;
  font-weight: 700;
  line-height: 140%;
}

.inquiry-content-left-wrapper > .inquiry-tel-wrapper > h1 > a{
	color: #fff;
}

.inquiry-content-left-wrapper > a.inquiry-email-wrapper{
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  color: #fff;
  padding: 15px 20px;
  border-radius: 40px;
  width: 300px;
  transition: 0.3s all ease-in-out;
}

.inquiry-content-left-wrapper > a.inquiry-email-wrapper:hover{
  background-color: #fff;
  color: #DA6473;
}

.inquiry-content-left-wrapper > a.inquiry-email-wrapper > h1{
  font-family: "Zen Maru Gothic", serif;
  font-size: 16px;
  font-weight: 900;
}

.inquiry-content-left-wrapper > .inquiry-email-wrapper > svg{
  margin-right: 10px;
  fill: #DA6473;
}

.inquiry-section-wrapper > .inquiry-content-wrapper > .inquiry-content-right{
  width: 50%;
  position: relative;
}

/* Hover animation for recruitment-info-link */
.inquiry-content-wrapper > .inquiry-content-right > a.recruitment-info-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #f9f8f4;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  border-radius: 24px;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  background-color: #F9F8F3;
  box-shadow: 0 10px 35px -5px rgba(58, 57, 55, 0.4);
  transition: transform .7s cubic-bezier(.19,1,.22,1), border-bottom .5s ease-in-out;
  border-bottom: 2px solid transparent; 
}

.inquiry-content-wrapper > .inquiry-content-right > a.recruitment-info-link:hover {
  transform: scale(1.05);
  border-bottom: 2px solid #DA6473; 
}

.inquiry-content-right > a.recruitment-info-link > .recruitment-bg-wrapper {
  position: absolute;
}

.inquiry-content-right > a.recruitment-info-link > .recruitment-bg1 {
  width: 100%;
  top: 5%;
  left: 0;
}

.inquiry-content-right > a.recruitment-info-link > .recruitment-bg2 {
  width: 100%;
  bottom: 3%;
  right: 0;
}

.inquiry-content-right > a.recruitment-info-link > .recruitment-content-wrapper {
  width: 100%;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

a.recruitment-info-link > .recruitment-content-wrapper > .recruitment-title > h1 {
  color: #DA6473;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 24px;
}

a.recruitment-info-link > .recruitment-content-wrapper > .recruitment-text {
  padding: 20px 0 40px 0;
  text-align: center;
}

a.recruitment-info-link > .recruitment-content-wrapper > .recruitment-text > p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #000000;
}

.recruitment-content-wrapper > .recruitment-link-wrapper::after {
  content: "";
  position: absolute;
  bottom: -10px; 
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #DA6473;
  transform: scaleX(0); 
  transform-origin: left; 
  transition: transform .3s ease-in-out, transform-origin .3s ease-in-out;
}

.inquiry-content-wrapper > .inquiry-content-right > a.recruitment-info-link:hover .recruitment-link-wrapper::after {
  transform: scaleX(1); 
  transform-origin: left; 
}

.recruitment-content-wrapper > .recruitment-link-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  transition: all .3s ease-in-out;
}

.recruitment-content-wrapper > .recruitment-link-wrapper > p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #DA6473;
  letter-spacing: 10%;
  margin-right: 20px;
}

.recruitment-content-wrapper > .recruitment-link-wrapper > .arrow-link-wrapper {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: #DA6473;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease-in-out;
}

.recruitment-content-wrapper > .recruitment-link-wrapper > .arrow-link-wrapper svg {
  transition: opacity .2s ease-in-out;
}

.inquiry-content-wrapper > .inquiry-content-right > a.recruitment-info-link:hover .recruitment-link-wrapper .arrow-link-wrapper {
  transform: scale(0.2);
}

.inquiry-content-wrapper > .inquiry-content-right > a.recruitment-info-link:hover .recruitment-link-wrapper .arrow-link-wrapper svg {
  opacity: 0;
}

/* 2 HTML - ABOUT */
section.about-section{
  position: relative;
}

section.about-section .background-image-middle{
  top: 40%;
}

section.about-section .about-hooves-design{
  position: absolute;
  bottom: -69%;
  right: 0;
  z-index: -1;
}

section.about-section > .first-part-about-wrapper.general-section{
  padding: 60px 120px 100px 120px;
}

section.about-section > .first-part-about-wrapper > .section-title-heading{
  margin-bottom: 90px;
}

.first-part-about-wrapper > .about-intro-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.about-intro-wrapper > .about-intro-content{
  position: relative;
  width: 100%;
  border-radius: 40px;
  background-color: #DA6473;
  padding: 80px 60px 60px 60px;
}

.about-intro-content .intro-text-clipart-wrapper{
  display: flex;
  position: relative;
}

.intro-text-clipart-wrapper > .intro-text{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 50%;
  color: #fff;
  margin-right: 60px;
}

.intro-text > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 180%;
  letter-spacing: 4px;
  font-size: 36px;
  font-weight: 700;
}

.intro-text > .intro-paragraphs{
  margin-top: 60px;
}

.intro-paragraphs > p{
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1px;
}

.intro-paragraphs > p:not(:first-child) {
  margin-top: 40px;
}

.intro-text-clipart-wrapper > .intro-group-cliparts{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.intro-group-cliparts img{
  width: 100%;
  object-fit: cover;
}

.intro-group-cliparts > .intro-group-wrapper{
  position: absolute;
  right: -46%;
  top: -35%;
}

section.about-section img.first-clipart-pc{
  margin-left: 70px;
  max-height: 300px;
  max-width: 420px;
  clip-path: inset(0 0 round 40px 0 0 40px);
}

.intro-group-cliparts .group-2 > img.second-clipart{
  max-height: 172px;
  max-width: 240px;
}

.intro-group-cliparts .group-2 {
  display: flex;
  margin-top: 100px;
}

.intro-group-cliparts .group-2 > img.third-clipart{
  max-height: 277px;
  max-width: 277px;
  margin-top: 60px;
  margin-left: -27px;
}

.about-intro-content > .company-features-wrapper{
  margin-top: 165px;
}

.company-features-wrapper > h1.company-features-heading{
  color: #fff;
  margin-bottom: 40px;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 100%;
  letter-spacing: 1px;
  font-size: 24px;
  font-weight: 700;
}

.company-features-wrapper > .list-of-features{
  display: flex;
  width: 100%;
  flex-direction: column;
}

.list-of-features > .company-feature{
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list-of-features > .company-feature:last-child{
  margin-bottom: 0;
}

.company-feature > .feature-img{
  max-width: 283px;
}

.company-feature > .feature-desc{
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-left: 60px;
}

.feature-desc > h4{
  margin-bottom: 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 180%;
  letter-spacing: 1px;
  font-size: 24px;
  font-weight: 700;
}

.feature-desc > p{
  line-height: 200%;
  letter-spacing: 1px;
  font-size: 16px;
}

/* ABOUT - EMPLOYEES SLIDER */
.company-employees{
  margin: 13px 0 200px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.company-employees > .slider-heading{
  position: relative;
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.company-employees > .slider-heading > .text-heading > h1{
  margin-bottom: 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 180%;
  letter-spacing: 1px;
  font-size: 24px;
  font-weight: 900;
  color: #DA6473;
}

.company-employees > .slider-heading > .text-heading > p{
  line-height: 200%;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 400;
}

.company-employees > .slider-heading > img.about-employees-clipart{
  position: absolute;
  right: -50%;
  top: -63%;
  width: 244px;
  height: 244px;
}

/* SLICK SLIDER CSS */
.slick-dotted.slick-slider {
  margin-bottom: 0!important;
}

.about-slider-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-slider-wrapper .about-slider{
  width: 100%;
}

.about-slider-wrapper .about-slider .employee-block {
  max-width: 285px;
  min-height: 400px;
  background: transparent;
  border-radius: 15px;
  margin: 0 10px;
}

.about-slider-wrapper .about-slider .employee-block:nth-child(even){
  padding-top: 40px;
}

.slick-dots {
  display: none !important;
}

.company-employees > .slider-heading > .text-heading > p > br:first-child{
  display: none;
}

.ceo-message{
  display: flex;
  align-items: center;
  position: relative;
}
.ceo-img-wrapper{
  padding-right: 120px;
  width: 50%;
}

.ceo-message > .ceo-img{
  position: relative;
  max-height: 637.93px;
  width: 100%;
}

.ceo-img > img{
  max-height: 637.93px;
  width: 100%; 
  object-fit: cover;
  clip-path: inset(0 0 round 0 40px 40px 0);
}

.ceo-message > .ceo-title-and-message{
  width: 50%;
  max-width: 480px;
}

.ceo-title-and-message > .ceo-title{
  margin-bottom: 40px;
}

.ceo-title-and-message > .ceo-title > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #DA6473;
  font-size: 24px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1px;
}

.ceo-title-and-message > .ceo-message-wrapper > .ceo-first-message{
  margin-bottom: 20px;
}

.ceo-message-wrapper > .ceo-first-message > p{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1px;
}

.ceo-message-wrapper > .ceo-second-message > p:not(:first-child){
  margin-top: 30px;
}

.ceo-message-wrapper > .ceo-second-message > p{
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1px;
}

.ceo-title-and-message > .ceo-name{
  margin-top: 40px;
  text-align: end;
}

.ceo-title-and-message > .ceo-name > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1px;
}

.company-profile-wrapper{
  padding: 180px 120px 244px 120px;
}

.company-profile-wrapper > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #DA6473;
  font-size: 24px;
  font-weight: 900;
  line-height: 180%;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.company-profile-wrapper > .company-table{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.company-table > .profile-item{
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #E5E5E5;
  padding: 30px 0 30px 0;
}

.company-table > .profile-item:first-child{
  padding: 0 0 30px 0;
}

.profile-item > .profile-heading{
  width: 230px;
}

.profile-item p {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1px;
}

.profile-heading > p{
  font-weight: 700;
}

.profile-item > .profile-content > .google-map-link{
  margin-top: 40px;
}

.google-map-link > a{
  text-decoration: underline;
  transition: 0.3s all ease-in-out;
}

.google-map-link > a:hover{
  color: #DA6473;
}

.profile-content > .google-map-preview{
  margin-bottom: 20px;
}

.profile-content > .google-map-preview > iframe{
  min-width: 460px;
  min-height: 230px;
}


/* 3 HTML PAGE - SERVICE */
section.service-section{
    position: relative;
}

section.service-section > .background-image-bottom{
  bottom: 0;
}


section.service-section .section-title-heading{
  padding-bottom: 0!important;
}

section.service-section .service-list-wrapper{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 0!important;
  padding-bottom: 0!important;
}

.service-list-wrapper > .service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  color: #000;
  padding: 20px 30px;
  background-color: #fff;
  width: 100%;
  flex: 1 1 calc(50% - 10px); 
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: border 0.3s ease-in-out;
  border: 2px solid transparent;
}

.service-list-wrapper > .service:hover {
  border-color: #DA6473;
}

.service-list-wrapper > .service:hover .arrow-down-pink {
  transform: scale(0.1); 
  background-color: #DA6473;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out; 
}

.service-list-wrapper > .service .arrow-down-pink {
  width: 50px;
  height: 50px;
  background-color: rgba(218, 100, 115, 0.10);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: flex-end;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.service-list-wrapper > a.service:nth-child(odd) {
  margin-right: 10px; 
}

.service-list-wrapperr > a.service:nth-child(even) {
  margin-left: 10px;
}

a.service > .service-number-title-wrapper{
  display: flex;
  align-items: center;
}

.service-list-wrapper > a.service .service-number{
  margin-right: 20px;
  height: 35px;
  width: 35px;
  border-bottom: 3px solid #DA6473;
  text-align: center;
}

a.service .service-number > p{
  font-family: "Outfit", sans-serif;
  color: #DA6473;
  font-size: 24px;
  font-weight: 600;
  line-height: unset;
}

a.service p{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #000;
  font-size: 24px;
  font-weight: 700;
}

a.service .arrow-down-pink{
  width: 50px;
  height: 50px;
  background-color: rgb(218, 100, 115, 0.10);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: flex-end;
}



.service-description-wrapper{
  position: relative;
}

.service-description-wrapper > .service-description{
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
}

.service-description-wrapper > .service-description:first-child{
  padding-top: 160px;
}

.service-description-wrapper > .service-description:last-child{
  margin-bottom: 160px;
}

.service-description-wrapper > .service-description.reverse{
  flex-direction: row-reverse;
}

.service-img-wrapper{
  padding-right: 120px;
  width: 50%;
}

.service-description.reverse > .service-img-wrapper{
  padding-left: 120px;
  width: 50%;
  padding-right: 0;
}


.service-description > .service-img{
  position: relative;
  max-height: 480px;
  width: 100%;
}

.service-img > img{
  max-height: 480px;
  width: 100%; 
  object-fit: cover;
  clip-path: inset(0 0 round 0 40px 40px 0);
}

.service-description.reverse .service-img > img{
  clip-path: inset(0 0 round 40px 0 0 40px)
}

.service-description > .service-title-and-content{
  max-width: 480px;
  padding-left: 20px;
  width: 50%;
}

.service-description.reverse > .service-title-and-content{
  max-width: 480px;
  padding-right: 20px;
  width: 50%;
  padding-left: 0;
}

.service-title-and-content > .service-title > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #DA6473;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1px;
}

.service-title-and-content > .service-content{
  margin: 40px 0;
}

.service-title-and-content > .service-content > p{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1px;
}

.service-title-and-content > .service-recommendation{
  display: flex;
  flex-direction: column;
}

.service-title-and-content > .service-recommendation > p{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1px;
  color: #DA6473;
}

.service-recommendation > .recommendation-tags-wrapper{
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.service-recommendation > .recommendation-tags-wrapper > p{
  border-radius: 5px;
  border: 1px solid #DA6473;
  background-color: #fff;
  color: #DA6473;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 200%;
  padding: 4px 20px;
  font-weight: 700;
  margin-right: 10px;
  margin-bottom: 10px;
}

.service-recommendation > .recommendation-tags-wrapper > p:last-child{
  margin-right: 0;
}


.daily-schedule-wrapper{
  position: relative;
  padding-top: 156px;
}

.daily-schedule-wrapper > .daily-schedule-clipart{
  position: absolute;
  top: -6%;
  left: 25%;
}

.daily-schedule-clipart > img{
  height: 300px;
  width: 300px;
}

.daily-schedule-wrapper > .daily-schedule-heading-wrapper{
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.daily-schedule-heading-wrapper > .title{
  margin-bottom: 20px;
}

.title > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 180%;
  color: #DA6473;
}

/* .daily-schedule-heading-wrapper >  .description{
  min-width: 524px;
  width: 54%;
} */

.daily-schedule-heading-wrapper >  .description > p{
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 200%;
}

.daily-schedule-wrapper > .daily-schedule-table{
  display: flex;
  justify-content: space-between;
}

.daily-schedule-table > .morning-session-column, .daily-schedule-table > .afternoon-session-column{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 450px;
}

.morning-session-column > .heading, .afternoon-session-column > .heading{
  padding: 20px 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 10px;
}

.morning-session-column > .heading{
  background-color: #97C455;
}

.morning-session-column > .heading > h1, .afternoon-session-column > .heading > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.afternoon-session-column > .heading{
  background-color: #E5883C;
}

.time-table-wrapper{
  display: flex;
  width: 100%;
  flex-direction: column;
}

.time-table-wrapper > .schedule{
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
}

.time-table-wrapper > .schedule:last-child{
  margin-bottom: 0;
}

.time-table-wrapper > .schedule > .schedule-time-icon{
  height: 45px;
  width: 45px;
  margin-right: 20px;
}

.time-table-wrapper > .schedule > .schedule-time-icon > img{
  height: 100%;
  max-width: unset;
}

.schedule > .schedule-content{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.schedule-content > p{
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 160%;
}

.schedule-content > p:first-child{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 100%;
  margin-bottom: 10px;
}



/* 4 HTML PAGE - RECRUITMENT */
section.recruitment-section{
  position: relative;
}

section.recruitment-section .recruitment-intro-wrapper.general-section{
  padding: 60px 120px 100px 120px;
}

.main-recruitment-img-pc{
  display: block;
  margin-bottom: 80px;
}

.main-recruitment-img-sp{
  display: none;
  margin-bottom: 60px;
}

.recruitement-thoughts-wrapper{
  display: flex;
  margin: 100px 0;
}

.recruitement-thoughts-wrapper > .thoughts-heading, .recruitement-thoughts-wrapper > .thoughts-content{
  flex: 50%;
}

.recruitement-thoughts-wrapper > .thoughts-heading{
  margin-right: 60px;
}

.recruitement-thoughts-wrapper > .thoughts-heading > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 180%;
  letter-spacing: 12px;
}

.recruitement-thoughts-wrapper > .thoughts-content > p{
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1px;
}

.recruitement-thoughts-wrapper > .thoughts-content > p:nth-of-type(n+2){
  margin-top: 45px;
}

.qualifications-wrapper{
  font-family: 'Zen Maru Gothic', sans-serif;
  position: relative;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #97C455;
  border-radius: 40px;
  color: #fff;
}

.qualifications-wrapper > .tel-info-img-pc{
  display: block;
  position: absolute;
  right: 0;
  top: -10%;
}

.qualifications-wrapper > .tel-info-img-sp{
  display: none;
}

.qualifications-wrapper > .tel-info-img > img{
  width: 240px;
  max-height: 240px;
}

.qualifications-wrapper > .qualifications-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.qualifications-wrapper > .qualifications-content > h2{
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 20px;
}

.qualifications-wrapper > .qualifications-content > .qualification{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 0;
  position: relative;
}

.qualifications-wrapper > .qualifications-content > .qualification::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: radial-gradient(circle, #fff 1.5px, transparent 1px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
}

.qualifications-content > .qualification > h1{
  font-size: 32px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.qualifications-content > .qualification > p{
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.5px;
}

.qualifications-content > .qualification > :nth-child(3){
  margin-top: 15px;
}


.employee-benefits-wrapper{
  display: flex;
  flex-direction: column;
  margin: 100px 0 0 0;
}

.employee-benefits-wrapper > .list-of-benefits-wrapper{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.list-of-benefits-wrapper > .benefit{
  display: flex;
  align-items: center;
  border-radius: 20px;
  color: #000;
  padding: 20px 30px;
  background-color: #fff;
  width: 100%;
  flex: 1 1 calc(50% - 10px); 
  margin-bottom: 20px;
  box-sizing: border-box;
}

.list-of-benefits-wrapper > .benefit:nth-child(odd) {
  margin-right: 10px; 
}

.list-of-benefits-wrapper > .benefit:nth-child(even) {
  margin-left: 10px;
}

.list-of-benefits-wrapper > .benefit > .benefit-icon{
  margin-right: 20px;
  height: 36px;
  width: 36px;
}

.benefit > .benefit-icon > img{
  height: auto;
  width: 100%;
}

.benefit > p{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #000;
  font-size: 24px;
  font-weight: 700;
}

.job-type-wrapper.general-section{
  padding-bottom: 250px;
}

.job-type-wrapper > .list-of-job-types{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.list-of-job-types > .job{
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.list-of-job-types > .job:last-child{
  margin-bottom: 0;
}

.list-of-job-types > .job > .job-img{
  flex: 50%;
  margin-right: 60px;
}

.list-of-job-types > .job > .job-content{
  flex: 50%;
}

.job > .job-content > .job-title{
  margin-bottom: 10px;
}

.job > .job-content > .job-title > h1{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1px;
}

.job > .job-content > .job-description > p{
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1px;
}


.how-to-apply-wrapper > .general-section{
  position: relative;
  padding: 60px 120px 100px 120px;
}

.how-to-apply-wrapper > img{
  display: none;
}

.how-to-apply-wrapper > .general-section > img{
  position: absolute;
  right: 10%;
  top: -3%;
  width: 300px;
  height: 300px;
}

.application-requirements{
  padding: 60px;
  border-radius: 40px;
  background-color: #fff;
}

.application-requirements > .requirement{
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #E5E5E5;
  padding: 30px 0;
}

.application-requirements > .requirement:first-child{
  padding: 0 0 30px 0;
}

.requirement > .requirement-title{
  min-width: 230px;
}

.requirement > .requirement-title > p{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1px;
}

.requirement > .requirement-list > ul{
  list-style-type: none;
}

.requirement > .requirement-list > ul.list-with-style{
  list-style-type: disc;
  margin-left: 20px;
}

.requirement > .requirement-list > ul > li{
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1px;
}

.application-channels-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 180px;
}

.application-channels-wrapper > a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  min-width: 300px;
  border-radius: 40px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1px;
}

.application-channels-wrapper > a.email-channel{
  background-color: #8C8270;
  border: 1px solid #8C8270;
  color: #fff;
  margin-right: 30px;
  transition: 0.3s all ease-in-out;
}

.application-channels-wrapper > a.email-channel:hover{
  background-color: #fff;
  color: #8C8270;
}

.application-channels-wrapper > a.email-channel > .icon, .application-channels-wrapper > a.telephone-channel > .icon{
  height: 22px;
  width: 22px;
  margin-right: 10px;
}

.application-channels-wrapper > a.telephone-channel{
  background-color: #fff;
  border: 1px solid #8C8270;
  color: #8C8270;
  margin-left: 30px;
  transition: 0.3s all ease-in-out;
}

.application-channels-wrapper > a.telephone-channel:hover{
  background-color: #8C8270;
  color: #fff;
}

.application-channels-wrapper > a.email-channel > .icon svg path,
.application-channels-wrapper > a.telephone-channel > .icon svg path {
  transition: fill 0.3s ease-in-out;
}

.application-channels-wrapper > a.email-channel:hover svg path {
  fill: #8C8270;
}

.application-channels-wrapper > a.telephone-channel:hover svg path {
  fill: #fff; 
}

.slider-wrapper {
  width: 2105px;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  width: calc((2105px + 100px) * 2);
  animation: slide 30s linear infinite;
}

.slide-image {
  width: 2105px;
  height: 110px;
  margin-right: 100px;
}

@keyframes slide {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-2105px - 100px));
  }
}


/* 5.1 HTML PAGE - INITIATIVE LIST */
section.initiative-list-page-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 60px 180px 60px;
}

section.initiative-list-page-section .section-title-heading{
  padding: 0 60px;
}

section.initiative-list-page-section .initiative-list-page-wrapper{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.initiative-list-page-wrapper .initiative-list-items-wrapper{
  min-width: 312px;
  max-width: 312px;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.initiative-list-page-wrapper .initiative-list-items-wrapper ul{
  list-style-type: none;
}

.initiative-list-page-wrapper .initiative-list-items-wrapper ul li{
  border-bottom: 1px solid #E5E5E5;
  width: 100%;
  transition: 0.3s all ease-in-out;
}

.initiative-list-page-wrapper .initiative-list-items-wrapper ul li:hover{
  border-bottom: 1px solid #DA6473;
}

.initiative-list-page-wrapper .initiative-list-items-wrapper ul li:first-child{
  border-top: 1px solid #E5E5E5;
}

.initiative-list-page-wrapper .initiative-list-items-wrapper ul li a{
  display: flex;
  height: 100%;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 20px 0;
  transition: 0.3s all ease-in-out;
}

.initiative-list-page-wrapper .initiative-list-items-wrapper ul li a:hover{
  color: #DA6473;
}

.initiative-list-page-wrapper .initiative-list-items-wrapper .category-title{
  background-color: #DA6473;
  border-radius: 5px;
  padding: 15px 20px 15px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

section.initiative-list-page-section .initiative-list-page-wrapper .article-container-wrapper{
  margin-right: 36px;
  width: 100%;
}

section.initiative-list-page-section .article-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 0 0 -17px;
}

section.initiative-list-page-section .article-container > .article{
  flex: 1 1 220px;
  max-width: calc(33.33% - 36px);
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.article-container > .article:nth-of-type(n+2){
  margin-top: 0;
}

.article-container a.article:nth-of-type(3n+1){
  margin-left: 0;
}

.article-container a.article:nth-of-type(n+4){
  margin-top: 60px;
}

section.initiative-list-page-section .article-container > .article > .article-img{
  border-radius: 5px;
  border: 1px solid #E5E5E5;
  height: 150px;
  /* width: 100%; */
  width: 220px;
  font-weight: 900;
  font-size: 20px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

section.initiative-list-page-section .article-container > .article > .article-img > img{
  height: 100%; 
  width: auto;
  object-fit: cover; 
  transition: transform 0.3s ease-in-out;
}

.article-container > .article > .article-preview{
  margin: 20px 0;
}

.article-container > .article > .article-preview > p{
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 1px;
}

.article-container > .article > .article-date > p{
  font-size: 12px;
  line-height: 200%;
  letter-spacing: 1px;
  color: #808080;
}


/* 5.2 HTML PAGE - INITIATIVE DETAILS */
section.initiative-details-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

section.initiative-details-section > .initiative-detail-wrapper{
  max-width: 750px;
  margin: 0 auto;
  padding: 100px 0 180px 0;
}

.initiative-detail-wrapper > .initiative-detail-title-wrapper > p.initiative-date{
  margin-bottom: 10px;
  line-height: 200%;
  font-size: 12px;
  font-weight: 400;
  color: #808080;
  letter-spacing: 1px;
}

.initiative-detail-wrapper > .initiative-detail-title-wrapper > h1.initiative-title{
  font-family: "Zen Maru Gothic", serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1px;
}

.initiative-detail-wrapper > .initiative-detail-image{
  margin-top: 60px;
}

.initiative-detail-wrapper > .initiative-detail-heading-wrapper, .initiative-detail-wrapper > .initiative-detail-subheading-wrapper{
  margin-top: 60px;
}

.initiative-detail-wrapper > .initiative-detail-heading-wrapper > h2{
  font-family: "Zen Maru Gothic", serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1px;
}

.initiative-detail-wrapper > .initiative-detail-subheading-wrapper > h3{
  font-family: "Zen Maru Gothic", serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1px;
}

.initiative-detail-wrapper > .initiative-detail-heading-wrapper > p, .initiative-detail-wrapper > .initiative-detail-subheading-wrapper > p{
  margin: 20px 0 20px 0;
  text-align: justify;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 1px;
}

.initiative-detail-wrapper > .initiative-detail-subheading-wrapper > a.initiative-detail-external-link{
  text-decoration: underline;
  color: #DA6473;
}

.initiative-detail-wrapper > .back-to-list-button-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}

.initiative-detail-wrapper > .back-to-list-button-wrapper > a.back-to-list-button{
  background-color: #DA6473;
  color: #fff;
  border: 1px solid #DA6473;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  height: 48px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1px;
  border-radius: 24px;
  transition: 0.3s all ease-in-out;
  margin-top: 60px;
}

.initiative-detail-wrapper > .back-to-list-button-wrapper > a.back-to-list-button:hover{
  background-color: #fff;
  color: #DA6473;
}

/* 6 HTML PAGE - ANNOUNCEMENT */
section.announcement-page-section .article-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 -17px;
}

.article-container > .article{
  flex: 1 1 296px;
  max-width: calc(33.33% - 36px);
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


section.announcement-page-section .article-container > .article > .article-img{
  border-radius: 5px;
  border: 1px solid #E5E5E5;
  height: 200px;
  width: 296px;
  /* width: 100%; */
  font-weight: 900;
  font-size: 20px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

section.announcement-page-section .article-container > .article > .article-img > img{
  height: 100%; 
  width: auto; 
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.article-container > .article > .article-preview{
  margin: 20px 0;
  transition: color 0.3s ease-in-out;
}

.article-container > .article > .article-preview > p{
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 1px;
}

.article-container > .article > .article-date > p{
  font-size: 12px;
  line-height: 200%;
  letter-spacing: 1px;
  color: #808080;
}

/* Hover effect */
.article-container > .article:hover > .article-img {
  transform: scale(0.9); 
}

.article-container > .article:hover > .article-img > img {
  transform: scale(1.2); 
}

.article-container > .article:hover > .article-preview > p {
  color: #DA6473; 
}

/* 7.1 HTML PAGE - INQUIRY  */
section.inquiry-page-section > .inquiry-page-wrapper > .tel-info-wrapper{
  position: relative;
  width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #DA6473;
  border-radius: 10px;
  background-color: #fff;
  margin-top: 120px;
}

.inquiry-page-wrapper > .tel-info-wrapper > .tel-info-img-pc{
  display: block;
  position: absolute;
  right: 0;
  top: -40%;
}

.inquiry-page-wrapper > .tel-info-wrapper > .tel-info-img-sp{
  display: none;
}

.inquiry-page-wrapper > .tel-info-wrapper > .tel-info-img > img{
  width: 240px;
  max-height: 240px;
}

.tel-info-wrapper > .tel-info-contents{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.tel-info-wrapper > .tel-info-contents > p.tel-info-notice{
  font-weight: 700;
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 1px;
  color: #000;
}

.tel-info-wrapper > .tel-info-contents > a.tel-info-number{
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0;
  color: #DA6473;
  margin: 10px 0 20px 0;
}

.tel-info-wrapper > .tel-info-contents > a.tel-info-number > span{
  margin-right: 15px;
  background-color: #DA6473;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 2px;
}

.tel-info-wrapper > .tel-info-contents > .tel-info-additional-notice{
  text-align: center;
}

.tel-info-wrapper > .tel-info-contents > .tel-info-additional-notice > p{
  font-size: 12px;
  line-height: 200%;
  letter-spacing: 1px;
  color: #000;
}

.tel-info-wrapper > .tel-info-contents > .tel-info-additional-notice > p:first-child{
  margin-bottom: -2px;
}

.inquiry-page-wrapper > .inquiry-page-notice{
  margin-top: 80px;
  margin-bottom: 60px;
}

.inquiry-page-wrapper > .inquiry-page-notice > p{
  line-height: 28px;
}

form.wpcf7-form p:nth-child(3){
  display: flex;
  justify-content: center;
  margin: 80px 0 40px 0;
  flex-wrap: wrap;
}

form.wpcf7-form p:nth-child(3) a{
  color: #DA6473;
}

form.wpcf7-form p:nth-child(3) a:hover{
  text-decoration: underline;
}

form.wpcf7-form p label{
  display: block;
  font-weight: bold;
  width: 100%;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

form.wpcf7-form p label span{
  color: #DA6473!important;
}

form.wpcf7-form p label span.wpcf7-form-control-wrap{
  margin-top: 15px;
  width: 100%;
  display: block;
}

form.wpcf7-form p label span.wpcf7-form-control-wrap input, form.wpcf7-form p label span.wpcf7-form-control-wrap textarea{
  width: 100%;
  display: block;
  border: 1px solid #DA6473!important;
  background-color: #FFFFFF!important;
  padding: 20px !important;
  border-radius: 10px !important;
}

form.wpcf7-form p:nth-child(4){
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

form.wpcf7-form p:nth-child(4) input{
  font-weight: 700;
  font-size: 18px;
  padding: 20px;
  text-align: center;
  background: #DA6473;
  color: #fff;
  max-width: 360px;
  width: 100%;
  border-radius: 38px;
  border: 1px solid #DA6473;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

form.wpcf7-form p:nth-child(4) input:hover{
  background: #fff;
  color: #DA6473;
}

form.wpcf7-form p:nth-child(4) span{
  position: absolute;
  right: 0;
}


/* 7.2 HTML PAGE - INQUIRY COMPLETED  */
section.inquiry-completed-section{
  display: flex;
  justify-content: center;
  align-items: center;
}

section.inquiry-completed-section > .inquiry-completed-wrapper{
  margin: 150px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}

section.inquiry-completed-section > .inquiry-completed-wrapper > h1{
  font-size: 26px;
  font-weight: 700;
}

section.inquiry-completed-section > .inquiry-completed-wrapper > p{
  margin: 60px 0;
}

section.inquiry-completed-section > .inquiry-completed-wrapper > a.back-to-home-link{
  font-family: "Zen Maru Gothic", serif;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  padding: 12px 30px;
  color: #fff;
  background-color: #DA6473;
  border-radius: 25px;
  transition: 0.3s all ease-in-out;
  border: 1px solid #DA6473;
}

section.inquiry-completed-section > .inquiry-completed-wrapper > a.back-to-home-link:hover{
  color: #DA6473;
  background-color: #fff;
}


/* 8 HTML PAGE - PRIVACY POLICY */
section.privacy-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 120px 180px 120px;
}

section.privacy-section > .privacy-title-heading{
  display: flex;
  align-items: center;
  color: #000000;
  margin-bottom: 100px;
}

section.privacy-section > .privacy-title-heading > h1{
  font-family: "Zen Maru Gothic", serif;
  font-size: 36px;
  font-weight: 700;
  margin-right: 20px;
}

section.privacy-section > .privacy-title-heading > img{
  height: 43.45px;
  width: 45px;
}

section.privacy-section > .privacy-content-wrapper p{
  text-align: justify;
}

.privacy-content-wrapper > .privacy-component-wrapper{
  margin-top: 80px;
}

.privacy-component-wrapper > .privacy-component-title > h2{
  font-family: "Zen Maru Gothic", serif;
  font-size: 26px;
  font-weight: 900;
}

.privacy-component-wrapper > .privacy-component-line{
  width: 100%;
  border-bottom: 1px solid #E5E5E5;
  margin: 35px 0;
}

.privacy-component-wrapper > .privacy-component-content > .privacy-component-ad-info{
  margin-top: 40px;
}


/* FOOTER */
footer{
  max-width: 1200px;
  margin: 0 auto;
}

footer .main-footer{
  padding: 55px 0;
  width: 100%;
}

footer .footer-wrapper{
  padding: 0 60px; 
  display: flex;
  justify-content: space-between;
}

.border-bottom-line{
  border-bottom: 1px solid #000000;
  margin: 0 60px; 
}

/** .footer-content-left */

footer .footer-wrapper .footer-content-left{
  display: flex;
  flex-direction: column;
  float: left;
}

footer .footer-wrapper .footer-content-left .company-name-wrapper{
  display: flex;
  align-items: center;
}

footer .footer-wrapper .footer-content-left .company-name-wrapper img{
  margin-right: 20px;
  height: 80px;
  width: 80px;
}

footer .footer-wrapper .footer-content-left h1.company-name{
  display: flex;
  flex-direction: column;
  font-family: "Zen Maru Gothic", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  word-wrap: break-word;
}

footer .footer-wrapper .footer-content-left h1.company-name span{
  margin-top: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 24px;
  word-wrap: break-word;
}

footer .footer-wrapper .footer-content-left .company-map{
  padding: 40px 0;
  font-weight: 400;
  font-size: 14px;
}

footer .footer-wrapper .footer-content-left .company-map p{
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.40px;
  word-wrap: break-word;
  display: flex;
  flex-direction: row;
}

footer .footer-wrapper .footer-content-left .company-map p span{
  margin-right: 5px;
}

footer .footer-wrapper .footer-content-left .company-map a{
  text-decoration: underline;
  line-height: 28px;
  letter-spacing: 1.40px;
  word-wrap: break-word;
}

footer .footer-wrapper .footer-content-left .company-social-media{
  display: flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}

footer .footer-wrapper .footer-content-left .company-social-media > p{
  margin-right: 25px;
}

footer .footer-wrapper .footer-content-left .company-social-media > a{
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .footer-wrapper .footer-content-left .company-social-media > a:nth-child(3){
  margin: 0 18px;
}

/** .footer-content-right */
footer .footer-wrapper .footer-content-right .footer-content-line{
  align-self: stretch; 
  height: 0px; 
  border: 1px #fff solid;
  margin: 30px 0;
}

footer .footer-wrapper .footer-content-right{
  justify-content: flex-start; 
  align-items: flex-start; 
  display: inline-flex;
}


footer .footer-wrapper .footer-content-right .footer-about, footer .footer-wrapper .footer-content-right .footer-service{
  flex-direction: column; 
  justify-content: flex-start; 
  display: inline-flex;
}

footer .footer-wrapper .footer-content-right .footer-activity{
  flex-direction: column; 
  justify-content: flex-start; 
  align-items: start;
  display: inline-flex;
}

footer .footer-wrapper .footer-content-right .footer-service{
  margin: 0 60px;
}

footer .footer-wrapper .footer-content-right .footer-about-heading, footer .footer-wrapper .footer-content-right .footer-service-heading, footer .footer-wrapper .footer-content-right .footer-activity-heading{
  flex-direction: column; 
  justify-content: flex-start;  
  display: flex;
  font-weight: 700;
  word-wrap: break-word;
  margin-bottom: 25px;
}

footer .footer-wrapper .footer-content-right .footer-activity-heading{
  margin-bottom: 30px;
}

footer .footer-wrapper .footer-content-right .footer-about-heading a.footer-about-jap, footer .footer-wrapper .footer-content-right .footer-service-heading a.footer-service-jap, footer .footer-wrapper .footer-content-right .footer-activity-heading a.footer-activity-jap{
  font-size: 16px;
  line-height: 16px; 
  letter-spacing: 1.60px;
  font-family: "Zen Maru Gothic", serif;
  transition: 0.3s all ease-in-out;
}

footer .footer-wrapper .footer-content-right .footer-about-heading a.footer-about-jap:hover, footer .footer-wrapper .footer-content-right .footer-service-heading a.footer-service-jap:hover, footer .footer-wrapper .footer-content-right .footer-activity-heading a.footer-activity-jap:hover{
  color: #DA6473;
}

footer .footer-wrapper .footer-content-right .footer-links-wrapper{
  flex-direction: column; 
  justify-content: flex-start; 
  align-items: flex-start; 
  display: flex;
}

footer .footer-wrapper .footer-content-right .footer-activity .footer-links-wrapper a{
  font-family: "Zen Maru Gothic", serif;
  margin-bottom: 30px; 
  font-weight: 700;
}

footer .footer-wrapper .footer-content-right .footer-activity .footer-links-wrapper a:hover{
  color: #DA6473;
}

footer .footer-wrapper .footer-content-right .footer-activity-heading p.footer-activity-jap{
  font-size: 16px;
  line-height: 16px; 
  letter-spacing: 1.60px;
  font-family: "Zen Maru Gothic", serif;
}

footer .footer-wrapper .footer-content-right .footer-links-wrapper-service{
  justify-content: flex-start; 
  align-items: flex-start; 
  display: flex;
}

footer .footer-wrapper .footer-content-right .footer-links-wrapper-service .footer-links-wrapper, footer .footer-wrapper .footer-content-right .footer-about .footer-links-wrapper{
  margin-left: 20px;
}

footer .footer-wrapper .footer-content-right .footer-links-wrapper-service .footer-links-wrapper a:hover, footer .footer-wrapper .footer-content-right .footer-about .footer-links-wrapper a:hover{
  color: #DA6473;
}

footer .footer-wrapper .footer-content-right .footer-activity-wrapper{
  flex-direction: column; 
  display: flex;
}

/* Copyright */
footer .bottom-footer-wrapper{
  display: flex;
  align-items: center;
  padding: 19px 60px;
}

footer .bottom-footer-wrapper p.copyright{
  font-size: 0.75rem;
  color: #000000;
  display: flex;
  align-items: center;
}

footer .bottom-footer-wrapper p.copyright span{
  color: #808080;
}

footer .bottom-footer-wrapper p.copyright span.division-line{
  padding: 0 20px;
  font-size: 10px;
}

footer .bottom-footer-wrapper p.copyright span.privacy-policy a{
  text-decoration: none;
  color: #808080;
  transition: all 0.3s ease-in-out
}

footer .bottom-footer-wrapper p.copyright span.privacy-policy a:hover{
  color: #DA6473;
}

.recruitment-content-wrapper > .recruitment-link-wrapper > .arrow-link-wrapper svg.arrow-link-pc{
  display: block;
}

.recruitment-content-wrapper > .recruitment-link-wrapper > .arrow-link-wrapper svg.arrow-link-sp{
  display: none;
}

a.general-link .arrow-link-wrapper svg.arrow-link-pc{
  display: block;
}

a.general-link .arrow-link-wrapper svg.arrow-link-sp{
  display: none;
}


/* --------------- BREAKPOINTS --------------- */

/* 1280px */
@media screen and (max-width: 1280px) {
}

/* 1160px */
@media screen and (max-width: 1160px) {
  /* NAV BAR */
  nav ul li{
    list-style-type: none;
    padding: 0 7px;
  }
  
  nav ul li:first-child{
    padding: 0 7px 0 0;
  }
  
  nav ul li:last-child{
    padding: 0 0 0 7px;
  }
  /* 1 HTML PAGE - HOME */
  .home-benefits-card{
    justify-content: center;
  }

  .home-benefits-card > .benefits-card{
    margin-bottom: 30px;
    margin-right: 30px;
  }

  .home-benefits-card > .benefits-card:nth-child(2){
    margin-right: 0;
  }

  .home-benefits-card > .benefits-card:last-child{
    margin-bottom: 0;
    margin-right: 0;
  }

  .home-activity.general-section{
    padding: 120px 60px 60px 60px;
  }

  /* 3 HTML PAGE - SERVICE */
  .daily-schedule-table > .morning-session-column{
    margin-right: 10px;
  }
  
  .daily-schedule-table > .afternoon-session-column{
    margin-left: 10px;
  }

  /* 5.1 HTML PAGE - INITIATIVE LIST */
  .initiative-list-page-wrapper .initiative-list-items-wrapper{
    min-width: 230px;
    max-width: 230px;
  }
}

/* 1080px */
@media screen and (max-width: 1080px){
  .main-nav, .main-nav-pc{
    padding: 10px 30px;
  }
}

/* 1024px */
@media screen and (max-width: 1024px) {
  /* GENERAL CLASSES */
  .general-section{
    padding: 60px !important;
  }
	
	
  /* NAVIGATION BAR */
  .main-nav > .company-logo > a > .nav-company-name > p{
    font-size: 10px;
  }

  .main-nav > .company-logo > a > .nav-company-name > p > span{
    font-size: 16px;
  }

  /* 2 HTML PAGE - ABOUT */
  .ceo-img-wrapper{
    padding-right: 60px;
  }

  .ceo-message > .ceo-title-and-message{
    padding-right: 30px;
  }

  .daily-schedule-wrapper > .daily-schedule-clipart{
    left: unset;
    right: 0;
    top: -15%;
  }

  /* 3 HTML - SERVICE */
  .service-img-wrapper{
    padding-right: 60px;
  }
  
  .service-description.reverse > .service-img-wrapper{
    padding-left: 60px;
  }

  .service-description > .service-title-and-content{
    margin-right: 60px;
  }

  .service-description.reverse > .service-title-and-content{
    margin-left: 60px;
    margin-right: 0;
  }

  .ceo-message{
    margin-bottom: 30px;
  }

  /* MAIN INQUIRY SECTION */
  section.inquiry-section > .inquiry-section-wrapper{
    padding: 0 60px;
  }

  /* FOOTER */
  footer .footer-wrapper .footer-content-right .footer-service{
    margin: 0 40px;
  }

  /* PRIVACY PAGE HTML */
  section.privacy-section{
    padding: 60px;
  }

  /* 4 HTML PAGE - RECRUITMENT */
  .how-to-apply-wrapper > .general-section > img{
    right: 6%;
  }

}

/* 1000px */
@media screen and (max-width: 1000px) {
  main{
    padding-top: 95px;
  }


  /* 1 HTML - HOME TOP */
  .home-title-and-content > .home-title > h1{
    font-size: 30px;
  }

  .home-title-and-content > .home-content > p{
    font-size: 14px;
  }

  .home-about{
    padding: 0 60px 90px 60px;
  }

  .home-about > .home-about-content{
    padding-left: 30px;
  }

  .home-service > .home-service-img-wrapper{
    padding-left: 60px;
  }

  .home-service > .home-service-content{
    padding-left: 30px;
  }

  /* 5.1 HTML PAGE - INITIATIVE LIST */
  section.initiative-list-page-section .section-title-heading{
    padding: 0;
  }

  section.initiative-list-page-section .initiative-list-page-wrapper{
    flex-direction: column;
  }

  .initiative-list-page-wrapper .initiative-list-items-wrapper{
    margin-bottom: 40px;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
  }

  .initiative-list-page-wrapper .initiative-list-items-wrapper .category-title{
    text-align: center;
  }

  .initiative-list-page-wrapper .initiative-list-items-wrapper ul{
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
  }

  .initiative-list-page-wrapper .initiative-list-items-wrapper ul li:first-child{
    border-top: 0;
    border-left: 1px solid #E5E5E5;
  }

  .initiative-list-page-wrapper .initiative-list-items-wrapper ul li{
    border-bottom: 0;
    border-right: 1px solid #E5E5E5;
  }

  .initiative-list-page-wrapper .initiative-list-items-wrapper ul li a{
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
  }

  section.initiative-list-page-section .initiative-list-page-wrapper .article-container-wrapper{
    margin-right: 0;
  }

  section.initiative-list-page-section .article-container{
    justify-content: space-between;
    margin: 0;
  }

  /* Footer */
  .border-bottom-line{
    margin: 0 30px;
  }
  
  footer .footer-wrapper{
    flex-direction: column;
    padding: 0 30px;
  }
  footer .footer-wrapper .footer-content-left{
    margin-bottom: 70px;
  }

  footer .footer-wrapper .footer-content-right .footer-service{
    margin: 0;
  }

  footer .footer-wrapper .footer-content-right{
    justify-content: space-between;
  }

  footer .footer-wrapper .footer-content-left .company-map{
    padding: 35px 0;
  }
}

@media (min-width: 1201px) {
  .background-image-bottom{
    bottom: -25%;
  }

  /* 1 HTML PAGE - HOME */
  .home-benefits-card > .benefits-card:first-child h1 br{
    display: block;
  }

  .home-img > img{
    max-height: 700px;
  }

  .service-description > .service-img {
    width: 60%;
  }
  .service-img > img{
    max-height: 70vh;
  }

  .ceo-message > .ceo-img {
    width: 60%;
  }

  .ceo-img > img{
    max-height: 100vh;
  }

  .home-service-img-wrapper > .home-service-img > img{
    max-height: 720px;
    max-width: 670px;
  }

  /* 2 HTML PAGE - ABOUT */
  section.about-section img.first-clipart-pc{
    clip-path: inset(0 0 round 40px 40px 40px 40px);
  }

  /* 3 HTML PAGE - SERVICE */
  section.service-section > .background-image-bottom{
    bottom: -10%;
  }

}

/* 955px */
@media screen and (max-width: 959px){
   /* GENERAL CLASSES */
  .general-section{
    padding: 60px 30px !important;
  }

  /* 1 HTML PAGE - HOME */
  .home-activity-content > .latest-activitys-wrapper{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .latest-activitys-wrapper > .latest-activity{
    margin-bottom: 30px;
  }

  .latest-activitys-wrapper > .latest-activity:last-child{
    margin-bottom: 0;
  }

  .home-service-img-wrapper .home-service-hooves-design{
    bottom: 0;
  }

  /* 2 HTML PAGE - ABOUT */
  .intro-group-cliparts > .intro-group-wrapper{
    right: -20%;
    top: -30%;
  }

  section.about-section img.first-clipart-pc{
    margin-left: 70px;
    max-width: 329px;
  }

  .intro-group-cliparts .group-2 > img.second-clipart{
    max-height: 143px;
    max-width: 200px;
  }

  .intro-group-cliparts .group-2 > img.third-clipart{
    max-height: 225px;
    max-width: 225px;
  }

  .about-intro-wrapper > .about-intro-content{
    padding: 80px 30px 40px 30px;
  }

  .ceo-message{
    flex-direction: column-reverse;
  }

  .ceo-img-wrapper{
    width: 100%;
    padding-right: 30px;
  }

  .ceo-message > .ceo-title-and-message{
    padding-left: 30px;
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }

  .ceo-img > img{
    max-width: 570px;
  }

  .daily-schedule-wrapper{
    padding: 130px 30px 60px 30px !important;
  }

  .daily-schedule-wrapper > .daily-schedule-clipart{
    top: -9%;
  }

  section.about-section .about-hooves-design{
    margin-right: -75px;
    bottom: -62%;
  }

  /* 3 HTML PAGE - SERVICE */
  .service-description-wrapper > .service-description.reverse{
    flex-direction: column-reverse;
  }

  .service-description-wrapper > .service-description:first-child{
    padding-top: 60px;
  }

  .service-description-wrapper > .service-description{
    flex-direction: column-reverse;
    padding-top: 60px;
  }

  .service-description > .service-title-and-content{
    margin-bottom: 60px;
    max-width: unset;
    width: 100%;
    margin-right: 0;
    padding-right: 30px;
    padding-left: 30px;
  }

  .service-description.reverse > .service-title-and-content{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 30px;
    padding-left: 30px;
    max-width: unset;
  }

  .service-img-wrapper{
    padding-right: 30px;
    width: 100%;
  }
  
  .service-description.reverse > .service-img-wrapper{
    padding-left: 30px;
    width: 100%;
    padding-right: 0;
  }

  .service-img > img{
    max-width: 600px;
  }

  .service-description.reverse .service-img{
    display: flex;
    justify-content: end;
  }

  /* 4 HTML PAGE - RECRUITMENT */
  .recruitement-thoughts-wrapper{
    margin: 60px 0 160px 0;
    flex-direction: column;
  }

  .main-recruitment-img-pc{
    display: none;
  }

  .main-recruitment-img-sp{
    display: block;
  }

  .recruitement-thoughts-wrapper > .thoughts-heading{
    margin-right: 30px;
    margin-bottom: 40px;
  }

  .recruitement-thoughts-wrapper > .thoughts-heading > h1{
    font-size: 24px;
  }

  .qualifications-wrapper{
    padding: 100px 30px 60px 30px;
  }

  .qualifications-wrapper > .qualifications-content > h2{
    font-size: 16px;
    margin-bottom: 0;
  }

  .qualifications-content > .qualification > h1{
    font-size: 20px;
  }

  .qualifications-content > .qualification > p{
    font-size: 14px;
  }

  .list-of-job-types > .job > .job-img{
    margin-right: 30px;
  }

  .application-channels-wrapper{
    padding-bottom: 80px;
    padding-right: 30px;
    padding-left: 30px;
    justify-content: space-evenly;
  }

  .application-channels-wrapper > a{
    min-width: 250px;
  }

  .application-channels-wrapper > a.email-channel{
    margin-right: 0;
  }

  .application-channels-wrapper > a.telephone-channel{
    margin-left: 0;
  }

  .slider-wrapper{
    margin: 0 0 40px 0;
  }


  /* 5.1 HTML PAGE - INITIATIVE LIST */
  section.initiative-list-page-section {
    padding: 60px 30px 100px 30px;
}

  /* MAIN INQUIRY SECTION */
  section.inquiry-section > .inquiry-section-wrapper{
    padding: 0 30px;
  }

  .inquiry-content-wrapper > .inquiry-content-left{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px ;
  }

  section.inquiry-section > .inquiry-section-wrapper > .inquiry-content-wrapper{
    flex-direction: column;
  }

  .inquiry-content-wrapper > .inquiry-content-right > a.recruitment-info-link{
    flex-direction: column;
  }

  a.recruitment-info-link > .recruitment-content-wrapper > .recruitment-text{
    padding: 20px 0 20px 0;
  }

  /* Animation for showing the label */
  .show-label {
    display: block;
    opacity: 1;
    transform: translateX(0);
  }

  /* Animation for hiding the label */
  .hide-label {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-and-button-wrapper > img.nav-menu-design{
    position: absolute;
    top: 11%;
    right: -30px;
    mix-blend-mode: multiply;
  }

  .navbar-toggle-wrapper{
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    border-radius: 4px;
    height: 50px;
    background: transparent;
/*     width: 100%; */
    right: 0;
    margin-right: 30px;
    z-index: 11;
  }

  .navbar-toggle-wrapper > p.close-menu-label{
    margin-right: 20px;
    color: #fff;
    font-size: 18px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
  }

  .mobile-nav-toggle {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 27px;
    cursor: pointer;
    outline: none;
    position: relative;
    z-index: 3;
  }

  .mobile-nav-toggle .line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #DA6473;
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 5px 0;
  }

  .mobile-nav-toggle[aria-expanded=false] .line:nth-child(1), .mobile-nav-toggle[aria-expanded=false] .line:nth-child(3){
    margin: 0;
  }

  .nav-and-button-wrapper {
      position: fixed;
      top: 0;
      right: 0;
      width: 60px;
      height: 60px;
      background-color: #DA6473;
      border-radius: 50%;
      transition: all 0.5s ease;
      transform-origin: center;
      visibility: hidden;
      opacity: 0;
      z-index: 1;
      justify-content: flex-start;
      padding: 0 40px;
  }

  .nav-and-button-wrapper[data-visible="true"] {
      width: 100vw;
      height: 100vh;
      border-radius: 0;
      visibility: visible;
      opacity: 1;
      transform: scale(1);
  }

  .nav-links-wrapper{
    width: 100%;
    display: block;
  }


  .nav-menu {
      list-style-type: none;
      margin: 0;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-and-button-wrapper[data-visible="true"] .nav-menu {
      opacity: 1;
      transform: translateY(0);
  }

  .nav-menu li {
      margin: 15px 0;
  }

  nav ul li:last-child{
    margin: 25px 0 0 0;
  }

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

  nav ul li, nav ul li:last-child{
    padding: 0;
  }

  ul.nav-menu{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  ul.nav-menu > li > a.link-name-jap{
    color: #fff; 
    font-size: 20px; 
  }

  ul.nav-menu > li > a.link-name-jap:hover{
    color: #DA6473;
  }

  ul.nav-menu > li > a.inquiry-button{
    background: #DA6473;
    color: #fff;
    border: 1px #fff solid;
    border-radius: 50px;
    padding: 20px 30px;
    width: 100%;
    display: block;
    text-align: center;
  }

  ul.nav-menu > li > a.inquiry-button:hover{
    background: #F9F8F3;
    color: #DA6473;
  }

  .mobile-nav-toggle[aria-expanded="true"] .line:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
      background-color: #fff;
  }

  .mobile-nav-toggle[aria-expanded="true"] .line:nth-child(2) {
      opacity: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] .line:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
      background-color: #fff;
  }

  /* PRIVACY PAGE HTML */
  section.privacy-section{
    padding: 60px 30px;
  }

  section.privacy-section > .privacy-title-heading{
    margin-bottom: 40px;
  }


}

@media screen and (min-width: 956px) {
  .nav-and-button-wrapper > img.nav-menu-design {
    display: none;
  }
}

/* 768px */
@media screen and (max-width: 768px) {
  /* GENERAL CLASSES */
  .section-title-heading{
    margin-bottom: 80px;
  }

  a.general-link p{
    font-size: 16px;
  }

  a.general-link .arrow-link-wrapper{
    height: 30px;
    width: 30px;
  }

  /* 1 HTML PAGE - HOME TOP */
  .home-description-wrapper > .home-description{
    flex-direction: column-reverse;
  }

  .home-description > .home-img-wrapper{
    width: 100%;
  }

  .home-description > .home-title-and-content{
    width: 100%;
    padding-top: 30px;
    padding-right: 0;
    max-width: 355px;
  }

  .home-about{
    flex-direction: column;
    padding: 0 30px 0 30px;
  }

  .home-about > .home-about-img-wrapper{
    display: flex;
    justify-content: flex-end;
  }

  .home-service-img-wrapper .home-service-hooves-design{
    position: absolute;
    right: 0;
    bottom: -46%;
    z-index: 1;
  }

  .home-service-img-wrapper .home-service-hooves-design > img.hooves-design-trails-pc{
    display: none;
  }

  
  .home-service-img-wrapper .home-service-hooves-design > img.hooves-design-trails-sp{
    display: block;
  }

  .home-about > .home-about-content {
    padding: 60px 0 0 0;
    width: 100%;
	margin-top: 0;
  }

  .home-about-content > .home-about-heading-wrapper > h1, .home-service-content > .home-service-heading-wrapper > h1{
    font-size: 16px;
  }

  .home-about-content > .home-about-heading-wrapper > img, .home-service-content > .home-service-heading-wrapper > img{
    height: 19.31px;
    width: 20px;
  }

  .home-about-desc-wrapper > .main-description > p, .home-service-desc-wrapper > .main-description > h2{
    font-size: 20px;
  }

  .home-about-desc-wrapper > .sub-description > p, .home-service-desc-wrapper > .sub-description > p{
    font-size: 14px;
  }

  .home-benefits-card{
    flex-direction: column;
  }

  .home-benefits-card > .benefits-card:first-child{
    margin-right: 0;
  }

  .home-benefits-card > .benefits-card > img{
    max-width: 203.39px;
    max-height: 200px;
  }

  .home-service{
    flex-direction: column-reverse;
  }

  .home-service > .home-service-img-wrapper{
    padding-left: 30px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .home-service-img-wrapper > .home-service-img > img.home-service-img-pc{
    max-height: 264px;
    display: none;
  }
  
  .home-service-img-wrapper > .home-service-img > img.home-service-img-sp{
    max-height: 264px;
    display: block;
  }

  .home-service > .home-service-content{
    padding: 60px 30px 0 30px;
    width: 100%;
    align-self: normal;
    max-width: unset;
  }

  .home-service-content > .home-services-list{
    margin-top: 10px;
  }

  .company-employees > .slider-heading{
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  
  .company-employees > .slider-heading > img.about-employees-clipart{
    position: relative;
    right: unset;
    top: unset;
    width: 244px;
    height: 244px;
  }



  /* MAIN INQUIRY SECTION */
  .inquiry-section-wrapper > .inquiry-content-wrapper > .inquiry-content-right{
    width: 80%;
  }

  /* 2 HTML PAGE - ABOUT */
  section.about-section > .first-part-about-wrapper > .section-title-heading {
    margin-bottom: 60px;
  }

  .about-intro-wrapper > .about-intro-content{
    padding: 40px 30px;
  }

  .about-intro-content .intro-text-clipart-wrapper{
  flex-direction: column;
  }

  .intro-group-cliparts > .intro-group-wrapper{
    margin-top: 30px;
    position: relative;
    right: auto;
    top: unset;
  }

  .intro-text-clipart-wrapper > .intro-group-cliparts{
    width: 100%;
  }

  .intro-group-cliparts .group-2{
    margin: 0;
    justify-content: center;
    position: relative;
    align-items: flex-end;
  }

  .intro-group-wrapper > .about-clipart-1-wrapper{
    display: flex;
    justify-content: end;
  }

  section.about-section img.first-clipart-pc{
    margin-left: 0;
    margin-right: -60px;
  }


  .intro-group-cliparts .group-2 > img.second-clipart{
    max-height: 172px;
    max-width: 240px;
  }

  .intro-group-cliparts .group-2 > img.third-clipart{
    margin-top: 0;
    margin-right: -95px;
  }


  .intro-text-clipart-wrapper > .intro-text{
    width: 100%;
    margin-right: 0;
  }

  .intro-text > .intro-paragraphs{
    margin-top: 20px;
  }

  .intro-text > h1{
    font-size: 26px;
  }

  .intro-paragraphs > p:not(:first-child){
    margin-top: 30px;
  }

  .about-intro-content > .company-features-wrapper{
    margin-top: 60px;
  }
  
  .list-of-features > .company-feature{
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }

  .company-feature > .feature-img{
    max-width: 100%;
    margin-bottom: 20px;
  }

  .company-feature > .feature-desc{
    margin-left: 0;
    width: 100%;
  }

  .company-profile-wrapper > h1{
    margin-bottom: 30px;
    font-size: 20px;
  }

  .company-table > .profile-item{
    padding: 20px 0 20px 0;
    flex-direction: column;
  }

  .profile-item p{
    font-size: 14px;
  }

  .profile-item > .profile-content > .google-map-link{
    margin-top: 20px;
  }

  .google-map-link > a{
    font-size: 14px;
  }

  .profile-heading > p{
    margin-bottom: 10px;
  }
  

  .profile-content > .google-map-preview > iframe{
    min-width: 100%;
    margin-top: 10px;
  }

  .daily-schedule-wrapper > .daily-schedule-clipart{
    top: -1.5%;
  }

  .daily-schedule-clipart > img{
    width: 200px;
    height: 200px;
  }

  .service-description-wrapper > .service-description:last-child{
    margin-bottom: 60px;
  }

  section.about-section .about-hooves-design{
    margin-right: -75px;
    bottom: -45%;
  }


  /* 3 HTML PAGE - SERVICE */
  a.service p{
    font-size: 16px;
  }

  .service-list-wrapper > a.service .service-number{
    width: 28px;
    height: auto;
  }
  .service-list-wrapper > a.service .service-number p{
    font-size: 16px;
  }

  a.service .arrow-down-pink{
    width: 40px;
    height: 40px;
  }

  a.service .arrow-down-pink svg{
    width: 14px;
    height: 16px;
  }

  .daily-schedule-heading-wrapper > .description{
    width: 100%;
    min-width: unset;
  }

  .title > h1{
    font-size: 20px;
  }

  .daily-schedule-wrapper > .daily-schedule-heading-wrapper{
    margin-bottom: 40px;
  }

  .daily-schedule-heading-wrapper > .description > p{
    font-size: 14px;
  }

  .daily-schedule-wrapper > .daily-schedule-table{
    flex-direction: column;
  }

  .daily-schedule-table > .morning-session-column, .daily-schedule-table > .afternoon-session-column{
    justify-content: center;
    max-width: 100%;
  }

  .daily-schedule-table > .morning-session-column{
    margin-right: 0;
    margin-bottom: 40px;
  }
  
  .daily-schedule-table > .afternoon-session-column{
    margin-left: 0;
  }

  .schedule-content > p{
    font-size: 14px;
  }

  .schedule-content > p:first-child{
    font-size: 16px;
  }

  .service-title-and-content > .service-title > h1{
    font-size: 20px;
  }

  .service-title-and-content > .service-content > p{
    font-size: 16px;
  }

  .service-title-and-content > .service-recommendation > p{
    font-size: 16px;
  }

  .service-recommendation > .recommendation-tags-wrapper > p{
    font-size: 14px;
  }

  .service-img > img{
    max-height: 370px;
  }

  /* 4 HTML PAGE - RECRUITMENT */
  .qualifications-wrapper > .tel-info-img-pc{
    display: none;
  }

  
  .qualifications-wrapper > .tel-info-img-sp{
    display: block;
    position: absolute;
    top: -15%;
  }

  .qualifications-wrapper > .tel-info-img > img{
    width: 200px;
    max-height: 200px;
  }

  .job > .job-content > .job-title > h1{
    font-size: 16px;
  }

  .job > .job-content > .job-description > p{
    font-size: 14px;
  }

  .application-requirements{
    padding: 30px;
  }

  .requirement > .requirement-title{
    min-width: 180px;
  }


  /* 5.1 HTML PAGE - INITIATIVE LIST */
  section.initiative-list-page-section .article-container{
    justify-content: center;
    margin: 0;
  }

  section.initiative-list-page-section .article-container > .article:nth-of-type(n+4) {
    margin-top: 0;
  }

  section.initiative-list-page-section .article-container > .article:first-child {
    margin-top: 0 !important;
  }

  section.initiative-list-page-section .article-container > .article {
    flex: 1 1 100%;
    max-width: 100%;
    margin-top: 40px !important;
  }

  section.initiative-list-page-section .article-container > .article > .article-img{
    height: 200px;
    width: auto;
  }
  
  section.initiative-list-page-section .article-container > .article > .article-img > img{
    width: auto;
  }


  /* 6 HTML - ANNOUNCEMENT */
  section.announcement-page-section .article-container {
    justify-content: center;
    margin: 0;
  }

  .article-container a.article:nth-of-type(n+4) {
    margin-top: 0;
  }

  .article-container > .article:first-child {
    margin-top: 0 !important;
  }

  .article-container > .article {
    flex: 1 1 100%;
    max-width: 100%;
    margin-top: 40px !important;
  }

  section.announcement-page-section .article-container > .article > .article-img{
    height: auto;
    width: 100%;
  }
  
  section.announcement-page-section .article-container > .article > .article-img > img{
    width: auto;
  }


  /* 7.1 HTML - INQUIRY PAGE */
  .inquiry-page-wrapper > .tel-info-wrapper > .tel-info-img-pc{
    display: none;
  }

  
  .inquiry-page-wrapper > .tel-info-wrapper > .tel-info-img-sp{
    display: block;
    position: absolute;
    top: -30%;
  }

  .inquiry-page-wrapper > .tel-info-wrapper > .tel-info-img > img{
    width: 200px;
    max-height: 200px;
  }

  section.inquiry-page-section > .inquiry-page-wrapper > .tel-info-wrapper{
    padding: 100px 20px 20px 20px;
    margin-top: 120px;
  }

  .tel-info-wrapper > .tel-info-contents > a.tel-info-number{
    font-size: 30px;
  }

  .tel-info-wrapper > .tel-info-contents > .tel-info-additional-notice > p{
    line-height: 160%;
  }

  .inquiry-page-wrapper > .inquiry-page-notice{
    margin-top: 40px;
    margin-bottom: 40px;
  }
  

  /* 7.2 HTML PAGE - INQUIRY COMPLETED  */
  section.inquiry-completed-section > .inquiry-completed-wrapper > p{
    margin: 30px 0;
  }

  section.inquiry-completed-section > .inquiry-completed-wrapper{
    margin: 100px 0;
  }

  /* 8 - PRIVACY PAGE*/
  .privacy-content-wrapper > .privacy-component-wrapper{
    margin-top: 60px;
  }

}

/* 640px */
@media screen and (max-width: 640px) {
  /* GENERAL CLASSES */
  .section-title-heading > h1{
    font-size: 20px;
    margin-right: 10px;
  } 

  .section-title-heading > img{
    height: 28.97px;
    width: 30px;
  }

  .mini-section-heading-green > h1{
    font-size: 20px;
  }

  .mini-section-heading-green{
    margin-bottom: 40px;
  }

  a.general-link .arrow-link-wrapper svg.arrow-link-pc{
    display: none;
  }
  
  a.general-link .arrow-link-wrapper svg.arrow-link-sp{
    display: block;
  }

  .background-image-top .bg-top-pc-green,
  .background-image-top .bg-top-pc-pink,
  .background-image-middle .bg-middle-pc-pink,
  .background-image-bottom .bg-bottom-pc-green,
  .background-image-bottom .bg-bottom-pc-pink{
    display: none;
  }
  
  .background-image-top .bg-top-sp-green,
  .background-image-top .bg-top-sp-pink,
  .background-image-middle .bg-middle-sp-pink,
  .background-image-bottom .bg-bottom-sp-green,
  .background-image-bottom .bg-bottom-sp-pink{
    display: block;
  }

  main.main-index .background-image-middle{
    top: 13%;
  }

  /* 2 HTML PAGE - ABOUT */
  section.about-section > .first-part-about-wrapper.general-section{
    padding: 60px 30px 17px 30px !important;
  }
  
  .intro-text > .intro-paragraphs{
    margin-top: 20px;
  }

  .intro-text > h1{
    font-size: 20px;
  }

  .intro-paragraphs > p:not(:first-child){
    margin-top: 20px;
  }

  .intro-paragraphs > p{
    font-size: 14px;
  }

  .about-intro-content > .company-features-wrapper{
    margin-top: 60px;
  }

  .company-features-wrapper > h1.company-features-heading{
    font-size: 16px;
  }

  section.about-section .about-hooves-design{
    margin-right: -45px;
    bottom: -36%;
  }

  section.about-section .about-hooves-design > img{
    max-height: 318.78px;
    max-width: 122.33px;
  }

  .intro-group-cliparts .group-2{
    justify-content: space-between;
  }

  .feature-desc > h4{
    font-size: 16px;
  }

  .feature-desc > p{
    font-size: 14px;
  }

  .ceo-title-and-message > .ceo-title{
    margin-bottom: 30px;
  }

  .ceo-title-and-message > .ceo-title > h1{
    font-size: 16px;
  }

  .ceo-message-wrapper > .ceo-first-message > p{
    font-size: 20px;
  }

  .ceo-message-wrapper > .ceo-second-message > p:not(:first-child) {
    margin-top: 20px;
  }

  .ceo-message-wrapper > .ceo-second-message > p{
    font-size: 14px;
  }

  .ceo-title-and-message > .ceo-name{
    margin-top: 20px
  }

  .ceo-title-and-message > .ceo-name > h1{
    font-size: 20px;
  }

  .ceo-img > img{
    max-width: 370px;
  }

  .company-employees{
    margin: 13px 0 120px 0;
  }

  .company-employees > .slider-heading > .text-heading > h1{
    font-size: 20px;
  }
  
  .company-employees > .slider-heading > .text-heading > p{
    font-size: 14px;
  }

  .about-slider-wrapper .about-slider .employee-block{
    max-width: 178.13px;
    min-height: 250px;
  }


  /* 3 HTML PAGE - SERVICE */
  section.service-section .service-list-wrapper{
    flex-direction: column;
  }

  .service-list-wrapper > a.service:nth-child(odd){
    margin-right: 0;
  }

  /* 4 HTML - RECRUITMENT */

  .list-of-benefits-wrapper > .benefit {
    flex: 1 1 100%;
    margin: 0 0 20px;
  }

  .list-of-benefits-wrapper > .benefit > p{
    font-size: 18px;
  }

  .list-of-benefits-wrapper > .benefit:nth-child(odd){
    margin-right: 0;
  }

  .list-of-benefits-wrapper > .benefit:nth-child(even){
    margin-left: 0;
  }

  .list-of-job-types > .job{
    flex-direction: column;
    align-items: flex-start;
  }

  .list-of-job-types > .job > .job-img {
    margin-right: 0;
    flex: 100%;
    margin-bottom: 30px;
  }

  .list-of-job-types > .job > .job-content{
    flex: 100%;
  }

  .application-requirements > .requirement{
    flex-direction: column;
  }

  .requirement > .requirement-title > p, .requirement > .requirement-list > ul > li{
    font-size: 14px;
  }

  .application-channels-wrapper{
    flex-direction: column;
  }

  .application-channels-wrapper > a.email-channel{
    margin-bottom: 30px;
  }

  .how-to-apply-wrapper > img{
    display: block;
  }

  .how-to-apply-wrapper > .general-section > img{
    display: none;
  }

  /* 6 HTML - ANNOUNCEMENT */
  .article-container > .article > .article-preview {
    margin: 15px 0;
  }

  .article-container > .article > .article-preview > p {
    font-size: 14px;
    line-height: 160%;
  }
  
   /* MAIN INQUIRY SECTION */
  section.inquiry-section{
    padding: 40px 0 40px 0;
  }

  a.recruitment-info-link > .recruitment-content-wrapper > .recruitment-title > h1{
    font-size: 20px;
  }

  a.recruitment-info-link > .recruitment-content-wrapper > .recruitment-text > p{
    font-size: 14px;
  }

  .recruitment-content-wrapper > .recruitment-link-wrapper > label{
    font-size: 14px;
    margin-right: 10px;
  }

  .recruitment-content-wrapper > .recruitment-link-wrapper > .arrow-link-wrapper{
    height: 30px;
    width: 30px;
  }

  .recruitment-content-wrapper > .recruitment-link-wrapper > .arrow-link-wrapper svg.arrow-link-pc{
    display: none;
  }

  .recruitment-content-wrapper > .recruitment-link-wrapper > .arrow-link-wrapper svg.arrow-link-sp{
    display: block;
  }

  /* 7.1 HTML PAGE - INQUIRY */
  form.wpcf7-form p label{
    margin-bottom: 20px;
  }

  form.wpcf7-form p:nth-child(3){
    margin: 60px 0 40px 0;
  }

  /* 5.2 HTML PAGE - ARTICLE DETAIL */
  section.initiative-details-section > .initiative-detail-wrapper{
    padding: 40px 0 40px 0;
  }

  .initiative-detail-wrapper > .initiative-detail-title-wrapper > h1.initiative-title {
    font-size: 24px;
    line-height: 140%;
  }

  .initiative-detail-wrapper > .initiative-detail-image {
    margin-top: 30px;
  }

  .initiative-detail-wrapper > .initiative-detail-heading-wrapper, .initiative-detail-wrapper > .initiative-detail-subheading-wrapper{
    margin-top: 30px;
  }

  .initiative-detail-wrapper > .initiative-detail-heading-wrapper > h2 {
    font-size: 20px;
    line-height: 140%;
  }

  .initiative-detail-wrapper > .initiative-detail-subheading-wrapper > h3 {
    line-height: 140%;
  }

  .initiative-detail-wrapper > .initiative-detail-heading-wrapper > p, .initiative-detail-wrapper > .initiative-detail-subheading-wrapper > p{
    line-height: 160%;
    margin: 10px 0 10px 0;
  }

  .initiative-detail-wrapper > .back-to-list-button-wrapper > a.back-to-list-button{
    margin-top: 40px;
  }

  /* 8 - PRIVACY PAGE HTML */
  section.privacy-section > .privacy-title-heading > h1{
    font-size: 20px;
    margin-right: 10px;
  }

  section.privacy-section > .privacy-title-heading > img{
    height: 28.97px;
    width: 30px;
  }

  .privacy-component-wrapper > .privacy-component-title > h2{
    font-size: 16px;
  }

  .privacy-component-wrapper > .privacy-component-line{
    margin: 25px 0;
  }

  section.privacy-section > .privacy-content-wrapper p{
    font-size: 12px;
  }

  .privacy-content-wrapper > .privacy-component-wrapper{
    margin-top: 40px;
  }

  .privacy-component-wrapper > .privacy-component-content > .privacy-component-ad-info{
    margin-top: 25px;
  }


  /* Footer */
  footer .footer-wrapper .footer-content-left .company-map p{
    flex-direction: column;
  }

  footer .footer-wrapper .footer-content-left h1.company-name{
    font-size: 10px;
  }

  footer .footer-wrapper .footer-content-left h1.company-name span{
    font-size: 16px;
    margin-top: 0;
  }

  footer .footer-wrapper .footer-content-right{
    flex-direction: column;
  }

  footer .footer-wrapper .footer-content-right .footer-service{
    margin: 40px 0;
  }

  footer .footer-wrapper .footer-content-right .footer-about-heading, footer .footer-wrapper .footer-content-right .footer-service-heading{
    margin-bottom: 20px;
  }

  footer .footer-wrapper .footer-content-right .footer-links-wrapper-service .footer-links-wrapper a, footer .footer-wrapper .footer-content-right .footer-about .footer-links-wrapper a{
    font-size: 12px;
  }

  footer .footer-wrapper .footer-content-right .footer-about-heading p.footer-about-jap, footer .footer-wrapper .footer-content-right .footer-service-heading p.footer-service-jap, footer .footer-wrapper .footer-content-right .footer-activity-heading p.footer-activity-jap{
    font-size: 14px;
  }

  footer .footer-wrapper .footer-content-right .footer-activity .footer-links-wrapper a:last-child{
    margin-bottom: 0;
  }

  footer .footer-wrapper .footer-content-right .footer-activity-heading{
    margin-bottom: 25px;
  }

  footer .main-footer{
    padding: 25px 0 70px 0;
  }
}

/* 480px */
@media screen and (max-width: 480px) {

  .background-image-top .bg-top-pc-green, .background-image-top .bg-top-pc-pink{
    display: none;
  }
  
  .background-image-top .bg-top-sp-green, .background-image-top .bg-top-sp-pink{
    display: block;
  }

  section.about-section .background-image-middle{
    top: 52%;
  }

  section.service-section > .background-image-bottom{
    bottom: -3%;
  }

  /* 1 HTML PAGE - HOME */

  .home-description-wrapper > .home-description{
  margin: 20px 0 10px 30px;
  }

  .home-img > img.home-img-sp{
    display: block;
    max-height: 186px;
    clip-path: none;
  }

  .home-img > img.home-img-pc{
    display: none;
  }

  .home-description > .home-img-wrapper{
    display: flex;
    justify-content: flex-end;
  }

  .home-description > .home-title-and-content{
    max-width: 320px;
    padding-top: 20px;
  }

  .home-title-and-content > .home-title > h1{
    font-size: 24px;
  }

  .home-title-and-content > .home-content{
    margin-top: 20px;
  }

  .home-title-and-content > .home-content > p {
    font-size: 10px;
  }

  .benefits-card > h1{
    font-size: 18px;
  }

  .home-about > .home-about-img-wrapper > img{
    max-width: 133px;
  }

  /* 2 HTML PAGE - ABOUT */
  .company-profile-wrapper.general-section{
    padding: 40px 30px!important;
  }

  .company-employees > .slider-heading{
    padding: 0 30px;
  }

  .company-employees > .slider-heading > .text-heading > p > br:first-child{
    display: block;
  }

  
  .intro-group-cliparts .group-2 > img.third-clipart{
    max-height: 145px;
    max-width: 145px;
    margin-top: 0;
    margin-left: 0;
    margin-right: -73px;
  }

  .intro-group-cliparts .group-2 > img.second-clipart{
    max-height: 114.67px;
    max-width: 160px;
  }


  /* MAIN INQUIRY SECTION */
  section.inquiry-section > .inquiry-section-wrapper > .inquiry-content-wrapper{
    margin-top: 20px;
  }

  .inquiry-content-left-wrapper > .inquiry-message-wrapper > p{
    font-size: 18px;
  }

  .inquiry-content-left-wrapper > .inquiry-tel-wrapper > h1{
    font-size: 30px;
  }

  .inquiry-section-wrapper > .inquiry-content-wrapper > .inquiry-content-right{
    width: 100%;
  }

  /* NAVBAR */
  .nav-links-wrapper{
    margin-top: -60px;
  }

   /* 4 HTML PAGE - RECRUITMENT */
  
  .qualifications-wrapper > .tel-info-img-sp{
    display: block;
    position: absolute;
    top: -12%;
  }

  .application-channels-wrapper > a{
    min-width: 100%;
  }

  .how-to-apply-wrapper > img{
    display: block;
    padding: 0 30px;
    margin-bottom: -40px;
  }

  .how-to-apply-wrapper > .general-section > img{
    display: none;
  }

  .slider {
    height: 60px;
  }

  .slider img {
    height: 60px;
  }

  /* FOOTER */
  footer .bottom-footer-wrapper{
    padding: 70px 30px;
  }

  footer .bottom-footer-wrapper p.copyright{
    flex-direction: column;
    align-items: flex-start;
  }

  footer .bottom-footer-wrapper p.copyright span.division-line{
    display: none;
  }

  footer .bottom-footer-wrapper p.copyright span{
    margin-top: 10px;
  }
}

/* 450px */
@media screen and (max-width: 450px){
  /* 4 HTML PAGE - RECRUITMENT */
  section.recruitment-section .background-image-bottom{
    bottom: -3%;
  }
}

.inquiry-tel-wrapper h1 a {
	color:#fff;
}