@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

sub,
sup {
  font-size: 50%;
  font-weight: normal;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
picture,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

input[type="button"]:not([disabled]),
input[type="submit"]:not([disabled]),
input[type="reset"]:not([disabled]),
button:not([disabled]) {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  touch-action: manipulation;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.reset-link:link,
.button:link,
.reset-link:visited,
.button:visited {
  color: #53430f;
  text-decoration: none;
}

.reset-list {
  list-style: none;
  padding-left: 0;
}
.reset-list li {
  margin-top: 0;
}
.reset-list li:not(:first-of-type) {
  margin-top: 0;
}

/* ------------------------------------
//  base
// ----------------------------------*/
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  width: 100%;
  height: 100%;
  font-size: 100%;
}

body {
  position: relative;
  height: 100%;
  min-height: 100vh;
  background-color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  color: #53430f;
  overflow-wrap: break-word;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.25rem;
    line-height: 2;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.7;
}

a {
  transition: all 0.1s ease 0s;
}
a:link,
a:visited {
  color: #2f2f2f;
}
a:hover,
a:active {
  opacity: 0.8;
}

strong {
  font-weight: 500;
}

em {
  font-style: normal;
  font-weight: 500;
}

p {
  margin-top: 2em;
}

/* ------------------------------------
//  button
// ----------------------------------*/
button {
  all: unset;
  display: inline-block;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

/* ------------------------------------
//  summary
// ----------------------------------*/
summary {
  outline: none;
  border: none;
  cursor: pointer;
}

/* ------------------------------------
//  画像
// ----------------------------------*/
figure {
  line-height: 1;
}

img,
svg {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------
  parts
---------------------------------------------------------------- */
.notes {
  font-size: 1rem;
}

.marker {
  background: linear-gradient(transparent 65%, #ffe375 65%);
}

.video-contents {
  overflow: hidden;
  z-index: 9;
}
.video-contents .video-title {
  margin-bottom: 65px;
  font-size: 5.0625rem;
  text-align: center;
  line-height: 1;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .video-contents .video-title {
    margin-bottom: 30px;
    font-size: 2.625rem;
  }
}

.video-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  aspect-ratio: 960/537;
  width: 100%;
  z-index: 9;
}
.video-container video {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
}
.video-container video::-webkit-media-controls-panel {
  display: none !important;
  background-color: rgba(0, 0, 0, 0.2);
}
.video-container video:hover::-webkit-media-controls-panel {
  display: flex !important;
}

.video-container-no_movie {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  aspect-ratio: 960/537;
  width: 100%;
  height: 100%;
  max-width: 960px;
  z-index: 9;
}

.custom-play-button {
  width: 129px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  cursor: pointer;
  transition: all 0.1s ease 0s;
}
@media only screen and (max-width: 768px) {
  .custom-play-button {
    width: 60px;
  }
}
.custom-play-button.is-playing {
  display: none;
}

.custom-play-button:hover {
  opacity: 0.8;
}

.custom-video {
  cursor: default;
}

/* ----------------------------------------------------------------
  title
---------------------------------------------------------------- */
.contents-title {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 5.0625rem;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .contents-title {
    gap: 5px;
    font-size: clamp(2.5rem, 10vw, 3rem);
    line-height: 1.5;
  }
}
.contents-title::before {
  content: attr(data-en);
  font-size: 37%;
  color: #ff3e3e;
}
@media only screen and (max-width: 768px) {
  .contents-title::before {
    font-size: 45%;
  }
}
.contents-title br {
  display: none;
}
@media only screen and (max-width: 768px) {
  .contents-title br {
    display: block;
  }
}

/* ----------------------------------------------------------------
  buttons
---------------------------------------------------------------- */
.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .button-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background-color: #fff;
  position: relative;
}
.button.button--1 {
  background-color: #c50119;
  padding-left: 61px;
  padding-right: 25px;
  height: 55px;
  font-size: 1.375rem;
  color: #fff;
}
.button.button--1::before {
  content: "";
  width: 42px;
  height: 42px;
  background-image: url(../img/icon-mail-s.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  left: 7px;
  top: calc(50% - 21px);
}
.button.button--2 {
  background-color: #d02c2e;
  padding-left: 125px;
  padding-right: 50px;
  height: 111px;
  font-size: clamp(1.5rem, 1.67vw, 2rem);
  line-height: 1.4;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .button.button--2 {
    padding-left: 100px;
    height: 89px;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.button.button--2::before {
  content: "";
  width: 89px;
  height: 89px;
  background-image: url(../img/icon-mail-l.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .button.button--2::before {
    width: 75px;
    height: 75px;
  }
}
.button.button--3 {
  gap: 11px;
  background-color: #fd5202;
  border: 2px solid #fffbee;
  padding-left: 33px;
  padding-right: 33px;
  height: 111px;
  font-size: clamp(1.5rem, 1.67vw, 2rem);
  line-height: 1.4;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .button.button--3 {
    padding-left: 20px;
    height: 89px;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.button.button--3::before {
  content: "";
  width: 162px;
  height: 66px;
  background-image: url(../img/icon-to-brand-site.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@media only screen and (max-width: 768px) {
  .button.button--3::before {
    width: 120px;
  }
}

.page-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 80px;
  padding-right: 30px;
  background-color: #fff;
  width: 100%;
  height: 94px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
@media only screen and (max-width: 1300px) {
  .page-header {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1180px) {
  .page-header {
    padding-left: 15px;
    padding-right: 0;
    height: 50px;
  }
}
.page-header a {
  font-size: 1.25rem;
  font-weight: 700;
  color: #202020;
}
.page-header a:link,
.page-header a:visited {
  text-decoration: none;
}
.page-header .page-header__logo {
  flex-grow: 0;
  flex-shrink: 0;
}
.page-header .page-header__logo .logo {
  width: 162px;
}
@media only screen and (max-width: 1300px) {
  .page-header .page-header__logo .logo {
    width: 166px;
  }
}
@media only screen and (max-width: 400px) {
  .page-header.is-open .page-header__logo .logo {
    width: 145px;
  }
}

.nav-sns {
  margin-left: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 1180px) {
  .nav-sns {
    margin-left: 0;
    position: fixed;
    right: 70px;
    top: 14px;
    gap: 15px;
  }
}
.nav-sns .nav-item img {
  width: auto;
  height: 30px;
}
@media only screen and (max-width: 1300px) {
  .nav-sns .nav-item img {
    height: 20px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1180px) {
  .nav-sns .nav-item img {
    height: 25px;
  }
}

.global-nav {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
@media only screen and (max-width: 1180px) {
  .global-nav {
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    background-color: #fff;
    width: 100vw;
    height: 100svh;
    position: fixed;
    left: 0;
    top: 50px;
    z-index: 10;
    transition: all 0.1s ease 0s;
  }
  .global-nav.is-open {
    opacity: 1;
    pointer-events: visible;
    pointer-events: visible;
    overscroll-behavior-y: contain;
    overflow-y: auto;
    transition: all 0.1s ease 0s;
  }
  .global-nav.is-open .nav-sns {
    position: fixed;
    right: 70px;
    top: 13px;
    gap: 15px;
  }
}
.global-nav .nav-main {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 1300px) {
  .global-nav .nav-main {
    gap: 30px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1180px) {
  .global-nav .nav-main {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    max-width: 400px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
.global-nav .nav-main .nav-item .button.button--1 {
  margin-left: 12px;
}
@media only screen and (max-width: 1180px) {
  .global-nav .nav-main .nav-item {
    text-align: center;
  }
  .global-nav .nav-main .nav-item a:not(.button.button--1) {
    padding: 1.5em 0;
    display: block;
    font-size: 1.125rem;
    border-bottom: 1px dotted #ff3e3e;
  }
  .global-nav .nav-main .nav-item .button.button--1 {
    margin-top: 50px;
    margin-left: 0;
  }
}

.menu-bar {
  display: none;
}
@media only screen and (max-width: 1180px) {
  .menu-bar {
    display: block;
    margin-left: auto;
    background-color: transparent;
    width: 60px;
    height: 50px !important;
    position: relative;
    z-index: 10;
  }
  .menu-bar .menu-bar-line {
    width: 30px;
    height: 2px;
    background-color: #ff3e3e;
    position: absolute;
    left: calc(50% - 15px);
    top: calc(50% - 0.5px);
  }
  .menu-bar .menu-bar-line::before,
  .menu-bar .menu-bar-line::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #ff3e3e;
    position: absolute;
    left: calc(50% - 15px);
    transition: all 0.1s ease 0s;
  }
  .menu-bar .menu-bar-line::before {
    top: -7px;
  }
  .menu-bar .menu-bar-line::after {
    top: 7px;
  }
  .menu-bar.is-open {
    background-color: transparent;
  }
  .menu-bar.is-open .menu-bar-line {
    background-color: transparent;
  }
  .menu-bar.is-open .menu-bar-line::before,
  .menu-bar.is-open .menu-bar-line::after {
    top: 0;
    transition: all 0.1s ease 0s;
  }
  .menu-bar.is-open .menu-bar-line::before {
    transform: scale(0.85) rotate(45deg);
  }
  .menu-bar.is-open .menu-bar-line::after {
    width: 100%;
    transform: scale(0.85) rotate(-45deg);
  }
}

/* ----------------------------------------------------------------
  フッターのレイアウト
---------------------------------------------------------------- */
.site-footer {
  padding-top: 116px;
  padding-bottom: 70px;
  text-align: center;
  background-color: #ffeb9b;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .site-footer {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
.site-footer .footer-nav {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-nav a {
  font-size: 1.125rem;
  font-weight: 700;
}
.site-footer .footer-nav a:link,
.site-footer .footer-nav a:visited {
  text-decoration: none;
}
.site-footer .copyright {
  margin-top: 55px;
}
@media only screen and (max-width: 768px) {
  .site-footer .copyright {
    margin-top: 40px;
  }
}
.site-footer .copyright p {
  margin-top: 0;
  font-size: 1.125rem;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .site-footer .copyright p {
    font-size: 0.625rem;
    white-space: nowrap;
  }
}

.main-contents {
  margin-top: 94px;
}
@media only screen and (max-width: 1180px) {
  .main-contents {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1180px) and (max-width: 768px) {
  .main-contents {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* ----------------------------------------------------------------
  kv
---------------------------------------------------------------- */
.kv {
  aspect-ratio: 1920/1243;
  display: grid;
  place-content: center;
  background-image: url(../img/bg-kv_pc.jpg);
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 1000px) {
  .kv {
    aspect-ratio: 1000/1026;
    background-image: url(../img/bg-kv_sp.jpg?20250401-2);
  }
}
@media only screen and (max-width: 1000px) and (max-width: 768px) {
  .kv {
    margin-left: -25px;
    margin-right: -25px;
  }
}
.kv .kv__image {
  margin: 0;
  width: 69.43vw;
}

/* ----------------------------------------------------------------
  こだわり
---------------------------------------------------------------- */
.sec-commitment {
  margin-top: -6.77vw;
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .sec-commitment {
    padding-top: 70px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .sec-commitment {
    padding-top: 50px;
  }
}

.commitment-item-title {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.4347826087;
}
@media only screen and (max-width: 768px) {
  .commitment-item-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.875rem, 7.5vw, 2.25rem);
    text-align: center;
  }
}
.commitment-item-title .num {
  font-size: 15.8125rem;
  font-weight: 900;
  white-space: nowrap;
  line-height: 1;
  color: #ffd77b;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .commitment-item-title .num {
    font-size: 5.375rem;
    position: relative;
  }
}
.commitment-item-title span {
  position: relative;
  z-index: 1;
}
.commitment-item-title span::after {
  content: "";
  width: 100%;
  height: 0.6em;
  position: absolute;
  left: 0;
  bottom: -0.15em;
  z-index: -1;
}
.commitment-item-title.--01 span::after {
  background-color: #ffbeb9;
}
.commitment-item-title.--02 span::after {
  background-color: #ffe375;
}

.commitment-item-text {
  margin-top: 1.7em;
  font-size: clamp(1.5625rem, 1.46vw, 1.75rem);
  line-height: 2.2142857143;
}
@media only screen and (max-width: 1300px) {
  .commitment-item-text {
    font-size: clamp(1.0625rem, 4.38vw, 1.3125rem);
  }
}
@media only screen and (max-width: 1300px) and (max-width: 768px) {
  .commitment-item-text {
    margin-top: 1.5em;
    line-height: 1.7;
    text-align: center;
  }
}

.commitment01 {
  margin-top: 90px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  max-width: 1920px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .commitment01 {
    margin-top: 50px;
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .commitment01 {
    margin-top: 30px;
  }
}
.commitment01 .kazari01 {
  width: 200.86px;
  position: absolute;
  top: -136px;
  right: 65px;
}
.commitment01 .kazari02 {
  width: 183.75px;
  position: absolute;
  left: 52px;
  bottom: 0;
  z-index: -1;
}
.commitment01 .inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1234px;
}
.commitment01 .commitment01-item {
  display: grid;
  grid-template-columns: auto 56%;
}
@media only screen and (max-width: 768px) {
  .commitment01 .commitment01-item {
    grid-template-columns: 1fr;
  }
}
.commitment01 .commitment01-item .item-text {
  padding-right: 10px;
}
@media only screen and (max-width: 768px) {
  .commitment01 .commitment01-item .item-text {
    padding-right: 0;
  }
}
.commitment01 .commitment01-item .item-text .commitment-item-title .num {
  left: 60px;
  top: -282px;
}
@media only screen and (max-width: 768px) {
  .commitment01 .commitment01-item .item-text .commitment-item-title .num {
    left: 0;
    top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .commitment01 .commitment01-item .item-image {
    margin-top: 30px;
  }
  .commitment01 .commitment01-item .item-image img {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    max-width: 340px;
  }
}
.commitment01 .video-contents {
  margin: 64px auto 0;
}
@media only screen and (max-width: 600px) {
  .commitment01 .video-contents {
    margin-top: 30px;
  }
}
.commitment01 .video-contents .video-container {
  max-width: 960px;
}

.commitment02 {
  margin-top: 174px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  background-image: url(../img/bg-commitment-02.png);
  background-repeat: no-repeat;
  background-position: center top 83px;
  background-size: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .commitment02 {
    margin-top: 100px;
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
    padding-right: 25px;
    background-size: cover;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .commitment02 {
    margin-top: 60px;
  }
}
.commitment02 .kazari03 {
  width: 200.86px;
  position: absolute;
  top: 162px;
  left: 83px;
}
.commitment02 .kazari04 {
  width: 234.06px;
  position: absolute;
  right: -414px;
  top: -63px;
}
@media only screen and (max-width: 1880px) {
  .commitment02 .kazari04 {
    right: -314px;
  }
}
@media only screen and (max-width: 1880px) and (max-width: 1700px) {
  .commitment02 .kazari04 {
    display: none;
  }
}
.commitment02 .kazari01 {
  width: 200.86px;
  position: absolute;
  right: 66px;
  bottom: -56px;
}
.commitment02 .inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  position: relative;
}
.commitment02 .commitment02-item {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 49% auto;
  max-width: 1329px;
}
@media only screen and (max-width: 768px) {
  .commitment02 .commitment02-item {
    grid-template-columns: 1fr;
  }
}
.commitment02 .commitment02-item .item-image {
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  .commitment02 .commitment02-item .item-image {
    order: 2;
    margin-top: 30px;
  }
  .commitment02 .commitment02-item .item-image img {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    max-width: 400px;
  }
}
.commitment02 .commitment02-item .item-text {
  align-self: flex-end;
  padding-left: min(115px, 5.99vw);
}
@media only screen and (max-width: 1180px) {
  .commitment02 .commitment02-item .item-text {
    margin-top: 150px;
  }
}
@media only screen and (max-width: 1180px) and (max-width: 768px) {
  .commitment02 .commitment02-item .item-text {
    order: 1;
    margin-top: 0;
    padding-left: 0;
  }
}
.commitment02 .commitment02-item .item-text .commitment-item-title .num {
  right: 2px;
  top: -32px;
}
@media only screen and (max-width: 1300px) {
  .commitment02 .commitment02-item .item-text .commitment-item-title .num {
    right: 40px;
    top: -166px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 768px) {
  .commitment02 .commitment02-item .item-text .commitment-item-title .num {
    right: 0;
    top: 0;
  }
}
.commitment02 .video-contents {
  margin: 120px auto 0;
}
@media only screen and (max-width: 768px) {
  .commitment02 .video-contents {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .commitment02 .video-contents {
    margin-top: 40px;
  }
}
.commitment02 .video-contents .video-container {
  max-width: 960px;
}

/* ----------------------------------------------------------------
  こんなときに「農協果実」
---------------------------------------------------------------- */
.sec-scene {
  margin-top: 110px;
}
@media only screen and (max-width: 600px) {
  .sec-scene {
    margin-top: 100px;
  }
}

.scene-flow {
  margin: 90px auto 0;
  padding-left: min(2.6vw, 50px);
  padding-right: min(2.6vw, 50px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(2.08vw, 40px);
  max-width: 1200px;
}
@media only screen and (max-width: 600px) {
  .scene-flow {
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.scene-flow .scene-flow__image {
  width: calc(33.333% - 26.6666666667px);
}
@media only screen and (max-width: 600px) {
  .scene-flow .scene-flow__image {
    width: 80%;
  }
}

.scene-catch-copy {
  margin: 100px auto 0;
  max-width: 1920px;
  font-size: 3.5rem;
  text-align: center;
  line-height: 1.4464285714;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .scene-catch-copy {
    margin-top: 50px;
    font-size: clamp(1.375rem, 7.06vw, 2.5rem);
    white-space: nowrap;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .scene-catch-copy {
    margin-top: 40px;
  }
}
.scene-catch-copy p {
  margin-top: 0;
}
.scene-catch-copy .kazari02 {
  width: 183.75px;
  position: absolute;
  left: 52px;
  bottom: -150px;
  z-index: -1;
}

/* ----------------------------------------------------------------
  商品情報
---------------------------------------------------------------- */
.sec-products {
  margin-top: 240px;
  background-color: #fff;
  background-image: url(../img/bg-products-1.png);
  background-repeat: no-repeat;
  background-position: center top 60px;
  background-size: 100%;
}
@media only screen and (max-width: 768px) {
  .sec-products {
    margin-top: 140px;
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .sec-products {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .sec-products .contents-title {
    position: relative;
  }
  .sec-products .contents-title::after {
    content: "";
    width: 100%;
    height: 50px;
    background-color: #fff5ce;
    position: absolute;
    left: 0;
    bottom: -25px;
    z-index: -1;
  }
}
.sec-products .products-data .products-item {
  padding-left: 50px;
  padding-right: 50px;
  background-color: #fff5ce;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item {
    padding-left: 0;
    padding-right: 0;
  }
}
.sec-products .products-data .products-item .inner {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item .inner {
    flex-direction: column;
    display: block;
  }
}
.sec-products .products-data .products-item .products-item__image {
  flex: 0 0 303px;
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item .products-item__image img {
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    max-width: 250px;
  }
}
.sec-products .products-data .products-item .products-item__data {
  margin-top: 35px;
  margin-left: min(4.69vw, 90px);
  width: calc(100% - 303px);
  font-size: 1.375rem;
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item .products-item__data {
    margin-left: 50px;
    margin-right: 50px;
    width: calc(100% - 100px);
    font-size: 1.125rem;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .sec-products .products-data .products-item .products-item__data {
    margin-left: 25px;
    margin-right: 25px;
    width: calc(100% - 50px);
    font-size: 1rem;
  }
}
.sec-products .products-data .products-item .products-item__data caption {
  margin-bottom: 5px;
  font-size: clamp(1.875rem, 1.88vw, 2.25rem);
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item .products-item__data caption {
    margin-bottom: 10px;
    font-size: 1.375rem;
    white-space: unset;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .sec-products .products-data .products-item .products-item__data caption {
    font-size: 1.1875rem;
  }
}
.sec-products
  .products-data
  .products-item
  .products-item__data
  caption::before {
  content: "";
  margin-right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #d12c2e;
  display: inline-block;
  vertical-align: -0.05em;
}
@media only screen and (max-width: 768px) {
  .sec-products
    .products-data
    .products-item
    .products-item__data
    caption::before {
    margin-right: 10px;
    width: 22px;
    height: 22px;
    vertical-align: -0.1em;
  }
}
.sec-products .products-data .products-item .products-item__data tr {
  border-bottom: 2px solid #beb38b;
}
.sec-products .products-data .products-item .products-item__data th {
  padding-top: 30px;
  padding-bottom: 30px;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item .products-item__data th {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.sec-products .products-data .products-item .products-item__data td {
  padding-left: 1em;
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item .products-item__data td {
    padding-left: 1.5em;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.sec-products .products-data .products-item.--01 {
  padding-top: 190px;
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item.--01 {
    margin-top: -10px;
    padding-top: 70px;
  }
}
.sec-products .products-data .products-item.--01 .kazari03 {
  width: 200.86px;
  position: absolute;
  top: 6px;
  left: 83px;
}
.sec-products .products-data .products-item.--02 {
  padding-top: 120px;
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item.--02 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .sec-products .products-data .products-item.--02 {
    padding-top: 80px;
  }
}
.sec-products .products-data .products-item.--02 .inner {
  flex-direction: row-reverse;
}
.sec-products .products-data .products-item.--02 .products-item__data {
  margin-left: 0;
  margin-right: min(4.69vw, 90px);
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item.--02 .products-item__data {
    margin-left: 25px;
  }
}
.sec-products
  .products-data
  .products-item.--02
  .products-item__data
  caption::before {
  background-color: #ffc736;
}
.sec-products .products-data .products-item.--02 .kazari04 {
  width: 234.06px;
  position: absolute;
  right: 66px;
  bottom: 185px;
}
.sec-products .products-data .products-item.--02::after {
  content: "";
  margin-left: -50px;
  width: calc(100% + 100px);
  height: 190px;
  background-color: #ffeb9b;
  background-image: url(../img/bg-products-2.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  display: block;
}
@media only screen and (max-width: 768px) {
  .sec-products .products-data .products-item.--02::after {
    margin-left: 0;
    width: 100%;
    height: 100px;
  }
}

/* ----------------------------------------------------------------
  お問い合わせはこちら
---------------------------------------------------------------- */
.cta {
  padding-top: 170px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: -25px;
  background-color: #ffeb9b;
}
@media only screen and (max-width: 768px) {
  .cta {
    padding-top: 90px;
    padding-left: 25px;
    padding-right: 25px;
    margin-left: -25px;
    margin-right: -25px;
  }
}
.cta .button {
  max-width: 600px;
}
@media only screen and (max-width: 768px) {
  .cta .button {
    max-width: 480px;
  }
}

@media only screen and (max-width: 768px) {
  .kazari01,
  .kazari02,
  .kazari03,
  .kazari04 {
    display: none;
  }
} /*# sourceMappingURL=style.css.map */
