/* page all */

* {
    box-sizing: border-box;
}

body {
    color: #333333;
    font-family: 'Noto Sans JP', sans-serif;
    width: 1366px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

a,
a:hover,
a:visited {
    color: inherit;
}

.container {
    padding-left: 98px;
    padding-right: 98px;
}

ul {
    list-style: none;
    padding-left: 0;
}

.fadeIn {
    transform: translate3d(0, 50px, 0);
    transition: 2s;
    opacity: 0;
}

.fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.fadeIn-load {
    display: none;
}

.sp {
    display: none;
}

.sp-br {
    display: none;
}

/* header */
.wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-fixed {
    max-width: 1366px;
    display: flex;
    align-items: center;
    background-color: #fff;
    height: 80px;
    justify-content: space-between;
    padding: 0 20px 0 0;
    letter-spacing: 0.2em;
}

.slide-menu {
    display: flex;
    gap: 30px;
    padding-top: 20px;
}

h1 {
    width: 80px;
    height: auto;
    object-fit: cover;
}

h1:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.button-shop {
    width: 47px;
    height: auto;
    object-fit: cover;
}

.gNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 0;
    padding-top: 0;
}

.gNav ul li {
    font-size: 14px;
}

.gNav ul li a {
    position: relative;
}

.gNav ul li a::after {
    /*アンダーラインのスタイル*/
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1f9e2a;
    bottom: -7px;
    left: 0;
    /*横方向0で非表示にする*/
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    /*左を基点にアニメーション*/
    -webkit-transform-origin: left top;
    transform-origin: left top;
    /*アニメーションの速度設定*/
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.gNav ul li a:hover::after {
    /*横方向等倍まで拡大*/
    transform: scale(1, 1);
}

.btn-header a {
    position: relative;
    display: block;
    width: 144px;
    padding: 6px 0;
    background-color: #1f9e2a;
    border: 1px #1f9e2a solid;
    border-radius: 25px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.btn-arrow-right a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.btn-header a:hover {
    position: relative;
    display: block;
    width: 144px;
    padding: 6px 0;
    background-color: #fff;
    border: 1px #1f9e2a solid;
    border-radius: 25px;
    font-size: 14px;
    color: #1f9e2a;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.btn-arrow-right a:hover:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #1f9e2a;
    border-right: 2px solid #1f9e2a;
    transform: rotate(45deg);
    box-sizing: border-box;
}





/********** top **********/

/* mv */
.mv {
    margin-top: 80px;
}

.box-mv {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 94%;
    margin: 0 auto;
    position: relative;
}

.box-mv::before {
    position: absolute;
    content: "";
    left: 0%;
    top: 50%;
    background-color: #1f9e2a;
    width: 100%;
    height: 50%;
}

.box-mv img {
    width: 60vw;
    height: auto;
}

.box-mv .slick-slide {
    transform: scale(0.8);
    transition: all .5s;
    opacity: 0.9;
}

.box-mv .slick-slide.slick-center {
    transform: scale(1);
    opacity: 1;
}

.image-mv img {
    width: 50vw;
    height: auto;
    object-fit: cover;
}

/* about */
.about {
    margin: 40px 0 120px 0;
    display: flex;
    gap: 70px;
    padding-top: 80px;
}

.contents-about {
    width: 40vw;
}

.title-about {
    font-size: 36px;
    font-weight: bold;
}

.title-about span {
    color: #1f9e2a;
}

.text-about {
    margin: 50px 0 50px 0;
    line-height: 24px;
}

.button-center {
    text-align: center;
}

.btn a {
    position: relative;
    display: block;
    width: 40vw;
    padding: 20px 120px;
    background-color: #1f9e2a;
    border: 1px #1f9e2a solid;
    border-radius: 50px;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.btn-arrow-right-bg a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 36px;
    width: 20px;
    height: 20px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.btn a:hover {
    position: relative;
    display: block;
    width: 40vw;
    padding: 20px 120px;
    background-color: #fff;
    border: 1px #1f9e2a solid;
    border-radius: 50px;
    font-size: 24px;
    color: #1f9e2a;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.btn-arrow-right-bg a:hover:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 36px;
    width: 20px;
    height: 20px;
    margin: auto;
    border-top: 2px solid #1f9e2a;
    border-right: 2px solid #1f9e2a;
    transform: rotate(45deg);
    box-sizing: border-box;
}

p.btn.btn-arrow-right-bg {
    display: inline-block;
}

.photo-about {
    position: relative;
    width: 30vw;
}

.photo-about-image-1 img {
    border: 5px solid #FFF;
    box-shadow: 0 0 5px #999;
    width: 16vw;
    height: auto;
    transform: rotate(-5deg);
}

.photo-about-image-2 {
    position: absolute;
    left: 20%;
}

.photo-about-image-2 img {
    border: 5px solid #FFF;
    box-shadow: 0 0 5px #999;
    width: 50vw;
    height: auto;
    transform: rotate(5deg);
}

/* point */
.point {
    background-color: #f1eee8;
    position: relative;
    padding-bottom: 120px;
    margin-top: -80px;
}

.point::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: absolute;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}

.point-image {
    padding-top: 100px;
}

.point-image img {
    width: 20vw;
    height: auto;
    object-fit: cover;
    margin: 0 0 0 auto;
}

.title-point-papaya {
    text-align: center;
    margin-top: 20px;
}

.title-point-papaya-sm {
    font-size: 30px;
}

.title-point-papaya-bg {
    font-size: 36px;
    font-weight: bold;
    color: #1f9e2a;
}

.title-point-papaya-bg span {
    font-size: 30px;
    font-weight: bold;
    color: #333333;
}

.contents-point {
    margin-top: 50px;
}

.text-point {
    line-height: 24px;
    width: 60vw;
    margin: 0 auto;
}

.text-point-title-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.text-point-title-image img {
    width: 130px;
    height: auto;
    object-fit: cover;
}

.text-point-title {
    position: relative;
    width: 480px;
    padding: 20px 60px;
    line-height: 30px;
    font-size: 24px;
    text-align: center;
    color: #fff;
    background-color: #1f9e2a;
    border-radius: 20px;
    margin-bottom: 30px;
}

.text-point-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 20px;
    top: 76px;
    border-right: 22px solid #1f9e2a;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    transform: rotate(55deg);
}

.text-point-title-balloon::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 20px;
    top: 110px;
    border-right: 22px solid #1f9e2a;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    transform: rotate(55deg);
}

.text-point-title span {
    font-size: 30px;
    font-weight: bold;
}

.text-point-contents {
    margin-top: 20px;
    line-height: 24px;
}

.text-point-contents span {
    font-weight: bold;
    color: #1f9e2a;
}

.text-point-title:last-of-type {
    margin-top: 50px;
}

.text-point-contents-number {
    margin-top: 20px;
    font-size: 36px;
    font-weight: bold;
    color: #9e2920;
    -webkit-text-stroke: 1px #333333;
}

.text-point-contents-title {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.text-point-contents-sub {
    margin: 14px auto;
    width: 78%;
    font-size: 14px;
    line-height: 20px;
}

.flex-box-point-papaya {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.box-point-papaya {
    width: 250px;
    height: 250px;
    background-color: #eab7b3;
    color: #333333;
    border-radius: 50%;
    margin: 0 auto;
    text-align: center;
    line-height: 24px;
}

.text-point-contents-other-sm {
    margin-top: 70px;
    font-size: 30px;
    text-align: center;
}

.text-point-contents-other-bg {
    font-size: 30px;
    font-weight: bold;
}

.text-point-contents-other-bg {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.emphasis{
    display: inline-block;
    position: relative;
    color: #1f9e2a;
 }
 
 .emphasis::before{
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #1f9e2a;
    font-size: 30px;
    content: "・";
 }

.flex-box-sub-point-papaya {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.box-sub-point-papaya-image img {
    width: 16vw;
    height: auto;
    object-fit: cover;
}

.box-sub-point-papaya span {
    font-weight: bold;
}

.subtitle-point {
    margin-top: 70px;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
}

.subtitle-point span {
    font-size: 36px;
    color: #1f9e2a;
}

.flex-button-point {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.button-point-wrap {
    position: relative;
}

.button-point-wrap-1 {
    background-image: url(../images/image-5.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 30vw;
    height: 20vw;
    object-fit: cover;
}

.button-point-wrap-2 {
    background-image: url(../images/image-6.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 30vw;
    height: 20vw;
    object-fit: cover;
}

.button-point-wrap-3 {
    background-image: url(../images/image-7.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 30vw;
    height: 20vw;
    object-fit: cover;
}

.button-point-wrap-4 {
    background-image: url(../images/image-8.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 30vw;
    height: 20vw;
    object-fit: cover;
}

.button-point-wrap-5 {
    background-image: url(../images/image-9.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 20vw;
    height: 14vw;
    object-fit: cover;
}

.button-point-wrap-6 {
    background-image: url(../images/image-10.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 20vw;
    height: 14vw;
    object-fit: cover;
}

.button-point-wrap-7 {
    background-image: url(../images/image-11.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 20vw;
    height: 14vw;
    object-fit: cover;
}

.button-point-wrap:hover {
    transform: scale(1.05, 1.05);
    transition: 0.5s;
}

.button-point-bg {
    width: 30vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    border: #333333 1px solid;
}

.text-button-point-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 30vw;
    height: auto;
    margin: auto;
    color: #333333;
    text-align: center;
    display: inline-block;
    padding: 20px;
    font-size: 20px;
}

.text-button-point-bg span {
    font-weight: bold;
}

.button-point-sm {
    width: 20vw;
    height: 14vw;
    background: rgba(255, 255, 255, 0.7);
    border: #333333 1px solid;
}

.text-button-point-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 20vw;
    height: auto;
    margin: auto;
    color: #333333;
    text-align: center;
    display: inline-block;
    padding: 20px;
    font-size: 20px;
}

.text-button-point-sm span {
    font-weight: bold;
}

.button-arrow {
    display: inline-block;
    padding-left: 22px;
}

.button-arrow:before {
    content: '';
    width: 26px;
    height: 26px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 80%;
    bottom: -60%;
    margin: auto;
}

.button-arrow:after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 81%;
    bottom: -60%;
    margin: auto;
}

.flex-button-point-line {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

/* farm */

.farm {
    margin-top: -80px;
    padding-top: 80px;
}

.bg-video {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 200vh;
    max-width: 1366px;
}

.bg-video::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(255, 255, 255, 0.8);
}

.bg-video video {
    width: 100%;
    height: 84%;
    object-fit: cover;
}

.video-content {
    margin: 0;
    position: absolute;
    top: 42%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: #333333;
    padding-left: 98px;
}

.contents-inner-farm {
    margin: 0 auto;
}

.box-farm {
    background-color: #fff;
    width: 40vw;
    padding: 20px;
    border-radius: 20px;
}

.title-farm {
    color: #1f9e2a;
    font-size: 30px;
    font-weight: bold;
}

.title-farm-bg {
    font-size: 72px;
    font-weight: bold;
    color: #1f9e2a;
    writing-mode: vertical-rl;
    position: absolute;
    top: 74px;
    right: 0;
    padding-right: 98px;
}

.text-farm {
    line-height: 24px;
    margin-top: 20px;
}

.btn-farm {
    margin: 50px 0;
}

.cta-youtube {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.cta-youtube::before,
.cta-youtube::after {
    content: "";
    background-color: #333333;
    height: 2px;
    width: 20px;
}

.cta-youtube::before {
    margin-right: 5px;
    transform: rotate(60deg);
}

.cta-youtube::after {
    margin-left: 5px;
    transform: rotate(-60deg);
}

.farm-youtube {
    width: 40vw;
    height: auto;
    aspect-ratio: 16/9;
    margin: 0 auto;
}

.youtube {
    height: 100%;
}

/* item */
.item {
    margin-top: -210px;
    padding-top: 80px;
}

.title-item {
    text-align: center;
    position: relative;
}

.title-item-sm {
    font-size: 24px;
}

.title-item-bg {
    font-size: 36px;
    font-weight: bold;
    color: #1f9e2a;
}

.text-bg {
    writing-mode: vertical-rl;
    position: absolute;
    top: 0%;
    right: 0%;
    font-family: "Homemade Apple", cursive;
    font-size: 120px;
    color: #1f9e2a;
    opacity: 0.1;
}

.photo-item-tea img {
    margin-top: 50px;
    width: 40vw;
    height: auto;
    object-fit: cover;
    display: inline-block;
}

[class^="contents-item"] {
    display: inline-block;
}

[class^="contents-item"]:hover {
    transform: scale(1.05, 1.05);
    transition: 0.5s;
}

.contents-item {
    position: relative;
    z-index: 30;
}

.item-bg-1 {
    position: absolute;
    top: 150%;
    left: 0;
    background-color: #1f9e2a;
    opacity: 0.1;
    width: 40vw;
    height: 50vh;
    z-index: 30;
}

.center {
    text-align: center;
}

.item-name-tea {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    width: 40vw;
}

.item-price-tea {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

.flex-item {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
}

.item-bg-2 {
    position: absolute;
    top: -3%;
    right: 0;
    background-color: #1f9e2a;
    opacity: 0.1;
    width: 80vw;
    height: 60vh;
    z-index: 30;
}

.contents-item-sm {
    width: 20vw;
}

.photo-item {
    width: 24vw;
    height: auto;
    object-fit: cover;
}

.item-name {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    width: 24vw;
}

.item-price {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}

.cta-shop {
    margin-top: 50px;
    font-size: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-shop::before,
.cta-shop::after {
    content: "";
    background-color: #333333;
    height: 2px;
    width: 20px;
}

.cta-shop::before {
    margin-right: 5px;
    transform: rotate(60deg);
}

.cta-shop::after {
    margin-left: 5px;
    transform: rotate(-60deg);
}

/* customer voice ここから*/
.cv {
    margin-top: -80px;
    padding-top: 80px;
    margin: 200px 0 100px 0;
}

.box-cv {
    background-color: #f1eee8;
    padding: 50px;
    text-align: center;
}

.title-cv {
    color: #1f9e2a;
    font-size: 36px;
    font-weight: bold;
}

.flex-cv {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.left-cv {
    width: 30vw;
}

[class^="photo-cv-image"] {
    width: 20vw;
    height: auto;
    object-fit: cover;
}

.photo-cv-image-1 {
    transform: rotate(-5deg);
    margin: 0 auto;
}

.photo-cv-image-2 {
    margin-top: 10px;
    transform: rotate(5deg);
    margin: 16px auto;
}

.right-cv {
    width: 40vw;
}

.photo-cv-contents {
    position: relative;
}

.masking-tape {
    position: absolute;
    top: -1em;
    left: 36%;
    width: 6vw;
    height: 3vh;
    background-image: linear-gradient(-45deg,
            rgba(31, 158, 42) 25%,
            transparent 25%,
            transparent 50%,
            rgba(31, 158, 42) 50%,
            rgba(31, 158, 42) 75%,
            transparent 75%,
            transparent 100%);
    background-repeat: repeat;
    background-size: 20px 20px;
    background-position: 0 0, 20px 20px;
    border-left: 2px dotted rgba(0, 0, 0, 0.1);
    border-right: 2px dotted rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 0.25em 2em;
    background-color: white;
    transform: rotate(-4deg);
}

.box-comment {
    background-color: #fff;
    padding: 50px 30px;
    text-align: center;
}

.title-comment {
    color: #1f9e2a;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    display: inline-block;
}

.age {
    color: #1f9e2a;
    text-align: right;
    margin-top: 20px;
}

.text-comment {
    line-height: 24px;
    margin-top: 20px;
}

.text-comment span {
    color: #1f9e2a;
    font-weight: bold;
}

.cv-youtube {
    width: 50%;
    aspect-ratio: 16/9;
    margin: 0 auto;
}

.button-cv {
    margin: 50px 0 70px 0;
}

.btn-margin {
    margin: 100px 0;
}

.text-shop {
    font-weight: bold;
    margin-bottom: 50px;
}

.balloons-ld {
    position: relative;
    width: 18vw;
    height: 130px;
    padding: 3% 10px;
    line-height: 24px;
    font-size: 16px;
    text-align: center;
    color: #333333;
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 30px;
}

.balloons-ld::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 20px;
    top: 100px;
    border-right: 22px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    transform: rotate(55deg);
}

.balloons-rd {
    position: relative;
    width: 18vw;
    height: 130px;
    padding: 3% 10px;
    line-height: 24px;
    font-size: 16px;
    text-align: center;
    color: #333333;
    background-color: #fff;
    border-radius: 20px;
    margin: 30px 0;
}

.balloons-rd::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 95px;
    top: 100px;
    border-right: 22px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    transform: rotate(120deg);
}

.flex-comment {
    display: flex;
    justify-content: center;
    gap: 50px;
}

/* shop */
.shop {
    padding: 100px 0;
    background-image: url(../images/image-13.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
    background-position: center;
    text-align: center;
}

/* footer */
footer {
    margin: 100px 0;
    text-align: center;
}

.logo-footer {
    width: 80px;
    height: auto;
    object-fit: cover;
    display: inline-block;
}

.logo-footer:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.flex-logo-social {
    margin: 50px 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.logo-social img {
    width: 30px;
    height: auto;
    object-fit: cover;
}

.logo-social img:hover {
    opacity: 0.5;
    transition: 0.3s;
}

/********** history **********/

.title-history {
    margin: 150px 0 0 0;
    padding: 20px 0;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #1f9e2a;
}

.title-history span {
    font-size: 24px;
}

.timeline {
    margin-top: 50px;
    list-style: none;
}

.timeline>li {
    margin-bottom: 60px;
}

.timeline>li {
    overflow: hidden;
    margin: 0;
    position: relative;
}

.timeline-date {
    width: 110px;
    float: left;
    margin-top: 70px;
    font-weight: bold;
}

.timeline-content {
    width: 75%;
    float: left;
    border-left: 3px rgba(31, 158, 42, 0.1) solid;
    padding-left: 30px;
}

.timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #1f9e2a;
    position: absolute;
    left: 106px;
    top: 76px;
    border-radius: 100%;
}

.timeline-content p {
    margin-top: 70px;
}

.flex-timeline-photo {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.timeline-photo img {
    width: 24vw;
    height: auto;
    object-fit: cover;
    margin-top: 20px;
}

/********** point **********/
.title-point,
.title-papaya {
    margin: 150px 0 120px;
    background-image: url(../images/image-26.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
    background-position: center;
    text-align: center;
    padding: 80px 0;
    font-size: 36px;
}

.title-point span,
.title-papaya span {
    font-weight: bold;
}

.box-point {
    background-color: rgba(31, 158, 42, 0.1);
    padding: 50px;
    margin-bottom: 120px;
}

.flex-box-point {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.image-point img {
    width: 30vw;
    height: auto;
    object-fit: cover;
}

.page-contents-point {
    width: 40vw;
}

.sub-title-center {
    text-align: center;
}

.sub-title-point {
    font-size: 20px;
    color: #1f9e2a;
    font-weight: bold;
    text-align: left;
    display: inline-block;
}

.subtitle-point {
    font-size: 36px;
    color: #1f9e2a;
    font-weight: bold;
    text-align: center;
    margin-top: 120px;
}

.text-page-point {
    margin-top: 20px;
    line-height: 24px;
}

.text-page-point span {
    font-weight: bold;
}

.text-comment {
    line-height: 24px;
    text-align: left;
}

.btn-page-point {
    margin-top: 50px;
}

.text-dog-title {
    position: relative;
    width: 600px;
    padding: 20px 60px;
    line-height: 40px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #1f9e2a;
    border-radius: 20px;
    margin: 0 auto 120px;
}

.text-dog-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 20px;
    top: 76px;
    border-right: 22px solid #1f9e2a;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    transform: rotate(55deg);
}

.text-dog-title-balloon::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 20px;
    top: 100px;
    border-right: 22px solid #1f9e2a;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    transform: rotate(55deg);
}

.text-dog-title span {
    font-size: 36px;
}

video {
    width: 50%;
    aspect-ratio: 16/9;
    margin: 0 auto 120px;
}

.flex-dog {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 120px;
}


/********** papaya **********/
.box-papaya {
    background-color: rgba(31, 158, 42, 0.1);
    padding: 70px;
    margin-bottom: 100px;
    position: relative;
    width: 70vw;
}

.box-papaya-left {
    margin-right: auto;
}

.box-papaya-right {
    margin-left: auto;
    padding: 70px 70px 70px 20%;
}

.number-papaya {
    font-size: 60px;
    color: #1f9e2a;
    font-weight: bold;
    position: absolute;
    top: -14%;
    left: 70px;
}

.number-papaya-right {
    left: 22%;
}

.subtitle-papaya {
    font-size: 20px;
    color: #1f9e2a;
    font-weight: bold;
}

.text-papaya {
    margin-top: 20px;
    line-height: 24px;
    width: 44vw;
}

.image-papaya img {
    width: 18vw;
    height: 18vw;
    object-fit: cover;
    position: absolute;
    top: -14%;
    left: 80%;
}

.image-papaya-right img {
    left: -8%;
}

/* ------------------------- レスポンシブ タブレット ------------------------- */

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

    .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .gNav {
        display: none;
    }

    .image-mv img {
        width: 80vw;
    }

    .about {
        flex-direction: column;
        margin-bottom: 348px;
    }

    .contents-about {
        width: 100%;
    }

    .title-about {
        padding: 0 30px;
    }

    .text-about {
        padding: 0 30px;
    }

    .photo-about {
        width: 100%;
    }

    .photo-about-image-1 img {
        width: 34vw;
        height: auto;
        position: absolute;
        left: 10%;
    }

    .photo-about-image-2 {
        left: 46%;
        top: 0;
    }


    .photo-about-image-2 img {
        width: 44vw;
        height: auto;
    }

    .photo-about-text {
        bottom: -34vh;
        left: 50%;
    }

    .btn a {
        width: 80vw;
        padding: 20px 80px;
    }

    .btn a:hover {
        width: 80vw;
        padding: 20px 80px;
    }

    .button-arrow:after {
        left: 82%;
    }

    .contents-point {
        padding: 0 30px;
    }

    .text-point-title-flex {
        flex-direction: column;
        gap: 10px;
    }

    .text-point-title-flex:last-of-type {
        margin-top: 70px;
    }

    .text-point-title:last-of-type {
        margin-top: 0;
    }

    .text-point-title {
        width: 380px;
        padding: 20px 36px;
    }

    .text-point-title::after {
        top: 106px;
    }

    .flex-box-point-papaya {
        flex-direction: column;
    }

    .box-sub-point-papaya-image img {
        width: 20vw;
    }

    .text-point-contents-other-sm {
        padding-bottom: 30px;
    }


    .box-point-papaya {
        margin: 30px auto;
        width: 280px;
        height: 280px;
    }

    .title-farm-bg {
        font-size: 40px;
    }

    .box-farm {
        width: 60vw;
    }

    .title-farm-bg {
        right: -60px;
    }

    .farm-youtube {
        width: 80vw;
    }

    .cta-youtube {
        text-align: center;
    }

    .video-content {
        padding: 0 20px;
        left: 50%;
        top: 46%;
    }

    .bg-video video {
        height: 94%;
    }

    .youtube {
        margin-top: 10px;
        text-align: center;
        width: 100%;
        position: relative;
        padding-top: 56.25%;
        margin: 0 auto;
        left: 0;
    }

    .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .item {
        margin-top: -36px;
    }

    .flex-cv {
        flex-direction: column;
    }


    [class^="photo-cv-image"] {
        width: 46vw;
    }

    .cv-youtube {
        width: 70vw;
    }

    .left-cv {
        width: 60vw;
    }

    .right-cv {
        width: 70vw;
    }

    .box-comment:first-of-type {
        margin-bottom: 70px;
    }

    .cta-youtube {
        padding: 0 16px;
        margin-top: 0;
    }

    .cta-youtube-margin {
        margin-top: 30px;
    }

    .flex-comment {
        flex-direction: column;
        gap: 0;
    }

    .balloons-ld {
        width: 40vw;
        height: 100px;
        margin-bottom: 0;
        margin-right: auto;
    }

    .balloons-ld::after {
        top: 74px;
    }

    .balloons-rd {
        width: 40vw;
        height: 100px;
        margin-left: auto;
    }

    .balloons-rd::after {
        top: 74px;
    }

    .flex-box-point {
        flex-direction: column;
    }

    .image-point {
        margin: 0 auto;
    }

    .image-point img {
        width: 50vw;
    }

    .box-cv {
        padding: 50px 20px;
    }

    .page-contents-point {
        width: 100%;
    }

    .number-papaya-tb {
        top: -8%;
    }

    .image-papaya-tb img {
        top: -8%;
    }

    .text-dog-title {
        width: 450px;
    }

    .text-dog-title-balloon::after {
        top: 140px;
    }

    video {
        width: 90%;
    }
}

/* ------------------------- レスポンシブ SP ------------------------- */

@media screen and (max-width:519px) {
    .photo-about-image-1 img {
        left: 4%;
    }

    .about {
        margin-bottom: 200px;
    }

    .photo-about-image-2 {
        left: 40%;
    }

    .photo-about-image-2 img {
        width: 50vw;
    }

    .point {
        margin-top: -8px;
    }

    .text-point-title {
        width: 320px;
        line-height: 30px;
    }

    .text-point {
        width: 100%;
    }

    .flex-box-point-papaya {
        flex-direction: column;
        gap: 0;
    }

    .text-point-contents-sub {
        margin-top: 30px;
    }

    .flex-box-sub-point-papaya {
        flex-direction: column;
        gap: 50px;
    }

    .flex-button-point {
        flex-direction: column;
        padding: 0 30px;
    }

    .box-sub-point-papaya {
        margin: 30px 0 0 0;
    }

    .box-sub-point-papaya-image {
        margin: 0 auto;
    }

    .button-point-wrap-1 {
        width: 100%;
        height: 50vw;
    }

    .button-point-wrap-2 {
        width: 100%;
        height: 50vw;
    }

    .button-point-wrap-3 {
        width: 100%;
        height: 50vw;
    }

    .button-point-wrap-4 {
        width: 100%;
        height: 50vw;
    }

    .button-point-wrap-5 {
        width: 100%;
        height: 50vw;
    }

    .button-point-wrap-6 {
        width: 100%;
        height: 50vw;
    }

    .button-point-wrap-7 {
        width: 100%;
        height: 50vw;
    }

    .button-point-bg {
        width: 100%;
    }

    .text-button-point-bg {
        width: 60vw;
    }

    .flex-button-point-line {
        flex-direction: column;
        gap: 50px;
    }

    .flex-button-point-line {
        padding: 0 30px;
    }

    .button-point-sm {
        width: 100%;
        height: 100%;
    }

    .text-button-point-sm {
        width: 60vw;
        font-size: 16px;
        padding: 6px;
    }

    .box-sub-point-papaya-image img {
        width: 40vw;
    }

    .cta-youtube::before,
    .cta-youtube::after {
        width: 40px;
    }

    .title-farm-bg {
        writing-mode: horizontal-tb;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: horizontal-tb;
        left: 10%;
    }

    .sp-item {
        padding: 0 50px;
    }

    .photo-item-tea img {
        width: 100%;
    }

    .item-name-tea {
        width: 100%;
    }

    .button-item {
        padding: 10px 40px 10px 70px;
    }

    .photo-item {
        width: 100%;
    }

    .item-name {
        width: 100%;
    }


    .cta-shop {
        font-size: 16px;
    }

    .cv {
        margin: 120px 0 100px 0;
    }

    .sp {
        display: inline-block;
    }

    [class^="photo-cv-image"] {
        width: 100%;
    }

    .right-cv {
        width: 80vw;
    }

    .button-cv {
        width: 90%;
    }

    .box-cv {
        padding: 0;
    }

    .text-shop {
        padding: 0 50px;
    }

    .flex-comment {
        margin: 0 20px;
    }

    .flex-comment:last-of-type {
        padding-bottom: 50px;
    }

    .balloons-ld {
        width: 60vw;
        height: 84px;
    }

    .balloons-rd {
        width: 60vw;
        height: 84px;
    }

    .balloons-ld::after {
        top: 64px;
    }

    .balloons-rd::after {
        top: 64px;
    }

    .timeline {
        padding: 0 50px;
    }

    .timeline-content:before {
        display: none;
    }

    .timeline-content {
        border-left: none;
        padding-left: 0;
        width: 100%;
    }

    .timeline-content p {
        margin-top: 10px;
    }

    .timeline-date {
        float: none;
        margin-top: 50px;
    }

    .timeline-photo img {
        width: 100%;
    }

    .title-point,
    .title-papaya {
        padding: 40px 20px;
    }

    .box-papaya {
        width: 100%;
        padding: 30px 30px 60px 30px;
        margin-bottom: 220px;
    }

    .text-papaya {
        width: 100%;
    }

    .number-papaya {
        left: 10%;
        top: -14%;
    }

    .image-papaya img {
        width: 40vw;
        height: 40vw;
        object-fit: cover;
        top: 90%;
        left: 50%;
    }

    .number-papaya-tb {
        top: -10%;
    }

    .box-point {
        padding: 30px;
    }

    .image-point img {
        width: 100%;
    }

    .title-point,
    .title-papaya {
        margin: 150px 0 100px;
    }

    .box-point {
        margin-bottom: 70px;
    }

    .text-button-point-sm {
        font-size: 20px;
        padding: 20px;
    }

    .box-cv {
        padding: 50px 0;
    }

    .contents-item {
        padding: 0 30px;
    }

    .btn a {
        padding: 10px 56px;
    }

    .btn a:hover {
        padding: 10px 56px;
    }

    .btn-arrow-right-bg a::after {
        right: 26px;
    }

    .text-dog-title {
        width: 320px;
        padding: 20px 10px;
    }

    .flex-dog {
        flex-direction: column;
    }

    .text-dog-title {
        font-size: 24px;
        margin: 0 auto 80px;
    }

    .text-dog-title span {
        font-size: 28px;
    }

    .bg-video {
        height: 230vh;
    }

    .box-farm {
        width: 80vw;
    }

    .video-content {
        top: 52%;
    }

    .sp-br {
        display: block;
    }

    .text-point-title-bg::after {
        top: 170px;
    }

}