@charset "UTF-8";
/* CSS Document */
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --sub-font: "Shippori Mincho", serif;
  --en-font: "Cormorant Infant", serif;
  --base-color: #363636;
  --sub-color: #9E8A30;
  --white: #fff;
  --gold: #B7A44F;
  --yellow: #F6E69D;
  --yellow-9: rgba(246,230,157,0.9);
  --brown: #716A52;
  --gray: #f2f2f2;
  --dark-green: #032013;
  --green: #0d6f45;
}

@-webkit-keyframes fadeSlide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes rotateLogos {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotateLogos {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.subMv {
  width: 100%;
  aspect-ratio: 3/1;
  position: relative;
}
.subMv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.subMv::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
@media all and (max-width: 896px) {
  .subMv {
    aspect-ratio: 16/9;
  }
}

.pankuzu {
  margin-top: 0;
  padding: 20rem 0 0;
  position: relative;
}
@media all and (min-width: 898px) and (max-width: 1365px) {
  .pankuzu {
    padding-top: 25rem;
  }
}
@media all and (max-width: 896px) {
  .pankuzu {
    padding-top: 15rem;
  }
}
.pankuzu ul {
  max-width: 1100px;
  margin: 0 auto;
}
@media all and (min-width: 898px) and (max-width: 1365px) {
  .pankuzu ul {
    width: 100%;
    padding: 0 5rem;
  }
}
@media all and (max-width: 896px) {
  .pankuzu ul {
    width: 100%;
    padding: 0 3rem;
  }
}
.pankuzu ul li {
  font-size: 1.2rem;
  display: inline-block;
  letter-spacing: 2.5px;
}
@media all and (max-width: 896px) {
  .pankuzu ul li {
    font-size: 1rem;
  }
}
.pankuzu ul li:not(:last-of-type):after {
  content: "＞";
  margin-left: 0.5em;
}

.subMv + .pankuzu {
  padding-top: 3rem;
}
@media all and (max-width: 896px) {
  .subMv + .pankuzu {
    padding-top: 2rem;
  }
}

/*pankuzu*/
.comAnchorBox ul {
  margin: 0 auto;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.comAnchorBox ul li {
  width: 48%;
  margin-bottom: 1rem;
}
.comAnchorBox ul li a {
  border-bottom: 1px solid;
  display: block;
  width: 100%;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 12px 20px 12px 0;
  position: relative;
}
.comAnchorBox ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--base-color);
  border-right: 1px solid var(--base-color);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media all and (max-width: 896px) {
  .comAnchorBox ul {
    display: block;
    width: auto;
  }
  .comAnchorBox ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
  .comAnchorBox ul li:last-child {
    margin-bottom: 0;
  }
  .comAnchorBox ul li a {
    background-position: right 2px center;
    font-size: 1.4rem;
    padding: 9px 20px 8px 0;
  }
}

/*comAnchorBox*/
main {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  z-index: 0;
  background: url(../img/index/feature_bg.webp) repeat left top/10rem;
  /*section*/
}
main:before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  z-index: -1;
}
main .logo-spin {
  position: absolute;
  width: 50rem;
  aspect-ratio: 1/1;
  background-image: url(../img/index/philosophy_imgtext01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: rotateLogos 100s linear infinite;
          animation: rotateLogos 100s linear infinite;
}
main .logo1 {
  top: 55rem;
  right: 0;
}
main .logo2 {
  top: 40%;
  left: 0;
}
main .logo3 {
  bottom: 65rem;
  right: 0;
}
@media all and (max-width: 896px) {
  main .logo-spin {
    width: 35rem;
  }
  main .logo1 {
    top: 25rem;
    right: -5rem;
  }
  main .logo2 {
    top: 50%;
    left: -5rem;
  }
  main .logo3 {
    bottom: 87rem;
    right: -5rem;
  }
}
main a:hover {
  opacity: 0.5;
}
main h1.no-section {
  text-align: center;
  margin-block: 6rem 3rem;
}
@media all and (max-width: 896px) {
  main h1.no-section {
    margin-block: 4rem 0;
  }
}
main h1.no-section .en {
  display: block;
  font-family: var(--en-font);
  color: var(--gold);
  font-size: 8rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media all and (max-width: 896px) {
  main h1.no-section .en {
    font-size: 3rem;
  }
}
main h1.no-section .jp {
  display: block;
  font-family: var(--sub-font);
  color: var(--base-color);
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
@media all and (max-width: 896px) {
  main h1.no-section .jp {
    font-size: 1.4rem;
  }
}
main .subMv h1.no-section {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
  z-index: 1;
}
@media all and (max-width: 896px) {
  main .subMv h1.no-section {
    top: 60%;
  }
}
main .subMv h1.no-section .jp {
  color: #fff;
}
main section:not([class]) {
  display: block;
  margin: 0 auto;
  padding: 7rem 0 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1100px;
  /*.side-img*/
  /*ul*/
  /*ol*/
  /*ol.flow*/
  /*table*/
  /*dl*/
  /*hosoku*/
}
@media all and (min-width: 898px) and (max-width: 1365px) {
  main section:not([class]) {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) {
    width: 100%;
    padding: 5rem 2.5rem 0;
    margin: 0;
  }
}
main section:not([class]):not(:has(~ section:not([class]))) {
  padding-bottom: 15rem;
}
@media all and (max-width: 896px) {
  main section:not([class]):not(:has(~ section:not([class]))) {
    padding-bottom: 7.5rem;
  }
}
main section:not([class]) > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) > *:first-child {
  margin-top: 0 !important;
}
main section:not([class]) * {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
main section:not([class]) h2 + *, main section:not([class]) h3 + *, main section:not([class]) h4 + *, main section:not([class]) h5 + *, main section:not([class]) h6 + * {
  margin-top: 0 !important;
}
main section:not([class]) h2 + img, main section:not([class]) h3 + img {
  display: block;
  width: 100%;
  margin: 4rem auto;
}
@media all and (max-width: 896px) {
  main section:not([class]) h2 + img, main section:not([class]) h3 + img {
    margin: 1.8rem 0;
  }
}
main section:not([class]) h2:not([class]) {
  font-weight: 700;
  font-size: 3.3rem;
  font-family: var(--sub-font);
  line-height: 1.6;
  background: var(--brown);
  color: var(--white);
  text-align: center;
  margin: 0 0 4rem;
  padding: 0.5em 1em;
}
@media all and (max-width: 896px) {
  main section:not([class]) h2:not([class]) {
    font-size: 1.9rem;
    margin: 6rem 0 2.5rem;
  }
}
main section:not([class]) h3:not([class]) {
  color: var(--sub-color);
  font-weight: 600;
  font-size: 2.8rem;
  font-family: var(--sub-font);
  margin: 8rem 0 3rem;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--sub-color);
}
@media all and (max-width: 896px) {
  main section:not([class]) h3:not([class]) {
    font-size: 1.9rem;
    margin: 5rem 0 2rem;
  }
}
main section:not([class]) h4:not([class]) {
  font-size: 2.3rem;
  font-weight: 700;
  font-family: var(--sub-font);
  color: var(--sub-color);
  letter-spacing: 0.1em;
  margin: 5rem 0 3rem;
  padding: 0.5em 1em;
  background-color: var(--gray);
  border-radius: 10px;
}
@media all and (max-width: 896px) {
  main section:not([class]) h4:not([class]) {
    font-size: 1.8rem;
    margin: 4rem 0 2rem;
  }
}
main section:not([class]) h5:not([class]) {
  font-size: 2.3rem;
  font-weight: 700;
  font-family: var(--sub-font);
  color: var(--gold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 3rem 0 0.5em;
  line-height: 2;
}
@media all and (max-width: 896px) {
  main section:not([class]) h5:not([class]) {
    font-size: 1.7rem;
    margin: 3rem 0 1rem;
    line-height: 1.5;
  }
}
main section:not([class]) p, main section:not([class]) dd {
  text-align: justify;
  margin-bottom: 1em;
  line-height: 2;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) p, main section:not([class]) dd {
    font-size: 1.4rem;
  }
}
main section:not([class]) p strong, main section:not([class]) dd strong {
  font-weight: 700;
  color: var(--green);
}
main section:not([class]) p small, main section:not([class]) dd small {
  font-size: 0.85em;
}
main section:not([class]) p + .comBtn, main section:not([class]) dd + .comBtn {
  margin-top: 4rem;
}
main section:not([class]) p > a, main section:not([class]) dd > a {
  border-bottom: 1px solid;
}
main section:not([class]) * > small {
  font-size: 0.75em;
}
@media all and (max-width: 896px) {
  main section:not([class]) .comBtn {
    max-width: 100%;
  }
}
main section:not([class]) .comBtn + .comBtn {
  margin-top: 5rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) .comBtn + .comBtn {
    margin-top: 5vw;
  }
}
main section:not([class]) img + p, main section:not([class]) a + p {
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  main section:not([class]) img + p, main section:not([class]) a + p {
    margin-top: 3vw;
  }
}
main section:not([class]) .side-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img {
    margin: 8vw 0;
  }
}
main section:not([class]) .side-img .content {
  width: 55%;
  margin: 0;
  padding: 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .content {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  main section:not([class]) .side-img .content.sonomama {
    width: 45%;
  }
}
main section:not([class]) .side-img .content > *:first-child {
  margin-top: 0;
}
main section:not([class]) .side-img .content > *:last-child {
  margin-bottom: 0;
}
main section:not([class]) .side-img .img {
  width: 40%;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .img {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 5vw;
  }
}
main section:not([class]) .side-img .img img:nth-child(2) {
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .img img:nth-child(2) {
    display: none;
  }
}
main section:not([class]) .side-img.img-small .img {
  width: 250px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img.img-small .img {
    width: 100%;
  }
}
main section:not([class]) .side-img.img-small .content {
  width: calc(100% - 300px);
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img.img-small .content {
    width: 100%;
  }
}
main section:not([class]) .side-img .half {
  width: calc(50% - 20px);
  margin-bottom: 0px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .half {
    width: 100%;
    margin-bottom: 10vw;
  }
}
main section:not([class]) .side-img .half:nth-child(n+3) {
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .half:nth-child(n+3) {
    margin-top: 0;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .half:last-child {
    margin-bottom: 0;
  }
}
main section:not([class]) .side-img .half > *:first-child {
  margin-top: 0 !important;
}
main section:not([class]) .side-img .half > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) .side-img .half.sonomama {
  margin-bottom: 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .half.sonomama {
    width: calc(50% - 5px);
  }
}
main section:not([class]) .side-img .half.sonomama p span {
  color: var(--base-color);
}
main section:not([class]) .side-img .half.sonomama:nth-child(2) {
  text-align: right;
}
main section:not([class]) .side-img .three-column {
  margin-bottom: 0;
  width: calc(33.3333333333% - 30px);
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .three-column {
    width: 100%;
    margin-bottom: 10vw;
  }
}
main section:not([class]) .side-img .three-column:nth-child(n+4) {
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .three-column:nth-child(n+4) {
    margin-top: 0;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .three-column:last-child {
    margin-bottom: 0;
  }
}
main section:not([class]) .side-img .three-column > *:first-child {
  margin-top: 0 !important;
}
main section:not([class]) .side-img .three-column > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) .side-img .three-column img + p {
  margin-top: 15px;
  text-align: center;
}
main section:not([class]) .side-img .four-column {
  margin-bottom: 0;
  width: calc(25% - 30px);
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .four-column {
    width: calc(50% - 10px);
    margin-bottom: 5vw;
  }
  main section:not([class]) .side-img .four-column:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
main section:not([class]) .side-img .four-column:nth-child(n+5) {
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .four-column:nth-child(n+5) {
    margin-top: 0;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .four-column:last-child {
    margin-bottom: 0;
  }
}
main section:not([class]) .side-img .four-column > *:first-child {
  margin-top: 0 !important;
}
main section:not([class]) .side-img .four-column > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) .side-img .four-column img + p {
  margin-top: 15px;
  text-align: center;
}
main section:not([class]) ul:not([class]) {
  margin: 4rem 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) ul:not([class]) {
    margin: 3rem 0;
  }
}
main section:not([class]) ul:not([class]) li {
  font-size: 1.6rem;
  padding-left: 3rem;
  position: relative;
  line-height: 2;
}
@media all and (max-width: 896px) {
  main section:not([class]) ul:not([class]) li {
    font-size: 1.3rem;
  }
  main section:not([class]) ul:not([class]) li > p {
    font-size: 1.3rem;
  }
}
main section:not([class]) ul:not([class]) li:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--sub-color);
  position: absolute;
  left: 0.2rem;
  top: 0.9rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ul:not([class]) li:before {
    top: 0.6rem;
  }
}
main section:not([class]) ul:not([class]) li + li {
  margin-top: 2rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ul:not([class]) li + li {
    margin-top: 1.6rem;
  }
}
main section:not([class]) ul.inline-list li {
  background: var(--gold);
  padding: 0.2em 0.5em;
  margin-right: 0.5em;
  margin-bottom: 1em;
  color: var(--white);
  display: inline-block;
}
@media all and (max-width: 896px) {
  main section:not([class]) ul.inline-list li {
    font-size: 1.3rem;
    margin-bottom: 0.5em;
  }
}
main section:not([class]) ul.dot-list li {
  margin-block: 0.5em;
  position: relative;
  padding-left: 1em;
}
main section:not([class]) ul.dot-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--base-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}
main section:not([class]) ol:not([class]) {
  margin: 4rem 0;
  counter-reset: number;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) {
    margin: 3rem 0;
  }
}
main section:not([class]) ol:not([class]) li {
  font-size: 1.6rem;
  padding-left: 6.4rem;
  position: relative;
  min-height: 5rem;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 3rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) li {
    font-size: 1.3rem;
    line-height: 2.6rem;
    padding-left: 4rem;
    margin-bottom: 2.5rem;
  }
  main section:not([class]) ol:not([class]) li > p {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) li:last-child {
    margin-bottom: 0;
  }
}
main section:not([class]) ol:not([class]) li:before {
  font-weight: 500;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0;
  counter-increment: number;
  content: counter(number);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, right top, left top, from(var(--gold)), to(var(--yellow)));
  background: linear-gradient(to left, var(--gold), var(--yellow));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) li:before {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}
main section:not([class]) ol:not([class]) li strong:first-of-type {
  font-weight: 600;
  font-size: 1.2em;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) li strong:first-of-type {
    margin-bottom: 0;
  }
}
main section:not([class]) ol:not([class]) li + li {
  margin-top: 5rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) li + li {
    margin-top: 2.35rem;
  }
}
main section:not([class]) ol.flow {
  counter-reset: flow;
  margin: 5rem 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow {
    margin: 4rem 0;
  }
}
main section:not([class]) ol.flow li {
  position: relative;
  line-height: 2 !important;
  text-align: justify;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li {
    font-size: 1.3rem;
  }
  main section:not([class]) ol.flow li > p {
    font-size: 1.3rem;
  }
}
main section:not([class]) ol.flow li:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) ol.flow li + li {
  margin-top: 4rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li + li {
    margin-top: 2.5rem;
  }
}
main section:not([class]) ol.flow li strong:first-of-type {
  position: relative;
  padding-left: 4rem;
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--base-color);
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li strong:first-of-type {
    font-size: 1.5rem;
    padding-left: 3.5rem;
  }
}
main section:not([class]) ol.flow li strong:first-of-type:before {
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--white);
  counter-increment: flow;
  content: counter(flow);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: var(--gold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
  position: absolute;
  left: 0;
  top: 4px;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li strong:first-of-type:before {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
    top: 0.3rem;
  }
}
main section:not([class]) ol.flow li img {
  width: 35rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li img {
    width: 100%;
    position: static;
    margin-top: 1.5rem;
    display: block;
  }
}
main section:not([class]) ol.flow li.has-img {
  padding-right: 40rem;
  margin-bottom: 10rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li.has-img {
    padding: 0;
    margin-bottom: 6rem;
  }
}
main section:not([class]) ol.card-list {
  counter-reset: card;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
  margin: 4rem 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.card-list {
    margin: 3rem 0;
    /* もしSPでカード間の隙間を狭くしたい場合はここで gap: 1.5rem; 等を指定 */
  }
}
main section:not([class]) ol.card-list li {
  color: var(--dark-green);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2rem;
  padding: 2rem 2rem 2.6rem;
  width: 35rem;
  line-height: 2;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.card-list li {
    width: 100%;
    font-size: 1.3rem;
  }
}
main section:not([class]) ol.card-list li strong:first-of-type {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1em;
  padding-bottom: 0.6em;
  position: relative;
  text-align: center;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.card-list li strong:first-of-type {
    font-size: 1.6rem;
  }
}
main section:not([class]) ol.card-list li strong:first-of-type::before {
  color: var(--green);
  content: counter(card, decimal-leading-zero);
  counter-increment: card;
  display: block;
  font-family: var(--min-font);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5em;
  text-align: center;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.card-list li strong:first-of-type::before {
    font-size: 2.3rem;
    margin-bottom: 0.3em;
  }
}
main section:not([class]) ol.card-list li strong:first-of-type::after {
  background: var(--green);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
main section:not([class]) table:not(.no-style) {
  width: 100%;
  margin: 4rem 0;
  border-collapse: separate;
  border-spacing: 0;
  border-block: 1px solid var(--gold);
}
@media all and (max-width: 896px) {
  main section:not([class]) table:not(.no-style) {
    margin: 3rem 0;
  }
}
main section:not([class]) table:not(.no-style) tr:last-child th,
main section:not([class]) table:not(.no-style) tr:last-child td {
  border-bottom: none;
}
main section:not([class]) table:not(.no-style) th, main section:not([class]) table:not(.no-style) td {
  font-size: 1.6rem;
  line-height: 1.7;
  padding: 1em;
  vertical-align: middle;
  border-bottom: 1px dashed var(--gold);
}
main section:not([class]) table:not(.no-style) th {
  background: var(--white);
  color: var(--gold);
}
@media all and (max-width: 896px) {
  main section:not([class]) table:not(.no-style) th {
    font-size: 1.3rem;
    width: 30%;
  }
}
main section:not([class]) table:not(.no-style) th small {
  font-weight: 500;
  font-size: 0.8em;
}
@media all and (max-width: 896px) {
  main section:not([class]) table:not(.no-style) td {
    font-size: 1.3rem;
    width: 70%;
  }
  main section:not([class]) table:not(.no-style) td > p {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
main section:not([class]) table:not(.no-style) td > *:last-child {
  margin-bottom: 0;
}
main section:not([class]) table:not(.no-style).price-table th {
  width: 65%;
}
main section:not([class]) table:not(.no-style).three-row th, main section:not([class]) table:not(.no-style).three-row td {
  width: 30%;
}
main section:not([class]) table:not(.no-style).three-row th {
  text-align: center;
}
@media all and (max-width: 896px) {
  main section:not([class]) table:not(.no-style).three-row th, main section:not([class]) table:not(.no-style).three-row td {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) table:not(.no-style).sp-break {
    display: block;
    border-top: none;
  }
  main section:not([class]) table:not(.no-style).sp-break tbody, main section:not([class]) table:not(.no-style).sp-break tr, main section:not([class]) table:not(.no-style).sp-break th, main section:not([class]) table:not(.no-style).sp-break td {
    display: block;
    width: 100%;
  }
  main section:not([class]) table:not(.no-style).sp-break tr:last-child th {
    border-bottom: 1px dashed var(--gold);
  }
  main section:not([class]) table:not(.no-style).sp-break th {
    text-align: center;
    padding: 0.5em 1em;
    border-top: 1px solid var(--gold);
  }
  main section:not([class]) table:not(.no-style).sp-break td {
    border-bottom: none;
  }
}
main section:not([class]) details {
  margin-top: 3rem;
  /* 中身の余白調整 */
}
main section:not([class]) details > summary {
  position: relative;
  display: block;
  padding: 1.2rem 4rem 1.2rem 2rem;
  border-radius: 9999px;
  border: 1px solid var(--base-color);
  background-color: var(--white);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  -webkit-transition: background-color 0.7s ease, color 0.7s ease;
  transition: background-color 0.7s ease, color 0.7s ease;
  /* デフォルトの三角マーカーを非表示 */
}
main section:not([class]) details > summary:hover {
  background-color: var(--base-color);
  color: #fff;
}
main section:not([class]) details > summary::-webkit-details-marker {
  display: none;
}
main section:not([class]) details > summary::after {
  content: "＋";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.8rem;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
main section:not([class]) details[open] > summary::after {
  content: "－";
}
main section:not([class]) details > *:not(summary) {
  margin-top: 2rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) details > summary {
    padding: 1rem 3.5rem 1rem 1.6rem;
    font-size: 1.4rem;
  }
}
main section:not([class]) dl:not([class]) {
  width: 100%;
  margin: 5rem auto 4rem;
  padding: 40px 50px;
  background: rgba(255, 255, 255, 0.5);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media all and (max-width: 896px) {
  main section:not([class]) dl:not([class]) {
    margin: 4rem auto 3rem;
    padding: 8vw 6vw;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
main section:not([class]) dl:not([class]) > *:first-child {
  margin-top: 0;
}
main section:not([class]) dl:not([class]) > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) dl {
  margin-bottom: 5rem;
  /*dd*/
}
main section:not([class]) dl:not(.question) > dt {
  background: var(--gradation_green, linear-gradient(180deg, #0AB169 0%, #032013 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
main section:not([class]) dl dt {
  font-size: 2rem;
  color: var(--green);
  font-weight: 500;
  padding-bottom: 2px;
  margin-bottom: 15px;
}
@media all and (max-width: 896px) {
  main section:not([class]) dl dt {
    font-size: 1.75rem;
    margin-bottom: 3vw;
  }
}
main section:not([class]) dl dt:nth-child(n+2) {
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  main section:not([class]) dl dt:nth-child(n+2) {
    margin-top: 30px;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) dl .side-img {
    margin-top: 0;
  }
}
main section:not([class]) dl dd > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) dl dd > ul:not([class]) {
  margin-block: 2rem;
}
main section:not([class]) dl hr {
  display: block;
  margin: 30px 0;
  border-top: 1px solid var(--base-color);
}
main section:not([class]) dl.question dt {
  position: relative;
  padding-left: 1.7em; /* Q. の幅分余白を空ける */
  text-indent: -1.7em; /* 2行目以降のインデントをQ.に揃える */
  font-weight: 500;
  margin-top: 2em;
}
main section:not([class]) dl.question dt:first-child {
  margin-top: 0;
}
main section:not([class]) dl.question dt:before {
  content: "Q.";
  color: var(--green);
  font-weight: bold;
  margin-right: 0.5em;
}
main section:not([class]) dl.question dd {
  margin-bottom: 1em;
  line-height: 2;
}
main section:not([class]) .hosoku {
  width: 100%;
  margin: 5rem auto 4rem;
  padding: 40px 50px;
  background: rgba(255, 255, 255, 0.5);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .hosoku {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 4rem auto 3rem;
    padding: 8vw 6vw;
  }
}
main section:not([class]) .hosoku > *:first-child {
  margin-top: 0 !important;
}
main section:not([class]) .hosoku > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) .hosoku table:not(.no-style) th {
  background: var(--white);
}
main section:not([class]) .hosoku + .hosoku {
  margin-top: 0;
}
main section:not([class]) .rink-card {
  background-color: var(--white);
  border: 1px solid var(--base-color);
  padding: 2rem;
  position: relative;
  margin-top: 5rem;
}
main section:not([class]) .rink-card img {
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .rink-card {
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
}
main section:not([class]) .rink-card span {
  background-color: var(--dark-green);
  color: #fff;
  padding: 6px 15px;
  position: absolute;
  right: 0;
  top: -1px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .rink-card span {
    text-align: center;
    width: 100%;
  }
}
main section:not([class]) .rink-card span img {
  margin-right: 4px;
  padding-top: 5px;
  width: 17px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .rink-card span img {
    padding-top: 5px;
  }
}
main section:not([class]) .rink-card .side-img {
  margin: 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) .rink-card .side-img {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 4rem;
  }
}
main section:not([class]) .rink-card .side-img .img {
  width: 180px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .rink-card .side-img .img {
    margin-bottom: 0;
    width: 120px;
  }
}
main section:not([class]) .rink-card .side-img .img img {
  width: 100%;
}
main section:not([class]) .rink-card .side-img .content {
  margin: auto;
  max-width: 780px;
  width: 70%;
}
@media all and (max-width: 896px) {
  main section:not([class]) .rink-card .side-img .content {
    margin: 0;
    width: 150px;
  }
}
main section:not([class]) .rink-card p {
  font-weight: 700;
  margin: 1em 0;
  text-decoration: underline;
}
@media all and (max-width: 896px) {
  main section:not([class]) .rink-card p {
    font-size: 1.2rem !important;
    margin: 0;
  }
}
main .treatment {
  margin-top: 100px;
}
@media all and (max-width: 896px) {
  main .treatment {
    margin-top: 50px;
  }
}
main .article-author {
  background: var(--brown);
  padding: 6rem;
  border-radius: 20px;
  color: var(--white);
  margin-top: 8rem;
}
@media all and (max-width: 896px) {
  main .article-author {
    padding: 4rem 2.5rem;
    border-radius: 10px;
    margin-top: 5rem;
  }
}
main .article-author .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 896px) {
  main .article-author .inner {
    display: block;
  }
}
main .article-author .txtBox {
  width: 65%;
}
@media all and (max-width: 896px) {
  main .article-author .txtBox {
    width: 100%;
  }
}
main .article-author .txtBox .name {
  font-family: var(--min-font);
  font-size: 2.4rem;
  border-block: 1px solid rgba(255, 255, 255, 0.3);
  padding-block: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--white);
}
@media all and (max-width: 896px) {
  main .article-author .txtBox .name {
    font-size: 1.6rem;
  }
}
main .article-author .txtBox .name .large {
  font-size: 1.45em;
  margin-left: 0.5em;
}
@media all and (max-width: 896px) {
  main .article-author .txtBox .name .large {
    display: block;
    margin-top: 0.5em;
    margin-left: 0;
  }
}
main .article-author .txtBox p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
@media all and (max-width: 896px) {
  main .article-author .txtBox p {
    font-size: 1.4rem;
  }
}
main .article-author .phoBox {
  width: 30%;
}
@media all and (max-width: 896px) {
  main .article-author .phoBox {
    width: 100%;
    margin-top: 3rem;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
main .article-author .phoBox img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/*main#sub*//*# sourceMappingURL=sub.css.map */