@charset "UTF-8";
/* BREAK POINT */
/* BUTTON */
.button,
.toggle-button {
  display: inline-block;
  width: 100%;
  color: #fff;
  background-color: var(--maincolor);
  font-weight: 700;
  text-align: center;
  border-radius: 60px;
  padding: .75rem 1rem;
  transition: opacity 0.7s ease; }

.button.button--secondary {
  color: var(--maincolor);
  font-weight: 600;
  background-color: #fff;
  border: solid 3px var(--maincolor); }

.button.hover-slide--primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: solid 3px var(--maincolor); }
  .button.hover-slide--primary::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1; }
  .button.hover-slide--primary:hover {
    color: var(--maincolor) !important;
    font-weight: 600;
    opacity: 1 !important; }
    .button.hover-slide--primary:hover::after {
      transform: scale(1, 1); }

.button.hover-slide--secondary {
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .button.hover-slide--secondary::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--maincolor);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1; }
  .button.hover-slide--secondary:hover {
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important; }
    .button.hover-slide--secondary:hover::after {
      transform: scale(1, 1); }

/* Q&A */
details summary {
  /* iOSのデフォルトアイコン非表示 */
  list-style: none; }

summary::-webkit-details-marker {
  /* Safariのデフォルトマーカー非表示 */
  display: none; }

.qa {
  margin-bottom: 1rem;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  background-color: #fff; }

.qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem 2rem 1rem 3rem;
  color: #000;
  font-weight: 600;
  cursor: pointer; }

.qa summary::before,
.qa p::before {
  position: absolute;
  left: 1rem;
  font-weight: 600;
  font-size: 125%; }

.qa summary::before {
  color: var(--thirdcolor);
  content: "Q"; }

.qa summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 3px solid #333;
  border-right: 3px solid #333;
  content: '';
  transition: transform .5s; }

.qa[open] summary::after {
  transform: rotate(225deg); }

.qa p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3rem 3rem 1.5rem;
  color: #000;
  transition: transform .5s, opacity .5s; }

.qa[open] p {
  transform: none;
  opacity: 1; }

.qa p::before {
  color: #ff3366;
  line-height: 1.75;
  content: "A"; }

/* STEP */
.flow_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; }

.step_wrap {
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 1rem; }

.step_number {
  font-family: "Roboto", sans-serif;
  /*font-size: calc(clamp(0.875rem, 0.85rem + 0.13vw, 1rem));*/
  font-weight: 600;
  text-align: center;
  color: var(--thirdcolor);
  line-height: 100%;
  text-transform: uppercase;
  border-bottom: 1px solid var(--thirdcolor);
  padding: 0 0 .5rem; }
  .step_number span {
    font-size: 200%;
    line-height: 100%; }

.grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr !important;
  gap: 32px; }
  @media (max-width: 767px) {
    .grid-layout {
      grid-template-columns: 1fr !important; } }

.grid-layout__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; }
  @media (max-width: 767px) {
    .grid-layout__columns {
      grid-template-columns: 1fr !important; } }

.title-image {
  position: relative; }

.title-text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .title-text h3 {
    font-size: calc(clamp(1.5rem, 1.3rem + 1vw, 2.5rem));
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    text-align: center !important; }

h2.bg-ltd {
  color: var(--invertcolor) !important; }
  h2.bg-ltd span {
    color: var(--invertcolor) !important; }

h4.bg-ltd {
  border-bottom: solid 3px var(--secondcolor);
  position: relative;
  color: var(--thirdcolor);
  padding-bottom: .5em; }
  h4.bg-ltd:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px var(--maincolor);
    bottom: -3px;
    width: 20%; }

button.toggle-button {
  display: block;
  margin: 2rem auto;
  width: 35%; }
  @media (max-width: 767px) {
    button.toggle-button {
      width: 60% !important; } }
  @media (max-width: 399px) {
    button.toggle-button {
      width: 80%; } }

.phil-title {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 16px; }

.phil-title__img {
  width: 25%; }

.contact-btn_wrap {
  margin: 2rem auto; }
  .contact-btn_wrap ul {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 16px;
    list-style: none; }

.wpcf7-acceptance input[disabled] + label,
.wpcf7-acceptance input[disabled] ~ label,
.wpcf7-acceptance input[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(100%);
  pointer-events: none;
  /* ラベルクリックも無効に */ }

.profile-image {
  max-width: 75%;
  margin: 0 auto; }
  @media (max-width: 767px) {
    .profile-image {
      max-width: 100%; } }

ol.exp-list {
  margin: 0 0 0 1rem; }

ol.exp-list li::marker {
  font-weight: bold !important; }
