/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
	- fix for the content editable attribute will work properly.
- webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

body {
  color: #333;
  font-size: clamp(14px, 3.7vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.02em;
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  body {
    font-size: 16px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.6s;
}
a:active {
  opacity: 0.6;
}
@media screen and (min-width: 751px) {
  a:hover {
    opacity: 0.6;
  }
}

img {
  display: block;
}

body {
  font-family: noto-sans, sans-serif;
}

@media screen and (min-width: 751px) {
  .l-container {
    width: 750px;
    margin: 0 auto;
  }
}

.p-firstView {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-firstView__image {
    width: min(100%, 800px);
    max-height: 100svh;
    object-fit: contain;
    margin: 0 auto;
  }
}

.p-about {
  width: 88.8%;
  margin: 0 auto;
  padding: max(21.3%, 80px) 0 max(40%, 150px);
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-about {
    width: 710px;
    padding: 100px 0 200px;
  }
}
.p-about__heading {
  font-size: 8vw;
  font-family: "roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 751px) {
  .p-about__heading {
    font-size: 40px;
  }
}
.p-about__text {
  margin-top: 9%;
  font-size: 3.2vw;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  .p-about__text {
    margin: 50px auto 0;
    font-size: 13px;
  }
}
.p-about__menu {
  margin-top: 15%;
}
@media screen and (min-width: 751px) {
  .p-about__menu {
    margin-top: 80px;
  }
}
.p-about__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 751px) {
  .p-about__list {
    width: 600px;
    margin: 0 auto;
  }
}
.p-about__list li {
  width: 31.5315315315%;
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-about__list li {
    width: 32%;
  }
}
.p-about__list li > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-size: 3.2vw;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (min-width: 751px) {
  .p-about__list li > a {
    font-size: 16px;
  }
}
.p-about__list li > a::after {
  content: "";
  width: 8%;
  aspect-ratio: 1/1;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.p-about__list li:nth-of-type(1) a {
  background-image: url(../assets/images/main/menu_1.jpg);
}
.p-about__list li:nth-of-type(2) a {
  background-image: url(../assets/images/main/menu_2.jpg);
}
.p-about__list li:nth-of-type(3) a {
  background-image: url(../assets/images/main/menu_3.jpg);
}
.p-about__present {
  width: 100%;
  margin-top: 24%;
  padding: 13.3% 5.3%;
  font-size: 3.2vw;
  background-color: #e7e7e7;
  border: 1px dotted #999;
}
@media screen and (min-width: 751px) {
  .p-about__present {
    width: 640;
    margin: 100px auto 0;
    padding: 40px;
    font-size: 13px;
  }
}
.p-about__presentTitle {
  color: #ff5151;
  font-size: 4.2666666667vw;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .p-about__presentTitle {
    font-size: 18px;
  }
}
.p-about__presentList {
  margin-top: 5.3vw;
  text-align: left;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  .p-about__presentList {
    margin-top: 30px;
  }
}
.p-about__presentList li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-about__presentList li + li {
  margin-top: 2.6vw;
}
@media screen and (min-width: 751px) {
  .p-about__presentList li + li {
    margin-top: 20px;
  }
}
.p-about__presentList span {
  font-weight: bold;
  text-decoration: underline;
}
.p-about__link {
  margin-top: 9%;
  padding: 4% 0;
  display: block;
  color: #fff;
  background-color: #707070;
}
@media screen and (min-width: 751px) {
  .p-about__link {
    width: 400px;
    margin: 50px auto 0;
    padding: 20px;
  }
}

.p-section {
  display: flex;
  flex-direction: column;
}
.p-section + .p-section {
  margin-top: 40%;
}
@media screen and (min-width: 751px) {
  .p-section + .p-section {
    margin-top: 200px;
  }
}
.p-section__heading {
  padding-left: 5.6%;
  font-size: 6.4vw;
  font-weight: 700;
  font-family: "roboto", sans-serif;
}
@media screen and (min-width: 751px) {
  .p-section__heading {
    padding-left: 0;
    float: 40px;
    font-size: 32px;
  }
}
.p-section__num {
  margin-right: 10px;
  display: inline-block;
  font-size: 16vw;
}
@media screen and (min-width: 751px) {
  .p-section__num {
    font-size: 80px;
  }
}
.p-section__item {
  margin-top: 5.3%;
  padding-left: 5.6%;
  font-size: max(4.8vw, 18px);
}
@media screen and (min-width: 751px) {
  .p-section__item {
    margin-top: 40px;
    padding-left: 40px;
    font-size: 26px;
  }
}
.p-section__credit {
  margin-top: 4%;
  padding-left: 5.6%;
  font-family: "roboto", sans-serif;
}
@media screen and (min-width: 751px) {
  .p-section__credit {
    margin-top: 18px;
    padding-left: 40px;
  }
}
.p-section__imageBox {
  width: 88.8%;
  margin: 21.3% auto 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 751px) {
  .p-section__imageBox {
    width: 640px;
    margin-top: 100px;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 751px) {
  .p-section__imageBox li {
    width: 315px;
  }
}
.p-section__imageBox li + li {
  margin-top: 5.3%;
}
@media screen and (min-width: 751px) {
  .p-section__imageBox li + li {
    margin-top: 0;
  }
}
.p-section__bottomImage {
  margin-top: 26.6%;
}
@media screen and (min-width: 751px) {
  .p-section__bottomImage {
    margin-top: 150px;
  }
}
@media screen and (min-width: 751px) {
  .p-section__slide {
    width: 40%;
  }
}
.p-section__comment {
  width: 88.8%;
  margin: 26.6% auto 0;
  padding: 13.3% 5.3%;
  border: 1px solid #888;
}
@media screen and (min-width: 751px) {
  .p-section__comment {
    width: 670px;
    margin-top: 150px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-section__commentRight {
  margin-top: 27.5%;
}
@media screen and (min-width: 751px) {
  .p-section__commentRight {
    width: 56%;
    margin-top: 0;
  }
}
.p-section__commentTitle {
  text-align: center;
}
.p-section__commentText {
  margin-top: 6.87%;
  font-size: 3.2vw;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  .p-section__commentText {
    margin-top: 30px;
    font-size: 14px;
  }
}
.p-section__caution {
  margin-top: 6.87%;
  color: #FF0000;
  font-size: 3.2vw;
}
@media screen and (min-width: 751px) {
  .p-section__caution {
    margin-top: 30px;
    font-size: 15px;
  }
}
.p-section__link {
  margin-top: 6.87%;
  padding: 4.6% 0;
  display: block;
  color: #fff;
  text-align: center;
  background-color: #707070;
}
@media screen and (min-width: 751px) {
  .p-section__link {
    margin-top: 30px;
  }
}

.p-footer {
  width: 80%;
  margin: 0 auto;
  padding: 150px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-footer {
    width: max(30%, 400px);
    padding: 200px 0 100px;
  }
}
.p-footer__logos {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 751px) {
  .p-footer__logos {
    gap: 40px;
  }
}
.p-footer__insta {
  width: max(6%, 25px);
}
@media screen and (min-width: 751px) {
  .p-footer__insta {
    width: 30px;
  }
}
.p-footer__logo {
  width: max(20%, 80px);
}
@media screen and (min-width: 751px) {
  .p-footer__logo {
    width: 120px;
  }
}
.p-footer__copy {
  font-size: 10px;
  margin-top: 40px;
}
@media screen and (min-width: 751px) {
  .p-footer__copy {
    margin-top: 50px;
  }
}

@media screen and (min-width: 751px) and (min-width: 751px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .u-hidden-sp {
    display: none !important;
  }
}/*# sourceMappingURL=app.css.map */