  @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,
sub,
sup,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers
*/
article,
aside,
main,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-txt-primary: #000;
  --color-txt-secondary: #666;
  --color-txt-third: #222;
  --color-pink--01: #EF858C;
  --color-pink--02: #F5B2B2;
  --color-txt-link: #000;
  --color-gray--01: #C3C3C3;
  --color-gray--02: #D9D9D9;
  --color-gray--03: #DCDCDC;
  --color-gray--04: #CCC;
  --color-red--01: #B5333B;
  --color-red--02: #DE5D50;
  --color-black--01: #595656;
  --color-black--02: #4B4B4B;
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root :root {
    --leading-trim: 0px;
  }
}
* {
  box-sizing: border-box;
}

.link {
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
.link:hover {
  opacity: 0.7;
}

/* common:start */
[v-cloak] {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 游明朝体, "Yu Mincho", YuMincho, ヒラギノ明朝Pro, "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  position: fixed;
  margin: 0;
  padding: 0;
  letter-spacing: 0.0001em;
  color: var(--color-txt-primary);
  background-color: #fff;
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
  min-height: 100dvh;
}
body.is_loaded {
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .u-use--pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .u-use--sp {
    display: none !important;
  }
}
img,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.txt-center {
  display: block;
  text-align: center;
}

.l-wrapper {
  padding-top: 5.8333333333vw;
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    padding-top: 8vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-wrapper {
    padding-top: 70px;
  }
}

.l-main {
  background: #FFF;
}
.l-main .await {
  opacity: 0;
  translate: 0 100px;
}
.l-main .await.show {
  opacity: 1;
  translate: 0;
  transition: translate 0.4s, opacity 0.3s;
}
.l-main .modal_close {
  position: absolute;
  font-size: 1em;
  top: 2em;
  left: 2em;
  width: 3em;
  aspect-ratio: 1;
  cursor: pointer;
  transition: opacity 0.5s ease-out;
  outline: none;
}
@media screen and (max-width: 768px) {
  .l-main .modal_close {
    top: 15px;
    left: 5vw;
    z-index: 10;
  }
}
.l-main .modal_close::before, .l-main .modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.l-main .modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-main .modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-main .modal_close:hover, .l-main .modal_close:focus {
  opacity: 0.6;
}
.l-main .movie_wrap01 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  font-size: 1em;
  background-color: rgb(0, 0, 0);
  color: #fafafa;
  gap: 1em 0;
  -webkit-transform: translateY(100svh);
  transform: translateY(100svh);
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  opacity: 0;
  z-index: 100;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .l-main .movie_wrap01 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.l-main .movie_wrap01.open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-name: MovieOpen;
  animation-name: MovieOpen;
  -webkit-animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.l-main .movie_wrap01 .movie_wrap01__inner {
  width: 80vh;
  max-width: 960px;
  aspect-ratio: 16/9;
}
@media (max-width: 767px) and (orientation: portrait) {
  .l-main .movie_wrap01 .movie_wrap01__inner {
    max-width: unset;
    width: 90vw;
  }
}
.l-main .movie_wrap01 h4 {
  position: relative;
  font-size: max(12px, 1.5em);
}
@media (max-width: 767px) and (orientation: portrait) {
  .l-main .movie_wrap01 h4 {
    max-width: 82vw;
  }
}
.l-main .movie_wrap01 .location {
  position: relative;
  font-size: max(12px, 1em);
  letter-spacing: 0.08em;
}
@media (max-width: 767px) and (orientation: portrait) {
  .l-main .movie_wrap01 .location {
    width: 82vw;
  }
}
.l-main .movie_wrap01 p {
  position: relative;
  font-size: max(12px, 0.875em);
  max-width: 45em;
  letter-spacing: 0.04em;
  line-height: 1.8em;
}
@media (max-width: 767px) and (orientation: portrait) {
  .l-main .movie_wrap01 p {
    width: 82vw;
    text-align: justify;
  }
}
.l-main .movie_wrap01 .c-participation {
  border-top: #FFF 1px solid;
  padding-top: 16px;
}
.l-main .graphic_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1em;
  background-color: rgb(0, 0, 0);
  padding-top: 2vh;
  padding-bottom: 2vh;
  padding-left: 8vw;
  padding-right: 8vw;
  color: #fafafa;
  -webkit-transition: 0.5s ease-out 0.5s;
  transition: 0.5s ease-out 0.5s;
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}
@media screen and (max-width: 768px) {
  .l-main .graphic_wrap {
    padding-top: 80px;
    padding-bottom: 16vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
.l-main .graphic_wrap.open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-name: GraphicOpen;
  animation-name: GraphicOpen;
  -webkit-animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.l-main .graphic_wrap .link-page {
  position: absolute;
  top: 1em;
  right: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: max(12px, 0.875em);
  letter-spacing: 0.04em;
  line-height: 1em;
  color: #068e55;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .l-main .graphic_wrap .link-page {
    top: 15px;
  }
}
@media (max-width: 768px) and (orientation: portrait) {
  .l-main .graphic_wrap .link-page {
    top: 13px;
  }
}
.l-main .graphic_wrap .link-page i {
  font-size: 1em;
}
.l-main .graphic_wrap .link-page::before {
  content: "";
  position: absolute;
  top: 105%;
  right: 0.75em;
  width: 1.6em;
  aspect-ratio: 1/1.55;
  background: url(/corporate/ad/goodneighborwood/assets/img/top/arrow.svg) no-repeat center center/contain;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.l-main .graphic_wrap .link-page:hover {
  color: #f5fffb;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.l-main .graphic_wrap .link-page:hover::before {
  -webkit-filter: brightness(0%) invert(98);
  filter: brightness(0%) invert(98);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.l-main .graphic_wrap .link_pdf {
  position: absolute;
  right: 2em;
  bottom: 2em;
  width: 5em;
  aspect-ratio: 24/25;
  font-size: 1em;
  z-index: 1;
  transition: opacity 0.5s ease-out;
}
@media (max-width: 767px) and (orientation: portrait) {
  .l-main .graphic_wrap .link_pdf {
    bottom: 4.2666666667vw;
    width: 12vw;
  }
}
.l-main .graphic_wrap .link_pdf:hover, .l-main .graphic_wrap .link_pdf:focus {
  opacity: 0.6;
}
.l-main .graphic_wrap .link_pdf.pdf-none {
  opacity: 0;
  visibility: hidden;
}
.l-main .graphic_wrap .graphic_wrap__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  width: 95%;
  height: 95%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-main .graphic_wrap .graphic_wrap__inner {
    justify-content: flex-start;
    overflow-y: scroll;
  }
}
.l-main .graphic_wrap .graphic_wrap__inner img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767px) and (orientation: portrait) {
  .l-main .graphic_wrap .graphic_wrap__inner img {
    position: unset;
  }
}
@media screen and (min-width: 769px) {
  .l-main .graphic_wrap .graphic_wrap__inner img {
    height: calc(100% - 100px);
  }
}
.l-main .graphic_wrap .graphic_wrap__inner .graphic_wrap__txt {
  font-size: 14px;
  line-height: 1.3;
  padding-top: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-main .graphic_wrap .graphic_wrap__inner .graphic_wrap__txt {
    width: max(48%, 590px);
  }
}
.l-main .modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.l-main h4 {
  font-size: max(12px, 1.5em);
}

@-webkit-keyframes MovieOpen {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100svh);
    transform: translateY(100svh);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes MovieOpen {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100svh);
    transform: translateY(100svh);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes GraphicOpen {
  0% {
    opacity: 0;
    z-index: -1;
  }
  1% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 10;
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 10;
  }
}
@keyframes GraphicOpen {
  0% {
    opacity: 0;
    z-index: -1;
  }
  1% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 10;
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 10;
  }
}
.c-txt {
  font-size: clamp(16px, 4.2666666667vw, 18px);
}
.c-txt--lower {
  font-size: 16px;
  line-height: 1.75;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dfdfdf;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top: 5px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-line {
  width: 0;
  height: 2px;
  background-color: #000;
  margin-top: 40px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.c-loading--hd {
  max-width: 840px;
  width: 100%;
  margin-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .c-loading--hd {
    max-width: 340px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .c-loading--hd-main {
    height: 41px;
  }
}
.c-loading--hd-sub {
  width: 40.2380952381%;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .c-loading--hd-sub {
    width: 268px;
    height: 18px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

@keyframes slideTxt {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
/* common:end */
.l-header {
  height: 100%;
}
.l-header__main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.8333333333vw;
  z-index: 10;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-header__main {
    height: 8vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-header__main {
    height: 70px;
  }
}
.l-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8.3333333333%;
  padding-right: 4.1666666667%;
}
@media screen and (max-width: 768px) {
  .l-header__container {
    padding-left: 4.9333333333vw;
    padding-right: 0;
  }
}
.l-header__logo {
  display: flex;
  width: 170px;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 22.6666666667vw;
    height: 4.1333333333vw;
  }
}
.l-header__logo img {
  max-width: 170px;
}
@media screen and (max-width: 768px) {
  .l-header__logo img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__list {
  display: flex;
}
.l-header__item + .l-header__item {
  border-left: 1px solid #000;
}
.l-header__item-link {
  display: block;
  box-sizing: border-box;
  font-size: 1.5vw;
  text-transform: uppercase;
  line-height: 1.3;
  padding-top: 0.4166666667vw;
  padding-left: 3.3333333333vw;
  padding-right: 3.3333333333vw;
  transition: opacity 0.5s ease-out;
}
@media screen and (min-width: 1201px) {
  .l-header__item-link {
    font-size: 18px;
    padding-top: 5px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.l-header__item-link:hover {
  opacity: 0.6;
}
.l-header .hamburger-button {
  position: fixed;
  top: 0;
  right: 4.8vw;
  width: 8vw;
  height: 8vw;
  aspect-ratio: 1;
  z-index: 100;
  mix-blend-mode: exclusion;
}
@media screen and (min-width: 769px) {
  .l-header .hamburger-button {
    display: none;
  }
}
.l-header .hamburger-button i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.3333333333vw;
  height: 0.2666666667vw;
  min-height: 1px;
  background-color: #fafafa;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.l-header .hamburger-button i:nth-of-type(1) {
  -webkit-transform: translate(-50%, calc(-50% - 1.8666666667vw));
  transform: translate(-50%, calc(-50% - 1.8666666667vw));
}
.l-header .hamburger-button i:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.l-header .hamburger-button i:nth-of-type(3) {
  -webkit-transform: translate(-50%, calc(-50% + 1.8666666667vw));
  transform: translate(-50%, calc(-50% + 1.8666666667vw));
}
.l-header .hamburger-button.open {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.l-header .hamburger-button.open i:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}
.l-header .hamburger-button.open i:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
}
.l-header .hamburger-button.open i:nth-of-type(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}
.l-header .hamburger-button.erase {
  opacity: 0;
  pointer-events: none;
}
.l-header .hamburger-menu {
  font-size: 1em;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
  opacity: 0;
  z-index: 99;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.l-header .hamburger-menu nav {
  position: relative;
  font-size: 1em;
  color: #fafafa;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px 0;
}
@media screen and (max-width: 768px) {
  .l-header .hamburger-menu nav {
    gap: 3.46vw 0;
  }
}
.l-header .hamburger-menu nav a {
  font-size: 35px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-filter: drop-shadow(0.1em 0.1em 0.1em rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0.1em 0.1em 0.1em rgba(0, 0, 0, 0.4));
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  -webkit-filter: blur(0.3em);
  filter: blur(0.3em);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .l-header .hamburger-menu nav a {
    font-size: max(12px, 8vw);
  }
}
.l-header .hamburger-menu.open {
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}
.l-header .hamburger-menu.open nav a {
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 1;
}
.l-header .hamburger-menu.open nav a:nth-of-type(1) {
  -webkit-transition-delay: 0.07s;
  transition-delay: 0.07s;
}
.l-header .hamburger-menu.open nav a:nth-of-type(2) {
  -webkit-transition-delay: 0.14s;
  transition-delay: 0.14s;
}
.l-header .hamburger-menu.open nav a:nth-of-type(3) {
  -webkit-transition-delay: 0.21s;
  transition-delay: 0.21s;
}
.l-header .hamburger-menu.open nav a:nth-of-type(4) {
  -webkit-transition-delay: 0.28s;
  transition-delay: 0.28s;
}
.l-header .hamburger-menu.open nav a:nth-of-type(5) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}
.l-header .hamburger-menu.open nav a:nth-of-type(6) {
  -webkit-transition-delay: 0.42s;
  transition-delay: 0.42s;
}
.l-header .hamburger-menu.open nav a:nth-of-type(7) {
  -webkit-transition-delay: 0.49s;
  transition-delay: 0.49s;
}

.l-footer {
  font-size: clamp(14px, 3.7333333333vw, 14px);
  position: relative;
  width: 100%;
  background-color: #edeee9;
}
.l-footer__inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.p-copyright {
  font-size: max(12px, 0.875em);
  color: #000;
  padding: 2em 0;
}
@media screen and (max-width: 768px) {
  .p-copyright {
    font-size: 2.4vw;
  }
}

.p-mv-swiper__slide-img {
  width: 100%;
}
.p-mv-swiper__pagination.swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .p-mv-swiper__pagination.swiper-pagination {
    height: 5.3333333333vw;
  }
}
.p-mv-swiper__pagination.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #d1d1d1;
  border-radius: 100%;
  opacity: 1;
  transition: background-color 0.4s;
}
@media screen and (max-width: 768px) {
  .p-mv-swiper__pagination.swiper-pagination .swiper-pagination-bullet {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    margin-left: 1.3333333333vw;
    margin-right: 1.3333333333vw;
  }
}
.p-mv-swiper__pagination.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #06996a;
}

.p-begin__container {
  position: relative;
  padding-top: 53%;
  background-image: url(/corporate/ad/goodneighborwood/assets/img/top/bg_begin_pc.jpg?20250825);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  .p-begin__container {
    padding-top: 124.5333333333vw;
    background-image: url(/corporate/ad/goodneighborwood/assets/img/top/bg_begin_sp.jpg?20250825);
  }
}
.p-begin__en {
  position: absolute;
  top: 0;
  left: 0;
  width: 40.0833333333%;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .p-begin__en {
    width: 61.2vw;
  }
}
.p-begin__en-img {
  width: 100%;
}
.p-begin__content {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .p-begin__content {
    top: 49%;
  }
}
.p-begin__ttl {
  width: 16vw;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .p-begin__ttl {
    width: 33.3333333333vw;
    margin-bottom: 4vw;
  }
}
.p-begin__ttl-img {
  width: 100%;
}
.p-begin__txt {
  font-size: 1.3333333333vw;
  font-weight: 400;
  line-height: 2.625;
  letter-spacing: 0.07em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-begin__txt {
    font-size: 3.7333333333vw;
    line-height: 2.0714285714;
  }
}
.p-begin.await.show .p-begin__en,
.p-begin.await.show .p-begin__ttl,
.p-begin.await.show .p-begin__txt-wrap {
  animation: slideTxt 0.9s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s normal forwards;
}

.p-wood__container--kentiku, .p-wood__container--mokuzai, .p-wood__container--sinrin {
  position: relative;
  width: 80.1666666667%;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-wood__container--kentiku, .p-wood__container--mokuzai, .p-wood__container--sinrin {
    width: 90vw;
    padding-top: 8.6666666667vw;
    padding-bottom: 14vw;
  }
}
.p-wood__container--kentiku, .p-wood__container--sinrin {
  margin-left: auto;
}
.await.p-wood__container--kentiku, .await.p-wood__container--sinrin {
  opacity: 0;
  translate: 100% 0;
}
.await.show.p-wood__container--kentiku, .await.show.p-wood__container--sinrin {
  opacity: 1;
  translate: 0;
  transition: translate 0.4s, opacity 0.3s;
}
.p-wood__container--mokuzai {
  margin-right: auto;
}
.await.p-wood__container--mokuzai {
  opacity: 0;
  translate: -100% 0;
}
.await.show.p-wood__container--mokuzai {
  opacity: 1;
  translate: 0;
  transition: translate 0.4s, opacity 0.3s;
}
.await.show.p-wood__container--kentiku .p-wood__en--kentiku, .await.show.p-wood__container--kentiku .p-wood__en--mokuzai, .await.show.p-wood__container--kentiku .p-wood__en--sinrin, .await.show.p-wood__container--mokuzai .p-wood__en--kentiku, .await.show.p-wood__container--mokuzai .p-wood__en--mokuzai, .await.show.p-wood__container--mokuzai .p-wood__en--sinrin, .await.show.p-wood__container--sinrin .p-wood__en--kentiku, .await.show.p-wood__container--sinrin .p-wood__en--mokuzai, .await.show.p-wood__container--sinrin .p-wood__en--sinrin,
.await.show.p-wood__container--kentiku .p-wood__ttl--kentiku,
.await.show.p-wood__container--kentiku .p-wood__ttl--mokuzai,
.await.show.p-wood__container--kentiku .p-wood__ttl--sinrin,
.await.show.p-wood__container--mokuzai .p-wood__ttl--kentiku,
.await.show.p-wood__container--mokuzai .p-wood__ttl--mokuzai,
.await.show.p-wood__container--mokuzai .p-wood__ttl--sinrin,
.await.show.p-wood__container--sinrin .p-wood__ttl--kentiku,
.await.show.p-wood__container--sinrin .p-wood__ttl--mokuzai,
.await.show.p-wood__container--sinrin .p-wood__ttl--sinrin,
.await.show.p-wood__container--kentiku .p-wood__txt-wrap,
.await.show.p-wood__container--mokuzai .p-wood__txt-wrap,
.await.show.p-wood__container--sinrin .p-wood__txt-wrap {
  animation: slideTxt 0.9s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s normal forwards;
}
.p-wood__en--kentiku, .p-wood__en--mokuzai, .p-wood__en--sinrin {
  position: absolute;
  bottom: 0;
  z-index: 1;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .p-wood__en--kentiku, .p-wood__en--mokuzai, .p-wood__en--sinrin {
    bottom: auto;
    top: 0;
  }
}
.p-wood__bg--left, .p-wood__bg--right {
  position: relative;
  width: 94.5945945946%;
  height: 50.8333333333vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-wood__bg--left, .p-wood__bg--right {
    width: 85.3333333333vw;
    height: 58.6666666667vw;
  }
}
.p-wood__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  aspect-ratio: 1/1;
}
.p-wood__inner--right {
  position: absolute;
  bottom: -13px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-wood__inner--right {
    bottom: -2.6666666667vw;
  }
}
.p-wood__inner--left {
  position: absolute;
  bottom: -13px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-wood__inner--left {
    bottom: -2.6666666667vw;
  }
}
.p-wood__ttl--kentiku, .p-wood__ttl--mokuzai, .p-wood__ttl--sinrin {
  margin-bottom: 10px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .p-wood__ttl--kentiku, .p-wood__ttl--mokuzai, .p-wood__ttl--sinrin {
    margin-bottom: 2.6666666667vw;
  }
}
.p-wood__txt--left, .p-wood__txt {
  font-size: 1.3333333333vw;
  font-weight: 400;
  line-height: 2.625;
  letter-spacing: 0.07em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-wood__txt--left, .p-wood__txt {
    font-size: 3.7333333333vw;
    line-height: 2.0714285714;
  }
}

.p-wood__contents {
  padding-top: 8.3333333333vw;
  padding-bottom: 16.6666666667vw;
  background: linear-gradient(to bottom, #cadcc5, #679463);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-wood__contents {
    padding-top: 16vw;
    padding-bottom: 21.3333333333vw;
  }
}
.p-wood__content + .p-wood__content {
  margin-top: 16.6666666667vw;
}
@media screen and (max-width: 768px) {
  .p-wood__content + .p-wood__content {
    margin-top: 17.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .p-wood__container--sinrin {
    padding-bottom: 22vw;
  }
}
.p-wood__en--sinrin {
  right: 0;
  width: 31.75vw;
}
@media screen and (max-width: 768px) {
  .p-wood__en--sinrin {
    width: 48.9333333333vw;
  }
}
.p-wood__en--mokuzai {
  left: 0;
  width: 26.3333333333vw;
}
@media screen and (max-width: 768px) {
  .p-wood__en--mokuzai {
    width: 41.0666666667vw;
  }
}
.p-wood__en--kentiku {
  right: 0;
  width: 58.8333333333vw;
}
@media screen and (max-width: 768px) {
  .p-wood__en--kentiku {
    width: 79.2vw;
  }
}
.p-wood__en-img {
  width: 100%;
}
.p-wood__bg--right {
  margin-left: auto;
}
.p-wood__bg--left {
  margin-right: auto;
}
.p-wood__bg-inner {
  display: block;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
}
.p-wood__ttl--sinrin {
  width: 6.6666666667vw;
}
@media screen and (max-width: 768px) {
  .p-wood__ttl--sinrin {
    width: 13.2vw;
  }
}
.p-wood__ttl--mokuzai {
  width: 6.75vw;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-wood__ttl--mokuzai {
    width: 13.2vw;
  }
}
.p-wood__ttl--kentiku {
  width: 6.6666666667vw;
}
@media screen and (max-width: 768px) {
  .p-wood__ttl--kentiku {
    width: 13.2vw;
  }
}
.p-wood__ttl-img {
  width: 100%;
}
.p-wood__txt--left {
  text-align: end;
}
.p-wood__txt-wrap {
  display: inline-block;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.p-gallery-archive__ttl--graphic, .p-gallery-archive__ttl--news, .p-gallery-archive__ttl--cm {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__ttl--graphic, .p-gallery-archive__ttl--news, .p-gallery-archive__ttl--cm {
    margin-bottom: 4.6666666667vw;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }
}
.p-gallery-archive__ttl--graphic picture, .p-gallery-archive__ttl--news picture, .p-gallery-archive__ttl--cm picture {
  display: flex;
}
.p-gallery-archive__cat--kentiku, .p-gallery-archive__cat--sinrin, .p-gallery-archive__cat--mokuzai, .p-gallery-archive__cat--kanousei {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25vw;
  line-height: 1;
  width: 9.3333333333vw;
  height: 2.1666666667vw;
  padding-top: 0.25vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__cat--kentiku, .p-gallery-archive__cat--sinrin, .p-gallery-archive__cat--mokuzai, .p-gallery-archive__cat--kanousei {
    font-size: 4.2666666667vw;
    width: 30.1333333333vw;
    height: 7.4666666667vw;
    padding-top: 0.8vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-gallery-archive__cat--kentiku, .p-gallery-archive__cat--sinrin, .p-gallery-archive__cat--mokuzai, .p-gallery-archive__cat--kanousei {
    font-size: 15px;
    width: 112px;
    height: 26px;
    padding-top: 3px;
  }
}
.p-gallery-archive__thum--graphic, .p-gallery-archive__thum {
  position: relative;
  overflow: hidden;
}
.p-gallery-archive__img--graphic, .p-gallery-archive__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s;
}
.p-gallery-archive__block {
  display: block;
}

.p-gallery__head {
  padding-top: 140px;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-gallery__head {
    padding-top: 21.3333333333vw;
    padding-bottom: 9.3333333333vw;
  }
}
.p-gallery__ttl {
  width: 286px;
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-gallery__ttl {
    width: 50.6666666667vw;
    margin-bottom: 6vw;
  }
}
.p-gallery__txt {
  font-size: 18px;
  font-feature-settings: "palt";
  font-weight: 500;
  line-height: 1.7777777778;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-gallery__txt {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
  }
}
.p-gallery-latest {
  background-color: #f8f1e2;
}
.p-gallery-latest__container {
  width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-gallery-latest__container {
    width: 90vw;
    padding-top: 13.3333333333vw;
    padding-bottom: 16vw;
  }
}
.p-gallery-latest__ttl {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-gallery-latest__ttl {
    width: 54vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-gallery-latest__content {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-gallery-latest__content {
    margin-top: 6.6666666667vw;
  }
}
.p-gallery-latest__box {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.p-gallery-latest__box:hover .p-gallery-latest__box-img {
  scale: 1.05;
}
.p-gallery-latest__thum {
  position: relative;
}
.p-gallery-latest__thum::before {
  content: "";
  width: 64px;
  height: 64px;
  background: url(/corporate/ad/goodneighborwood/assets/img/top/movie-arrow.svg) no-repeat left top;
  background-size: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-gallery-latest__thum::before {
    width: 17.0666666667vw;
    height: 17.0666666667vw;
    background-size: 17.0666666667vw;
  }
}
.p-gallery-latest__box-img {
  width: 100%;
  transition: scale 0.3s;
}
.p-gallery-archive__contents {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 180px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__contents {
    max-width: 80vw;
    padding-top: 13.3333333333vw;
    padding-bottom: 21.3333333333vw;
    padding-left: 0;
  }
}
.p-gallery-archive__content + .p-gallery-archive__content {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__content + .p-gallery-archive__content {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__ttl--cm {
    width: 18vw;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__ttl--news {
    width: 17.2vw;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__ttl--graphic {
    width: 27.7333333333vw;
  }
}
.p-gallery-archive__slider {
  position: relative;
  max-width: 1080px;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__slider {
    max-width: 100%;
  }
}
.p-gallery-archive__box {
  position: relative;
  display: block;
  cursor: pointer;
}
.p-gallery-archive__box::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.6);
  z-index: 1;
  content: "";
}
.p-gallery-archive__box:hover .p-gallery-archive__img {
  scale: 1.05;
}
.p-gallery-archive__taxonomy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-gallery-archive__cat--kanousei {
  background-color: #8a9fac;
}
.p-gallery-archive__cat--mokuzai {
  background-color: #9c8b68;
}
.p-gallery-archive__cat--sinrin {
  background-color: #829673;
}
.p-gallery-archive__cat--kentiku {
  background-color: #916968;
}
.p-gallery-archive__thum {
  padding-top: 55.4838709677%;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__thum {
    padding-top: 45.0666666667vw;
  }
}
.p-gallery-archive__thum--graphic {
  padding-top: 135.4838709677%;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__thum--graphic {
    padding-top: 108vw;
  }
}
.p-gallery-archive__img--graphic {
  object-fit: contain;
}
.p-gallery-archive__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5vw;
  font-feature-settings: "palt";
  line-height: 1.7777777778;
  text-align: center;
  width: 100%;
  z-index: 1;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__txt {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-gallery-archive__txt {
    font-size: 18px;
  }
}
.p-gallery-archive__txt-small {
  font-size: 1.3333333333vw;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive__txt-small {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-gallery-archive__txt-small {
    font-size: 16px;
  }
}
.p-gallery-archive .swiper-button-prev,
.p-gallery-archive .swiper-button-next {
  width: 43px;
  height: 43px;
  margin: 0;
  transform: translateY(-50%);
  border-radius: 100%;
  background-color: #d9d9d9;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive .swiper-button-prev,
  .p-gallery-archive .swiper-button-next {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
}
.p-gallery-archive .swiper-button-prev::before,
.p-gallery-archive .swiper-button-next::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 9px;
  height: 9px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  content: "";
}
@media screen and (max-width: 768px) {
  .p-gallery-archive .swiper-button-prev::before,
  .p-gallery-archive .swiper-button-next::before {
    left: 45%;
    width: 1.7333333333vw;
    height: 1.7333333333vw;
  }
}
.p-gallery-archive .swiper-button-prev::after,
.p-gallery-archive .swiper-button-next::after {
  content: none;
}
.p-gallery-archive .swiper-button-prev {
  left: -1.6363636364%;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .p-gallery-archive .swiper-button-prev {
    left: -5.0666666667vw;
  }
}
.p-gallery-archive .swiper-button-next {
  right: 9.0909090909%;
}
@media screen and (max-width: 768px) {
  .p-gallery-archive .swiper-button-next {
    right: -5.0666666667vw;
  }
}

.p-cast__hd--movie, .p-cast__hd--cast {
  margin-left: auto;
  margin-right: auto;
}

.p-cast {
  margin-bottom: 80px;
  padding-top: 140px;
  padding-bottom: 140px;
  background-color: #deebec;
}
@media screen and (max-width: 768px) {
  .p-cast {
    margin-bottom: 18.6666666667vw;
    padding-top: 21.3333333333vw;
    padding-bottom: 21.3333333333vw;
  }
}
.p-cast__mv {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .p-cast__mv {
    margin-bottom: 120px;
  }
}
.p-cast__mv__img {
  width: 100%;
  height: auto;
}
.p-cast__body {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-cast__body {
    width: 90.1333333333vw;
  }
}
.p-cast__hd--cast {
  width: 163px;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .p-cast__hd--cast {
    width: 28.6666666667vw;
    margin-bottom: 6.6666666667vw;
  }
}
.p-cast__hd--movie {
  width: 329px;
  margin-top: 105px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .p-cast__hd--movie {
    width: 65.3333333333vw;
    margin-top: 18.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-cast__hd-img {
  width: 100%;
}
.p-cast__txt, .p-cast__txt--center {
  font-size: 18px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.77777;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-cast__txt, .p-cast__txt--center {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
  }
}
.p-cast__txt--center {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-cast__txt--center {
    margin-bottom: 9.3333333333vw;
  }
}
.p-cast__container {
  width: 100%;
  max-width: 912px;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-cast__container {
    width: 90.1333333333vw;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.p-cast__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-cast__inner {
    display: block;
  }
}
.p-cast__item {
  width: 346px;
}
@media screen and (max-width: 768px) {
  .p-cast__item {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-cast__item + .p-cast__item {
    margin-top: 10vw;
    padding-top: 10.6666666667vw;
    border-top: 0.2666666667vw solid #acb3b3;
  }
}
.p-cast__photo {
  width: 100%;
}
.p-cast__desc {
  margin: 40px 0 0;
  display: grid;
  grid-template-rows: auto 0fr auto;
  transition: grid-template-rows 0.7s;
}
@media screen and (max-width: 768px) {
  .p-cast__desc {
    width: 100%;
    margin-top: 6.6666666667vw;
  }
}
.p-cast__desc.open {
  grid-template-rows: auto 1fr auto;
  transition: grid-template-rows 0.5s;
}
.p-cast__desc.open .p-cast__profile {
  padding-bottom: 20px;
}
.p-cast__name {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .p-cast__name {
    font-size: 7.2vw;
    font-weight: 400;
    margin-bottom: 4.6666666667vw;
  }
}
.p-cast__img {
  width: 100%;
}
.p-cast__movie {
  display: block;
  width: 640px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-cast__movie {
    width: 100%;
  }
}
.p-cast__movie__img {
  width: 100%;
  transition: scale 0.3s;
}
.p-cast__movie:hover .p-cast__movie__img {
  scale: 1.05;
}
.p-cast__movie-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  width: 460px;
  height: 56px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.3440366972%;
  padding-left: 8.6009174312%;
  background-color: #fff;
  transition: opacity 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .p-cast__movie-btn {
    justify-content: flex-end;
    width: 100%;
    font-size: 4vw;
    height: 12vw;
    margin-top: 5.3333333333vw;
    padding-top: 0;
    padding-left: 0;
    padding-right: 16vw;
  }
}
.p-cast__movie-btn::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 13.0434782609%;
  transform: translateY(-50%);
  width: 20px;
  height: 7px;
  background-image: url(/corporate/ad/goodneighborwood/assets/img/top/button_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 768px) {
  .p-cast__movie-btn::before {
    right: 8vw;
    width: 4.8vw;
    height: 1.6vw;
  }
}
.p-cast__movie-btn:hover {
  opacity: 0.6;
}
.p-cast__movie-thum {
  position: relative;
}
.p-cast__movie-thum::before {
  content: "";
  width: 64px;
  height: 64px;
  background: url(/corporate/ad/goodneighborwood/assets/img/top/movie-arrow.svg) no-repeat left top;
  background-size: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-cast__movie-thum::before {
    width: 17.0666666667vw;
    height: 17.0666666667vw;
    background-size: 17.0666666667vw;
  }
}
.p-cast__profile {
  overflow: hidden;
}
.p-cast__btn {
  font-size: 14px;
  color: #000;
  background-color: #efefef;
  border: none;
  border-radius: 0;
  width: min(100%, 300px);
  height: 61px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}
.p-cast__btn::before, .p-cast__btn::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 1px;
  background-color: #000;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
}
.p-cast__btn::before {
  rotate: 90deg;
  transition: rotate 0.2s;
}
.p-cast__btn.open::before {
  rotate: 0deg;
  transition: rotate 0.3s;
}

.p-attempt {
  background: #FFF;
}
.p-attempt__hd {
  background-color: #e2f0da;
  text-align: center;
  padding: 30px 0;
  font-size: 50px;
  font-feature-settings: "palt";
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .p-attempt__hd {
    font-size: 5.6vw;
    padding: 1em 0;
    margin-bottom: 10.6666666667vw;
  }
}
.p-attempt__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 40px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-attempt__list {
    gap: 10.6666666667vw;
    width: 90.1333333333vw;
    margin-bottom: 26.6666666667vw;
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .p-attempt__list {
    width: 100%;
    max-width: 1040px;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 105px;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 769px) {
  .p-attempt__item {
    max-width: 445px;
  }
}
.p-attempt__link:hover .p-attempt__img {
  scale: 1.05;
  transition: scale 0.3s;
}
.p-attempt__link.movie_box .p-attempt__thumbnail {
  position: relative;
}
.p-attempt__link.movie_box .p-attempt__thumbnail::before {
  content: "";
  width: 64px;
  height: 64px;
  background: url(/corporate/ad/goodneighborwood/assets/img/top/movie-arrow.svg) no-repeat left top;
  background-size: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}
.p-attempt__title {
  font-size: 24px;
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0;
  color: #000;
  margin-bottom: 5px;
  margin-right: -15px;
}
@media screen and (max-width: 768px) {
  .p-attempt__title {
    font-size: 6.4vw;
    text-align: center;
    margin-bottom: 2.6666666667vw;
    margin-right: 0;
  }
}
.p-attempt__title-type {
  letter-spacing: 0.06em;
}
.p-attempt__thumbnail {
  width: 100%;
  overflow: hidden;
}
.p-attempt__img {
  width: 100%;
  object-fit: cover;
  transition: scale 0.2s;
}
.p-attempt__txt {
  font-size: 18px;
  line-height: 1.75;
  color: #000;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-attempt__txt {
    font-size: 4.8vw;
    margin-top: 2.6666666667vw;
  }
}
.p-attempt__sub dl {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1em;
  padding: 2em 0 5em;
  gap: 3em 0;
}
@media screen and (max-width: 768px) {
  .p-attempt__sub dl {
    max-width: unset;
    gap: 10vw 0;
  }
}
.p-attempt__sub dl div {
  font-size: 1em;
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 0 3em;
}
@media screen and (max-width: 768px) {
  .p-attempt__sub dl div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10vw;
  }
}
.p-attempt__sub dl div dt {
  font-size: 1em;
  width: 100%;
  min-width: 192px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-attempt__sub dl div dt {
    width: 60%;
    min-width: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.p-attempt__sub dl div dt img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-attempt__sub dl div dd {
  position: relative;
  font-size: 1em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.p-attempt__sub dl div dd p {
  font-size: max(12px, 1.125em);
  letter-spacing: 0.08em;
  text-align: justify;
  padding-top: 0.5em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-attempt__sub dl div dd p {
    font-size: 4.8vw;
  }
}
.p-attempt__sub dl div dd a {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  font-size: max(12px, 1em);
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(112, 112, 112, 0.5);
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding: 0.8em 4em 0.8em 3em;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  color: #000;
  margin-top: 0.6em;
}
@media screen and (max-width: 768px) {
  .p-attempt__sub dl div dd a {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    font-size: 4.2666666667vw;
    width: 100%;
    padding: 3.4666666667vw 17.0666666667vw 3.4666666667vw 12.8vw;
  }
}
.p-attempt__sub dl div dd a:hover {
  -webkit-filter: invert(100);
  filter: invert(100);
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.p-attempt__sub dl div dd a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1em;
  aspect-ratio: 1;
  background: url(data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2013%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m10%2010h-10v-7h10zm-9-1h8v-5h-8zm12-2h-1v-6h-5v-1h6z%22%20fill%3D%22%23333%22%2F%3E%3C%2Fsvg%3E) no-repeat center center/contain;
}

.p-concept {
  padding-top: 120px;
  padding-bottom: 110px;
  background-color: #f0f2e6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-concept {
    padding-top: 17.3333333333vw;
    padding-bottom: 16vw;
    margin-top: 0;
  }
}
.p-concept__hd {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-concept__hd {
    margin-bottom: 12.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .p-concept__hd-main {
    width: 90.6666666667vw;
    margin: 0 auto;
  }
}
.p-concept__hd-sub {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-concept__hd-sub {
    width: 71.4666666667vw;
    margin: 0 auto;
  }
}
.p-concept .c-txt {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-concept .c-txt {
    font-size: 3.7333333333vw;
    line-height: 2.0714285714;
  }
}