
/*****************
homeItem01
*****************/


.homeItem01 {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  min-height: 700px;
  background-color: #e5e1da;
}
.homeItem01:not(:last-child) {
}
.homeItem01-block {
  width: 62%;
  display: flex;
  justify-content: flex-end;
}
.homeItem01-visual {
  width: 100%;
}
.homeItem01-img{
  height: 100%;
  width: 100%;
  border: 3vw solid #e5e1da;
  background-position: center center;
  background-size: cover;
}
.homeItem01-img img {
  display: none;
}

.homeItem01-inner {
  width: 38%;
  position: relative;
}
.homeItem01-inner > a{
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  text-decoration: none;
}

.homeItem01-heading{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-family: "Times New Roman",Times,serif;
  font-weight: normal;
  padding: 50px 80px;
}
.homeItem01-heading-title {
  font-size: 131%;
  padding-top: 0.4em;
  line-height: 2;
  letter-spacing: 0.1em;
}

.homeItem01-box {
  display: table;
  width: 100%;
  height: 100%;
}
.homeItem01-box-inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.homeItem01-title {
  font-size: 154%;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.homeItem01-title span {
  display: inline-block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.homeItem01-text {
  font-size: 100%;
  line-height: 2;
  padding-top: 30px;
}


.homeItem01-link{
  position: absolute;
  right: 60px;
  bottom: 40px;
}

@media screen and (max-width:1024px) {


  .homeItem01 {
    display: block;
    position: relative;
    padding:50px 8% 60px;
    min-height: initial;
  }
  .homeItem01-section:not(:last-child) {
    border-bottom: none;
  }
  .homeItem01-block {
    width: 100%;
    padding: 0 ;
  }
  .homeItem01-visual {
    width: 100%;
    max-width: 780px;
  }
  .homeItem01-img{
    height: 50vmin;
    width: 100%;
    background-position: center center;
    background-size: cover;
    border: none;
  }

  .homeItem01-inner {
    width: auto;
    position: static;
  }
  .homeItem01-inner > a{
  }

  .homeItem01-heading{
    position: static;
    padding: 20px 8% 25px;
    align-items: flex-end;
    line-height: 1;
  }
  .homeItem01-heading-num {
    font-size: 250%;
    position: absolute;
    left: 50%;
    margin-left: -0.5em;
    top: 22vmin;
  }
  .homeItem01-heading-title {
    display: block;
    width: 100%;
    font-size: 93%;
    padding-top: 0.4em;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.1em;
  }

  .homeItem01-box {
    display: block;
    padding-bottom: 60px;
  }
  .homeItem01-box-inner {
    display: block;
    padding-left: 5%;
    padding-right: 5%;
  }
  .homeItem01-title {
    font-size: 154%;
    font-weight: normal;
    padding-top: 1.5em;
    letter-spacing: 0.08em;
  }
  .homeItem01-text {
    font-size: 100%;
    line-height: 1.8;
    padding-top: 20px;
  }

  .homeItem01-link{
    position: absolute;
    right: 10%;
    bottom: 70px;
  }

}


/*
child
*/

.homeItem01-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Times New Roman",Times,serif;
  font-weight: normal;
  opacity: 0;
  transition:all 0.5s ease;
  z-index: 999;
}
.homeItem01-child::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #34110a;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right top;
  transition:all 0.5s ease;
}


.homeItem01-child-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -140px;
  padding: 0 100px 0 80px;
}
.homeItem01-child-num {
  display: inline-block;
  font-size: 300%;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateX(5px);
  transition:all 0.5s ease 0.2s;
}
.homeItem01-child-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
}
.homeItem01-child-title {
  flex: 1;
  font-size: 164%;
  padding-top: 0.4em;
  line-height: 2;
  opacity: 0;
  transform: translateX(5px);
  transition:all 0.5s ease 0.3s;
}

.homeItem01-child-link {
  width: 100px;
  position: relative;
  padding-bottom: 10px;
  opacity: 0;
  transition:all 0.5s ease 0.3s;
}
.homeItem01-arrow {
  display: inline-block;
  width: 80px;
  height: 10px;
  background: url(/wp/wp-content/themes/petari/img/icon/arrow01.png) no-repeat 0 0 / 80px 10px;
  opacity: 0.7;
}


a:hover .homeItem01-child{
  opacity: 1;
}
a:hover .homeItem01-child::before {
  opacity: 1;
  transform: scaleX(1);
}
a:hover .homeItem01-child-num,
a:hover .homeItem01-child-title {
  opacity: 1;
  transform: translateX(0);
}
a:hover .homeItem01-child-link{
  opacity: 1;
}
a:hover .homeItem01-arrow {
  animation: anim-homeItem01-arrow 0.5s ease forwards;
  animation-delay: 0.8s;
}
.homeItem01-child-inner:hover .homeItem01-child-link {
  animation: anim-homeItem01-arrow 0.6s ease forwards;
}


@keyframes anim-homeItem01-arrow {
  0% {transform: translateX(0);}
  50% {transform: translateX(6px); }
  100% {transform: translateX(0); }
}


@media screen and (max-width:1024px) {

  .homeItem01-child {
    display: none;
  }

}



/*****************
homeAbout
*****************/


.homeAbout {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  min-height: 700px;
}
.homeAbout:not(:last-child) {
}
.homeAbout-block {
  width: 62%;
  display: flex;
  justify-content: flex-end;
}
.homeAbout-visual {
  width: 100%;
}
.homeAbout-img{
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
}
.homeAbout-img img {
  display: none;
}

.homeAbout-inner {
  width: 38%;
  background-color: #734233;
  color: #fff;
  position: relative;
}
.homeAbout-inner > a{
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.homeAbout-heading{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-family: "Times New Roman",Times,serif;
  font-weight: normal;
  padding: 50px 80px;
}
.homeAbout-heading-title {
  font-size: 131%;
  padding-top: 0.4em;
  line-height: 2;
  letter-spacing: 0.1em;
}

.homeAbout-box {
  display: table;
  width: 100%;
  height: 100%;
}
.homeAbout-box-inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.homeAbout-title {
  font-size: 154%;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.homeAbout-text {
  font-size: 100%;
  line-height: 2;
  padding-top: 30px;
}


.homeAbout-link{
  position: absolute;
  right: 60px;
  bottom: 40px;
}

@media screen and (max-width:1024px) {


  .homeAbout {
    display: block;
    position: relative;
    padding:0 8% 20px;
    margin-top: 60px;
    margin-bottom: 50px;
    min-height: initial;
  }
  .homeAbout-section:not(:last-child) {
    border-bottom: none;
  }
  .homeAbout-block {
    width: 100%;
    padding: 0 ;
  }
  .homeAbout-visual {
    width: 100%;
    max-width: 780px;
  }
  .homeAbout-img{
    height: 50vmin;
    width: 100%;
    background-position: center center;
    background-size: cover;
  }

  .homeAbout-inner {
    width: auto;
    position: static;
  }
  .homeAbout-inner > a{
  }

  .homeAbout-heading{
    position: static;
    padding: 20px 8% 25px;
    align-items: flex-end;
    line-height: 1;
  }
  .homeAbout-heading-num {
    font-size: 250%;
    position: absolute;
    left: 50%;
    margin-left: -0.5em;
    top: 22vmin;
  }
  .homeAbout-heading-title {
    display: block;
    width: 100%;
    font-size: 93%;
    padding-top: 0.4em;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.1em;
  }

  .homeAbout-box {
    display: block;
    padding-bottom: 60px;
  }
  .homeAbout-box-inner {
    display: block;
    padding-left: 5%;
    padding-right: 5%;
  }
  .homeAbout-title {
    font-size: 154%;
    font-weight: normal;
    letter-spacing: 0.08em;
  }
  .homeAbout-text {
    font-size: 100%;
    line-height: 1.8;
    padding-top: 20px;
  }

  .homeAbout-link{
    position: absolute;
    right: 10%;
    bottom: 40px;
  }

}


/*
child
*/

.homeAbout-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Times New Roman",Times,serif;
  font-weight: normal;
  opacity: 0;
  transition:all 0.5s ease;
  z-index: 999;
}
.homeAbout-child::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #34110a;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right top;
  transition:all 0.5s ease;
}


.homeAbout-child-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -140px;
  padding: 0 100px 0 80px;
}
.homeAbout-child-num {
  display: inline-block;
  font-size: 300%;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateX(5px);
  transition:all 0.5s ease 0.2s;
}
.homeAbout-child-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
}
.homeAbout-child-title {
  flex: 1;
  font-size: 164%;
  padding-top: 0.4em;
  line-height: 2;
  opacity: 0;
  transform: translateX(5px);
  transition:all 0.5s ease 0.3s;
}

.homeAbout-child-link {
  width: 100px;
  position: relative;
  padding-bottom: 10px;
  opacity: 0;
  transition:all 0.5s ease 0.3s;
}
.homeAbout-arrow {
  display: inline-block;
  width: 80px;
  height: 10px;
  background: url(/wp/wp-content/themes/petari/img/icon/arrow01.png) no-repeat 0 0 / 80px 10px;
  opacity: 0.7;
}


a:hover .homeAbout-child{
  opacity: 1;
}
a:hover .homeAbout-child::before {
  opacity: 1;
  transform: scaleX(1);
}
a:hover .homeAbout-child-num,
a:hover .homeAbout-child-title {
  opacity: 1;
  transform: translateX(0);
}
a:hover .homeAbout-child-link{
  opacity: 1;
}
a:hover .homeAbout-arrow {
  animation: anim-homeAbout-arrow 0.5s ease forwards;
  animation-delay: 0.8s;
}
.homeAbout-child-inner:hover .homeAbout-child-link {
  animation: anim-homeAbout-arrow 0.6s ease forwards;
}


@keyframes anim-homeAbout-arrow {
  0% {transform: translateX(0);}
  50% {transform: translateX(6px); }
  100% {transform: translateX(0); }
}


@media screen and (max-width:1024px) {

  .homeAbout-child {
    display: none;
  }

}

/*****************
homeMake
*****************/


.homeMake {
  position: relative;
  min-height: 700px;
}
.homeMake-img{
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.homeMake-img img {
  display: none;
}

.homeMake-inner {
  width: 38%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  color: #734233;
  position: absolute;
  left: 0;
  top: 0;
}
.homeMake-inner > a{
  display: block;
  width: 100%;
  height: 100%;
  color: #734233;
  text-decoration: none;
}

.homeMake-heading{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-family: "Times New Roman",Times,serif;
  font-weight: normal;
  padding: 50px 80px;
}
.homeMake-heading-title {
  font-size: 131%;
  padding-top: 0.4em;
  line-height: 2;
  letter-spacing: 0.1em;
}

.homeMake-box {
  display: table;
  width: 100%;
  height: 100%;
}
.homeMake-box-inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.homeMake-title {
  font-size: 154%;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.homeMake-text {
  font-size: 116%;
  line-height: 2;
  padding-top: 30px;
}


.homeMake-link{
  position: absolute;
  right: 60px;
  bottom: 40px;
}

@media screen and (max-width:1024px) {


  .homeMake {
    display: block;
    position: relative;
    margin:60px 8% 60px;
    padding-bottom: 0;
    min-height: initial
  }
  .homeMake-section:not(:last-child) {
    border-bottom: none;
  }
  .homeMake-img{
    height: 50vmin;
    width: 100%;
    background-position: center center;
    background-size: cover;
    position: static;
  }

  .homeMake-inner {
    width: auto;
    position: static;
  }
  .homeMake-inner > a{
    position: static;
  }

  .homeMake-heading{
    position: static;
    padding: 20px 8% 25px;
    align-items: flex-end;
    line-height: 1;
  }
  .homeMake-heading-num {
    font-size: 250%;
    position: absolute;
    left: 50%;
    margin-left: -0.5em;
    top: 22vmin;
  }
  .homeMake-heading-title {
    display: block;
    width: 100%;
    font-size: 93%;
    padding-top: 0.4em;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.1em;
  }

  .homeMake-box {
    display: block;
    padding-bottom: 60px;
  }
  .homeMake-box-inner {
    display: block;
    padding-left: 5%;
    padding-right: 5%;
  }
  .homeMake-title {
    font-size: 154%;
    font-weight: normal;
    letter-spacing: 0.08em;
  }
  .homeMake-text {
    font-size: 100%;
    line-height: 1.8;
    padding-top: 20px;
  }

  .homeMake-link{
    position: absolute;
    right: 2%;
    bottom: 20px;
  }

}


/*
child
*/

.homeMake-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Times New Roman",Times,serif;
  font-weight: normal;
  opacity: 0;
  transition:all 0.5s ease;
  z-index: 999;
  color: #fff;
}
.homeMake-child::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #34110a;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right top;
  transition:all 0.5s ease;
}


.homeMake-child-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -140px;
  padding: 0 100px 0 80px;
}
.homeMake-child-num {
  display: inline-block;
  font-size: 300%;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateX(5px);
  transition:all 0.5s ease 0.2s;
}
.homeMake-child-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
}
.homeMake-child-title {
  flex: 1;
  font-size: 164%;
  padding-top: 0.4em;
  line-height: 2;
  opacity: 0;
  transform: translateX(5px);
  transition:all 0.5s ease 0.3s;
}

.homeMake-child-link {
  width: 100px;
  position: relative;
  padding-bottom: 10px;
  opacity: 0;
  transition:all 0.5s ease 0.3s;
}
.homeMake-arrow {
  display: inline-block;
  width: 80px;
  height: 10px;
  background: url(/wp/wp-content/themes/petari/img/icon/arrow01.png) no-repeat 0 0 / 80px 10px;
  opacity: 0.7;
}


a:hover .homeMake-child{
  opacity: 1;
}
a:hover .homeMake-child::before {
  opacity: 1;
  transform: scaleX(1);
}
a:hover .homeMake-child-num,
a:hover .homeMake-child-title {
  opacity: 1;
  transform: translateX(0);
}
a:hover .homeMake-child-link{
  opacity: 1;
}
a:hover .homeMake-arrow {
  animation: anim-homeMake-arrow 0.5s ease forwards;
  animation-delay: 0.8s;
}
.homeMake-child-inner:hover .homeMake-child-link {
  animation: anim-homeMake-arrow 0.6s ease forwards;
}


@keyframes anim-homeMake-arrow {
  0% {transform: translateX(0);}
  50% {transform: translateX(6px); }
  100% {transform: translateX(0); }
}


@media screen and (max-width:1024px) {

  .homeMake-child {
    display: none;
  }

}
