@charset 'utf-8';
:root {
    --main_color: #547c47;
    --background_color: #f3f6e4;
    --white: #fff;
}
html,
body {
    overflow-x: hidden;
}
body {
    position: relative;
    font-family: noto-sans, sans-serif;
    font-style: normal;
    overflow-x: hidden;
}
img {
  user-select: none;
  -webkit-user-drag: none;
}
header {
    padding-block: 70px;
    padding-inline: 32px;
    box-sizing: border-box;
}
header .logo {
    text-align: left;
}
header .logo img {
  width: clamp(80px, 15vw, 150px);
  height: auto;
  transform: translateY(-10px);
}
main {
    max-width: 1440px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 32px;
    box-sizing: border-box;
}
section {
    margin-inline: auto;
    padding-inline: 24px;
    box-sizing: border-box;
}
h2 {
    font-family: acroterion-jf, sans-serif;
    font-style: normal;
    font-weight: 500;
    color: var(--main_color);
}
p {
    color: var(--main_color);
    line-height: 1.5;
}
.point {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.point figure {
    width: 100%;              
    display: flex;
    justify-content: center;  
    gap: 60px;
    margin: 20px 0;
}


.point .left,
.point .right {
    margin: 20px 0;
}

.point .right {
    margin-bottom: 20px;
    padding-bottom: 100px;
    border-bottom: 1px solid #547c47;
}

.point img {
    width: min(360px, 28vw);
    height: auto;
    display: block;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.point img.show {
    opacity: 1;
    transform: translateY(0);
}

.label {
  display: inline-block;
  font-weight: 600;
}

.item {
  display: inline-block;
  margin-left: 1em;
}

.bag {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin: 5% 0 0 0;
}
.bag p{
    margin: 5% 0 0 0;
}

.line {
  display: block;
  max-width: 1199px;
  margin: 32px auto;
  border-bottom: 1px solid #547c47;
}


@media (max-width: 768px) {
    header {
        padding-block: 26px;
        padding-inline: 18px;
        box-sizing: border-box;
    }

    .point figure {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
        margin: 0;
    }

    .point img {
        width: min(320px, 90vw);
        max-width: 360px;
        height: auto;
        display: block;
    }

    .point {
        padding: 0 24px;
        text-align: center;
    }

    #section_read .flower {
        width: 64%;
    }
    #fv .flower-wrap img .flower .flower-left  {
        top: -8px;
        left: -22px;
    }
    #section_read .flower-right {
        top: -234px;
        right: -10%;
    }
    #section_read h2 {
        margin: 5px 0 60px 0;
        font-size: 20px;
    }
    #section_message h2{
        font-size: 20px;
    }

}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(30px, calc(10px + 2vw), 100px);
    max-width: 1100px;
    margin-inline: auto;
}
@media (max-width: 1440px) {
    .flex-container {
        justify-content: center;
    }
}
#fv {
    margin-top: -1.5%;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: 0;
    position: relative;
}
#fv figure img {
    width: 100%;
}

#fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 213, 0) 45%,
    rgba(236, 240, 213, 0.55) 100%
  );
  pointer-events: none;
}

.gradation {
  background: linear-gradient(
    135deg,
    rgba(236, 240, 213, 0.85) 0%,
    rgba(236, 240, 213, 0.65) 35%,
    rgba(236, 240, 213, 0) 60%
  );
}
.flower-wrap {
    position: relative;
}
.flower {
    position: absolute;
    width: 35%;
    height: auto;
    z-index: 10;
    pointer-events: none;

    opacity: 0;
    transform: translateY(20px);
    animation: flowerFadeIn 1.2s ease-out forwards;
}
@keyframes flowerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
#fv .flower {
    animation-delay: 0.2s;
}
#section_read .flower {
    animation-delay: 0.8s;
}
.flower-left {
    top: -43px;
    left: 0;
}
.flower-right {
    top: -600px;
    right: 0%;
}

.flex-container p{

    font-size: 16px;
    color: #547c47;
    font-weight: 600;
    line-height: 1.8;
}

.center-image img {
    display: block;
    margin: 0 auto;
    padding: 4% 0;
}

.center-image_bag img {
    display: block;
    margin: 0 auto;
}

#section_read {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-bottom: 130px;
    background-image: url("../../img/special-page/718-birthday-2026/BG/bg_read_decoration.png"), url("../../img/special-page/718-birthday-2026/BG/bg_read_decoration02.png");
    background-position: left 0 top 210px,right 0 bottom 0px;
    background-repeat: no-repeat;   
    background-size: 20% auto,22% auto;
}


#section_read h2 {
    font-family: noto-serif, serif;
    font-style: normal; 
    margin: 60px 0;
    font-size: 26px;
    color: var(--main_color);
    text-align: center;
    line-height: 1.5;
}
#section_read p {
    font-size: 18px;
    text-align: center;
}
#section_read .flex-container {
    max-width: 870px;
}

#section_product {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-block: 132px 152px;
    
    background-image: url(../../img/special-page/718-birthday-2026/BG/bg.jpg);
}
.section_product_in {
    max-width: 1440px;
    width: 100%;
    margin-inline: auto;
}
#section_product h2 {
    margin-bottom: 56px;
    font-size: 140px;
    text-align: center;
}
@media (max-width: 768px) {
    #section_product h2 {
        font-size: 80px;
        text-align: center;
    }                       
}

#section_product .text {
    max-width: 518px;
}
@media (max-width: 1120px) {
    #section_product .text {
        order: 2;
    }
}
#section_product h3 {
    font-family: noto-serif, serif;
    font-style: normal;
    margin-bottom: 18px;
    font-size: 30px;
    color: var(--main_color);
}
#section_product h3 + h3 {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 24px;
    color: var(--main_color);
    border-bottom: 1px solid var(--main_color);
}
#section_product h3 + h3 span {
    font-size: 14px;
}
#section_product p {
    font-size: 14px;
}
#section_product figure {
    padding: 4% 0;
    max-width: 520px;
}
@media (max-width: 1120px) {
    #section_product figure {
        order: 1;
    }
}
#section_product .buy {
    max-width: 500px;
    height: 100px;
    margin-top: 56px;
    margin-inline: auto;
    background-color: var(--main_color);
    border-radius: 50px;
}
#section_product .buy a {
    font-family: noto-serif, serif;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
}
#section_product .buy a:hover {
    background-color: #709166;
    border-radius: 50px;
}
#section_message {
    width: 100vw;
    margin-inline: calc(50% - 50vw);    
    padding-block: 266px 366px;
    background-image: url("../../img/special-page/718-birthday-2026/BG/bg_messege_decoration_02.png"), url("../../img/special-page/718-birthday-2026/BG/bg_messege_decoration_03.png");
    background-position: left 0 bottom 0, right 0 bottom 0;
    background-repeat: no-repeat;
    background-size: clamp(150px, 40vw, 480px) auto, clamp(150px, 40vw, 480px) auto;
}
#section_message h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;    
    width: 100vw;
    margin-inline: calc(50% - 50vw);   
    height: 57px;
    font-size: 10px;
    color: var(--white);
    background-color: var(--main_color);
}
.message-area {
    background: linear-gradient(
        to bottom,
        rgba(84, 124, 71, 0) 0%,
        rgba(84, 124, 71, 0.4) 40%,
        rgba(84, 124, 71, 1) 100%
    );
}
.sp-br {
  display: none;
}

@media screen and (max-width: 767px) {
  #section_read h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 60px 0 43px;
  }
      #section_read p{
        font-size: 15px;   
        margin: 13% 0 0% 0;
    }
    .point .left{
        margin: 0 auto;
        width: 100%;
    }
    .point .right {
        margin: 0 auto;
        width: 100%;
        padding-bottom: 14%;
    }

    .point .right img:first-child {
        margin-bottom: 18px; 
    }
    .flex-container {
        flex-direction: column;
        align-items: center; 
        gap: 30px;
    }
    .flex-container figure {
        width: 100%;
        flex: none; 
    }
    #section_read figure {
    width: 100%;
   }
   .flower-left {
    top: -16px;
    left: -20px;
    width: 61%;
   }
   #section_product {
    padding-block: 0px;
    padding: 30px 30px;
  }
  #section_product .buy {
    width: 100%;
    height: 60px;
    margin-top: 30px;
    margin-inline: auto;
  }
    #section_product .buy a{
        font-size: 18px;
  }
  #section_product h3 {
    font-size: 24px;
}
  #section_product h2 {
    margin-bottom: 20px;
    text-align: center;
  }
  #section_message h2 {
    font-size: 60px;
    margin-bottom: 47px;
  }
  #section_message {
    padding-block: 120px 100px;
  }
  
  #section_read {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-bottom: 40px;
    background-image: url(../../img/special-page/718-birthday-2026/BG/bg_read_decoration.png), url(../../img/special-page/718-birthday-2026/BG/bg_read_decoration02.png);
    background-position: left 0 top 20px, right 0 bottom 0px;
    background-repeat: no-repeat;
    background-size: 20% auto, 22% auto;
}
  .sp-br {
    display: inline;
   }
  .message-area {
    background: linear-gradient(
        to bottom,
         rgba(84, 124, 71, 0) 0%,
         rgba(84, 124, 71, 0) 50%,
         rgba(84, 124, 71, 0.4) 75%,
         rgba(84, 124, 71, 1) 100%
          );
    }
    .flex-container h3 {
        margin-top: 8px;
        margin-bottom: -10%;
    }
    .center-image img {
        padding: 25% 0 5% 0;   
    }
    .bag {
    margin: 10% 0 0 0;
}
.line {
    display: block;
    width: 279.481px !important;
}

    
    }

