﻿@charset "UTF-8";

a[href=""] {
  pointer-events: none;
}

:root {
  --color-primary: #4c4f51;
  --font-ja: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, "ＭＳ Ｐゴシック", MS PGothic, sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: #4c4f51;
}

h6,
h5,
h4,
h3,
h2,
h1 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

input,
select,
textarea,
label {
  font-size: 16px;
}

input[type="text"]:-webkit-autofill,
input[type="password"]:-webkit-autofill,
input[type="tel"]:-webkit-autofill,
input[type="email"]:-webkit-autofill,
input[type="text"]:-webkit-autofill,
input[type="number"]:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #4c4f51 !important;
}

.c-formInput-item__alert--large {
  display: none;
  margin-top: 0.5rem;
  font-size: 1.4rem;
  white-space: pre-wrap;
  color: var(--color-red);
}

.m-breadcrumb {
  margin: 96px auto 80px;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
}

.c-breadcrumb-list {
  display: flex;
  gap: 16px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-size: 14px;
  line-height: 1;
}

.c-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4c4f51;
}

.c-breadcrumb-item:not(:last-child):hover .c-breadcrumb-item__link {
  opacity: 0.5;
  text-decoration: none;
}

.c-breadcrumb-item:not(:last-child):after {
  display: block;
  content: "";
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #4c4f51;
  background-image: none;
  transform: rotate(45deg);
}

.c-breadcrumb-item:last-child {
  color: #939393;
}

@media (max-width: 1279px) {
  .m-breadcrumb {
    margin-top: 76px;
  }
}

@media (max-width: 767px) {
  .m-breadcrumb {
    display: none;
  }

  /* パンくずリストが消えることによる表示崩れ防止 */
  .l-container-wrap__body {
    padding: 0;
    margin-top: 100px;
  }
}

.m-dialogBox--open .m-dialogBox__inner {
  width: 100%;
  max-width: 896px;
  background-color: #fff;
}

.m-dialogBoxHeding {
  padding: 20px;
  background: #fff;
  border-bottom: solid 1px #4c4f51;
}

.m-dialogBoxHeding.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-dialogBoxHeding__title {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .m-dialogBoxHeding__title {
    font-size: 24px;
  }
}

/* バツ印 */
.m-dialogBoxHeding-icon {
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  cursor: pointer;
}

.m-dialogBoxHeding-icon::before,
.m-dialogBoxHeding-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4c4f51;
}

.m-dialogBoxHeding-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.m-dialogBoxHeding-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.m-dialogBoxBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  padding: 40px;
}

@media screen and (min-width: 768px) {
  .m-dialogBoxBody {
    row-gap: 56px;
  }
}

.m-dialogBoxBody__caption {
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .m-dialogBoxBody__caption {
    font-size: 20px;
  }
}

.m-dialogBoxBody__button {
  align-items: center;
  row-gap: 20px;
}

@media screen and (min-width: 768px) {
  .m-dialogBoxBody__button {
    column-gap: 120px;
  }
}

.m-dialogBoxBody-button-cancel {
  width: 208px;
  height: 38px;
  padding: 12px 16px;
  background-color: #fff;
  color: #4C4F51;
  font-size: 14px;
  border-radius: 4px;
  border: solid 1px #4C4F51;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .m-dialogBoxBody-button-cancel {
    width: 268px;
    height: 48px;
    padding: 16px 24px;
    font-size: 16px;
    transition: opacity 0.2s ease;
  }

  .m-dialogBoxBody-button-cancel:hover {
    opacity: 0.7;
  }
}

.m-dialogBoxBody-button-execute {
  width: 208px;
  height: 38px;
  padding: 12px 16px;
  background-color: #4C4F51;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  text-align: center;
  border: none;
}

@media screen and (min-width: 768px) {
  .m-dialogBoxBody-button-execute {
    width: 268px;
    height: 48px;
    padding: 16px 24px;
    font-size: 16px;
    transition: opacity 0.2s ease;
  }

  .m-dialogBoxBody-button-execute:hover {
    opacity: 0.8;
  }
}
