@charset "UTF-8";
/*---------------------------------------
    all
----------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: 140px;
  }
}
@media (min-width: 980px) {
  html {
    scroll-padding-top: 160px;
  }
}
html:has(> .shoplist) {
  scroll-padding: 3rem;
}
@media (min-width: 980px) {
  html:has(> .shoplist) {
    scroll-padding-top: 4rem;
  }
}

body {
  color: #201C25;
  background-color: #FCFBFC;
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, san-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 2;
  overflow-wrap: anywhere;
  word-break: normal;
}
@media (min-width: 980px) {
  body {
    font-size: 1.125rem;
  }
}
@media (max-width: 979px) {
  body:has(.menu-open) {
    overflow: clip;
  }
}
body :where(a,
button,
input[type=button],
input[type=submit],
input[type=reset]):focus-visible {
  outline: #003F1A solid 2px;
  outline-offset: 4px;
}

.ff-En {
  font-family: "Oswald", "Noto Sans JP", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.ff-Num {
  font-family: "Carrois Gothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.inblock {
  display: inline-block;
}

.txt-cl {
  color: #003F1A;
}
.txt-cl-l {
  color: #3F6F53;
}
.txt-cl-a {
  color: #095540;
}
.txt-cl-d {
  color: #2E8966;
}

.txt-red {
  color: #C22D1D;
}

.txt-gray {
  color: #BCBDC5;
}

.txt-em, strong, em {
  font-weight: 600;
  font-style: normal;
}

.is-style-p-notice {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.is-style-p-notice::before {
  content: "※";
  width: 1em;
  height: 1em;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.is-style-no-margin {
  margin-top: 0;
}

.is-style-p-with-arrow:not(:has(a)),
.is-style-p-after-arrow:not(:has(a)),
.is-style-p-with-arrow:has(a) a,
.is-style-p-after-arrow:has(a) a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-decoration: underline;
  text-decoration-color: transparent;
  color: #003F1A;
  transition: 0.2s;
}

.is-style-p-with-arrow:not(:has(a))::before,
.is-style-p-with-arrow:has(a) a::before {
  content: url(../images/icon/ar-has-box.svg);
  width: 2.5rem;
  height: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.is-style-p-after-arrow:not(:has(a))::after,
.is-style-p-after-arrow:has(a) a::after {
  content: url(../images/icon/ar-has-box.svg);
  width: 2.5rem;
  height: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

a:hover .is-style-p-with-arrow:not(:has(a)),
.is-style-p-with-arrow:has(a) a:hover {
  color: #2E8966;
  text-decoration-color: #2E8966;
}
a:hover .is-style-p-with-arrow:not(:has(a))::before,
.is-style-p-with-arrow:has(a) a:hover::before {
  content: url(../images/icon/ar-has-box_hover.svg);
}

a:hover .is-style-p-after-arrow:not(:has(a)),
.is-style-p-after-arrow:has(a) a:hover {
  color: #2E8966;
  text-decoration-color: #2E8966;
}
a:hover .is-style-p-after-arrow:not(:has(a))::after,
.is-style-p-after-arrow:has(a) a:hover::after {
  content: url(../images/icon/ar-has-box_hover.svg);
}

.is-style-p-phone,
.is-style-p-clock,
.is-style-p-cart {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 4px;
}
.is-style-p-phone::before,
.is-style-p-clock::before,
.is-style-p-cart::before {
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  flex-shrink: 0;
}

.is-style-p-phone::before {
  background-image: url(../images/icon/phone.svg);
  top: 2px;
}

.is-style-p-clock::before {
  background-image: url(../images/icon/clock.svg);
  top: 2px;
}

.is-style-p-cart::before {
  background-image: url(../images/icon/shopping-cart.svg);
  top: 1px;
}

/*---------------------------------------
    object -component
----------------------------------------*/
/* section base
---------------------------*/
section.alignfull {
  width: 100%;
  margin: 0 auto 140px;
  position: relative;
}
section.alignfull::after {
  content: none;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  transition: 0.3s;
}

/* inner base
---------------------------*/
.is-style-c-inner {
  position: relative;
  padding: 1.5rem;
  max-width: 1280px;
}
.is-style-c-inner .wrap {
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .is-style-c-inner {
    padding: 2.5rem 5rem;
  }
}
@media (min-width: 980px) {
  .is-style-c-inner {
    padding: 3rem 6rem;
    margin: 0 auto;
  }
}

/* line art
---------------------------*/
.c-lineArt {
  width: 450px;
  height: auto;
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .c-lineArt {
    width: 540px;
  }
}
@media (min-width: 980px) {
  .c-lineArt {
    opacity: 0.2;
    width: 640px;
  }
}
@media (min-width: 1360px) {
  .c-lineArt {
    width: 45dvw;
    max-width: 800px;
  }
}

/* photo
---------------------------*/
.c-photo {
  width: 80dvw;
  position: absolute;
  padding-top: 2rem;
  max-width: 400px;
}
@media (min-width: 768px) {
  .c-photo {
    padding-top: 0;
    width: 420px;
    max-width: none;
  }
}
@media (min-width: 980px) {
  .c-photo {
    width: 570px;
    min-width: 400px;
  }
}
.c-photo img {
  aspect-ratio: 3/2;
}

/* has-bgcolor-set
---------------------------*/
section.alignfull:not(.meganeichiba) .is-style-c-inner {
  padding: 4.5rem 1.5rem;
}
@media (min-width: 768px) {
  section.alignfull:not(.meganeichiba) .is-style-c-inner {
    padding: 5rem;
  }
}
@media (min-width: 980px) {
  section.alignfull:not(.meganeichiba) .is-style-c-inner {
    padding: 100px 140px;
  }
}
section.alignfull.-white::after {
  content: "";
  background-color: #FFFFFF;
}
section.alignfull.-lightgray::after {
  content: "";
  background-color: #F3F1F2;
}
section.alignfull.-palegray::after {
  content: "";
  background-color: #eeebed;
}
section.alignfull.is-style-c-section-bg-left::after {
  width: calc(100% - 1.5rem);
  left: 0;
}
@media (min-width: 768px) {
  section.alignfull.is-style-c-section-bg-left::after {
    width: calc(100% - 5.5rem);
  }
}
@media (min-width: 980px) {
  section.alignfull.is-style-c-section-bg-left::after {
    width: calc(100% - 180px);
  }
}
@media (min-width: 1280px) {
  section.alignfull.is-style-c-section-bg-left::after {
    width: calc((100dvw - 1280px) / 2 + 1000px);
  }
}
section.alignfull.is-style-c-section-bg-left .is-style-c-inner {
  margin-right: 1.5rem !important;
}
section.alignfull.is-style-c-section-bg-left .is-style-c-inner .wrap {
  margin-left: 0 !important;
  margin-right: auto;
}
@media (min-width: 768px) {
  section.alignfull.is-style-c-section-bg-left .is-style-c-inner {
    margin-right: 5.5rem !important;
  }
}
@media (min-width: 980px) {
  section.alignfull.is-style-c-section-bg-left .is-style-c-inner {
    margin-right: auto !important;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: normal;
  }
  section.alignfull.is-style-c-section-bg-left .is-style-c-inner .wrap {
    flex-shrink: 0;
  }
}
@media (min-width: 1280px) {
  section.alignfull.is-style-c-section-bg-left .is-style-c-inner .wrap {
    margin-left: auto !important;
  }
}
section.alignfull.is-style-c-section-bg-left .c-photo {
  left: auto;
  right: -1.5rem;
}
@media (min-width: 768px) {
  section.alignfull.is-style-c-section-bg-left .c-photo {
    right: -5.5rem;
  }
}
@media (min-width: 980px) {
  section.alignfull.is-style-c-section-bg-left .c-photo {
    position: relative;
    right: -2.5rem;
  }
}
@media (min-width: 1024px) {
  section.alignfull.is-style-c-section-bg-left .c-photo {
    right: -5.5rem;
  }
}
section.alignfull.is-style-c-section-bg-left .c-lineArt {
  right: -45%;
  top: -30%;
}
@media (min-width: 500px) {
  section.alignfull.is-style-c-section-bg-left .c-lineArt {
    right: -20%;
  }
}
@media (min-width: 768px) {
  section.alignfull.is-style-c-section-bg-left .c-lineArt {
    right: -20%;
    top: -40%;
  }
}
@media (min-width: 980px) {
  section.alignfull.is-style-c-section-bg-left .c-lineArt {
    right: 3rem;
    top: -35%;
  }
}
@media (min-width: 1360px) {
  section.alignfull.is-style-c-section-bg-left .c-lineArt {
    right: calc(50% - 52dvw);
  }
}
section.alignfull.is-style-c-section-bg-right::after {
  width: calc(100% - 1.5rem);
  right: 0;
}
@media (min-width: 768px) {
  section.alignfull.is-style-c-section-bg-right::after {
    width: calc(100% - 5.5rem);
  }
}
@media (min-width: 980px) {
  section.alignfull.is-style-c-section-bg-right::after {
    width: calc(100% - 180px);
  }
}
@media (min-width: 1280px) {
  section.alignfull.is-style-c-section-bg-right::after {
    width: calc((100dvw - 1280px) / 2 + 1000px);
  }
}
section.alignfull.is-style-c-section-bg-right .is-style-c-inner {
  margin-left: 1.5rem !important;
}
section.alignfull.is-style-c-section-bg-right .is-style-c-inner .wrap {
  margin-left: auto;
  margin-right: 0 !important;
}
@media (min-width: 768px) {
  section.alignfull.is-style-c-section-bg-right .is-style-c-inner {
    margin-left: 5.5rem !important;
  }
}
@media (min-width: 980px) {
  section.alignfull.is-style-c-section-bg-right .is-style-c-inner {
    margin-left: 180px !important;
    padding-left: 4rem;
  }
  section.alignfull.is-style-c-section-bg-right .is-style-c-inner:has(img) {
    margin-left: auto !important;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: normal;
  }
  section.alignfull.is-style-c-section-bg-right .is-style-c-inner:has(img) .wrap {
    flex-shrink: 0;
  }
}
@media (min-width: 1280px) {
  section.alignfull.is-style-c-section-bg-right .is-style-c-inner {
    margin-left: calc((100dvw - 1280px) / 2 + 280px) !important;
  }
  section.alignfull.is-style-c-section-bg-right .is-style-c-inner > div {
    margin-right: auto !important;
  }
  section.alignfull.is-style-c-section-bg-right .is-style-c-inner:has(img) .wrap {
    margin-right: auto !important;
  }
}
section.alignfull.is-style-c-section-bg-right .c-photo {
  left: -1.5rem;
  right: auto;
}
@media (min-width: 768px) {
  section.alignfull.is-style-c-section-bg-right .c-photo {
    left: -5.5rem;
  }
}
@media (min-width: 980px) {
  section.alignfull.is-style-c-section-bg-right .c-photo {
    position: relative;
    left: -2.5rem;
  }
}
@media (min-width: 1024px) {
  section.alignfull.is-style-c-section-bg-right .c-photo {
    left: -5.5rem;
  }
}
section.alignfull.is-style-c-section-bg-right .c-lineArt {
  left: -40%;
  top: -30%;
}
@media (min-width: 500px) {
  section.alignfull.is-style-c-section-bg-right .c-lineArt {
    left: -20%;
  }
}
@media (min-width: 768px) {
  section.alignfull.is-style-c-section-bg-right .c-lineArt {
    left: -20%;
    top: -40%;
  }
}
@media (min-width: 980px) {
  section.alignfull.is-style-c-section-bg-right .c-lineArt {
    left: 3rem;
    top: -35%;
  }
}
@media (min-width: 1360px) {
  section.alignfull.is-style-c-section-bg-right .c-lineArt {
    left: calc(50% - 52dvw);
  }
}
section.alignfull + section.alignfull {
  margin-top: 180px;
}
@media (min-width: 980px) {
  section.alignfull + section.alignfull {
    margin-top: 140px;
  }
}
section.alignfull:has(.c-photo) + section.alignfull {
  margin-top: 340px;
}
@media (min-width: 768px) {
  section.alignfull:has(.c-photo) + section.alignfull {
    margin-top: 260px;
  }
}
@media (min-width: 980px) {
  section.alignfull:has(.c-photo) + section.alignfull {
    margin-top: 140px;
  }
}
section.alignfull:has(.c-photo) + section.alignfull:has(.c-lineArt) {
  margin-top: 400px;
}
@media (min-width: 768px) {
  section.alignfull:has(.c-photo) + section.alignfull:has(.c-lineArt) {
    margin-top: 400px;
  }
}
@media (min-width: 980px) {
  section.alignfull:has(.c-photo) + section.alignfull:has(.c-lineArt) {
    margin-top: 250px;
  }
}

/* content
---------------------------*/
.c-content__title {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .c-content__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 980px) {
  .c-content__title {
    font-size: 2rem;
  }
}
@media (min-width: 1360px) {
  .c-content__title {
    font-size: 2.25rem;
  }
}
.c-content__title + * {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .c-content__title + * {
    margin-top: 1.75rem;
  }
}
@media (min-width: 980px) {
  .c-content__title + * {
    margin-top: 2rem;
  }
}

/* logo
---------------------------*/
.c-logoset {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.c-logoset img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-logoset [data-logo=bird] {
  height: 48px;
  width: auto;
}
@media (min-width: 980px) {
  .c-logoset [data-logo=bird] {
    height: 52px;
  }
}
.c-logoset [data-logo=name] {
  height: auto;
  width: 205px;
}
@media (min-width: 980px) {
  .c-logoset [data-logo=name] {
    width: 240px;
  }
}
.c-logoset:hover {
  opacity: 1;
}

/* box
---------------------------*/
a .c-category, a.c-category {
  display: block;
  padding: 0.25rem 0.75rem;
  line-height: 1;
  background-color: #201C25;
  color: #FFFFFF;
  font-size: 0.875rem;
  border: 1px solid #201C25;
  transition: 0.2s;
}

@media (min-width: 980px) {
  a:hover .c-category,
  a.c-category:hover {
    background-color: #2E8966;
    border-color: #2E8966;
  }
}

/* table
---------------------------*/
.wp-block-table tbody, .wp-block-table tr, .wp-block-table th, .wp-block-table td {
  border: none;
}
.wp-block-table tr:not(:has(th)) td:first-of-type,
.wp-block-table th {
  border-top: 1px solid #C22D1D;
  vertical-align: middle;
  font-weight: 400;
  padding: 1rem 0;
  width: 30%;
}
.wp-block-table tr:not(:has(th)) td:nth-of-type(n+2),
.wp-block-table tr:has(th) td {
  border-top: 1px solid #BCBDC5;
  padding: 1rem;
  width: 70%;
}
.wp-block-table tr:last-of-type:not(:has(th)) td:first-of-type,
.wp-block-table tr:last-of-type th {
  border-bottom: 1px solid #C22D1D;
}
.wp-block-table tr:last-of-type:not(:has(th)) td:nth-of-type(n+2), .wp-block-table tr:last-of-type:has(th) td {
  border-bottom: 1px solid #BCBDC5;
}
@media (max-width: 767px) {
  .wp-block-table tbody, .wp-block-table tr, .wp-block-table th, .wp-block-table td {
    display: block;
    width: 100% !important;
    border: none !important;
  }
  .wp-block-table tr + tr {
    margin-top: 1rem;
  }
  .wp-block-table tr:not(:has(th)) td:first-of-type,
  .wp-block-table th {
    background-color: #E4EAE6;
    padding: 0.5rem;
  }
  .wp-block-table tr:not(:has(th)) td:nth-of-type(n+2),
  .wp-block-table tr:has(th) td {
    padding: 0.5rem;
  }
}

/* button
---------------------------*/
.wp-block-button .wp-element-button {
  width: 100%;
  min-width: 240px;
  height: 60px;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid transparent;
  transition: 0.3s;
}
.wp-block-button .wp-element-button:hover {
  border-color: #2E8966;
  color: #FFFFFF;
}
.wp-block-button .wp-element-button:disabled {
  background-color: #BCBDC5;
}
.wp-block-button .wp-element-button:disabled:hover {
  color: #FFFFFF !important;
  border-color: transparent;
}

/* form
---------------------------*/
input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
  background-color: #FFFFFF;
  color: #201C25;
  font-size: 1.125rem;
  padding: 1rem;
  border: 1px solid #BCBDC5;
  border-radius: 4px;
}
@media (min-width: 768px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  select,
  textarea {
    font-size: 1.25rem;
  }
}

select {
  width: 100%;
  background-image: url(../images/icon/chevron-down.svg);
  background-position: 95% center;
}

.wpcf7-form-control {
  appearance: none;
  -webkit-appearance: none; /*Google Chrome Safari対応*/
  -moz-appearance: none; /*Firefox対応*/
  -o-appearance: none; /*Opera対応*/
}

.form__field {
  width: 100%;
  display: block;
}

input[type=date] {
  padding: 0.5rem 1rem;
  background-color: #FFFFFF;
  color: #201C25;
  border: 1px solid #BCBDC5;
  border-radius: 4px;
}

input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  line-height: 1;
}

select {
  line-height: 1.5;
}

textarea {
  width: 100%;
  line-height: 2;
  height: 200px;
}

.c-formwrap {
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: normal;
  margin: 2rem auto;
}
@media (min-width: 768px) {
  .c-formwrap {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.c-formwrap .c-formlist {
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: normal;
  gap: 1rem;
}
.c-formwrap .c-formlist > div dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 1rem;
}
.c-formwrap .c-formlist > div dt label {
  font-weight: 600;
}
.c-formwrap .c-formlist > div em {
  display: block;
  padding: 0.25rem 0.75rem;
  line-height: 1;
  background-color: #C22D1D;
  color: #FFFFFF;
  font-size: 0.875rem;
  border: 1px solid #C22D1D;
  font-weight: 400;
  border: none;
  border-radius: 2px;
  position: relative;
  top: 1px;
}
.c-formwrap .c-formlist > div dd {
  font-size: 1rem;
}
.c-formwrap .c-formlist > div dd .form__check {
  margin: 1.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.c-formwrap .c-formlist > div dd .form__check label {
  font-size: 1.125rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .c-formwrap .c-formlist {
    gap: 2rem;
  }
  .c-formwrap .c-formlist > div {
    gap: 1rem;
    flex-direction: column;
  }
  .c-formwrap .c-formlist > div dt {
    padding: 0;
  }
  .c-formwrap .c-formlist > div dd {
    padding: 0;
  }
  .c-formwrap .c-formlist > div dd .form__check {
    flex-direction: row;
    gap: 1rem;
  }
  .c-formwrap .c-formlist > div.check {
    flex-direction: column;
    gap: 1.5rem;
  }
  .c-formwrap .c-formlist > div.check dt, .c-formwrap .c-formlist > div.check dd {
    width: 100%;
  }
  .c-formwrap .c-formlist > div.check dt {
    justify-content: flex-start;
    gap: 1rem;
  }
}
@media (min-width: 980px) {
  .c-formwrap .c-formlist {
    gap: 3rem;
  }
  .c-formwrap .c-formlist > div dt {
    font-size: 1.125rem;
  }
}
.c-formwrap .c-formlist .is-style-p-notice {
  font-size: 1rem;
}
.c-formwrap .c-formlist .is-style-p-notice::before {
  font-size: 1rem;
}
.c-formwrap .wp-block-buttons {
  flex-direction: column;
  gap: 0;
}
.c-formwrap .wp-block-button {
  margin: 1.5rem auto 0.5rem;
}
.c-formwrap .wp-block-button .wp-element-button {
  font-size: 1.5rem;
  letter-spacing: 1rem;
  padding-left: 2.5rem;
}
.c-formwrap .wp-block-button .wpcf7-spinner {
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* link
---------------------------*/
.is-style-with-arrow,
.is-style-after-arrow {
  display: inline-block;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .is-style-with-arrow,
  .is-style-after-arrow {
    margin-top: 3rem;
  }
}
@media (min-width: 980px) {
  .is-style-with-arrow,
  .is-style-after-arrow {
    margin-top: 4.5rem;
  }
}
.is-style-with-arrow .wp-element-button,
.is-style-after-arrow .wp-element-button {
  height: auto;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0;
  background-color: transparent;
  border: none;
  font-family: "Oswald", "Noto Sans JP", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #003F1A;
  font-size: 1.25rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: 0.2s;
}
.is-style-with-arrow .wp-element-button:hover,
.is-style-after-arrow .wp-element-button:hover {
  opacity: 1;
  color: #2E8966;
  text-decoration-color: #2E8966;
}

.is-style-with-arrow .wp-element-button {
  position: relative;
}
.is-style-with-arrow .wp-element-button::before {
  content: url(../images/icon/ar-has-box.svg);
  width: 2.5rem;
  height: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 1;
  z-index: 2;
}
.is-style-with-arrow .wp-element-button::after {
  content: url(../images/icon/ar-has-box_hover.svg);
  width: 2.5rem;
  height: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: absolute;
  opacity: 0;
  z-index: 1;
}
.is-style-with-arrow .wp-element-button:hover::before {
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}
.is-style-with-arrow .wp-element-button:hover::after {
  opacity: 1;
  transition: 0.3s;
  z-index: 2;
}

.is-style-after-arrow .wp-element-button {
  position: relative;
}
.is-style-after-arrow .wp-element-button::after {
  content: url(../images/icon/ar-has-box.svg);
  width: 2.5rem;
  height: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 1;
  z-index: 2;
}
.is-style-after-arrow .wp-element-button::before {
  content: url(../images/icon/ar-has-box_hover.svg);
  width: 2.5rem;
  height: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: absolute;
  opacity: 0;
  z-index: 1;
}
.is-style-after-arrow .wp-element-button:hover::after {
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}
.is-style-after-arrow .wp-element-button:hover::before {
  opacity: 1;
  transition: 0.3s;
  z-index: 2;
}

/*---------------------------------------
    layout
----------------------------------------*/
/* header
---------------------------*/
.l-header {
  display: block;
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 999;
  background-color: transparent;
}
.l-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  opacity: 0.4;
  background: linear-gradient(to bottom, #201c25 0%, rgba(32, 28, 37, 0) 95%, rgba(32, 28, 37, 0) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 980px) {
  .l-header {
    height: 80px;
  }
  .l-header::after {
    height: 80px;
  }
}
.l-header__content {
  height: 100%;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .l-header__content {
    padding: 0 40px;
  }
}
.l-header__gnav {
  display: block;
}
.l-header__gnav .gnav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: normal;
}
.l-header__gnav .menu-item {
  opacity: 0;
}
.l-header__gnav .menu-item a {
  text-decoration: none;
  color: #201C25;
}
@media (max-width: 979px) {
  .l-header__gnav {
    width: 100dvw;
    height: calc(100dvh - 60px);
    padding: 4rem 2.5rem;
    background-color: #F3F1F2;
    position: fixed;
    top: 60px;
    right: -100dvw;
    transition: 0.3s;
  }
  .l-header__gnav .gnav__list {
    gap: 3rem;
  }
  .l-header__gnav .menu-item {
    width: 100%;
    visibility: hidden;
  }
  .l-header__gnav .menu-item a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 0.875rem;
    gap: 4px;
  }
  .l-header__gnav .menu-item a::after {
    display: block;
    font-family: "Oswald", "Noto Sans JP", Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    font-size: 2rem;
    line-height: 1;
  }
  .l-header__gnav .menu-item.top a::after {
    content: "top page";
  }
  .l-header__gnav .menu-item.about a::after {
    content: "about company";
  }
  .l-header__gnav .menu-item.shoplist a::after {
    content: "shop list";
  }
  .l-header__gnav .menu-item.recruit a::after {
    content: "recruit information";
  }
  .l-header__gnav .menu-item.contact a::after {
    content: "contact us";
  }
}
@media screen and (max-width: 979px) and (max-height: 700px) {
  .l-header__gnav {
    padding: 2.5rem;
    overflow-y: scroll;
  }
  .l-header__gnav .gnav__list {
    gap: 2rem;
  }
}
@media (max-width: 979px) and (min-width: 768px) {
  .l-header__gnav .menu-item a {
    align-items: center;
  }
}
@media (min-width: 980px) {
  .l-header__gnav {
    background-color: transparent;
  }
  .l-header__gnav .gnav__list {
    flex-direction: row;
    gap: 1.125rem;
  }
  .l-header__gnav .menu-item {
    opacity: 1;
    visibility: visible;
  }
  .l-header__gnav .menu-item a {
    color: #FFFFFF;
    border-bottom: 1px solid transparent;
  }
  .l-header__gnav .menu-item a:hover {
    opacity: 1;
    border-bottom-color: #FFFFFF;
  }
  .l-header__gnav .menu-item.contact a {
    border: 1px solid #FFFFFF;
    padding: 0.5rem 1.5rem;
    transition: 0.1s;
  }
  .l-header__gnav .menu-item.contact a:hover {
    color: #201C25;
    background-color: #FFFFFF;
  }
}
@media (min-width: 1024px) {
  .l-header__gnav .gnav__list {
    gap: 1.6875rem;
  }
}
@media (min-width: 1280px) {
  .l-header__gnav .gnav__list {
    gap: 40px;
  }
}
.l-header__hbgBtn {
  width: 60px;
  height: 60px;
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  transition: 0.3s;
  z-index: 9999;
}
.l-header__hbgBtn img {
  position: relative;
  z-index: 1;
}
.l-header__hbgBtn::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../images/icon/hhg-close.svg);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  transition: 0.3s;
}
@media (min-width: 980px) {
  .l-header__hbgBtn {
    display: none;
  }
}

.sub .l-header::after,
.index .l-header.scroll::after {
  background: transparent;
}
.sub .l-header .l-header__content,
.index .l-header.scroll .l-header__content {
  background-color: #FFFFFF;
}
@media (min-width: 980px) {
  .sub .l-header .l-header__content .menu-item a,
  .index .l-header.scroll .l-header__content .menu-item a {
    color: #201C25;
  }
  .sub .l-header .l-header__content .menu-item a:hover,
  .index .l-header.scroll .l-header__content .menu-item a:hover {
    border-bottom-color: #2E8966;
  }
  .sub .l-header .l-header__content .menu-item.contact a,
  .index .l-header.scroll .l-header__content .menu-item.contact a {
    color: #FFFFFF;
    background-color: #201C25;
    border-color: #201C25;
  }
  .sub .l-header .l-header__content .menu-item.contact a:hover,
  .index .l-header.scroll .l-header__content .menu-item.contact a:hover {
    background-color: #2E8966;
    border-color: #2E8966;
  }
}
.sub .l-header .l-header__hbgBtn,
.index .l-header.scroll .l-header__hbgBtn {
  background-color: #201C25;
}

.sub .l-header::after {
  display: none;
}

.l-header.menu-open .l-header__content {
  background-color: #FFFFFF;
  transition: 0.3s;
}
.l-header.menu-open .l-header__gnav {
  right: 0;
}
.l-header.menu-open .l-header__gnav .menu-item {
  visibility: visible;
}
.l-header.menu-open .l-header__hbgBtn {
  background-color: #201C25;
  transition: 0.3s;
}
.l-header.menu-open .l-header__hbgBtn img {
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.l-header.menu-open .l-header__hbgBtn::after {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: 0.3s;
}

/* main
---------------------------*/
:where(.l-main) {
  overflow-x: clip;
  padding-top: 60px;
}
@media (min-width: 980px) {
  :where(.l-main) {
    padding-top: 80px;
  }
}
:where(.l-main) a {
  display: inline;
  transition: all 0.3s;
}
:where(.l-main) a:hover {
  opacity: 0.8;
}
:where(.l-main) a[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  position: relative;
  top: 2px;
  background-image: url(../images/icon/escape-cl.svg);
}
:where(.l-main) a.no-icon::after {
  content: none;
}
:where(.l-main) .wp-block-file a:not(.wp-element-button) {
  font-size: 1rem;
}
@media (min-width: 768px) {
  :where(.l-main) .wp-block-file a:not(.wp-element-button) {
    font-size: 1.125rem;
  }
}
:where(.l-main) .wp-block-file a:not(.wp-element-button)::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  position: relative;
  top: 2px;
}
:where(.l-main) .wp-block-file a:not(.wp-element-button)[target=_blank]::after {
  background-image: url(../images/icon/escape-cl.svg);
}
:where(.l-main) .wp-block-file a:not(.wp-element-button)[href*=".pdf"]::after {
  width: 40px;
  background-image: url(../images/icon/pdf.svg);
}
:where(.l-main) .wp-block-file a:not(.wp-element-button)[href$=".xls"]::after, :where(.l-main) .wp-block-file a:not(.wp-element-button)[href$=".xlsx"]::after {
  width: 48px;
  background-image: url(../images/icon/excel.svg);
}
:where(.l-main) .wp-block-file a:not(.wp-element-button)[href$=".doc"]::after, :where(.l-main) .wp-block-file a:not(.wp-element-button)[href$=".docx"]::after {
  width: 46px;
  background-image: url(../images/icon/word.svg);
}

/* aside
---------------------------*/
.l-aside {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
}
.l-aside ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) and (min-height: 500px) {
  .l-aside {
    width: -moz-fit-content;
    width: fit-content;
    left: auto;
    right: 0;
    bottom: auto;
    top: 115px;
  }
  .l-aside ul {
    margin-left: auto;
    flex-direction: column;
    width: 60px;
  }
}
@media screen and (min-width: 980px) and (min-height: 500px) {
  .l-aside {
    top: 190px;
  }
}
.l-aside .c-banner {
  width: 100%;
  height: 100%;
}
.l-aside .c-banner a {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  font-size: 1.125rem;
  text-decoration: none;
  font-family: "Oswald", "Noto Sans JP", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid transparent;
  gap: 0.5rem;
  transition: 0.3s;
}
.l-aside .c-banner a::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.75rem;
  transition: 0.3s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/icon/ar-black.svg);
}
.l-aside .c-banner a:hover {
  opacity: 1;
}
.l-aside .c-banner a:hover::after {
  transform: translateX(5px);
}
.l-aside .c-banner._1st {
  background-color: #D8E1DC;
}
.l-aside .c-banner._1st a {
  color: #201C25;
}
.l-aside .c-banner._1st a::after {
  background-image: url(../images/icon/ar-black.svg);
}
.l-aside .c-banner._2nd {
  background-color: #2E8966;
}
.l-aside .c-banner._2nd a {
  color: #FFFFFF;
}
.l-aside .c-banner._2nd a::after {
  background-image: url(../images/icon/ar-white.svg);
}
@media screen and (min-width: 768px) and (min-height: 500px) {
  .l-aside .c-banner {
    height: 160px;
  }
  .l-aside .c-banner a {
    height: 100%;
    writing-mode: vertical-lr;
    gap: 1rem;
    padding: 0;
  }
}

/* footer
---------------------------*/
.l-footer {
  padding-bottom: 4rem;
  display: block;
  width: 100%;
  background-color: #eeebed;
  line-height: 1.5;
}
@media screen and (min-width: 768px) and (min-height: 500px) {
  .l-footer {
    padding-bottom: 0;
  }
}
.l-footer__content {
  height: 100%;
  width: 100%;
  padding: 2.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: normal;
}
@media (min-width: 768px) {
  .l-footer__content {
    padding: 3rem 2.5rem 3.5rem;
  }
}
@media (min-width: 980px) {
  .l-footer__content {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: "hdr nav" "hdr ftr";
    gap: 0 3rem;
  }
}
.l-footer__hdr {
  grid-area: hdr;
}
.l-footer__hdr .c-logoset {
  width: -moz-fit-content;
  width: fit-content;
  justify-content: flex-start;
}
.l-footer__hdr .c-logoset [data-logo=bird] {
  height: 52px;
}
.l-footer__hdr .c-logoset [data-logo=name] {
  width: 222px;
}
.l-footer__hdr p {
  margin-top: 1rem;
  font-size: 1rem;
}
.l-footer__nav {
  grid-area: nav;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: normal;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.l-footer__nav .gnav__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: normal;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
.l-footer__nav .menu-item {
  width: 50%;
}
.l-footer__nav .menu-item a {
  display: inline-block;
  color: #201C25;
  text-decoration-color: transparent;
}
.l-footer__nav .menu-item a:hover {
  text-decoration-color: #2E8966;
}
.l-footer__nav .l-footer__bunner {
  margin-left: auto;
  flex-shrink: 0;
}
.l-footer__nav .l-footer__bunner a {
  display: block;
}
@media (min-width: 768px) {
  .l-footer__nav {
    margin-bottom: 1.75rem;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .l-footer__nav .gnav__list {
    gap: 1.125rem 4.5rem;
    max-width: 29.25rem;
  }
  .l-footer__nav .menu-item {
    width: 6.75rem;
  }
  .l-footer__nav .l-footer__bunner {
    padding-right: 3rem;
  }
}
@media (min-width: 980px) {
  .l-footer__nav {
    margin-top: 0;
  }
  .l-footer__nav .gnav__list {
    gap: 1.125rem 3rem;
  }
}
@media (min-width: 1280px) {
  .l-footer__nav .gnav__list {
    gap: 1.125rem 4.5rem;
  }
}
@media (min-width: 1520px) {
  .l-footer__nav .gnav__list {
    gap: 1.125rem 6rem;
    max-width: 32.25rem;
  }
}
.l-footer__ftr {
  grid-area: ftr;
  border-top: 1px solid #BCBDC5;
  padding-top: 1rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-start;
  gap: 2.5rem;
}
.l-footer__ftr .sub__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: normal;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
.l-footer__ftr .menu-item {
  width: 50%;
}
.l-footer__ftr .menu-item:last-of-type {
  width: 100%;
}
.l-footer__ftr .menu-item a {
  display: inline-block;
  color: #201C25;
  text-decoration-color: transparent;
  font-size: 0.875rem;
}
.l-footer__ftr .menu-item a:hover {
  text-decoration-color: #2E8966;
}
.l-footer__ftr .l-footer__copy {
  display: block;
  margin-left: auto;
  margin-right: 0;
  flex-shrink: 0;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .l-footer__ftr {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
  }
  .l-footer__ftr .sub__list {
    width: -moz-fit-content;
    width: fit-content;
    gap: 1.5rem;
  }
  .l-footer__ftr .menu-item {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
@media (min-width: 1280px) {
  .l-footer__ftr .sub__list {
    gap: 2.5rem;
  }
}

.l-main {
  padding-top: 0;
}

section.alignfull.is-style-c-section-bg-left .wrap, section.alignfull.is-style-c-section-bg-right .wrap {
  max-width: none;
}
@media (min-width: 1360px) {
  section.alignfull.is-style-c-section-bg-left::after, section.alignfull.is-style-c-section-bg-right::after {
    min-width: 65%;
  }
}
section.alignfull .c-section__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 1.5;
  position: absolute;
  top: -3.75rem;
}
section.alignfull .c-section__title .heading-jp {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  section.alignfull .c-section__title .heading-jp {
    font-size: 1rem;
  }
}
@media (min-width: 980px) {
  section.alignfull .c-section__title .heading-jp {
    font-size: 1rem;
  }
}
@media (min-width: 1360px) {
  section.alignfull .c-section__title .heading-jp {
    font-size: 1.125rem;
  }
}
section.alignfull .c-section__title .heading-en {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  section.alignfull .c-section__title .heading-en {
    font-size: 2.75rem;
  }
}
@media (min-width: 980px) {
  section.alignfull .c-section__title .heading-en {
    font-size: 3rem;
  }
}
@media (min-width: 1360px) {
  section.alignfull .c-section__title .heading-en {
    font-size: 3.25rem;
  }
}
@media (min-width: 1360px) {
  section.alignfull .c-section__title {
    top: -4.5rem;
  }
}
section.alignfull .c-content {
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: normal;
  max-width: 500px;
}
section.alignfull .c-content__title {
  line-height: 1;
}
section.alignfull .c-lineArt {
  z-index: -1;
}
section.alignfull::after {
  z-index: -2;
}
@media (min-width: 768px) {
  section.alignfull .c-photo img {
    position: relative;
    top: -40px;
  }
}
@media (min-width: 980px) {
  section.alignfull .c-photo img {
    top: 0;
  }
}

.p-fv__hero {
  height: 600px;
  width: 100%;
}
.p-fv__hero .splide__track, .p-fv__hero .splide__list, .p-fv__hero .splide__slide {
  height: 100%;
  padding: 0;
}
.p-fv__hero .splide__list {
  flex-direction: row;
}
.p-fv__hero figure {
  height: 100%;
  width: 100%;
}
.p-fv__hero figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.p-fv__hero .splide__slide._001 figure img {
  -o-object-position: center 65%;
     object-position: center 65%;
}
.p-fv__hero .splide__slide._002 figure img {
  -o-object-position: center 80%;
     object-position: center 80%;
}
.p-fv__hero .splide__slide._003 figure img {
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 767px) {
  .p-fv__hero .splide__slide._001 figure img {
    -o-object-position: 85% top;
       object-position: 85% top;
  }
  .p-fv__hero .splide__slide._002 figure img {
    -o-object-position: 25% top;
       object-position: 25% top;
  }
}
@media screen and (max-height: 700px) {
  .p-fv__hero {
    height: 550px;
  }
}
@media (min-width: 980px) {
  .p-fv__hero {
    height: 700px;
  }
}
.p-fv__cc {
  color: #FFFFFF;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.p-fv__cc--jp {
  font-size: 1rem;
  line-height: 1.5;
  transition: 0.3s;
  text-shadow: 0 0 8px rgba(32, 28, 37, 0.6);
}
.p-fv__cc--en {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  transition: 0.3s;
  text-shadow: 0 0 8px rgba(32, 28, 37, 0.4);
}
@media (min-width: 768px) {
  .p-fv__cc {
    left: 1.25rem;
    bottom: 1.25rem;
  }
  .p-fv__cc--jp {
    font-size: 1.25rem;
  }
  .p-fv__cc--en {
    font-size: 4.5rem;
  }
}
@media (min-width: 980px) {
  .p-fv__cc {
    left: 2.5rem;
    bottom: 2.5rem;
  }
  .p-fv__cc--en {
    font-size: 6rem;
  }
}
.p-fv__scroll-down {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  writing-mode: vertical-rl;
  color: #FFFFFF;
  text-transform: capitalize;
  font-size: 1.25rem;
  position: absolute;
  right: 20px;
  bottom: -3rem;
}
.p-fv__scroll-down span {
  display: block;
  text-shadow: 0 0 8px rgba(32, 28, 37, 0.3);
}
.p-fv__scroll-down::after {
  content: "";
  height: 100px;
  width: 1px;
  animation: scroll 2s infinite;
  background-color: #FFFFFF;
  position: relative;
  right: 3px;
}
@media (max-width: 767px) {
  .p-fv__scroll-down {
    display: none;
  }
}
@media (min-width: 980px) {
  .p-fv__scroll-down {
    right: 40px;
    bottom: -2.5rem;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media (max-width: 1280px) {
  section.p-recruit .is-style-c-inner .c-lineArt {
    left: 2rem;
  }
}
@media (max-width: 979px) {
  section.p-recruit .is-style-c-inner .c-lineArt {
    left: -30%;
  }
}
section.p-recruit .is-style-c-inner .is-style-with-arrow {
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 980px) {
  section.p-recruit .is-style-c-inner .is-style-with-arrow {
    margin-left: 0;
    margin-right: auto;
  }
}

section.p-shoplist .is-style-c-inner .c-lineArt {
  opacity: 0.5;
  top: -35%;
}
@media (max-width: 767px) {
  section.p-shoplist .is-style-c-inner .c-lineArt {
    width: 400px;
  }
}
@media (min-width: 768px) {
  section.p-shoplist .is-style-c-inner .c-lineArt {
    top: -55%;
    opacity: 0.4;
  }
}
@media (max-width: 979px) {
  section.p-shoplist .is-style-c-inner .c-lineArt {
    right: -15%;
  }
}
@media (min-width: 980px) {
  section.p-shoplist .is-style-c-inner .c-lineArt {
    opacity: 0.3;
    top: -45%;
  }
}

section.p-newslist {
  margin-bottom: 0;
}
section.p-newslist.no-post .is-style-c-inner {
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: normal;
}
section.p-newslist .is-style-c-inner {
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: normal;
}
@media (min-width: 768px) {
  section.p-newslist {
    margin-bottom: 2rem;
  }
  section.p-newslist .is-style-c-inner {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    grid-template-areas: "title more" "list list";
    gap: 2.5rem;
  }
}
@media (min-width: 980px) {
  section.p-newslist .is-style-c-inner {
    grid-template-areas: "title list" "more list";
    gap: 0 3.5rem;
  }
}
section.p-newslist .c-section__title {
  grid-area: title;
}
@media (min-width: 768px) {
  section.p-newslist .c-section__title {
    position: relative;
    top: 0;
  }
}
section.p-newslist ul {
  grid-area: list;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #BCBDC5;
}
@media (min-width: 980px) {
  section.p-newslist ul {
    max-width: 720px;
  }
}
section.p-newslist li {
  width: 100%;
  border-top: 1px solid #BCBDC5;
}
section.p-newslist li a {
  padding: 1rem 0;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 4px 1rem;
  flex-wrap: wrap;
  color: #201C25;
  text-decoration-color: transparent;
}
section.p-newslist li a time {
  font-size: 0.875rem;
  flex-shrink: 0;
}
section.p-newslist li a .c-category {
  flex-shrink: 0;
}
section.p-newslist li a p {
  font-size: 1rem;
  width: 100%;
  -webkit-text-decoration: underline 1px solid transparent;
          text-decoration: underline 1px solid transparent;
  transition: 0.3s;
}
section.p-newslist li a:hover time {
  color: #003F1A;
}
section.p-newslist li a:hover p {
  color: #003F1A;
  text-decoration-color: #003F1A;
}
@media (min-width: 768px) {
  section.p-newslist li a {
    padding: 1.5rem 0;
    flex-wrap: nowrap;
    gap: 2rem;
  }
  section.p-newslist li a time {
    font-size: 1rem;
  }
  section.p-newslist li a p {
    width: auto;
  }
}
section.p-newslist .is-style-with-arrow {
  grid-area: more;
  margin-left: auto;
  margin-right: 1rem;
}
@media (max-width: 375px) {
  section.p-newslist .is-style-with-arrow {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  section.p-newslist .is-style-with-arrow {
    margin-right: 0;
  }
}
@media (min-width: 980px) {
  section.p-newslist .is-style-with-arrow {
    margin-left: 0;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) and (min-height: 500px) {
  .l-aside {
    transition: 0.3s;
  }
  .l-aside:not(.scroll) .c-banner {
    border: 1px solid #FFFFFF;
    border-right: none;
    background-color: rgba(32, 28, 37, 0.2);
  }
  .l-aside:not(.scroll) .c-banner a {
    color: #FFFFFF;
  }
  .l-aside:not(.scroll) .c-banner a::after {
    background-image: url(../images/icon/ar-white.svg);
  }
  .l-aside:not(.scroll) .c-banner + .c-banner {
    border-top: none;
  }
}