/* media query
------------------------------ */

/* font
------------------------------ */

/* setting
------------------------------ */

:root {
  /* color */
  --base-color: #000;
  --base-color-rgb: 0, 0, 0;
  --bg-color: #f3f3f3;
  --point-color: #DA5661;
  --point-color-rgb: 218, 86, 97;
  --line-color: #ccc;
  --gradation-color: linear-gradient(125deg, #E9A99E 0%, #DE627C 100%);
  /* transition */
  --base-transition: 0.2s ease-out;
  --header-transition: 0.5s cubic-bezier(.4,0,.2,1);
  /* z-index */
  --header-index: 999;
  --headerMenu-index: 1000;
  --modal-index: 9999;
}

img{
  height: auto;
}


/* animation
------------------------------ */

@-webkit-keyframes scroll {
  to {
    top: 70%;
    opacity: 0;
  }
}

@keyframes scroll {
  to {
    top: 70%;
    opacity: 0;
  }
}

@-webkit-keyframes showUp {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes showUp {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes btnArrow {
  0% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: right;
    transform: scale(1, 1);
    transform-origin: right;
  }

  50% {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: right;
    transform: scale(0, 1);
    transform-origin: right;
  }

  50.1% {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: left;
    transform: scale(0, 1);
    transform-origin: left;
  }

  100% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: left;
    transform: scale(1, 1);
    transform-origin: left;
  }
}

@keyframes btnArrow {
  0% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: right;
    transform: scale(1, 1);
    transform-origin: right;
  }

  50% {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: right;
    transform: scale(0, 1);
    transform-origin: right;
  }

  50.1% {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: left;
    transform: scale(0, 1);
    transform-origin: left;
  }

  100% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: left;
    transform: scale(1, 1);
    transform-origin: left;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-webkit-keyframes infinity-scroll-left-100 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left-100 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes line_circle {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -155;
  }
}

@keyframes line_circle {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -155;
  }
}

@-webkit-keyframes line_circle_delay {
  0% {
    stroke-opacity: 1;
    stroke-dashoffset: 155;
  }

  100% {
    stroke-opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes line_circle_delay {
  0% {
    stroke-opacity: 1;
    stroke-dashoffset: 155;
  }

  100% {
    stroke-opacity: 1;
    stroke-dashoffset: 0;
  }
}

.article__contents h2 {
  margin: 30px 0;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.7;
}

.article__contents h3 {
  margin: 30px 0;
  padding: 6px 20px;
  background-color: #f3f3f3;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.7;
}

.article__contents h4 {
  position: relative;
  margin: 30px 0;
  padding-left: 25px;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.7;
}

.article__contents h4::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: var(--base-color);
  content: "";
}

.article__contents h5 {
  position: relative;
  margin: 30px 0;
  padding-left: 25px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.7;
}

.article__contents h5::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: var(--point-color);
  content: "";
}

.article__contents h6 {
  position: relative;
  margin: 30px 0;
  padding-left: 15px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.7;
}

.article__contents h6::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--base-color);
  content: "";
}

.article__contents > .wp-block-image {
  margin: 30px 0;
}

.article__contents p {
  line-height: 2;
}

.article__contents a {
  display: inline-block;
  color: var(--point-color);
  text-decoration: underline;
}

.article__contents ul,
.article__contents ol {
  margin: 30px 0;
}

.article__contents .wp-block-image {
  position: relative;
}

.article__contents .wp-block-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(var(--base-color-rgb), 0.5);
  color: #fff;
  font-size: 1.4rem;
}

.article__contents strong {
  font-weight: 700;
}

.article__contents ul {
  padding-left: 20px;
  list-style: disc;
}

.article__contents ol {
  padding-left: 20px;
  list-style: decimal;
}

.article__contents li {
  line-height: 2;
}

.article__contents .wp-block-table {
  margin: 30px 0;
}

.article__contents table {
  width: 100%;
  min-width: 700px;
}

main.interview .article__contents table {
  min-width: inherit;
}

.article__contents .col-head table td:first-child {
  background-color: var(--bg-color);
  font-weight: 500;
}

.article__contents .col-head table th:first-child {
  text-align: left;
}

.article__contents .col-center table th:first-child,
.article__contents .col-center table td:first-child {
  text-align: center;
}

.article__contents table th,
.article__contents table td {
  padding: 20px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  vertical-align: middle;
}

.article__contents table th {
  background-color: var(--bg-color);
  font-weight: 500;
}

.article__contents table td:first-of-type {
  width: 200px;
  font-weight: 500;
}

.article__contents .wp-block-gallery {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article__contents .wp-block-gallery.has-nested-images figure.wp-block-image {
  -webkit-box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}

.article__contents .wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image) {
  width: 100%;
}

.article__contents .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  width: calc(50% - 1em);
  margin: 0;
}

.article__contents .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
  width: calc(33.33333% - 1.33334em);
}

.article__contents .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
  width: calc(25% - 1.5em);
}

.article__contents .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image) {
  width: calc(20% - 1.6em);
}

.article__contents .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image) {
  width: calc(16.66667% - 1.66666em);
}

.article__contents .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image) {
  width: calc(14.28571% - 1.71428em);
}

.article__contents .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image) {
  width: calc(12.5% - 1.75em);
}

.article__contents .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: calc(33.33% - 1.33334em);
}

.article__contents .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
.article__contents .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image) {
  width: calc(50% - 1em);
}

.article__contents .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child {
  width: 100%;
}

.article__contents .wp-block-media-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 50% 1fr;
  direction: ltr;
  gap: 40px;
}

.article__contents .wp-block-media-text .wp-block-media-text__content p + p {
  margin-top: 20px;
}

.article__contents .wp-block-media-text.is-vertically-aligned-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article__contents .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  grid-column: 1 / 2;
}

.article__contents .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  grid-column: 2 / 3;
}

.article__contents .wp-block-media-text.is-vertically-aligned-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article__contents .wp-block-media-text__media img {
  width: 100%;
  max-width: unset;
  height: auto;
  vertical-align: middle;
}

.article__contents .wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0;
  gap: 20px;
}

.article__contents .wp-block-columns p {
  margin: 0;
}

.article__contents .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
  -ms-flex-preferred-size: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  flex-basis: 0;
}

.article__contents .wp-block-columns.is-layout-flex {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.article__contents .wp-block-media-text .wp-block-media-text__content {
  grid-row: 1;
  grid-column: 2;
  direction: ltr;
  word-break: break-word;
}

.article__contents .wp-block-buttons {
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.article__contents .wp-block-buttons.wp-block-buttons-is-layout-flex {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
}

.article__contents .wp-block-buttons.is-content-justification-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.article__contents .wp-block-buttons.is-content-justification-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.article__contents .wp-block-buttons > .wp-block-button {
  display: inline-block;
}

.article__contents .wp-block-button.has-custom-width.wp-block-button__width-100 {
  width: 100%;
}

.article__contents .wp-block-button.has-custom-width.wp-block-button__width-75 {
  width: 75%;
}

.article__contents .wp-block-button.has-custom-width.wp-block-button__width-50 {
  width: 50%;
}

.article__contents .wp-block-button.has-custom-width.wp-block-button__width-25 {
  width: 25%;
}

.article__contents .wp-block-button .wp-block-button__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 60px;
  border: solid 1px var(--point-color);
  border-radius: 100px;
  background-color: transparent;
  color: var(--point-color);
  text-align: center;
}

.article__contents .wp-block-button .wp-block-button__link::after {
  -webkit-transform: rotate(45deg);
  -webkit-transition: var(--btn-transition);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  transform: rotate(45deg);
  border-top: solid 1px var(--point-color);
  border-right: solid 1px var(--point-color);
  content: "";
  transition: var(--btn-transition);
}

.article__contents .wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
  width: 100%;
}

.article__contents .wp-block-button__link {
  -webkit-box-shadow: none;
  display: block;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  border-radius: 9999px;
  background-color: #32373c;
  box-shadow: none;
  color: #fff;
  text-decoration: none;
}

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

.article__contents .has-text-align-right {
  text-align: right;
}

/* 20250415 追加 */
.article__contents .margin-top9 {
  margin-top: 90px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .tab {
    display: none !important;
  }
}

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

  .article__contents h2 {
    font-size: 2.2rem;
  }

  .article__contents h3 {
    font-size: 2rem;
  }

  .article__contents h4 {
    padding-left: 20px;
    font-size: 1.8rem;
  }

  .article__contents h4::before {
    width: 12px;
    height: 12px;
  }

  .article__contents h5 {
    padding-left: 20px;
    font-size: 1.6rem;
  }

  .article__contents h5::before {
    top: 14px;
    width: 12px;
  }

  .article__contents h6 {
    font-size: 1.4rem;
  }

  .article__contents h6::before {
    top: 9px;
  }

  .article__contents .wp-block-media-text {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .article__contents .wp-block-media-text.has-media-on-the-right {
    flex-direction: column;
  }

  .article__contents .wp-block-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .article__contents .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image),
  .article__contents .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image),
  .article__contents .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image),
  .article__contents .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image),
  .article__contents .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image),
  .article__contents .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image),
  .article__contents .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image),
  .article__contents .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image),
  .article__contents .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
  .article__contents .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image),
  .article__contents .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child {
    width: 100%;
  }

  .article__contents .wp-block-image {
    margin: 15px 0;
  }

  .article__contents .wp-block-columns.is-layout-flex {
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
  }

  main.interview .article__contents table td:first-of-type {
    width: 110px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .article__contents:hover .wp-block-button .wp-block-button__link:hover {
    background-color: var(--point-color);
    color: #fff;
  }

  .article__contents:hover .wp-block-button .wp-block-button__link:hover::after {
    border-color: #fff;
  }
}
/*# sourceMappingURL=editor.css.map */
