.entxt {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

.entxt_inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.entxt_track {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.entxt_track p {
  flex: 0 0 auto;
  margin: 0;
}

.fonts-loaded .entxt {
  visibility: visible;
}

/***
    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, input, select):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;
  -moz-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 */
::-moz-placeholder {
  color: unset;
}
::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;
}

main#ph {
  padding: 0 6rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main#ph {
    padding: 5vw;
  }
}

.philosophy_cont {
  padding: 10rem 5vw;
  position: relative;
}
.philosophy_cont.nom {
  padding: 10rem 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.philosophy_cont.nom .inner {
  max-width: 1000px;
}
.philosophy_cont .inner {
  max-width: 1200px;
  margin: auto;
}
.philosophy_cont .illust {
  position: absolute;
}
.philosophy_cont .section_title {
  display: flex;
  align-items: center;
}
.philosophy_cont .section_title .num {
  color: #CE4C40;
  font-size: clamp(4.7rem, 3.264rem + 1.9vw, 6rem);
}
.philosophy_cont .section_title .title {
  color: #CE4C40;
  border-left: 1px solid #ccc;
  padding: 0 0 0 2rem;
  margin: 0 0 0 2rem;
}
.philosophy_cont .cont_flex {
  display: flex;
  justify-content: space-between;
  margin: 0 0 5rem 0;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .philosophy_cont .cont_flex {
    display: block;
  }
}
.philosophy_cont .cont_flex:last-child {
  margin: 0;
}
.philosophy_cont .cont_flex.rv {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .philosophy_cont .cont_flex.rv {
    padding: 0;
  }
}
.philosophy_cont .cont_flex.only_txt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .philosophy_cont .cont_flex.only_txt {
    padding: 0 6vw;
  }
}
.philosophy_cont .cont_flex.only_txt .section_title {
  justify-content: center;
}
.philosophy_cont .cont_flex.only_txt .txt {
  width: 100%;
}
.philosophy_cont .cont_flex.only_txt .txt h2 {
  margin: 0 0 5rem 0;
}
.philosophy_cont .cont_flex .txt {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .philosophy_cont .cont_flex .txt {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
.philosophy_cont .cont_flex .txt h2 {
  font-size: clamp(2.9rem, 2.16rem + 1vw, 3.6rem);
  font-weight: bold;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 767px) {
  .philosophy_cont .cont_flex .txt h2 {
    font-size: clamp(2rem, 1.536rem + 0.6vw, 2.4rem);
  }
}
.philosophy_cont .cont_flex .txt p {
  margin: 0 0 1em 0;
}
.philosophy_cont .cont_flex .txt p:last-child {
  margin: 0;
}
.philosophy_cont .cont_flex .image {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .philosophy_cont .cont_flex .image {
    width: 100%;
  }
}
.philosophy_cont .cont_flex .image img {
  border-radius: 3rem;
  overflow: hidden;
}
.philosophy_cont .cont_flex .image p.caption {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  text-align: center;
}
.philosophy_cont .center_txt {
  text-align: center;
  font-size: clamp(2rem, 1.536rem + 0.6vw, 2.4rem);
}
.philosophy_cont .center_txt.red {
  color: #CE4C40;
}
.philosophy_cont .rinen_box {
  border: 2px solid #ccc;
  border-radius: 3rem;
  padding: 3rem;
  margin: 0 0 3rem 0;
}
.philosophy_cont .rinen_box p.red {
  color: #CE4C40;
}
.philosophy_cont .rinen_box p.big {
  font-weight: bold;
  font-size: clamp(1.85rem, 1.48rem + 0.5vw, 2.2rem);
  font-feature-settings: "palt";
}
.philosophy_cont .mid_illust {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}
.philosophy_cont .illust13 {
  width: 10%;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .philosophy_cont .illust13 {
    display: none;
  }
}
.philosophy_cont .sugata {
  border: 2px solid #CE4C40;
  border-radius: 3rem;
  padding: 3rem;
  margin: 0 0 5rem 0;
  width: 70%;
  margin: 0 auto 5rem auto;
}
@media screen and (max-width: 767px) {
  .philosophy_cont .sugata {
    width: 100%;
  }
}
.philosophy_cont .sugata h3 {
  display: inline-block;
  background: #CE4C40;
  color: #ffffff;
  padding: 0 2rem;
  border-radius: 3rem;
  transform: translateY(-4.5rem);
}
.philosophy_cont .sugata p.notsmall {
  font-size: clamp(2.3rem, 1.792rem + 0.7vw, 2.8rem);
}
@media screen and (max-width: 767px) {
  .philosophy_cont .sugata p.notsmall {
    font-size: clamp(1.7rem, 1.424rem + 0.4vw, 2rem);
  }
}
.philosophy_cont .sugata p.en {
  color: #CE4C40;
  font-size: clamp(2.45rem, 1.848rem + 0.8vw, 3rem);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .philosophy_cont .sugata p.en {
    line-height: 1.4;
  }
}

#section01 {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  #section01 {
    padding: 0 0 5rem 0;
  }
}
#section01 .illust01 {
  top: 0%;
  right: -10%;
  width: 20%;
}
#section01 .illust02 {
  top: 50%;
  left: -15%;
  width: 20%;
}

#section02 {
  background: #ffffff;
  position: relative;
  z-index: 1;
  margin-top: 12rem;
  padding-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  #section02 {
    padding: 0 6vw 7rem 6vw;
  }
}
#section02::before {
  content: "";
  position: absolute;
  top: -12rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 20rem;
  background: #ffffff;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
}
@media screen and (max-width: 767px) {
  #section02::before {
    height: 5rem;
    top: -5rem;
  }
}
#section02 .illust01 {
  top: -15rem;
  left: 10%;
  width: 15%;
}
@media screen and (max-width: 767px) {
  #section02 .illust01 {
    top: -10rem;
  }
}
#section02 .illust02 {
  top: -15rem;
  right: 10%;
  width: 15%;
}
@media screen and (max-width: 767px) {
  #section02 .illust02 {
    top: -8rem;
  }
}

#section03 {
  background: #F1F0EA;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #section03 {
    padding: 0;
  }
}
#section03::before {
  content: "";
  position: absolute;
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 15rem;
  background: #F1F0EA;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
}
@media screen and (max-width: 767px) {
  #section03::before {
    height: 5rem;
    top: -5rem;
  }
}
#section03 .illust01 {
  top: -15rem;
  left: 10%;
  width: 15%;
}
@media screen and (max-width: 767px) {
  #section03 .illust01 {
    top: -5rem;
  }
}
#section03 .illust02 {
  top: -15rem;
  right: 10%;
  width: 10%;
}
@media screen and (max-width: 767px) {
  #section03 .illust02 {
    top: -5rem;
  }
}

#section04 {
  background: #ffffff;
  position: relative;
  z-index: 1;
  margin-top: 12rem;
  padding-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  #section04 {
    padding: 0 6vw 10rem 6vw;
  }
}
#section04::before {
  content: "";
  position: absolute;
  top: -12rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 20rem;
  background: #ffffff;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
}
@media screen and (max-width: 767px) {
  #section04::before {
    height: 5rem;
    top: -5rem;
  }
}
#section04 .illust01 {
  top: -15rem;
  left: 10%;
  width: 10%;
}
@media screen and (max-width: 767px) {
  #section04 .illust01 {
    top: -7rem;
  }
}
#section04 .illust02 {
  top: -15rem;
  right: 10%;
  width: 10%;
}
@media screen and (max-width: 767px) {
  #section04 .illust02 {
    top: -7rem;
  }
}

#section05 {
  background: #F1F0EA;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #section05 {
    padding: 0;
  }
}
#section05::before {
  content: "";
  position: absolute;
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 15rem;
  background: #F1F0EA;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
}
@media screen and (max-width: 767px) {
  #section05::before {
    height: 5rem;
    top: -5rem;
  }
}

.jinzai h3 {
  font-weight: bold;
  font-size: clamp(2rem, 1.536rem + 0.6vw, 2.4rem);
  margin: 0 0 2rem 0;
  text-align: center;
}
.jinzai .round_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .jinzai .round_block {
    display: block;
  }
}
.jinzai .round_block .box {
  width: 320px;
  height: 320px;
  min-width: 300px;
  min-height: 300px;
  border-radius: 50%;
  background: #F1F0EA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .jinzai .round_block .box {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem auto;
  }
}
.jinzai .round_block .box .icon {
  width: 50%;
  margin: 0 auto 0 auto;
}
.jinzai .round_block .box .icon svg {
  display: block;
  line-height: 0;
  vertical-align: top;
}
.jinzai .round_block .box .txt {
  text-align: center;
  font-weight: 500;
  font-weight: bold;
  line-height: 1.5;
}
.jinzai .round_block .box .txt span {
  color: #CE4C40;
}
