html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #424242;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 991px) {
  body.is-fixed {
    overflow: hidden;
  }
}
body.is-modal-fixed {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a,
button,
input[type=submit] {
  text-decoration: none;
  color: #424242;
  transition: all 0.3s;
  cursor: pointer;
}
a:hover,
button:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

strong {
  font-weight: 700;
}

input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #424242;
}

button:disabled {
  opacity: 0.7;
  pointer-events: none;
}

.is-pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

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

.text-main {
  color: #004d36;
}

.text-accent {
  color: #8d0000;
}

.text-alert {
  color: #db0000;
}

.whitespace-nowrap {
  white-space: nowrap;
}

/* Contact Form 7 */
.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 14px;
  color: #db0000;
}

.wpcf7-response-output {
  display: none !important;
}

.wpcf7-spinner {
  display: none !important;
}

/* Swiper */
.swiper {
  visibility: hidden;
}
.swiper.swiper-initialized {
  visibility: visible;
}

/* c-input */
.c-input {
  width: 100%;
  padding: 10px;
  background-color: #dcdcdc;
  font-size: 12px;
  line-height: 1.8;
  color: #000;
}

/* c-checkbox */
.c-checkbox .wpcf7-list-item {
  margin: 0;
}
.c-checkbox .wpcf7-list-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 0 10px;
  transition: background-color 0.3s, border-color 0.3s;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
}
.c-checkbox .wpcf7-list-item label:has(input:checked) {
  border-color: #004d36;
}
.c-checkbox .wpcf7-list-item label:has(input:checked):before {
  background-color: #004d36;
  border-color: #004d36;
}
.c-checkbox .wpcf7-list-item label:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  background-color: #d9d9d9;
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
  margin-top: 1px;
  text-align: center;
  transition: all 0.2s ease;
}
.c-checkbox .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.c-checkbox .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  position: absolute;
  top: 44%;
  left: 5px;
  width: 11px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}

/* c-radio */
@media screen and (max-width: 767px) {
  .c-radio {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
  }
}
.c-radio .wpcf7-list-item {
  margin: 0 30px 0 0;
}
@media screen and (max-width: 767px) {
  .c-radio .wpcf7-list-item {
    margin: 0;
  }
}
.c-radio .wpcf7-list-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 5px;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s, border-color 0.3s;
  font-size: 12px;
  line-height: 1.2;
  cursor: pointer;
}
.c-radio .wpcf7-list-item label:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background-color: #d9d9d9;
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.2s ease;
}
.c-radio .wpcf7-list-item input[type=radio],
.c-radio .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.c-radio .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label::before,
.c-radio .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #004d36;
}

/* c-select */
.c-selectWrapper {
  position: relative;
}
.c-selectWrapper:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #d9d9d9 transparent transparent transparent;
  border-width: 8px 8px 0px 8px;
}

.c-select {
  padding: 10px 14px;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  letter-spacing: 1px;
  cursor: pointer;
}
.c-select.noVal {
  color: #bcbcbc;
}

/* c-pageHeader */
.c-pageHeader {
  padding: 88px 0 131px;
}
@media screen and (max-width: 991px) {
  .c-pageHeader {
    padding: 60px 0;
  }
}
.c-pageHeader__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0 40px;
}
@media screen and (max-width: 991px) {
  .c-pageHeader__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px 0;
  }
}
.c-pageHeader__txt {
  font-size: 26px;
  font-weight: 500;
  color: #004d36;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .c-pageHeader__txt {
    font-size: 20px;
  }
}

/* c-ttl */
.c-ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  font-weight: 400;
}
.c-ttl__en {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 110px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 77, 54, 0.4);
  text-stroke: 1px rgba(0, 77, 54, 0.4);
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .c-ttl__en {
    font-size: 80px;
    white-space: unset;
  }
}
.c-ttl__ja {
  font-size: 18px;
  color: #004d36;
}
@media screen and (max-width: 991px) {
  .c-ttl__ja {
    font-size: 14px;
  }
}
.c-ttl__ja--on {
  position: absolute;
  bottom: 36px;
  left: 0;
}
@media screen and (max-width: 991px) {
  .c-ttl__ja--on {
    bottom: 24px;
  }
}
.c-ttl--sm {
  align-items: center;
}
.c-ttl--sm .c-ttl__en {
  font-size: 80px;
}
.c-ttl--sm .c-ttl__ja {
  font-size: 14px;
}

/* c-listItem */
.c-listItem {
  position: relative;
  padding-left: 16px;
}
.c-listItem:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #8d0000;
  border-width: 5px 0px 5px 9px;
}

/* c-mv */
.c-mv {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
  margin-bottom: 100px;
}
@media screen and (max-width: 1099px) {
  .c-mv {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .c-mv {
    aspect-ratio: 375/161;
    height: auto;
    margin-bottom: 60px;
  }
}
.c-mv--mbNone {
  margin-bottom: 0;
}

/* c-pagination */
.c-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  font-family: "Sorts Mill Goudy", serif;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 30px;
  }
}
.c-pagination > a.prev, .c-pagination > a.next {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 48px;
  height: 48px;
}
.c-pagination > a.prev:before, .c-pagination > a.next:before {
  content: "";
  position: absolute;
  background-image: url("../images/i_arrow_pagination.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 9px;
}
.c-pagination > a.prev:before {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.c-pagination > ul.page-numbers {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 5px;
  font-size: 24px;
}
.c-pagination > ul.page-numbers li a,
.c-pagination > ul.page-numbers li span:not(.dots) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
}
.c-pagination > ul.page-numbers li .dots {
  position: relative;
  margin: 0 10px;
}
.c-pagination > ul.page-numbers li span.current {
  background-color: #004d36;
  color: #fff;
}

/* c-btn */
.c-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 29px;
  background-color: #004d36;
  border-radius: 9999px;
  color: #fff;
  line-height: 1;
  cursor: pointer;
}
.c-btn--outline {
  background-color: transparent;
  border: 1px solid #004d36;
  color: #004d36 !important;
}
.c-btn:hover {
  transition: all 0.3s;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .c-btn {
    padding: 22px 0;
    max-width: 230px;
    width: 100%;
  }
}

/* c-label */
.c-label {
  width: max-content;
  padding: 17px 30px;
  background-color: #004d36;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
/* c-borderTtl */
.c-borderTtl {
  position: relative;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.c-borderTtl:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #004d36;
}
.c-borderTtl span {
  position: relative;
  z-index: 1;
  padding-right: 40px;
  background-color: #fff;
}
.c-borderTtl--bg span {
  background-color: #f2f2f2;
}
.c-borderTtl--reverse {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.c-borderTtl--reverse:before {
  background-color: #ccdbd7;
}
.c-borderTtl--reverse span {
  padding-right: 0;
  padding-left: 20px;
}

/* l-wrapper */
.l-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* l-inner */
.l-inner {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
.l-inner--xs {
  max-width: 820px;
}
.l-inner--sm {
  max-width: 1020px;
}
.l-inner--lg {
  max-width: 1320px;
}

/* l-header */
.l-header {
  position: relative;
  z-index: 50;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 119px;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .l-header {
    height: 60px;
  }
}
.l-header__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .l-header__inner {
    padding: 0 10px;
  }
}
.l-header__logo {
  position: relative;
  top: 23px;
  width: 335px;
}
@media screen and (max-width: 1239px) {
  .l-header__logo {
    width: 300px;
  }
}
@media screen and (max-width: 1099px) {
  .l-header__logo {
    width: 240px;
  }
}
@media screen and (max-width: 991px) {
  .l-header__logo {
    top: auto;
    width: 172px;
  }
}
@media screen and (max-width: 991px) {
  .l-header .l-nav {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .l-header .l-subNav {
    display: none;
  }
}
.l-header__menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .l-header__menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 64px 0;
    transform: translateY(-100%);
    background-color: #fff;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    padding: 85px 0 10px;
    overflow-y: auto;
  }
}
.l-header__menu.is-active {
  transform: translateY(0);
}
.l-header__menu .l-utils {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .l-header__menu .l-utils {
    display: flex !important;
  }
}
.l-header__menu .l-subNav {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .l-header__menu .l-subNav {
    display: flex !important;
  }
}
.l-header__toggle {
  display: none;
  position: relative;
  width: 49px;
  height: 31px;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .l-header__toggle {
    display: block;
  }
}
.l-header__toggle:before {
  content: "menu";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: "Sorts Mill Goudy", serif;
  line-height: 1;
  letter-spacing: 0.09em;
}
.l-header__toggle__line {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 49px;
  height: 2px;
  background-color: #424242;
  transition: all 0.3s;
}
.l-header__toggle__line:first-of-type {
  transform: translate(-50%, 0);
}
.l-header__toggle__line:nth-of-type(2) {
  transform: translate(-50%, 6px);
}
.l-header__toggle__line:last-of-type {
  transform: translate(-50%, 12px);
}
.l-header__toggle.is-active:before {
  content: "close";
}
.l-header__toggle.is-active .l-header__toggle__line:first-of-type {
  transform: translate(-50%, 7px) rotate(15deg);
}
.l-header__toggle.is-active .l-header__toggle__line:nth-of-type(2) {
  opacity: 0;
}
.l-header__toggle.is-active .l-header__toggle__line:last-of-type {
  transform: translate(-50%, 7px) rotate(-15deg);
}

/* l-footer */
.l-footer {
  margin-top: auto;
  padding: 35px 0 105px;
  background-color: #fff;
  border-top: 1px solid #004d36;
}
@media screen and (max-width: 991px) {
  .l-footer {
    padding: 42px 0 10px;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 50px;
}
@media screen and (max-width: 1140px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 991px) {
  .l-footer__inner {
    gap: 0;
  }
}
.l-footer__logo {
  width: 275px;
}
@media screen and (max-width: 991px) {
  .l-footer__logo {
    margin-bottom: 53px;
  }
}
@media screen and (max-width: 991px) {
  .l-footer .l-utils {
    margin-bottom: 26px;
  }
}
.l-footer .l-subNav {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .l-footer .l-subNav {
    display: flex !important;
  }
}

/* l-nav */
.l-nav {
  font-family: "Sorts Mill Goudy", serif;
}
.l-nav__list {
  display: flex;
  flex-direction: row;
  gap: 0 20px;
}
@media screen and (max-width: 991px) {
  .l-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
}
.l-nav__item a {
  line-height: 2;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 991px) {
  .l-nav__item a {
    font-size: 36px;
  }
}

/* l-subNav */
.l-subNav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 28px;
}
@media screen and (max-width: 991px) {
  .l-subNav {
    gap: 0;
  }
}
@media screen and (max-width: 991px) {
  .l-subNav__item {
    border: 1px solid #424242;
  }
}
.l-subNav__item:last-child {
  border-left: none;
}
.l-subNav__item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 12px;
  font-family: "Sorts Mill Goudy", serif;
}
@media screen and (max-width: 991px) {
  .l-subNav__item a {
    padding: 24px 14px 20px;
  }
}
.l-subNav__item__icon {
  position: relative;
  top: -3px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 13px;
}

/* l-voice */
.l-voice {
  padding: 95px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-voice {
    padding: 60px 0;
  }
}
.l-voice__inner {
  display: flex;
  flex-direction: column;
  gap: 42px 0;
}
.l-voice__inner .l-voice__list {
  gap: 0 13px;
  width: 1000px;
}
@media screen and (max-width: 991px) {
  .l-voice__inner .l-voice__list {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-voice__inner .l-voice__list {
    gap: 0;
    width: 960px;
  }
}
.l-voice__inner .l-voice__item {
  width: 240px;
  padding: 20px 16px;
}
.l-voice__box {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.l-voice__box::-webkit-scrollbar {
  height: 8px;
}
.l-voice__box::-webkit-scrollbar-track {
  background: #a7c7bd;
}
.l-voice__box::-webkit-scrollbar-thumb {
  background-color: #004d36;
}
.l-voice__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
  text-align: center;
}
.l-voice__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 26px;
}
@media screen and (max-width: 991px) {
  .l-voice__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .l-voice__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .l-voice__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.l-voice__item {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.l-voice__item__img img {
  width: 100%;
  aspect-ratio: 230/138;
  border-radius: 20px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .l-voice__item__img img {
    aspect-ratio: 355/213;
  }
}
.l-voice__item__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.l-voice__item__headTtl {
  font-size: 16px;
  font-weight: 700;
  color: #004d36;
}
.l-voice__item__headTxt {
  margin-bottom: 7px;
  font-size: 14px;
}
.l-voice__item__headInfo {
  margin-top: auto;
  font-size: 12px;
}
.l-voice .c-btn {
  margin: 0 auto;
}

/* l-faq */
.l-faq {
  padding: 95px 0 100px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .l-faq {
    padding: 60px 0;
  }
}
.l-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 54px 0;
}
@media screen and (max-width: 767px) {
  .l-faq__inner {
    gap: 40px 0;
  }
}
.l-faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-faq__head {
    gap: 40px 0;
  }
}
.l-faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
@media screen and (max-width: 991px) {
  .l-faq__list {
    gap: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-faq__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.l-faq__item {
  display: flex;
  flex-direction: column;
  gap: 14px 0;
  padding: 40px 0;
  border-top: 1px solid #ccdbd7;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .l-faq__item {
    gap: 24px 0;
    padding: 30px 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-faq__item:last-child {
    padding-bottom: 0;
  }
}
.l-faq__item__head {
  position: relative;
  padding-left: 57px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-faq__item__head {
    font-size: 16px;
  }
}
.l-faq__item__head:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 45px;
  height: 47px;
  background-image: url("../images/i_q.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.l-faq__item__body {
  padding-left: 45px;
}
@media screen and (max-width: 767px) {
  .l-faq__item__body {
    padding-left: 0;
  }
}
.l-faq .c-btn {
  margin: 10px auto 0;
}

/* l-works */
.l-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-works {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 15px;
  }
}
@media screen and (max-width: 639px) {
  .l-works--order {
    grid-template-columns: repeat(1, 1fr);
  }
}
.l-works__item__img {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background-color: #fff;
  aspect-ratio: 320/425;
}
@media screen and (max-width: 767px) {
  .l-works__item__img {
    aspect-ratio: 170/226;
  }
}
.l-works__item__img.portrait img {
  height: 100%;
}
.l-works__item__img.landscape img {
  width: 100%;
}
.l-works__item__trigger {
  position: absolute;
  bottom: 13px;
  right: 8px;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 9999px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-works__item__trigger {
    bottom: 6px;
    right: 4px;
    width: 24px;
    height: 24px;
  }
}
.l-works__item__trigger:hover {
  transition: all 0.3s;
  opacity: 0.7;
}
.l-works__item__trigger:before, .l-works__item__trigger:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 1px;
  background-color: #004d36;
}
@media screen and (max-width: 767px) {
  .l-works__item__trigger:before, .l-works__item__trigger:after {
    width: 11px;
  }
}
.l-works__item__trigger:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.l-works__item__cat {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #004d36;
}
@media screen and (max-width: 767px) {
  .l-works__item__cat {
    padding: 2px 8px;
    font-size: 12px;
  }
}
.l-works__item__head {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
.l-works__item__headTtl {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  word-break: break-all;
}
.l-works__item__headTtl .main {
  font-size: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-works__item__headTtl .main {
    font-size: 20px;
  }
}
.l-works__item__headTtl .price {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .l-works__item__headTtl .price {
    font-size: 16px;
  }
}
.l-works__item__headDetail {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media screen and (max-width: 767px) {
  .l-works__item__headDetail {
    gap: 10px 0;
  }
}
.l-works__item__headDetail .ttl {
  background-color: #004d36;
  padding: 8px 10px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.l-works__item__headDetail .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 10px;
}
@media screen and (max-width: 767px) {
  .l-works__item__headDetail .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0;
  }
}
.l-works__item__headDetail .list__item {
  display: flex;
  flex-direction: row;
  font-size: 18px;
  color: #434343;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-works__item__headDetail .list__item {
    font-size: 14px;
  }
}
.l-works__item__headDetail .list__item__ttl {
  font-weight: 500;
  width: 60px;
}
.l-works__item__headDetail .list__item__txt {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .l-works__item__headDetail .info {
    font-size: 14px;
  }
}
.l-works__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.5);
}
.l-works__modal.is-active {
  display: block;
}
.l-works__modal__box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70vh;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-works__modal__box {
    width: 94%;
    max-width: 58vh;
  }
}
.l-works__modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 9999px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
.l-works__modal__close:before, .l-works__modal__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background-color: #004d36;
}
.l-works__modal__close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-works__modal__close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-works__slider {
  margin-bottom: 3vh;
}
.l-works__slider .swiper-slide .l-works__slider__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  aspect-ratio: 700/742;
  background-color: #fff;
  max-height: 678px;
}
@media screen and (max-width: 767px) {
  .l-works__slider .swiper-slide .l-works__slider__box {
    aspect-ratio: 355/376;
  }
}
.l-works__slider .swiper-slide .l-works__slider__box.portrait img {
  height: 100%;
}
.l-works__slider .swiper-slide .l-works__slider__box.landscape img {
  width: 100%;
}
.l-works__sliderThumb .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5vh;
}
@media screen and (max-width: 767px) {
  .l-works__sliderThumb .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 1vh;
  }
}
.l-works__sliderThumb .swiper-slide {
  cursor: pointer;
}
.l-works__sliderThumb .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}
.l-works__sliderThumb .swiper-slide:hover:before {
  opacity: 0;
}
.l-works__sliderThumb .swiper-slide.swiper-slide-thumb-active:before {
  display: none;
}
.l-works__sliderThumb .swiper-slide img {
  aspect-ratio: 94/100;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .l-works__sliderThumb .swiper-slide img {
    aspect-ratio: 110/117;
  }
}

/* l-news */
.l-news {
  padding: 95px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-news {
    padding: 60px 0;
  }
}
.l-news__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 169px;
}
@media screen and (max-width: 991px) {
  .l-news__inner {
    flex-direction: column;
    gap: 40px 0;
  }
}
.l-news__head {
  display: flex;
  flex-direction: column;
  gap: 74px 0;
}
.l-news__head .c-ttl {
  align-items: flex-start;
}
.l-news__body {
  width: 570px;
}
@media screen and (max-width: 991px) {
  .l-news__body {
    width: 100%;
  }
}
.l-news__body .c-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-news__body .c-btn {
    display: flex;
    margin: 10px auto 0;
  }
}
.l-news__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 26px;
  padding: 30px 0;
  border-bottom: 1px solid #ccdbd7;
}
.l-news__item:first-child {
  padding-top: 0;
}
.l-news__item:last-child {
  border-bottom: none;
}
.l-news__item__img {
  width: 130px;
}
.l-news__item__img img {
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 130/80;
}
.l-news__item__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px 0;
}
.l-news__item__headTime {
  font-size: 12px;
  line-height: 1;
}
.l-news__item__headTtl {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

/* l-info */
.l-info {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.09em;
}
.l-info__table {
  border-collapse: collapse;
  width: 100%;
}
.l-info__table tr th,
.l-info__table tr td {
  padding: 40px 0;
  border-bottom: 1px solid #004d36;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .l-info__table tr th,
  .l-info__table tr td {
    display: block;
  }
}
.l-info__table tr th {
  width: 31.25%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-info__table tr th {
    width: 100%;
    padding: 40px 0 0;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .l-info__table tr td {
    padding: 0 0 40px;
  }
}
.l-info__table tr td small {
  font-size: 12px;
}
.l-info__table tr:first-child th,
.l-info__table tr:first-child td {
  padding-top: 0 !important;
}

/* l-utils */
.l-utils {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 46px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #000;
}
@media screen and (max-width: 991px) {
  .l-utils {
    flex-direction: column;
    gap: 22px 0;
    font-size: 12px;
  }
}
.l-utils__sns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 991px) {
  .l-utils__sns {
    justify-content: center;
  }
}
.l-utils__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 20px;
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .l-utils__nav {
    gap: 0 40px;
    justify-content: center;
    margin: 22px 0 0;
  }
}
.l-utils__nav__item a {
  text-decoration: underline;
}
@media screen and (max-width: 991px) {
  .l-utils__copyright {
    text-align: center;
  }
}

/* l-service */
.l-service {
  padding: 95px 0 156px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .l-service {
    padding: 60px 0;
  }
}
.l-service__inner {
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}
@media screen and (max-width: 767px) {
  .l-service__inner {
    gap: 40px 0;
  }
}
@media screen and (max-width: 639px) {
  .l-service__inner {
    padding: 0;
  }
}
.l-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1199px) {
  .l-service__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px 10px;
    justify-content: center;
  }
}
.l-service__item {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 1199px) {
  .l-service__item {
    max-width: 393px;
    width: 100%;
  }
}
.l-service__item__ttl {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #004d36;
  text-align: center;
}
.l-service__item__mediaTxt {
  flex: 1;
  min-height: 138px;
  padding: 30px 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-service__item__mediaTxt {
    min-width: none;
    padding: 20px 20px;
  }
}
.l-service__item .c-btn {
  margin: 0 auto;
}

/* l-flow */
.l-flow {
  position: relative;
  padding: 95px 0 136px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .l-flow {
    padding: 60px 0;
  }
}
.l-flow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  filter: blur(6px);
}
.l-flow__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 57px 0;
}
@media screen and (max-width: 767px) {
  .l-flow__inner {
    gap: 40px 0;
  }
}
.l-flow__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-flow__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }
}
.l-flow__item {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.l-flow__item__ttl {
  background: #004d36;
  padding: 13px 20px;
  border-radius: 20px 20px 0 0;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-flow__item__ttl {
    font-size: 20px;
  }
}
.l-flow__item__step {
  display: flex;
  flex-direction: column;
  gap: 46px 0;
  padding: 30px 20px 0;
}
@media screen and (max-width: 767px) {
  .l-flow__item__step {
    padding: 20px 0;
  }
}
.l-flow__item__stepItem {
  position: relative;
}
.l-flow__item__stepItem:before {
  content: "";
  position: absolute;
  position: absolute;
  left: 50%;
  bottom: -27px;
  transform: translateX(-50%);
  width: 18px;
  height: 12px;
  background-image: url("../images/i_arrow_down.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.l-flow__item__stepItem:last-child::before {
  display: none;
}
.l-flow__item__stepItem .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 0;
  background-color: #a7c7bd;
  margin-bottom: 9px;
  padding: 10px;
  line-height: 1;
}
.l-flow__item__stepItem .head__num {
  font-size: 14px;
  font-weight: 500;
  color: #004d36;
}
.l-flow__item__stepItem .head__ttl {
  font-size: 20px;
  font-weight: 500;
}
.l-flow__item__stepItem .txt {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .l-flow__item__stepItem .txt {
    font-size: 16px;
  }
}
.l-flow__item__stepItem .c-btn {
  margin: 20px auto 0;
}

/* l-autoSlider */
.l-autoSlider {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  white-space: nowrap;
  height: 100%;
}
.l-autoSlider__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}
.l-autoSlider__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

/* p-home */
.p-home__mv {
  position: relative;
  height: 862px;
  padding: 37px 0 70px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__mv {
    height: auto;
    padding: 24px 0 100px;
  }
}
.p-home__mv__img {
  width: 568px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-home__mv__img {
    width: 275px;
  }
}
.p-home__mv__ttl {
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 776px;
  width: 100%;
  font-size: 30px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-home__mv__ttl {
    max-width: 353px;
    top: 50px;
    font-size: 20px;
  }
}
.p-home__mv__ttlTxt {
  writing-mode: vertical-rl;
}
.p-home__mv__ttlTxt:first-child {
  position: absolute;
  top: -18px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-home__mv__ttlTxt:first-child {
    top: -10px;
  }
}
.p-home__mv__txt {
  position: absolute;
  bottom: 20px;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-home__mv__txt {
    bottom: 48px;
  }
}
.p-home__mv__txt:before, .p-home__mv__txt:after {
  content: "";
  flex-shrink: 0;
}
.p-home__mv__txt span {
  display: inline-block;
  padding: 0 24px;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 210px;
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 77, 54, 0.4);
  text-stroke: 1px rgba(0, 77, 54, 0.4);
}
@media screen and (max-width: 767px) {
  .p-home__mv__txt span {
    font-size: 90px;
  }
}
.p-home__about {
  padding: 80px 0 103px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .p-home__about {
    display: flex;
    flex-direction: column;
    gap: 50px 0;
    padding: 60px 0;
  }
}
.p-home__about__headWrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-home__about__headWrapper {
    justify-content: flex-start;
    margin-bottom: 50px;
  }
}
.p-home__about__head {
  display: flex;
  flex-direction: column;
  gap: 23px 0;
  width: fit-content;
}
.p-home__about__headTtl {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.p-home__about__headTxt {
  line-height: 2;
}
.p-home__about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 45px;
  margin-top: -80px;
}
@media screen and (max-width: 767px) {
  .p-home__about__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 0;
    margin-top: 0;
  }
}
.p-home__about__item {
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
}
.p-home__about__item:nth-child(2) {
  margin-top: 121px;
}
@media screen and (max-width: 767px) {
  .p-home__about__item:nth-child(2) {
    margin-top: 0;
  }
}
.p-home__about__item:last-child {
  margin-top: 268px;
}
@media screen and (max-width: 767px) {
  .p-home__about__item:last-child {
    margin-top: 0;
  }
}
.p-home__about__itemLabel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-family: "Sorts Mill Goudy", serif;
}
.p-home__about__itemLabel .label {
  font-size: min(3.5714285714vw, 50px);
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-home__about__itemLabel .label {
    font-size: 50px;
  }
}
.p-home__about__itemLabel .num {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #fff;
  border-radius: 9999px;
  font-size: 30px;
  line-height: 1;
}
.p-home__about__itemImg {
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .p-home__about__itemImg {
    margin-bottom: 20px;
  }
}
.p-home__about__itemTtl {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  color: #004d36;
}
@media screen and (max-width: 991px) {
  .p-home__about__itemTtl {
    font-size: 22px;
  }
}
.p-home__parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  width: 100dvw;
  height: 100dvh;
  background-image: url("../images/home_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-home__parallax {
    height: 133.3333333333vw;
  }
}
.p-home__forYou {
  position: relative;
  padding: 661px 0 133px;
  background-image: linear-gradient(to bottom, rgba(66, 66, 66, 0), rgba(66, 66, 66, 0.9));
}
@media screen and (max-width: 767px) {
  .p-home__forYou {
    padding: 289px 0 74px;
    background-image: linear-gradient(to bottom, rgba(66, 66, 66, 0), rgba(66, 66, 66, 0.9) 77%);
  }
}
.p-home__forYou__inner {
  display: flex;
  flex-direction: column;
  gap: 73px 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__forYou__inner {
    gap: 40px 0;
  }
}
.p-home__forYou__ttl {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-home__forYou__ttl {
    font-size: 36px;
  }
}
.p-home__forYou__list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.p-home__forYou__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 152px;
}
@media screen and (max-width: 767px) {
  .p-home__forYou__item {
    flex-direction: column;
    gap: 20px 0;
  }
}
.p-home__forYou__itemTtl {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 32px;
  width: 315px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-home__forYou__itemTtl {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
  }
}
.p-home__forYou__itemTtl:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -67px;
  transform: translateY(-50%) rotate(30deg);
  width: 1px;
  height: 79px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__forYou__itemTtl:before {
    display: none;
  }
}
.p-home__forYou__itemTtl span {
  flex: 1;
}
.p-home__forYou__itemTxt {
  flex: 1;
  font-size: 18px;
}
.p-home__point {
  padding-top: 119px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__point {
    padding-top: 60px;
  }
}
.p-home__point__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1020px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto 127px;
}
@media screen and (max-width: 991px) {
  .p-home__point__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px 0;
    margin-bottom: 60px;
  }
}
.p-home__point__headTtl {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-home__point__headTtl {
    font-size: 30px;
  }
}
.p-home__point__headTxt {
  display: flex;
  flex-direction: column;
  gap: 23px 0;
}
.p-home__point__headTxt strong {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 30px;
  line-height: 1;
}
.p-home__point__headTxt p {
  line-height: 2;
}
.p-home__point01 {
  padding-bottom: 134px;
}
@media screen and (max-width: 767px) {
  .p-home__point01 {
    padding-bottom: 80px;
  }
}
.p-home__point01__head {
  display: flex;
  flex-direction: row;
  margin: 70px 0 58px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1239px) {
  .p-home__point01__head {
    margin: 30px 0 40px;
  }
}
.p-home__point01__headTtl {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-home__point01__headTtl {
    gap: 15px 0;
  }
}
.p-home__point01__headTtl .ttl {
  font-size: 30px;
  color: #004d36;
}
@media screen and (max-width: 767px) {
  .p-home__point01__headTtl .ttl {
    font-size: 22px;
  }
}
.p-home__point01__headTtl .txt {
  font-size: 18px;
  line-height: 2;
}
.p-home__point01__headList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
  margin: 0 auto;
}
.p-home__point01__headItemWrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .p-home__point01__headItemWrapper {
    gap: 15px;
  }
}
.p-home__point01__headItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px 0;
  width: 230px;
  height: 230px;
  border-radius: 9999px;
  background-color: #e4e0d7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home__point01__headItem {
    width: 170px;
    height: 170px;
    gap: 20px 0;
  }
}
.p-home__point01__headItem img {
  width: 42px;
  margin: 0 auto;
}
.p-home__point01__list {
  display: flex;
  flex-direction: column;
  gap: 200px 0;
  margin: 150px 0 160px;
}
@media screen and (max-width: 1099px) {
  .p-home__point01__list {
    gap: 130px 0;
    margin: 120px 0 120px;
  }
}
@media screen and (max-width: 991px) {
  .p-home__point01__list {
    margin: 0;
    gap: 20px 0;
  }
}
.p-home__point01__item {
  position: relative;
}
@media screen and (max-width: 991px) {
  .p-home__point01__item {
    display: flex;
    flex-direction: column-reverse;
    max-width: 375px;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 991px) {
  .p-home__point01__item:nth-child(odd) {
    margin-left: 0;
  }
}
.p-home__point01__item:nth-child(odd) .p-home__point01__itemImg {
  right: 0;
}
@media screen and (max-width: 991px) {
  .p-home__point01__item:nth-child(odd) .p-home__point01__itemImg {
    margin-left: 0;
  }
}
.p-home__point01__item:nth-child(even) .p-home__point01__itemInner {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .p-home__point01__item:nth-child(even) .p-home__point01__itemTxt {
    right: auto;
  }
}
.p-home__point01__item:nth-child(even) .p-home__point01__itemImg {
  left: 0;
}
@media screen and (max-width: 991px) {
  .p-home__point01__item:nth-child(even) .p-home__point01__itemImg {
    margin-right: 0;
  }
}
.p-home__point01__itemTxt {
  position: relative;
  z-index: 1;
  width: 620px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 1239px) {
  .p-home__point01__itemTxt {
    width: 572px;
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .p-home__point01__itemTxt {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: -90px;
    padding: 20px;
    max-width: 355px;
  }
}
.p-home__point01__itemImg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1022px;
}
@media screen and (max-width: 1239px) {
  .p-home__point01__itemImg {
    width: 952px;
  }
}
@media screen and (max-width: 1099px) {
  .p-home__point01__itemImg {
    width: 800px;
  }
}
@media screen and (max-width: 991px) {
  .p-home__point01__itemImg {
    position: relative;
    top: auto;
    transform: none;
    width: auto;
  }
}
.p-home__point01__itemImg img {
  height: 100%;
  object-fit: cover;
}
.p-home__point01__portrait {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-home__point01__portrait {
    margin-top: 60px;
  }
}
.p-home__point01__portraitInner {
  position: relative;
  display: flex;
  flex-direction: row;
  border-left: 1px solid #424242;
  border-right: 1px solid #424242;
  max-width: 1000px;
  height: calc(100% - 42px);
  padding: 0;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitInner {
    flex-direction: column;
    max-width: 355px;
    margin: 0 auto;
  }
}
.p-home__point01__portraitInner:before, .p-home__point01__portraitInner:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 21px;
  background-image: url("../images/frame_portrait_pc.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100.2%;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitInner:before, .p-home__point01__portraitInner:after {
    height: 22px;
    background-image: url("../images/frame_portrait.svg");
  }
}
.p-home__point01__portraitInner:before {
  top: -20px;
}
.p-home__point01__portraitInner:after {
  bottom: -20px;
  transform: rotate(180deg);
}
.p-home__point01__portraitMedia {
  width: 500px;
  padding: 17px 38px 35px 49px;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitMedia {
    width: 100%;
    padding: 6px 0 30px;
  }
}
.p-home__point01__portraitMedia .ttl {
  margin-bottom: 26px;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 46px;
  line-height: 1;
  text-align: center;
  color: #f2f2f2;
  white-space: nowrap;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitMedia .ttl {
    margin-bottom: 23px;
    font-size: 34px;
  }
}
.p-home__point01__portraitMedia .img {
  position: relative;
  width: 418px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitMedia .img {
    width: 325px;
  }
}
.p-home__point01__portraitMedia .img:before, .p-home__point01__portraitMedia .img:after {
  content: "";
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  height: 1px;
  background-color: #424242;
}
.p-home__point01__portraitMedia .img:before {
  left: -49px;
  width: 49px;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitMedia .img:before {
    left: -15px;
    width: 15px;
  }
}
.p-home__point01__portraitMedia .img:after {
  right: -34px;
  width: 44px;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitMedia .img:after {
    right: -14px;
    width: 23px;
  }
}
.p-home__point01__portraitHead {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 500px;
  padding: 76px 27px 0 36px;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitHead {
    border-top: 1px solid #424242;
    width: 100%;
    padding: 40px 20px 0;
  }
}
.p-home__point01__portraitHead:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 1px;
  height: calc(100% + 39px);
  background-color: #424242;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitHead:before {
    display: none;
  }
}
.p-home__point01__portraitHead .ttl {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  margin-bottom: 37px;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitHead .ttl {
    gap: 20px 0;
    margin-bottom: 30px;
  }
}
.p-home__point01__portraitHead .ttl__main {
  font-size: 26px;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitHead .ttl__main {
    font-size: 24px;
  }
}
.p-home__point01__portraitHead .ttl__sub {
  font-size: 18px;
  font-weight: 500;
}
.p-home__point01__portraitHead .dots {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
  margin-bottom: 27px;
}
.p-home__point01__portraitHead .dots span {
  width: 6px;
  height: 6px;
  background-color: #004d36;
  border-radius: 9999px;
}
.p-home__point01__portraitHead .txt {
  font-size: 14px;
  line-height: 2;
}
.p-home__point01__portraitHead .detail {
  margin: auto -27px 0 -36px;
  padding: 24px 35px 10px;
  border-top: 1px solid #424242;
}
@media screen and (max-width: 991px) {
  .p-home__point01__portraitHead .detail {
    margin: 30px -20px 0;
    padding: 20px 30px 16px;
  }
}
.p-home__point01__portraitHead .detail__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 30px;
  font-size: 12px;
}
.p-home__point01__portraitHead .detail__item__ttl {
  width: 96px;
}
.p-home__point02 {
  position: relative;
  padding-bottom: 138px;
  background-image: url("../images/point02_bg_pc.jpg");
  background-repeat: no-repeat;
  background-position: center 60px;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-home__point02 {
    padding-bottom: 118px;
  }
}
.p-home__point02:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 550px;
  background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.p-home__point02:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 383px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.p-home__point02__inner {
  position: relative;
  z-index: 1;
}
.p-home__point02__head {
  display: flex;
  flex-direction: row;
  margin: 70px 0 58px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1239px) {
  .p-home__point02__head {
    gap: 40px 0;
    margin: 30px 0 40px;
  }
}
.p-home__point02__headTtl {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-home__point02__headTtl {
    gap: 15px 0;
  }
}
.p-home__point02__headTtl .ttl {
  font-size: 30px;
  color: #004d36;
}
@media screen and (max-width: 767px) {
  .p-home__point02__headTtl .ttl {
    font-size: 22px;
  }
}
.p-home__point02__headTtl .txt {
  font-size: 18px;
  line-height: 2;
}
.p-home__point02__headList {
  width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .p-home__point02__headList {
    max-width: 400px;
    width: 100%;
  }
}
.p-home__point02__body {
  display: flex;
  flex-direction: column;
  gap: 42px 0;
}
@media screen and (max-width: 767px) {
  .p-home__point02__body {
    gap: 30px 0;
  }
}
.p-home__point02__body .ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px 0;
  font-size: 30px;
  color: #004d36;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-home__point02__body .ttl {
    font-size: 22px;
  }
}
.p-home__point02__body .ttl span {
  width: fit-content;
  padding: 5px;
  background-color: #fff;
  line-height: 1;
}
.p-home__point02__body .txt {
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home__point02__body .txt {
    text-align: left;
  }
}
.p-home__point02__slider {
  position: relative;
  z-index: 1;
  height: 340px;
  margin-top: 62px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-home__point02__slider {
    height: 204px;
    margin-top: 26px;
  }
}
.p-home__point02 .l-autoSlider__list {
  gap: 0 30px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .p-home__point02 .l-autoSlider__list {
    gap: 0 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__point02__sliderItem {
    width: 148px;
  }
}
.p-home__point02__sliderItem img {
  border-radius: 10px;
}
.p-home__point03 {
  margin-top: -28px;
}
.p-home__point03__head {
  display: flex;
  flex-direction: row;
  margin: 70px 0 58px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1239px) {
  .p-home__point03__head {
    margin: 40px 0;
  }
}
.p-home__point03__headTtl {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-home__point03__headTtl {
    gap: 15px 0;
  }
}
.p-home__point03__headTtl .ttl {
  font-size: 30px;
  color: #004d36;
}
@media screen and (max-width: 767px) {
  .p-home__point03__headTtl .ttl {
    font-size: 22px;
  }
}
.p-home__point03__headTtl .txt {
  font-size: 18px;
  line-height: 2;
}
.p-home__point03__headList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
  margin: 0 auto;
}
.p-home__point03__headItemWrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-home__point03__headItemWrapper {
    gap: 15px;
  }
}
.p-home__point03__headItem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 35px 0;
  width: 230px;
  height: 230px;
  padding-top: 35px;
  border-radius: 9999px;
  background-color: #e4e0d7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home__point03__headItem {
    width: 170px;
    height: 170px;
    gap: 20px 0;
    padding-top: 30px;
  }
}
.p-home__point03__headItem:before {
  content: "";
  position: absolute;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 18px;
  height: 12px;
  background-image: url("../images/i_arrow_down.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-home__point03__headItem:before {
    bottom: 20px;
  }
}
.p-home__point03__headItem p {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-home__point03__headItem p {
    font-size: 16px;
  }
}
.p-home__point03__headItem p:first-child {
  position: relative;
  font-size: 14px;
  color: #004d36;
}
.p-home__point03__headItem p:first-child:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  border-radius: 9999px;
  background-color: #004d36;
}
.p-home__point03__list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.p-home__point03__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 89px;
}
@media screen and (max-width: 991px) {
  .p-home__point03__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px 0;
    max-width: 400px;
    margin: 0 auto;
  }
}
.p-home__point03__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .p-home__point03__item:nth-child(even) {
    flex-direction: column;
  }
}
.p-home__point03__itemImg {
  max-width: 560px;
  width: 46%;
}
@media screen and (max-width: 991px) {
  .p-home__point03__itemImg {
    max-width: 400px;
    width: 100%;
  }
}
.p-home__point03__itemHead {
  flex: 1;
}
@media screen and (max-width: 991px) {
  .p-home__point03__itemHead {
    width: 100%;
  }
}
.p-home__point03__itemHead .ttl {
  margin: 38px 0 20px;
  font-size: 26px;
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
  .p-home__point03__itemHead .ttl {
    margin: 35px 0 14px;
    font-size: 20px;
  }
}
.p-home__point03__itemHead .txt {
  margin-bottom: 43px;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .p-home__point03__itemHead .txt {
    margin-bottom: 30px;
  }
}
.p-home__point03__itemHead .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 5px;
}
@media screen and (max-width: 991px) {
  .p-home__point03__itemHead .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
  }
}
.p-home__point03__itemHead .list__item {
  display: flex;
  flex-direction: column;
  gap: 14px 0;
}
.p-home__point03__itemHead .list__item__ttl {
  padding: 8px 10px;
  background-color: #004d36;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .p-home__point03__itemHead .list__item__list {
    padding-left: 20px;
  }
}
.p-home__point03__itemHead .list__item__list ul {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
.p-home__point03__itemHead .list__item__list .c-listItem {
  font-size: 14px;
}
.p-home__point03__itemHead .list__item__list .c-listItem:before {
  top: 6px;
  transform: none;
}
.p-home__point03__slider {
  position: relative;
  height: 560px;
  margin-top: 146px;
  overflow-x: hidden;
}
@media screen and (max-width: 991px) {
  .p-home__point03__slider {
    margin-top: 60px;
    height: 246px;
  }
}
.p-home__point03__sliderItem {
  width: 700px;
}
@media screen and (max-width: 991px) {
  .p-home__point03__sliderItem {
    width: 308px;
  }
}
.p-home__taste {
  margin-top: 0 !important;
}

/* p-faq */
.p-faq {
  padding: 100px 0 60px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 60px 0 34px;
  }
}

/* p-news */
.p-news {
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-bottom: 60px;
  }
}

/* p-newsSingle */
.p-newsSingle {
  padding: 176px 0 110px;
}
@media screen and (max-width: 767px) {
  .p-newsSingle {
    padding: 60px 0;
  }
}
.p-newsSingle__head {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-newsSingle__head {
    gap: 20px 0;
    margin-bottom: 40px;
  }
}
.p-newsSingle__head__time {
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-newsSingle__head__time {
    font-size: 14px;
  }
}
.p-newsSingle__head__ttl {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-newsSingle__head__ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-newsSingle__img {
    border-radius: 20px;
  }
}
.p-newsSingle__body {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-newsSingle__body {
    margin-bottom: 60px;
  }
}
.p-newsSingle__body h2 {
  margin-top: 69px;
  padding-bottom: 40px;
  font-size: 26px;
  border-bottom: 1px solid #ccdbd7;
}
@media screen and (max-width: 767px) {
  .p-newsSingle__body h2 {
    margin-top: 55px;
    font-size: 20px;
  }
}
.p-newsSingle__body h3 {
  margin-top: 40px;
  padding-bottom: 30px;
  font-size: 24px;
  border-bottom: 1px solid #ccdbd7;
}
@media screen and (max-width: 767px) {
  .p-newsSingle__body h3 {
    margin-top: 30px;
    font-size: 22px;
  }
}
.p-newsSingle__body p {
  margin: 30px 0;
  line-height: 2;
}
.p-newsSingle__body strong {
  color: #004d36;
}
.p-newsSingle__body a {
  color: #004d36;
  text-decoration: underline;
}

/* p-works */
.p-works {
  padding: 80px 0 100px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .p-works {
    padding: 60px 0;
  }
}

.p-worksMenu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-worksMenu {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
  }
}
.p-worksMenu__item {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-worksMenu__item {
    gap: 10px 0;
  }
}
.p-worksMenu__item__ttl {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-worksMenu__item__ttl {
    font-size: 24px;
  }
}
.p-worksMenu__item .c-btn {
  width: 100%;
  margin: 0 auto;
}

/* p-concept */
.p-concept__about {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-concept__about {
    padding: 60px 0;
  }
}
.p-concept__about__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-concept__about__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px 0;
  }
}
.p-concept__about__item {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}
@media screen and (max-width: 767px) {
  .p-concept__about__item {
    gap: 30px 0;
  }
}
.p-concept__about__itemTtl {
  position: relative;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.p-concept__about__itemTtl:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #004d36;
}
.p-concept__about__itemTtl span {
  position: relative;
  z-index: 1;
  padding-right: 40px;
  background-color: #fff;
}
.p-concept__about__itemTxt {
  line-height: 2;
}
.p-concept__movie {
  position: relative;
  height: 220px;
  overflow-x: hidden;
}
.p-concept__movie:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(228, 224, 215, 0.8);
  filter: blur(1px);
  z-index: 1;
}
.p-concept__movie__head {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px 0;
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-concept__movie__head {
    gap: 8px 0;
  }
}
.p-concept__movie__head:hover {
  transition: all 0.3s;
  opacity: 0.7;
}
.p-concept__movie__headPlay {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 9999px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
  .p-concept__movie__headPlay {
    width: 57px;
    height: 57px;
  }
}
.p-concept__movie__headPlay:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-34%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #004d36;
  border-width: 14px 0px 14px 25px;
}
@media screen and (max-width: 767px) {
  .p-concept__movie__headPlay:before {
    border-width: 12.5px 0px 12.5px 20px;
  }
}
.p-concept__movie__headTtl {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
  .p-concept__movie__headTtl {
    font-size: 30px;
  }
}
.p-concept__movie__item {
  width: 392px;
}
.p-concept__movie__modal {
  display: none;
}
.p-concept__movie__modalBody {
  position: fixed;
  z-index: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px 0;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-concept__movie__modalBody {
    width: 90%;
  }
}
.p-concept__movie__modalBody .video-js {
  max-width: 800px;
  width: 100%;
}
.p-concept__movie__modalClose {
  position: absolute;
  top: -50px;
  right: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 1;
}
.p-concept__movie__modalClose:before, .p-concept__movie__modalClose:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: #fff;
}
.p-concept__movie__modalClose:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-concept__movie__modalClose:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-concept__movie__modalOverlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.p-concept__taste {
  margin-top: 100px;
  padding: 100px 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 991px) {
  .p-concept__taste {
    margin-top: 60px;
    padding: 60px 0 80px;
  }
}
.p-concept__taste__head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 114px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 130px;
}
@media screen and (max-width: 991px) {
  .p-concept__taste__head {
    flex-direction: column;
    gap: 30px 0;
    margin: 0 auto 226px;
  }
}
.p-concept__taste__headTtl {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .p-concept__taste__headTtl {
    font-size: 30px;
  }
}
.p-concept__taste__headTxt {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  width: 545px;
}
@media screen and (max-width: 991px) {
  .p-concept__taste__headTxt {
    width: auto;
  }
}
.p-concept__taste__headTxt strong {
  font-size: 18px;
}
.p-concept__taste__list {
  display: flex;
  flex-direction: column;
  gap: 128px 0;
}
@media screen and (max-width: 991px) {
  .p-concept__taste__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 238px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__taste__list {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  .p-concept__taste__list {
    width: auto;
    margin: 0;
  }
}
.p-concept__taste__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 1102px;
  height: 407px;
  padding: 0 60px 0 100px;
  background-color: #fff;
  border-left: 1px solid #424242;
  border-right: 1px solid #424242;
}
@media screen and (max-width: 1239px) {
  .p-concept__taste__item {
    width: 1000px;
    padding: 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .p-concept__taste__item {
    max-width: 335px;
    width: 100%;
    height: auto;
    padding: 152px 20px 22px;
  }
}
.p-concept__taste__item:before, .p-concept__taste__item:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 21px;
  background-image: url("../images/frame_pc.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100.2%;
}
@media screen and (max-width: 991px) {
  .p-concept__taste__item:before, .p-concept__taste__item:after {
    height: 18px;
    background-image: url("../images/frame.svg");
    background-size: 102%;
  }
}
.p-concept__taste__item:before {
  top: -20px;
}
@media screen and (max-width: 991px) {
  .p-concept__taste__item:before {
    top: -17px;
  }
}
.p-concept__taste__item:after {
  bottom: -20px;
  transform: rotate(180deg);
}
@media screen and (max-width: 991px) {
  .p-concept__taste__item:after {
    bottom: -17px;
  }
}
.p-concept__taste__item:nth-child(odd) {
  margin-left: auto;
  justify-content: flex-end;
}
.p-concept__taste__item:nth-child(odd) .p-concept__taste__itemImg {
  left: -100px;
}
@media screen and (max-width: 1239px) {
  .p-concept__taste__item:nth-child(odd) .p-concept__taste__itemImg {
    left: -50px;
  }
}
@media screen and (max-width: 991px) {
  .p-concept__taste__item:nth-child(odd) .p-concept__taste__itemImg {
    left: -20px;
  }
}
.p-concept__taste__item:nth-child(even) .p-concept__taste__itemImg {
  right: -100px;
}
@media screen and (max-width: 1239px) {
  .p-concept__taste__item:nth-child(even) .p-concept__taste__itemImg {
    right: -50px;
  }
}
@media screen and (max-width: 991px) {
  .p-concept__taste__item:nth-child(even) .p-concept__taste__itemImg {
    right: -20px;
  }
}
.p-concept__taste__itemImg {
  position: absolute;
  top: -61px;
  width: 619px;
}
@media screen and (max-width: 1239px) {
  .p-concept__taste__itemImg {
    width: 540px;
  }
}
@media screen and (max-width: 991px) {
  .p-concept__taste__itemImg {
    top: -186px;
    width: 335px;
  }
}
.p-concept__taste__itemLabel {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 991px) {
  .p-concept__taste__itemLabel {
    top: -14px;
    padding: 13px;
    font-size: 14px;
  }
}
.p-concept__taste__itemHead {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  width: 405px;
}
@media screen and (max-width: 991px) {
  .p-concept__taste__itemHead {
    width: 100%;
    gap: 20px 0;
  }
}
.p-concept__taste__itemHead--home {
  width: 445px;
}
.p-concept__taste__itemHead .ttl {
  font-size: 26px;
}
@media screen and (max-width: 991px) {
  .p-concept__taste__itemHead .ttl {
    font-size: 20px;
    white-space: nowrap;
  }
}
.p-concept__taste__itemHead .txt {
  letter-spacing: 0.09em;
  line-height: 2;
}

/* p-order */
.p-order__connect {
  padding-top: 127px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .p-order__connect {
    padding-top: 87px;
  }
}
.p-order__connect__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px 40px;
}
.p-order__connect__item {
  position: relative;
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  padding: 67px 40px 35px;
  border: 1px solid #004d36;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-order__connect__item {
    padding: 47px 24px 27px;
  }
}
.p-order__connect__itemLabel {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}
.p-order__connect__itemTtl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 30px;
  min-height: 112px;
  margin-bottom: 28px;
  border-bottom: 1px solid #ccdbd7;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-order__connect__itemTtl {
    align-items: flex-end;
    gap: 0 13px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    height: auto;
  }
}
.p-order__connect__itemTtl--last {
  align-items: center;
}
.p-order__connect__itemTtl img {
  width: 90px;
}
.p-order__connect__itemTtl p {
  font-size: 60px;
  font-weight: 900;
  color: #004d36;
}
@media screen and (max-width: 767px) {
  .p-order__connect__itemTtl p {
    font-size: 40px;
  }
}
.p-order__connect__itemTtl p span {
  font-weight: 500;
}
.p-order__connect__itemTxt {
  font-size: 18px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-order__connect__itemTxt {
    font-size: 16px;
    line-height: 1.8;
    white-space: nowrap;
  }
}
.p-order__guide {
  padding: 80px 0 100px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .p-order__guide {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-order__guide .c-ttl {
    align-items: flex-start;
  }
}
.p-order__guide__inner {
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-order__guide__inner {
    gap: 40px 0;
  }
}
.p-order__menu {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-order__menu {
    padding-top: 54px;
  }
}
.p-order__menu__inner {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}
@media screen and (max-width: 767px) {
  .p-order__menu__inner {
    gap: 34px 0;
  }
}
.p-order__menu__ttl {
  position: relative;
  padding: 0 22px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #004d36;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .p-order__menu__ttl {
    width: fit-content;
    padding: 0 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-order__menu__ttl {
    font-size: 20px;
  }
}
.p-order__menu__ttl:before, .p-order__menu__ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 52px;
  background-color: #004d36;
}
.p-order__menu__ttl:before {
  left: -10px;
  transform: translateY(-50%) rotate(-15deg);
}
.p-order__menu__ttl:after {
  right: -10px;
  transform: translateY(-50%) rotate(15deg);
}
.p-order__menu__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.p-order__menu__item {
  width: 326px;
}
@media screen and (max-width: 767px) {
  .p-order__menu__item {
    width: fit-content;
  }
}
.p-order__menu__item a {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  height: 44px;
  padding: 0 16px;
  background-color: #004d36;
  border-radius: 9999px;
  color: #fff;
}
.p-order__menu__item a:after {
  content: "";
  position: relative;
  top: -2px;
  width: 12px;
  height: 12px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}
.p-order__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px 0;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .p-order__head {
    gap: 30px 0;
    margin-bottom: 40px;
  }
}
.p-order__head__ttl {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .p-order__head__ttl {
    font-size: 32px;
  }
}
.p-order__head__txt {
  line-height: 2;
}
.p-order__payment {
  padding-top: 109px;
}
@media screen and (max-width: 767px) {
  .p-order__payment {
    padding-top: 60px;
  }
}
.p-order__payment .p-order__head {
  margin-top: 56px;
}
.p-order__payment .l-info ul {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  margin-top: 20px;
}
.p-order__delivery {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-order__delivery {
    padding-top: 60px;
  }
}
.p-order__delivery__list {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-top: 60px;
}
.p-order__delivery__list .c-listItem:before {
  top: 8px;
  transform: none;
}
.p-order__delivery__listOther {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 32px;
  background-color: #004d36;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-order__delivery__listOther {
    width: 116px;
  }
}
.p-order__info {
  margin-top: 100px;
  padding: 100px 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .p-order__info {
    margin-top: 60px;
    padding: 60px 0;
  }
}
.p-order__info .c-borderTtl {
  margin-bottom: 50px;
}
.p-order__info__request {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin: 40px 0 54px;
  padding: 30px 80px;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .p-order__info__request {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-order__info__request {
    margin: 40px 0;
    padding: 40px 20px;
  }
}
.p-order__info__requestTtl {
  padding: 8px 24px;
  font-size: 16px;
  margin: 0 auto;
}
.p-order__info__requestList {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.p-order__info__requestList .c-listItem:before {
  top: 8px;
  transform: none;
}
.p-order--confirm .p-order__info {
  margin-top: 0;
}
.p-order--complete {
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .p-order--complete {
    padding-bottom: 60px;
  }
}
.p-order--complete a {
  margin: 40px auto 0;
}

/* p-voice */
.p-voice {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding-bottom: 60px;
  }
}

/* p-privacyPolicy */
.p-privacyPolicy {
  padding-bottom: 170px;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy {
    padding-bottom: 60px;
  }
}
.p-privacyPolicy h2 {
  margin-bottom: 60px;
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy h2 {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
.p-privacyPolicy h3 {
  padding-left: 16px;
  margin-top: 30px;
  font-size: 16px;
}
.p-privacyPolicy p {
  padding-left: 16px;
}
.p-privacyPolicy ul {
  padding-left: 16px;
}

/* p-form */
.p-form__wrapper {
  margin-bottom: 70px;
  padding: 40px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-form__wrapper {
    margin-bottom: 40px;
  }
}
.p-form__box {
  max-width: 820px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 40px;
}
.p-form__box:last-of-type {
  margin-bottom: 0;
}
.p-form__group {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
  margin-bottom: 10px;
}
.p-form__ttl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #004d36;
  padding-left: 10px;
  border-left: 10px solid #004d36;
}
.p-form__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 5px;
  font-weight: 700;
  color: #000;
}
.p-form__head span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 16px;
  background-color: #8d0000;
  font-size: 10px;
  color: #fff;
}
.p-form__head span.option {
  background-color: #4b4b4b;
}
.p-form__txt {
  margin-top: 10px;
  font-size: 12px;
}
.p-form__txt a {
  text-decoration: underline;
}
.p-form__btn {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  align-items: center;
  max-width: 230px;
  width: 100%;
  margin: 0 auto;
}
.p-form__btn input {
  width: 100%;
  color: #fff;
}

/* p-company */
.p-company {
  padding-bottom: 170px;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-bottom: 60px;
  }
}/*# sourceMappingURL=style.css.map */