@charset "utf-8";

.imgauto {
  height: auto;
  width: 100%;
  box-sizing: unset;
  line-height: 1rem;
  display: block;
}

.overseas-shipping {
  font-family: "Noto Sans", sans-serif;
  letter-spacing: normal;
  overflow: hidden;
}

.overseas-shipping .purple {
  color: #7E0D4A;
}

/* hero */
.hero__top {
  position: relative;
}

.hero__bg img {
  min-height: 400px;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__logo {
  width: 85px;
  margin: 0 auto;
}

.hero__title {
  font-size: max(2.2vw, 32px);
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin: 30px 0;
  line-height: 1.4;
}

.hero__desc {
  font-size: max(1.1vw, 15px);
  text-align: center;
}

.hero__catch {
  position: relative;
  margin-top: -10px;
}

.hero__catch .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 22px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.hero__catch img {
  height: 155px;
}

@media screen and (max-width: 767px) {
  .hero__logo {
    width: 50px;
  }

  .hero__title {
    font-size: 22px;
    margin: 10px 0;
  }

  .hero__desc {
    font-size: 14px;
  }

  .hero__catch .text {
    font-size: 17px;
  }
}

/* intro */
.intro-section {
  margin-top: -10px;
  background-color: #FFF2F2;
}

.intro__wrapper {
  max-width: 950px;
  width: 90%;
  margin-inline: auto;
  display: flex;
  padding: 80px 0;
  align-items: center;
}

.intro__title {
  font-size: 26px;
  color: #BA002B;
  font-weight: bold;
}

.intro__desc {
  font-size: 16px;
  margin-top: 20px;
}

@media screen and (min-width: 901px) {
  .intro__content {
    width: 50%;
  }

  .intro__img {
    width: 50%;
    padding-left: 40px;
  }
}

@media screen and (max-width: 900px) {
  .intro__wrapper {
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    padding: 50px 0;
  }

  .intro__title {
    font-size: 22px;
  }

  .intro__desc {
    font-size: 14px;
  }
}

/* comit */
.comit-section {
  background: url(../images/overseas/comit-bg.jpg) no-repeat center center / cover;
  padding: 80px 0;
}

.comit__title {
  font-size: 26px;
  color: #BA002B;
  font-weight: bold;
  text-align: center;
}

.comit__desc {
  text-align: center;
  font-size: 22px;
  margin-top: 20px;
}

.comit__list {
  display: grid;
  gap: 25px;
  max-width: 950px;
  width: 90%;
  margin-inline: auto;
  margin-top: 60px;
}

.comit__list li {
  background-color: #fff;
  display: flex;
  padding: 30px;
  box-shadow: 10px 10px 10px -6px rgba(0, 0, 0, 0.2);
}

.comit__list-img {
  width: 82px;
}

.comit__list-content {
  flex: 1;
  margin-left: 20px;
}

.comit__list-title {
  font-size: 18px;
}

.comit__list-desc {
  font-size: 14px;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .comit__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .comit-section {
    padding: 50px 0;
  }

  .comit__title {
    font-size: 22px;
  }

  .comit__desc {
    font-size: 16px;
  }

  .comit__list {
    margin-top: 40px;
  }

  .comit__list li {
    padding: 20px;
    align-items: center;
  }

  .comit__list-img {
    width: 50px;
  }

  .comit__list-title {
    font-size: 15px;
  }

  .comit__list-desc {
    font-size: 13px;
  }
}

/* product-list */
.product-list__section {
  display: grid;
}

.product-list__item {
  background: linear-gradient(to bottom, #FAE5E8, #F5CED4);
  padding-bottom: 60px;
}

.product-list__item.shiso {
  background: linear-gradient(to bottom, #F2E6EF, #E8CCE1);
}

.product-list__bg {
  width: 100%;
}

.product-list__content {
  position: relative;
  background-color: #fff;
  max-width: 565px;
  margin-inline: auto;
  margin-top: -40px;
  padding: 40px 5%;
  width: 85%;
}

.product-list__catch {
  font-weight: bold;
  font-size: 18px;
}

.product-list__title {
  font-size: 26px;
  font-weight: bold;
  color: #CE0121;
  margin-top: 5px;
}

.product-list__subtitle {
  color: #CE0121;
  margin-top: 5px;
  font-size: 16px;
}

.product-list__desc {
  margin-top: 10px;
  font-size: 16px;
}

.product-list__link {
  margin-top: 20px;
}

.product-list__link a {
  display: block;
  max-width: 250px;
  padding: 10px 18px;
  background: #9CC726;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  width: 90%;
  margin-inline: auto;
}

@media screen and (min-width: 1150px) {
  .product-list__image {
    width: 210px;
    position: absolute;
    right: 4%;
    top: -20%;
  }
}

@media screen and (max-width: 1149px) {
  .product-list__image {
    width: 210px;
    margin-top: -25%;
    margin-inline: auto;
  }
}

@media screen and (min-width: 900px) {
  .product-list__section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .product-list__catch {
    font-size: 17px;
  }

  .product-list__title {
    font-size: 25px;
  }

  .product-list__subtitle,
  .product-list__desc {
    font-size: 14px;
  }

  .product-list__image {
    margin-top: -100px;
  }
}


/* product-details */
.product-details {
  background: #FDF6F7;
  padding-top: 80px;
}

.product-details__intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  column-gap: 40px;
}

.product-details__text {
  width: 90%;
  margin-left: auto;
  margin-right: 0;
}

.product-details__catch {
  font-weight: bold;
  font-size: 18px;
}

.product-details__title {
  font-size: 26px;
  font-weight: bold;
  color: #CE0121;
  margin-top: 5px;
}

.product-details__subtitle {
  color: #CE0121;
  margin-top: 5px;
  font-size: 18px;
}

.product-details__desc {
  margin-top: 10px;
  font-size: 16px;
}

@media screen and (min-width: 900px) {
  .product-details__text {
    max-width: 475px;
  }

}

@media screen and (max-width: 899px) {
  .product-details__text {
    margin-inline: auto;
    margin-bottom: 20px;
  }

  .product-details__intro {
    grid-template-columns: 1fr;
  }

  .product-details__image {
    width: 90%;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .product-details {
    padding-top: 50px;
  }

  .product-details__catch {
    font-size: 17px;
  }

  .product-details__title {
    font-size: 25px;
  }

  .product-details__subtitle,
  .product-details__desc {
    font-size: 14px;
  }
}

/* quality */
.product-quality {
  max-width: 950px;
  width: 90%;
  margin-inline: auto;
  margin-top: 40px;
  border: 2px solid #CE0121;
  background-color: #fff;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.product-quality__title {
  font-size: 18px;
  font-weight: bold;
  color: #CE0121;
  text-align: center;
}

.product-quality__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 80%;
  margin-inline: auto;
  margin-top: 20px;
}

.product-quality__list li {
  position: relative;
  padding-left: 1.5em;
}

.product-quality__subtitle {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 2px solid #CE0121;
  position: relative;
}

.product-quality__list li::before {
  content: '';
  width: 1em;
  margin-right: 0.5em;
  aspect-ratio: 1/1;
  background: url(../images/overseas/check.svg) no-repeat center center / contain;
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
}

.product-quality__text {
  font-size: 14px;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .product-quality__list {
    grid-template-columns: 1fr;
  }
}

/* product-culinary（料理例） */

.product-culinary {
  padding: 100px 0;
  position: relative;
  background: url(../images/overseas/ume-bg.jpg) no-repeat center center / cover;
  margin-top: -40px;
}

.product-culinary__title {
  font-size: 24px;
  font-weight: bold;
  color: #CE0121;
  text-align: center;
}

.product-culinary__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  width: 90%;
  margin-inline: auto;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.product-culinary__item {
  background-color: #fff;
  box-shadow: 10px 10px 10px -6px rgba(0, 0, 0, 0.2);
}

.product-culinary__text {
  font-size: 15px;
  padding: 25px;
  min-height: 125px;
}

.product-culinary__bg01 {
  position: absolute;
  top: 20px;
  left: 0;
  width: 20%;
  max-width: 320px;
  min-width: 200px;
}

.product-culinary__bg02 {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 20%;
  max-width: 320px;
  min-width: 180px;
}

@media screen and (max-width: 767px) {
  .product-culinary__list {
    grid-template-columns: 1fr;
    width: 80%;
  }

  .product-culinary__bg01 {
    top: 30%;
    left: -10%;
  }

  .product-culinary__bg02 {
    bottom: 25%;
    right: -10%;
  }
}

/* story */
.story__section {
  background: url(../images/overseas/story_back.jpg) no-repeat center center / 1100px;
  padding: 100px 0;
}

.story__inner {
  max-width: 950px;
  width: 90%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
}

.story__title {
  font-size: 26px;
  font-weight: bold;
  color: #CE0121;
  text-align: center;
}

.story__desc {
  font-size: 16px;
  width: fit-content;
  margin: 20px auto 0;
}

.story__link a {
  display: block;
  border: 1px solid #CE0121;
  color: #CE0121;
  text-align: center;
  font-size: 18px;
  padding: 7px;
  max-width: 360px;
  margin: 40px auto 0;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .story__section {
    padding: 50px 0;
  }

  .story__inner {
    grid-template-columns: 1fr;
    gap: 20px;

  }

  .story__title {
    font-size: 22px;
  }

  .story__desc {
    font-size: 14px;
  }

  .story__link a {
    font-size: 15px;
  }

  .story__section {
    background: url(../images/overseas/story_back_sp.jpg) no-repeat center bottom 20% / 90%;
  }
}

.product-details.shiso {
  background-color: #FDF6FB;
}

.product-quality.shiso {
  border: 2px solid #7E0D4A;
}

.product-quality__subtitle.shiso {
  border-bottom: 2px solid #7E0D4A;
}

.product-quality__list.shiso li::before {
  background: url(../images/overseas/check-p.svg) no-repeat center center / contain;
}

.product-culinary.shiso {
  background: url(../images/overseas/shiso-bg.jpg) no-repeat center center / cover;
}

/* voice */
.voice__section {
  padding: 80px 0;
  background-color: #F9F9F7;
}

.voice__title {
  font-size: 26px;
  font-weight: bold;
  color: #CE0121;
  text-align: center;
}

.voice__list {
  margin-top: 60px;
  max-width: 950px;
  width: 90%;
  margin-inline: auto;
}

.voice__item {
  background-color: #FCF5F6;
  border: 1px solid #DC7E94;
  border-radius: 20px;
  padding: 20px 25px;
}

.voice__profile {
  display: flex;
  align-items: center;
}

.voice__left {
  flex: 1;
}

.voice__product {
  font-size: 16px;
  font-weight: bold;
  color: #CE0121;
}

.voice__image {
  width: 80px;
}

.voice__person {
  font-size: 14px;
}

.voice__headline {
  font-weight: bold;
  font-size: 17px;
  background: url(../images/overseas/voice-border.png) no-repeat center center / 100% 100%;
  padding: 25px 0 8px;
}

.voice__text {
  font-size: 15px;
  margin-top: 10px;
}

.voice__list .slick-dots li {
  margin: 0;
}

.voice__list .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #DC7E94;
}

.slick-dots li button:before {
  color: #DC7E94;
}

@media screen and (min-width: 768px) {
  .voice__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .voice__list {
    max-width: 500px;
    margin-inline: auto;
    margin-top: 40px;
    width: 85%;
  }

  .voice__section {
    padding: 40px 0;
  }

  .voice__headline {
    font-size: 15px;
  }

  .voice__text {
    font-size: 13px;
  }

  .voice__title {
    font-size: 22px;
  }
.voice__item {
  margin: 0 10px;
}
}

/* faq */
.faq__section {
  padding: 80px 0;
  background-color: #F9F9F7;
}

.faq__title {
  font-size: 26px;
  font-weight: bold;
  color: #CE0121;
  text-align: center;
}

.faq__list {
  max-width: 900px;
  width: 90%;
  margin-inline: auto;
  margin-top: 60px;
  border-bottom: 1px solid #F2D8DC;
  font-size: 16px;
}

.faq__list dt:nth-child(n+2) {
  border-top: 1px solid #F2D8DC;
}

.faq__list dt {
  cursor: pointer;
  padding: 20px 0;
  position: relative;
  padding-left: 40px;
}

.faq__list dd {
  display: none;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.faq__list dt::before {
  content: 'Q';
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  top: 22px;
  left: 0;
  line-height: 1;
}

.faq__list dd::before {
  content: 'A';
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 1;
  color: #CE0121;
}

.faq__list dt::after {
  content: '＋';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 20px;
  color: #BA002B;
}

.faq__list dt.active::after {
  content: 'ー';
}

@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 22px;
  }

  .faq__list {
    font-size: 13px;
  }

  .faq__list dt,
  .faq__list dd {
    padding-left: 30px;
    padding-right: 30px;
  }

  .faq__list dt::before,
  .faq__list dd::before {
    font-size: 16px;
  }

  .faq__list dt::after {
    font-size: 16px;
  }

  .faq__list {
    margin-top: 20px;
  }

  .faq__section {
    padding: 40px 0;
  }
}

/* store */
.store__section {
  padding: 80px 0;
  background: url(../images/overseas/store_img.jpg) no-repeat top / 100%;
}

.store__inner {
  max-width: 950px;
  width: 90%;
  margin-inline: auto;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), #F8F5F5);
  padding: 60px 5%;
}

.store__title {
  font-size: 26px;
  font-weight: bold;
  color: #CE0121;
  text-align: center;
}

.store__area {
  display: flex;
  gap: 5%;
  margin-top: 40px;
}

.store__img {
  width: 300px;
}

.store__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.store__logo {
  width: 80px;
  margin-inline: auto;
}

.store__desc {
  font-size: 16px;
  margin-top: 10px;
}

.store__link a {
  display: block;
  border: 1px solid #CE0121;
  color: #CE0121;
  text-align: center;
  font-size: 18px;
  padding: 7px;
  max-width: 250px;
  margin: 20px auto 0;
  font-weight: bold;
}

.store__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.store__list li{
  flex: 1;
}
@media screen and (max-width: 767px) {
  .store__area {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .store__img {
    width: 90%;
    margin-inline: auto;
  }

  .store__logo {
    width: 70px;
  }

  .store__desc {
    font-size: 14px;
  }

  .store__link a {
    font-size: 15px;
  }

  .store__title {
    font-size: 22px;
  }

  .store__inner {
    padding: 40px 5%;
  }
  .store__list li:nth-child(-n+3){
    flex: 0 0 calc((100% - 20px) / 3);
}
  .store__list li:nth-child(n+4){
    flex: 0 0 calc(50% - 5px);
}

  .store__section {
    padding: 40px 0;
  }
  .store__section {
  background: url(../images/overseas/store_img_sp.jpg) no-repeat top / 100%;
}
}

.contact__area {
  background-color: #BA002B;
  padding: 40px 0;
}

.contact__text {
  font-size: 18px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.contact__link{
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.contact__link a {
  display: block;
  padding: 10px 0;
  width: 300px;
  border: 1px solid;
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 7px;
  margin: 0 auto;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 16px;
  }

  .contact__link a {
    font-size: 15px;
  }
  .contact__link{
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}
