@charset "utf-8";

/****共通*****************************************************************/
#brand-top--content .is-pc {
  display: block;
}
#brand-top--content .is-sp {
  display: none;
}
#brand-top--content .f-large {
  font-size: 17px;
  line-height: 1.8em;
}
#brand-top--content .f-xlarge {
  font-size: 20px;
}
#brand-top--content .f-xxlarge {
  font-size: 30px;
}
#brand-top--content .color-lightgray {
  color: #999;
}


#brand-top--content .od-category-hero-image-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
}
#brand-top--content .od-category-hero-image {
  width: 100%;
  height: auto;
  /* object-fit: cover; */
  aspect-ratio: auto;
  max-width: 1920px;
}
/* グローバル変数の定義 */
:root {
 --delay: 5s; /* スライドショーの速度 */
}

#brand-top--content .od-category-hero-image-container .brand-leadtext {
    position: absolute;
    width: 80%;
    height: 100%;
    max-width: 1920px;
    top:0;
    left:50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#brand-top--content .od-category-hero-image-container .brand-leadtext p{
    color: #FFF;
    font-size: 34px;
    text-shadow: 1px 1px 2px #666;
}
#brand-top--content #bg-animation {
    position: relative;
    margin: 50px auto 0;
    width: 100%;
    height: auto;
    aspect-ratio: 32/13;
}
#brand-top--content #bg-animation .img-item {
  position: absolute;
  top : 0;
  left : 0;
  max-width : 100%;
  max-height : 100%;
  opacity : 0;
  width: 100%;
  height: auto;
  aspect-ratio: 32/13;
  animation : itemFade-anim 15s infinite;
}
#brand-top--content #bg-animation .img-item picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#brand-top--content #bg-animation #photo1 {
  animation-delay : 0s;
}
#brand-top--content #bg-animation #photo2 {
  animation-delay : 5s;
}
#brand-top--content #bg-animation #photo3 {
  animation-delay : 10s;
}
@keyframes itemFade-anim {
  0% {
    opacity : 0;
  }
  10%{
    opacity : 1;
    z-index : 3;
  }
  33%{
    opacity : 1;
  }
  40%{
    opacity : 1;
  }
  50%{
    opacity : 0;
    z-index : 1;
  }
  100% {
    opacity : 0;
  }
}


/*hero 以下*/

#brand-top--header {
  margin: 50px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#brand-top--header h2 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1em !important;
}
#brand-top--header h2.brand-top--header_logo {
  max-width: 200px;
  margin-right: 100px;
}
#brand-top--header h2.brand-top--header_logo img {
  width: 100%;
}

#brand-top--cont-Seciton h3 {
  color: #222;
}
#brand-top--cont-Seciton h3+p {
  margin-top: 20px;
}
#brand-top--cont-Seciton p {
  line-height: 1.6em;
}
#brand-top--cont-Seciton p+p {
  margin-top: 15px;
}


.flexbox {
  display: flex;
  flex-wrap: wrap;
}
.flexbox.spacebetween {
  justify-content: space-between;
}
.flex--leftbox.w50,
.flex--rightbox.w50 {
  width: 48%;
}
.flex--leftbox img,
.flex--rightbox img {
  width: 100%;
}


.hidden-content {
  position: relative;
  height: 580px;
  overflow: hidden;
  transition: .4s;
}
.hidden-content:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  transition: .4s;
  z-index: 100;
}
.hidden-content.active:before{
  opacity: 0;
  visibility: hidden;
}
.show {
  display: block;
}

.more-button-cont {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 101;
  bottom: 20px;
  cursor: pointer;
}
.more-button {
  background-color: #222;
  color: #FFF;
  border: none;
  padding: 12px 0;
  width: 140px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.3s;
  margin: 0 auto;
  border-radius: 32px;
  line-height: 1em;
}
.more-button span.arrow {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  transition: transform 0.3s;
  transform: rotate(45deg);
}
.more-button span.arrow:before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #FFF;
  border-right: solid 2px #FFF;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 3px;
  margin: auto;
}
.more-button:hover {
  background-color: #999;
}
/* 展開時はボタンをコンテンツの下に配置 */
.hidden-content.active .more-button-cont {
  position: relative;
  bottom: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

/****GO GIRL*****************************************************************/

#messagebox {
  width:100%;
  background:#b5308c;
  box-sizing: border-box;
  padding: 80px 80px 0;
}
#messagebox .inner {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  max-width:1000px;
  padding-bottom:20px;
}
#messagebox .gogirlImg {
  width:50%;
}
#messagebox .gogirlImg img {
  width:100%;
}
#messagebox .gogirlTxt {
  width:50%;color:#FFF;text-align:left;
}
#messagebox .gogirlTxt h2 {
  font-size:50px;
  font-weight:700 !important;
  color:#FFF;
}
#messagebox .gogirlTxt p {
  font-weight:700 !important;
  font-size:22px;
  line-height:1.4em;
  margin-bottom:20px;
}
#messagebox .gogirlTxt p span {
  font-size:16px;
}
#messagebox .gogirlTxt dl dt {
  margin: 15px 0 5px;
}

#point {
    background: linear-gradient(180deg, #b5308c 0%, #b5308c 45%, #FFFFFF 45%, #FFFFFF 100%);
    text-align: center;
    border-top: solid 1px #b5308c;
}
#point .inner {
    padding-top: 0;
    background: linear-gradient(180deg, #b5308c 0%, #b5308c 16%, #f9d5e5 16%, #f9d5e5 100%);
    text-align: center;
    padding-bottom: 60px;
    margin: 0 50px;
}
#point h2 {
    font-size: 34px;
    color: #b5308c;
    margin-bottom: 40px;
}
#point h2 span {
    display: block;
}
#point h2 img {
    margin-bottom: 15px;
    width: 180px;
}
#point .row {
  display: flex;
  justify-content: space-between;
  margin: 0 60px;
}
#point .cont1of4 {
    width: 24%;
    text-align: center;
}
#point .cont1of4 img {
    width: 60%;
    margin-bottom: 20px;
}
#point h3 {
    margin-bottom: 10px;
    color: #b5308c;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
}
#point p {
    text-align: left;
    background: #fcedf4;
    border: solid 2px #b5308c;
    padding: 20px 20px 0;
    min-height: 110px;
}
#imgPhoto {
    width: 100%;
    margin: 50px 0 0;
}
#imgPhoto ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: 0;
}
#imgPhoto ul li {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}
#imgPhoto ul li img {
    width: 100%;
}
#howto {
    width: 100%;
    background: url('../img/howto_bg.png') no-repeat 93% 360px #fdf0f6;
    background-size: 400px auto;
    margin: 0 0 80px;
    padding: 60px;
    text-align: center;
}
#howto .inner {
  display: flex;
  flex-direction: column;
  text-align: center;
}
#howto h2 {
    border: solid 2px #b5308c;
    font-size: 34px;
    color: #b5308c;
    font-weight: 800;
    display: inline-block;
    margin: 0 auto 30px;
    padding: 6px 25px;
}
#howto ol {
    text-align: left;
    margin: 0 auto;
    padding: 0;
    display: inline-block;
}
#howto ol li {
    padding: 0;
    margin: 0 0 10px;
}
#howto p {
    text-align: left;
    max-width: 640px;
    margin: 0 auto 30px;
}
#howto img {
    width: 70%;
    max-width: 500px;
    margin: 0 auto;
}



/****Tablet SP*****************************************************************/

@media(max-width: 768px) {

  /****共通*****/
  #brand-top--content .is-pc {
    display: none;
  }
  #brand-top--content .is-sp {
    display: block;
  }
  #brand-top--content .f-large {
    font-size: 15px;
    line-height: 1.8em;
  }
  #brand-top--content .f-xlarge {
    font-size: 18px;
  }
  #brand-top--content .f-xxlarge {
    font-size: 24px;
  }
  #brand-top--content #bg-animation {
    aspect-ratio: 5/6;
  }
  #brand-top--content #bg-animation .img-item {
    aspect-ratio: 5/6;
  }
  #brand-top--content .od-product-list-container {
    padding: 0 15px;
  }
  #brand-top--content .od-category-hero-image-container .brand-leadtext {
      width: 90%;
      height: 100%;
      max-width: 1920px;
      top:0;
      left:50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      justify-content: flex-end;
      align-items: center;
  }
  .flexbox {
    display: block;
  }
  .flex--leftbox.w50,
  .flex--rightbox.w50 {
    width: 100%;
  }
  .flex--rightbox {
    margin-top: 20px;
  }
  .flex--leftbox img,
  .flex--rightbox img {
    width: 100%;
  }
  #brand-top--header h2.brand-top--header_logo {
    max-width: 150px;
    margin-right: 0;
  }
  #brand-top--header h2.brand-top--header_logo img {
    width: 100%;
  }
  #messagebox {
    padding: 30px 30px 0;
  }
  #messagebox .inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  #messagebox .gogirlImg {
    width:80%;
    margin: 20px auto 0;
  }
  #messagebox .gogirlTxt {
    width:100%;
  }
  #messagebox .gogirlTxt h2 {
    font-size:34px;
  }
  #messagebox .gogirlTxt p {
    font-size:17px;
  }
  #messagebox .gogirlTxt p span {
    font-size:16px;
  }
  #messagebox .gogirlTxt dl dt {
    margin: 15px 0 5px;
  }

  #point .inner {
      padding-bottom: 0;
      margin: 0 15px;
  }
  #point h2 {
      font-size: 24px;
      color: #b5308c;
      margin-bottom: 40px;
  }
  #point h2 span {
      display: block;
  }
  #point h2 img {
      margin-bottom: 15px;
      width: 180px;
  }
  #point .row {
    display: flex;
    justify-content: space-between;
    margin: 0 10px;
  }
  #point .inner {
    padding-top: 0;
    background: linear-gradient(180deg, #b5308c 0%, #b5308c 10%, #f9d5e5 10%, #f9d5e5 100%);
    text-align: center;
    padding-bottom: 60px;
    margin: 0 50px;
  }
  #point .cont1of4:nth-child(1) {
    order: 1;
  }
  #point .cont1of4:nth-child(2) {
    order: 3;
  }
  #point .cont1of4:nth-child(3) {
    order: 2;
  }
  #point .cont1of4:nth-child(4) {
    order: 4;
  }
  #point .cont1of4 {
      width: 49%;
      text-align: center;
      margin-bottom: 30px;
  }
  #point .cont1of4 img {
      width: 60%;
      margin-bottom: 0;
  }
  #point h3 {
      margin-bottom: 0;
      color: #b5308c;
      font-size: 17px;
      font-weight: 700;
      line-height: 1em;
  }
  #point p {
      text-align: left;
      background: #fcedf4;
      border: solid 2px #b5308c;
      padding: 10px;
      min-height: 110px;
  }
  #imgPhoto {
      width: 100%;
      margin: 50px 0 0;
  }
  #imgPhoto ul {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      padding: 0;
  }
  #imgPhoto ul li {
      -webkit-flex-grow: 1;
      flex-grow: 1;
      list-style: none;
      padding: 0;
      margin: 0;
  }
  #imgPhoto ul li img {
      width: 100%;
  }
  #howto {
      width: 100%;
      background: url('../img/howto_bg.png') no-repeat center 122% #fdf0f6;
      background-size: 60% auto;
      margin: 0 0 80px;
      padding: 30px 30px 300px;
      text-align: center;
  }
  #howto h2 {
      font-size: 20px;
      font-weight: 700;
  }
  #howto ol {
      text-align: left;
      margin: 0 auto;
      padding: 0;
      display: inline-block;
  }
  #howto ol li {
      padding: 0;
      margin: 0 0 10px;
  }
  #howto p {
      text-align: left;
      max-width: 640px;
      margin: 0 auto 30px;
  }
  #howto img {
      width: 90%;
      max-width: 500px;
      margin: 0 auto;
  }


}
@media(max-width: 480px) {
  #brand-top--content .od-category-hero-image-container .brand-leadtext p{
      font-size: 20px;
  }
  #howto {
      width: 100%;
      background: url('../img/howto_bg.png') no-repeat center 122% #fdf0f6;
      background-size: 80% auto;
      margin: 0 0 80px;
      padding: 30px 30px 200px;
      text-align: center;
  }
  #point .inner {
    padding-top: 0;
    background: linear-gradient(180deg, #b5308c 0%, #b5308c 10%, #f9d5e5 10%, #f9d5e5 100%);
    text-align: center;
    padding-bottom: 60px;
    margin: 0 20px;
  }
  #point h2 {
    font-size: 22px;
  }
}

@media(max-width: 480px) {
#brand-top--content #bg-animation {
    margin: 12px auto 0;
}
}