@charset "UTF-8";
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --en-font: "Jost", sans-serif;
  --base-color: #464646;
  --white: #fff;
  --green: #2fac02;
  --orange: #F7C19C;
  --orange02: #EDB892;
  --orange03: #D48958;
  --orange04: #F7E4D6;
  --orange05: #E6B088;
  --gold2: #E6B088;
  --bg-yellow: #FBF2EA;
  --bg-orange: #F3CDB0;
  --bg-green: #8fcf78;
  --bg-pink: #F0708E;
  --bg-pink02: #F7A0DC;
  --bg-pink03: #D2486F;
  --bg-pink04: #E06CC9;
  --blue: #3599d7;
  --blue02: #9cc6dd;
  --blue03: #d9edf9;
  --blue04: #ebf2f7;
  --brown: #a08c7d;
}

/*------------------------------------------------------------
	index
------------------------------------------------------------*/
@keyframes concept1 {
  from {
    transform: translate(0, -1.5rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes concept2 {
  from {
    transform: translate(1.5rem, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes concept3 {
  from {
    transform: translate(1.5rem, 1.5rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes concept4 {
  from {
    transform: translate(-1.5rem, 1.5rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes concept5 {
  from {
    transform: translate(-1.5rem, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
.mainVisual {
  --mv-arch-bg: var(--white);
  --mv-arch-height: 21rem;
  padding-top: 7.7rem;
  position: relative;
  color: var(--white);
  background-color: var(--mv-arch-bg);
}
.mainVisual::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--mv-arch-height);
  background-color: var(--mv-arch-bg);
  clip-path: url(#mv-arch-clip);
  content: "";
  z-index: 1;
  pointer-events: none;
}
.mainVisual .mv-arch-clip-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.mainVisual .slideBox .slide {
  vertical-align: top;
}
.mainVisual .slideBox .slide .phoBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media all and (min-width: 897px) {
  .mainVisual .slideBox .slide .phoBox {
    display: flex;
    justify-content: space-between;
  }
  .mainVisual .slideBox .slide .phoBox .pho {
    width: calc(50% + 18.2rem);
    order: 1;
  }
  .mainVisual .slideBox .slide .phoBox ul {
    width: calc(50% - 18.7rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mainVisual .slideBox .slide .phoBox ul li:first-child {
    margin-bottom: 0.5rem;
  }
}
.mainVisual .textBox {
  position: absolute;
  left: 5.6rem;
  bottom: 6.3rem;
}
.mainVisual .textBox .title {
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}
.mainVisual .textBox .title span {
  margin-top: 0.7rem;
  display: block;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
.mainVisual .textBox .ttl {
  margin: 0 -0.2rem 0.4rem;
  font-size: 4.7rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}
.mainVisual .textBox .textImg {
  margin-left: -0.6rem;
  width: 65.9rem;
}
.mainVisual .textList {
  position: absolute;
  right: 5.7rem;
  bottom: 5.6rem;
}
.mainVisual .textList li {
  margin-left: -1.9rem;
  color: var(--brown);
  width: 16.2rem;
  height: 16.2rem;
  padding-top: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.78;
  background: url(../img/index/main_visual_bg01.webp) no-repeat center center;
  background-size: 100% 100%;
  /* text-shadow: 0 0 1rem rgba(0, 0, 0, 0.28), 0 0 1.8rem rgba(0, 0, 0, 0.18); */
}
.mainVisual .textList li .big {
  font-size: 2.6rem;
  line-height: 1.2;
}
.mainVisual .textList li .line {
  padding-bottom: 0.4rem;
  background: url(../img/common/line02.webp) repeat-x left bottom;
  background-size: 0.8rem auto;
}
.mainVisual .textList li:nth-child(2) {
  padding-top: 1.4rem;
  line-height: 1.9;
  background-image: url(../img/index/main_visual_bg02.webp);
}
.mainVisual .textList li:nth-child(3) {
  background-image: url(../img/index/main_visual_bg03.webp);
}
@media all and (max-width: 896px) {
  .mainVisual {
    padding-top: 3.7rem;
    --mv-arch-height: 8.5rem;
  }
  .mainVisual::before {
    clip-path: url(#mv-arch-clip-sp);
  }
  .mainVisual .slideBox .slide .phoBox ul {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
  }
  .mainVisual .slideBox .slide .phoBox ul li {
    width: calc(50% - 0.2rem);
  }
  .mainVisual .slideBox .slide .phoBox ul li:last-child {
    order: -1;
  }
  .mainVisual .textBox {
    left: 2.1rem;
    bottom: 20.3rem;
  }
  .mainVisual .textBox .title {
    font-size: 1.3rem;
  }
  .mainVisual .textBox .title span {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
  .mainVisual .textBox .ttl {
    margin-bottom: -0.1rem;
    font-size: 2.28rem;
  }
  .mainVisual .textBox .textImg {
    margin-left: -0.4rem;
    width: 32rem;
  }
  .mainVisual .textList {
    left: 50%;
    right: auto;
    bottom: -7.5rem;
    transform: translateX(-50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.25rem;
  }
  .mainVisual .textList li {
    margin: 0;
    width: 11.5rem;
    height: 11.5rem;
    padding-top: 0.3rem;
    font-size: 1.34rem;
    line-height: 1.76;
  }
  .mainVisual .textList li .big {
    font-size: 1.83rem;
    line-height: 1.2;
  }
  .mainVisual .textList li .line {
    padding-bottom: 0.2rem;
    background-size: 0.6rem auto;
  }
  .mainVisual .textList li:nth-child(2) {
    padding-top: 1rem;
    line-height: 2;
  }
}

#main {
  overflow: hidden;
}
#main .news {
  background-color: var(--white);
}
#main .news .content {
  padding: 1.7rem 2rem 2.2rem;
  display: flex;
  align-items: center;
}
#main .news .content .en {
  margin-top: 0.3rem;
  width: 17.8rem;
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 700;
}
#main .news .content .txt {
  width: calc(100% - 17.8rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
#main .news .content .txt li {
  margin: 0;
}
#main .news .content .txt li + li {
  margin-top: 0.8rem;
}
#main .news .content .txt a {
  padding: 2rem 5rem 2rem 0;
  width: 100%;
  display: flex;
  letter-spacing: 0.05em;
  background: url(../img/common/icon04.webp) no-repeat right center;
  background-size: 3.7rem auto;
}
@media all and (min-width: 1025px) {
  #main .news .content .txt a:hover {
    opacity: 0.5;
  }
}
#main .news .content .txt time {
  width: 12.8rem;
  flex-shrink: 0;
}
#main .news .content .txt span {
  text-decoration: underline;
}
@media all and (max-width: 896px) {
  #main .news .content {
    padding: 9.7rem 2rem 2rem;
    align-items: center;
  }
  #main .news .content .en {
    margin-top: 0;
    width: 8.6rem;
    font-size: 2.2rem;
  }
  #main .news .content .txt {
    width: calc(100% - 8.6rem);
    line-height: 1.8;
  }
  #main .news .content .txt li + li {
    margin-top: 1.2rem;
  }
  #main .news .content .txt a {
    padding: 0;
    display: block;
    background: none;
  }
  #main .news .content .txt time {
    margin-bottom: -0.1rem;
    width: auto;
    display: block;
  }
}
#main .news-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
#main .news-modal.is-open {
  display: flex;
}
#main .news-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
#main .news-modal__body {
  position: relative;
  width: min(92%, 78rem);
  max-height: 88vh;
  padding: 4rem;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow: hidden;
}
#main .news-modal__header {
  position: relative;
  padding-right: 1.2rem;
}
#main .news-modal__title {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-family: var(--sub-font, var(--base-font));
  color: var(--gold2);
}
#main .news-modal__date {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--brown);
}
#main .news-modal__content {
  margin-top: 0.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(70, 70, 70, 0.12);
  overflow: auto;
  max-height: calc(88vh - 9rem);
}
#main .news-modal__content p {
  margin: 0 0 1.2rem;
  line-height: 1.8;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
#main .news-modal__content p:last-child {
  margin-bottom: 0;
}
#main .news-modal__content ul {
  margin: 0 0 1.2rem;
  padding: 0;
}
#main .news-modal__content ul li {
  margin: 0 0 0.6rem;
  padding-left: 1.4em;
  position: relative;
  line-height: 1.7;
  font-size: 1.6rem;
  list-style: none;
}
#main .news-modal__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold2);
}
#main .news-modal__content strong {
  font-weight: 700;
}
#main .news-modal__content .comLink {
  margin-top: 2rem;
}
#main .news-modal__content .news-imgs {
  display: flex;
  gap: 1.6rem;
  margin: 2rem 0 0;
  align-items: flex-start;
}
#main .news-modal__content .news-imgs__item {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  display: block;
}
#main .news-modal__content .news-imgs__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.12);
}
@media all and (min-width: 1025px) {
  #main .news-modal__content .news-imgs__item:hover {
    opacity: 0.85;
  }
}
#main .news-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--brown);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--base-color);
}
@media all and (max-width: 896px) {
  #main .news-modal__body {
    width: 94%;
    padding: 3rem 2.6rem 2.6rem;
  }
  #main .news-modal__title {
    font-size: 2rem;
  }
  #main .news-modal__date {
    font-size: 1.4rem;
  }
  #main .news-modal__content {
    max-height: calc(88vh - 8rem);
  }
  #main .news-modal__content p, #main .news-modal__content ul li {
    font-size: 1.4rem;
  }
  #main .news-modal__content .news-imgs {
    gap: 1rem;
  }
}
#main .news-zoom {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2100;
}
#main .news-zoom.is-open {
  display: flex;
}
#main .news-zoom__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
#main .news-zoom__body {
  position: relative;
  width: min(96%, 90rem);
  max-height: 92vh;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main .news-zoom__img {
  max-width: 100%;
  max-height: calc(92vh - 2rem);
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.8rem;
  background: var(--white);
}
#main .news-zoom__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--white);
}
#main .news-contents {
  display: none;
}
#main .about {
  padding: 9.7rem 0 12.9rem;
}
#main .about .imgBox {
  margin-bottom: 9.7rem;
  position: relative;
}
#main .about .imgBox .textBox {
  width: 60rem;
}
#main .about .imgBox .textBox .ttl {
  margin-bottom: 4.3rem;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  color: var(--orange02);
}
#main .about .imgBox .textBox .ttl .line {
  background: linear-gradient(transparent 68%, var(--white) 0%);
}
#main .about .imgBox .textBox .ttl .big {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 3rem;
  letter-spacing: 0.075em;
}
#main .about .imgBox .textBox .ttl .big .bg {
  padding: 0.5rem 1.4rem 0.8rem 1.8rem;
  flex-shrink: 0;
  margin-right: 1rem;
  color: var(--white);
  font-size: 4.6rem;
  letter-spacing: 0.04em;
  background-color: var(--orange02);
  border-radius: 1rem;
}
#main .about .imgBox .textBox .txt {
  margin: 0 0 3.3rem 0.6rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
#main .about .imgBox .textBox ul {
  margin-bottom: 3.1rem;
}
#main .about .imgBox .textBox ul li {
  margin-bottom: 0.7rem;
  padding: 0.8rem 2rem 0.9rem 4.8rem;
  width: fit-content;
  letter-spacing: 0.05em;
  background: var(--white) url(../img/common/icon05.webp) no-repeat left 1.7rem top 1rem;
  background-size: 2.3rem auto;
  border-radius: 1rem;
}
#main .about .imgBox .textBox ul li .orange {
  font-weight: 700;
}
#main .about .imgBox .textBox ul li:last-child {
  margin-bottom: 0 !important;
}
#main .about .imgBox .textBox .text {
  margin-bottom: 5.6rem;
  line-height: 2.3;
}
#main .about .imgBox .textBox .text .bold {
  padding-bottom: 0.2rem;
  background: url(../img/common/line01.webp) repeat-x left bottom;
  background-size: 1rem auto;
}
#main .about .imgBox .photoBox {
  position: absolute;
  right: -12.3rem;
  top: -0.4rem;
  width: 69rem;
}
#main .about .imgBox .photoBox p {
  width: 20rem;
  height: 20rem;
  position: absolute;
  left: 50%;
  top: 50%;
  padding-top: 0.2rem;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 3.25rem;
  line-height: 1.12;
  color: var(--orange02);
}
#main .about .imgBox .photoBox p .sml {
  font-size: 2.85rem;
  letter-spacing: 0.09em;
}
#main .about .imgBox .photoBox .link {
  position: absolute;
  width: 15.1rem;
}
#main .about .imgBox .photoBox .link a {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
@media all and (min-width: 1025px) {
  #main .about .imgBox .photoBox .link a:hover {
    opacity: 0.5;
  }
}
#main .about .imgBox .photoBox .link span {
  position: absolute;
  font-weight: 700;
  color: var(--white);
  top: 9.1rem;
  left: 0;
  width: 100%;
  text-align: center;
}
#main .about .imgBox .photoBox .link.link01 {
  top: 6.8rem;
  left: 27rem;
  animation: concept1 1.5s ease-in-out 0s infinite alternate;
}
#main .about .imgBox .photoBox .link.link02 {
  top: 21.3rem;
  left: 44.6rem;
  width: 16.7rem;
  animation: concept2 1.5s ease-in-out 0s infinite alternate;
}
#main .about .imgBox .photoBox .link.link02 span {
  padding-left: 1.7rem;
  top: 8.8rem;
}
#main .about .imgBox .photoBox .link.link03 {
  top: 43rem;
  left: 39.3rem;
  animation: concept3 1.5s ease-in-out 0s infinite alternate;
}
#main .about .imgBox .photoBox .link.link03 span {
  top: 9.8rem;
}
#main .about .imgBox .photoBox .link.link04 {
  top: 43rem;
  left: 14.6rem;
  animation: concept4 1.5s ease-in-out 0s infinite alternate;
}
#main .about .imgBox .photoBox .link.link04 span {
  top: 9.8rem;
}
#main .about .imgBox .photoBox .link.link05 {
  top: 21.3rem;
  left: 7.8rem;
  width: 17.1rem;
  animation: concept5 1.5s ease-in-out 0s infinite alternate;
}
#main .about .imgBox .photoBox .link.link05 span {
  padding-right: 1.9rem;
  top: 9.1rem;
}
@media all and (max-width: 896px) {
  #main .about {
    padding: 6.6rem 0 4.9rem;
  }
  #main .about .imgBox {
    margin-bottom: 4.6rem;
  }
  #main .about .imgBox .textBox {
    width: auto;
  }
  #main .about .imgBox .textBox .ttl {
    margin: 0 -1rem 1.2rem -0.1rem;
    font-size: 2.4rem;
    line-height: 1.54;
    letter-spacing: 0.091em;
  }
  #main .about .imgBox .textBox .ttl .big {
    margin-top: 2.6rem;
    display: block;
    font-size: 3.2rem;
  }
  #main .about .imgBox .textBox .ttl .big .bg {
    display: inline-block;
    vertical-align: middle;
    padding: 0.8rem 1.1rem 1rem 1rem;
    line-height: 1.2;
    margin: -3rem 0.8rem 0 0;
    font-size: 3.4rem;
    letter-spacing: 0.01em;
    border-radius: 0.8rem;
  }
  #main .about .imgBox .textBox .txt {
    margin: 0 0 2.8rem 0.1rem;
    font-size: 1.8rem;
    line-height: 2;
  }
  #main .about .imgBox .textBox ul {
    margin-bottom: 2.3rem;
  }
  #main .about .imgBox .textBox ul li {
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    width: auto;
    line-height: 1.56;
  }
  #main .about .imgBox .textBox .text {
    margin-bottom: 3.3rem;
    text-align: justify;
    letter-spacing: 0.025em;
  }
  #main .about .imgBox .photoBox {
    position: relative;
    right: auto;
    top: auto;
    width: 35rem;
    margin: 0 auto 3.1rem;
  }
  #main .about .imgBox .photoBox .pho {
    margin: 0 -0.7rem;
  }
  #main .about .imgBox .photoBox p {
    width: 11.4rem;
    height: 11.4rem;
    padding-top: 0.5rem;
    font-size: 1.85rem;
  }
  #main .about .imgBox .photoBox p .sml {
    font-size: 1.6rem;
  }
  #main .about .imgBox .photoBox .link {
    width: 9rem;
  }
  #main .about .imgBox .photoBox .link span {
    top: 4.9rem;
    font-size: 1.4rem;
  }
  #main .about .imgBox .photoBox .link.link01 {
    top: 2.3rem;
    left: 13rem;
  }
  #main .about .imgBox .photoBox .link.link02 {
    top: 10.6rem;
    left: 23.2rem;
    width: 9.8rem;
  }
  #main .about .imgBox .photoBox .link.link02 span {
    padding-left: 0.8rem;
    top: 4.7rem;
  }
  #main .about .imgBox .photoBox .link.link03 {
    top: 23.2rem;
    left: 20.1rem;
  }
  #main .about .imgBox .photoBox .link.link03 span {
    top: 5.1rem;
  }
  #main .about .imgBox .photoBox .link.link04 {
    top: 23.2rem;
    left: 6rem;
  }
  #main .about .imgBox .photoBox .link.link04 span {
    top: 5.1rem;
  }
  #main .about .imgBox .photoBox .link.link05 {
    top: 10.6rem;
    left: 2rem;
    width: 10rem;
  }
  #main .about .imgBox .photoBox .link.link05 span {
    padding-right: 0.8rem;
    top: 4.9rem;
  }
}
#main .philosophy {
  --philosophy-bg: #f9bf95;
  padding: 13.4rem 0 14.3rem;
  position: relative;
  z-index: 1;
  overflow: visible;
  background: transparent;
}
#main .philosophy::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-color: var(--philosophy-bg);
  clip-path: url(#philosophy-clip);
  pointer-events: none;
}
#main .philosophy .philosophy-clip-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
#main .philosophy .content {
  position: relative;
  z-index: 1;
}
#main .philosophy .textBox .headLine01 {
  color: var(--white);
}
#main .philosophy .textBox p {
  margin-bottom: 5rem;
  text-align: center;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 2.05;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}
#main .philosophy .textBox p span {
  margin-bottom: 1.4rem;
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}
#main .philosophy .textBox p strong {
  font-weight: 700;
}
#main .philosophy .textBox .comLink {
  margin: 0 auto;
}
#main .philosophy .phoBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#main .philosophy .phoBox > div {
  position: absolute;
  overflow: hidden;
  border-radius: 2rem;
}
#main .philosophy .phoBox .pho01 {
  width: 16.3rem;
  left: 22.9rem;
  top: 24.9rem;
  z-index: 1;
}
#main .philosophy .phoBox .pho02 {
  width: 28.9rem;
  left: 0;
  top: 38.2rem;
  border-radius: 0 0 3rem 0;
}
#main .philosophy .phoBox .pho03 {
  width: 17.7rem;
  right: 22.7rem;
  top: 4.2rem;
}
#main .philosophy .phoBox .pho04 {
  width: 11.4rem;
  right: 35.7rem;
  top: 50.3rem;
}
#main .philosophy .phoBox .pho05 {
  width: 21.5rem;
  right: 0;
  bottom: 6.5rem;
  border-radius: 3rem 0 0 3rem;
}
@media all and (max-width: 896px) {
  #main .philosophy {
    padding: 7.7rem 0 33.7rem;
  }
  #main .philosophy::before {
    clip-path: url(#philosophy-clip-sp);
  }
  #main .philosophy .textBox .headLine01 {
    color: var(--white);
  }
  #main .philosophy .textBox p {
    margin-bottom: 4.1rem;
    font-size: 1.6rem;
    letter-spacing: 0.025em;
    line-height: 1.875;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  }
  #main .philosophy .textBox p span {
    margin-bottom: 1.4rem;
    font-size: 1.8rem;
    line-height: 1.44;
    letter-spacing: 0.05em;
  }
  #main .philosophy .textBox p strong {
    font-size: 1.8rem;
  }
  #main .philosophy .textBox .comLink {
    margin: 0 auto;
  }
  #main .philosophy .phoBox {
    z-index: 2;
  }
  #main .philosophy .phoBox > div {
    top: auto !important;
    border-radius: 1rem;
  }
  #main .philosophy .phoBox .pho01 {
    width: 8.5rem;
    left: 5.7rem;
    bottom: 15.7rem;
  }
  #main .philosophy .phoBox .pho02 {
    width: 16.2rem;
    bottom: -3rem;
    border-radius: 0 2rem 2rem 0;
  }
  #main .philosophy .phoBox .pho03 {
    width: 8.1rem;
    right: 3rem;
    bottom: 18.2rem;
  }
  #main .philosophy .phoBox .pho04 {
    width: 5.2rem;
    right: 12.6rem;
    bottom: 7.6rem;
    border-radius: 0.5rem;
  }
  #main .philosophy .phoBox .pho05 {
    width: 12.1rem;
    bottom: -9.6rem;
    border-radius: 2rem 0 0 2rem;
  }
}
#main .features {
  padding: 7.9rem 0 30rem;
  position: relative;
  background-color: var(--white);
}
#main .features .bg01 {
  position: absolute;
  left: 4.5rem;
  top: 6.6rem;
  width: 91.1rem;
}
#main .features .bg02 {
  position: absolute;
  right: -16.5rem;
  bottom: 0.2rem;
  width: 89.1rem;
}
#main .features .headLine01 {
  margin-bottom: 8.4rem;
  position: relative;
  z-index: 2;
}
#main .features .headLine01::before {
  margin-bottom: -1.9rem;
}
#main .features .imgBox {
  margin-bottom: 10rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
#main .features .imgBox .pho {
  width: calc(50% - 7.4rem);
  position: relative;
}
#main .features .imgBox .pho img {
  width: 100%;
}
#main .features .imgBox .pho img:not(.on) {
  border-radius: 0 5rem 5rem 0;
}
#main .features .imgBox .pho .on {
  position: absolute;
  left: 0;
  bottom: 0;
}
#main .features .imgBox .textBox {
  margin: 0.5rem 0 0 13.3rem;
  width: 60rem;
}
#main .features .imgBox .textBox .ttl {
  margin-bottom: 2.7rem;
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.28;
  color: var(--blue02);
}
#main .features .imgBox .textBox .ttl .num {
  margin: 0.3rem 1.7rem 0 0;
  flex-shrink: 0;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: 0;
}
#main .features .imgBox .textBox .title {
  margin-bottom: 0.4rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
#main .features .imgBox .textBox p {
  margin-bottom: 1.9rem;
  text-align: justify;
  line-height: 1.8;
}
#main .features .imgBox .textBox p span {
  font-weight: 700;
}
#main .features .imgBox.imgBox01 {
  margin-bottom: 9.6rem;
  justify-content: flex-end;
}
#main .features .imgBox.imgBox01 .pho {
  width: calc(50% - 6rem);
  order: 1;
}
#main .features .imgBox.imgBox01 .pho img:not(.on) {
  border-radius: 5rem 0 0 5rem;
}
#main .features .imgBox.imgBox01 .textBox {
  margin: 0.5rem 11.3rem 0 0;
}
#main .features .imgBox.imgBox02 {
  margin-bottom: 10.5rem;
}
#main .features .imgBox.imgBox02 .pho {
  width: calc(50% - 5.3rem);
}
#main .features .imgBox.imgBox02 .textBox {
  margin-left: 11.3rem;
}
#main .features .comLink {
  margin: 0 auto;
}
@media all and (max-width: 896px) {
  #main .features {
    padding: 12.7rem 0 20.4rem;
  }
  #main .features .bg01 {
    left: auto;
    right: -13.7rem;
    top: 10.5rem;
    width: 48rem;
  }
  #main .features .headLine01 {
    margin-bottom: 4.7rem;
  }
  #main .features .headLine01::before {
    margin-bottom: -1.3rem;
  }
  #main .features .imgBox {
    margin-bottom: 8.2rem;
    display: block;
  }
  #main .features .imgBox .bg03 {
    position: absolute;
    width: 48rem;
    top: -25.5rem;
    left: -16.5rem;
  }
  #main .features .imgBox .bg04 {
    position: absolute;
    right: -13.7rem;
    bottom: -33.5rem;
    width: 48rem;
  }
  #main .features .imgBox .pho {
    position: relative;
    z-index: 2;
    margin-right: 2rem;
    width: auto !important;
  }
  #main .features .imgBox .pho img:not(.on) {
    border-radius: 0 2rem 2rem 0;
  }
  #main .features .imgBox .textBox {
    margin: 2.8rem 2rem 0 !important;
    width: auto !important;
    position: relative;
    z-index: 3;
  }
  #main .features .imgBox .textBox .ttl {
    margin-bottom: 1.3rem;
    font-size: 2.2rem;
    line-height: 1.36;
  }
  #main .features .imgBox .textBox .ttl .num {
    margin: 0.3rem 1.9rem 0 0;
    font-size: 5.6rem;
  }
  #main .features .imgBox .textBox .title {
    margin-bottom: 1.7rem;
    font-size: 1.8rem;
    line-height: 1.44;
  }
  #main .features .imgBox .textBox p {
    margin-bottom: 2.2rem;
  }
  #main .features .imgBox .textBox p:last-child {
    margin-bottom: 0;
  }
  #main .features .imgBox.imgBox01 {
    margin-bottom: 7.5rem;
  }
  #main .features .imgBox.imgBox01 .pho {
    margin: 0 0 0 2rem;
  }
  #main .features .imgBox.imgBox01 .pho img:not(.on) {
    border-radius: 2rem 0 0 2rem;
  }
  #main .features .imgBox.imgBox02 {
    margin-bottom: 3.4rem;
  }
  #main .features .imgBox.imgBox03 {
    z-index: 3;
  }
}
#main .doctor {
  padding: 6.3rem 0 22.6rem;
}
#main .doctor .headLine01 {
  margin-bottom: 6.4rem;
}
#main .doctor .headLine01::before {
  margin-bottom: -2.3rem;
}
#main .doctor .imgBox {
  margin-left: -2rem;
}
#main .doctor .imgBox .pho {
  width: 55rem;
}
#main .doctor .imgBox .pho img {
  width: 100%;
  border-radius: 50rem;
}
#main .doctor .imgBox .textBox {
  width: 55rem;
}
#main .doctor .imgBox .textBox .name {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
#main .doctor .imgBox .textBox .name .sml {
  margin: 0.4rem 1.9rem 0 0;
  width: 5rem;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  text-align: center;
  color: var(--white);
  background-color: var(--orange);
  border-radius: 5rem;
}
#main .doctor .imgBox .textBox .name .en {
  margin: 0.6rem 0 0 1.9rem;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
#main .doctor .imgBox .textBox .text {
  margin-bottom: 4.5rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
#main .doctor .imgBox .textBox .whiteBg {
  margin-bottom: 5.6rem;
  padding: 4.2rem 4.3rem 3.2rem 5.2rem;
  background-color: var(--white);
  border-radius: 3rem;
}
#main .doctor .imgBox .textBox .whiteBg .dotList {
  margin-bottom: 2.7rem;
}
#main .doctor .imgBox .textBox .whiteBg .dotList:last-child {
  margin-bottom: 0 !important;
}
#main .doctor .imgBox .textBox .whiteBg .dotList li {
  position: relative;
  padding-left: 0.7rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
#main .doctor .imgBox .textBox .whiteBg .dotList li::before {
  position: absolute;
  left: -0.2rem;
  top: 0;
  content: "・";
}
@media all and (max-width: 896px) {
  #main .doctor {
    padding: 5.7rem 0 11.8rem;
  }
  #main .doctor .headLine01 {
    margin-bottom: 2.1rem;
  }
  #main .doctor .headLine01::before {
    margin-bottom: -2.1rem;
  }
  #main .doctor .imgBox {
    margin-left: 0;
    display: block;
  }
  #main .doctor .imgBox .pho {
    width: 27.5rem;
    margin: 0 auto 1.6rem;
  }
  #main .doctor .imgBox .pho img {
    height: 36.5rem;
    object-fit: cover;
  }
  #main .doctor .imgBox .textBox {
    width: auto;
  }
  #main .doctor .imgBox .textBox .name {
    margin-bottom: 0.9rem;
    font-size: 3.3rem;
  }
  #main .doctor .imgBox .textBox .name .sml {
    margin-right: 0.9rem;
  }
  #main .doctor .imgBox .textBox .name .en {
    font-size: 1.3rem;
  }
  #main .doctor .imgBox .textBox .text {
    margin-bottom: 3.3rem;
    text-align: justify;
  }
  #main .doctor .imgBox .textBox .whiteBg {
    margin-bottom: 4.3rem;
    padding: 4.2rem 2.3rem 2.9rem 2.6rem;
    border-radius: 2.5rem;
  }
  #main .doctor .imgBox .textBox .whiteBg .dotList {
    margin-bottom: 2.9rem;
  }
  #main .doctor .imgBox .textBox .comLink {
    width: 30rem;
  }
}
#main .first {
  padding: 0.5rem 0 10.2rem;
  background: linear-gradient(90deg, #e4f2f6 0%, #e8f0e8 14%, #ebe7c7 28%, #f4c89e 45%, #f6c096 58%, #f5d49a 78%, #f5e28a 100%);
}
#main .first .inner {
  margin-top: -24.5rem;
  padding: 6.5rem 0 0;
  position: relative;
  z-index: 5;
  background: var(--white);
  border-radius: 4.1rem;
  box-shadow: 0 0 0.4rem rgba(70, 70, 70, 0.1);
}
#main .first .inner .headLine01 {
  margin-bottom: -1.8rem;
  letter-spacing: 0.025em;
}
#main .first .inner .headLine01::before {
  margin-bottom: -1.9rem;
}
#main .first .inner .subInner {
  margin: 0 auto;
  max-width: 100.8rem;
}
#main .first .inner .subInner .photo {
  width: 33.4rem;
}
#main .first .inner .subInner .textArea {
  padding-top: 6.4rem;
  width: calc(100% - 42.6rem);
  order: 2;
}
#main .first .inner .subInner .textArea .subArea {
  max-width: 51.5rem;
}
#main .first .inner .subInner .textArea .talkBox {
  margin-bottom: 2rem;
  padding: 0 1.9rem;
  max-width: 49.6rem;
}
#main .first .inner .subInner .textArea .talkBox .innText {
  margin-bottom: 1rem;
  position: relative;
  padding: 0.7rem 2rem 1.1rem 2.5rem;
  color: var(--brown);
  font-size: 1.8rem;
  letter-spacing: 0.025em;
  width: fit-content;
  background: var(--blue03);
  border-radius: 2.2rem;
}
#main .first .inner .subInner .textArea .talkBox .innText::before {
  position: absolute;
  bottom: -1.4rem;
  left: 7.7rem;
  width: 3rem;
  height: 1.4rem;
  background: url(../img/common/icon11.webp) no-repeat left top/100%;
  content: "";
}
#main .first .inner .subInner .textArea .talkBox .innText:nth-child(2) {
  margin: 0 0 0 auto;
}
#main .first .inner .subInner .textArea .talkBox .innText:nth-child(2)::before {
  left: auto;
  right: 12.1rem;
  bottom: -1.3rem;
  background-image: url(../img/common/icon12.webp);
}
#main .first .inner .subInner .textArea .hTitle {
  margin-bottom: 0.7rem;
  color: var(--orange);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
#main .first .inner .subInner .textArea .text {
  margin-bottom: 3.1rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
#main .first .inner .subInner .textArea .linkList {
  gap: 1.3rem 0;
}
#main .first .inner .subInner .textArea .linkList .comLink {
  width: 50%;
}
#main .first .inner .subInner .textArea .linkList .comLink a {
  height: 5.1rem;
  padding: 0 3rem 0.2rem 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold2);
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid var(--gold2);
  border-radius: 5rem;
  background: var(--white) url(../img/common/icon03.webp) no-repeat right 2rem center;
  background-size: 0.6rem auto;
  width: 25rem;
  margin: 0 auto;
}
@media all and (min-width: 1025px) {
  #main .first .inner .subInner .textArea .linkList .comLink a:hover {
    color: var(--white);
    background-color: var(--gold2);
    background-image: url(../img/common/icon06.webp);
  }
}
@media all and (max-width: 896px) {
  #main .first {
    padding: 0.5rem 0 8.7rem;
  }
  #main .first .inner {
    margin-top: -7.2rem;
    padding: 2.5rem 0 0;
    border-radius: 2.4rem;
  }
  #main .first .inner .headLine01 {
    margin-bottom: 2.3rem;
    letter-spacing: 0.025em;
  }
  #main .first .inner .headLine01::before {
    margin-bottom: -1.4rem;
  }
  #main .first .inner .subInner {
    margin: 0;
    max-width: inherit;
    display: block;
  }
  #main .first .inner .subInner .photo {
    margin: -1.8rem auto 0;
    padding-right: 1rem;
    width: 22.8rem;
    height: 29rem;
    box-sizing: content-box;
  }
  #main .first .inner .subInner .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  #main .first .inner .subInner .textArea {
    padding-top: 0;
    width: auto;
  }
  #main .first .inner .subInner .textArea .subArea {
    padding: 0 2.5rem;
    max-width: inherit;
  }
  #main .first .inner .subInner .textArea .talkBox {
    margin: 0 -3.3rem 3rem;
    padding: 0;
    max-width: inherit;
  }
  #main .first .inner .subInner .textArea .talkBox .innText {
    margin-bottom: 1.9rem;
  }
  #main .first .inner .subInner .textArea .hTitle {
    margin-bottom: 0.3rem;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
  #main .first .inner .subInner .textArea .text {
    margin-bottom: 3.8rem;
    text-align: justify;
  }
  #main .first .inner .subInner .textArea .linkList {
    display: block;
    position: relative;
    z-index: 5;
  }
  #main .first .inner .subInner .textArea .linkList li {
    margin: 0 auto 1.3rem;
    width: auto;
    max-width: 25rem;
  }
  #main .first .inner .subInner .textArea .linkList li:last-child {
    margin-bottom: 0;
  }
  #main .first .inner .subInner .textArea .linkList .comLink {
    width: auto;
  }
  #main .first .inner .subInner .textArea .linkList .comLink a {
    width: 25rem;
  }
}/*# sourceMappingURL=index.css.map */