:root {
  --font-jp: 'Noto Sans JP', serif;
  --font-en: 'Inter', serif;
  --color-blue: #426FC3;
  --color-black: #262626;
  --color-sky: #EDF5F7;
}

/* title
---------------------------------------------------------------------- */
.c-heading-1 {
  border-bottom: 1px solid var(--color-blue);
  color: var(--color-blue);
  font-size: clamp(2.4rem, 4.5vw, 2.8rem);
  font-weight: 600;
  margin: 40px 0 24px;
  padding-bottom: 4px;
}

.c-table-list {
  align-items: stretch;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
}
.c-table-list dt,
.c-table-list dd {
  border-bottom: 1px solid #ddd;
  padding: 8px 16px;
}
.c-table-list dt {
  background-color: var(--color-sky);
  width: 300px;
}
.c-table-list dd {
  width: calc(100% - 300px);
}
.c-table-list dd > p {
  margin: 0;
}
@media (max-width: 768px) {
  .c-table-list {
    flex-direction: column;
  }
  .c-table-list dt,
  .c-table-list dd {
    width: 100%;
  }
}

.c-table-list02 {
  align-items: stretch;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
}
.c-table-list02 dt,
.c-table-list02 dd {
  border-bottom: 1px solid #ddd;
  padding: 8px 16px;
}
.c-table-list02 dt {
  background-color: var(--color-sky);
  width: 60px;
}
.c-table-list02 dd {
  width: calc(100% - 60px);
}

.c-table {
  border-collapse: collapse;
  width: 100%;
}
.c-table th, 
.c-table td {
  border: 1px solid #ddd;
  padding: 8px 16px;
}
.c-table thead th {
  background-color: var(--color-sky);
  text-align: center;
  vertical-align: middle;
}

.c-gmap-wrapper {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}
.c-gmap-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-scroll {
  overflow-x: scroll;
}
@media (max-width: 768px) {
  .c-xs-scroll {
    overflow-x: auto;
    white-space: nowrap;
  }
}

.c-box-list {
  background-color: var(--color-sky);
  border-radius: 10px;
  margin-bottom: 36px;
  padding: 16px 24px;
}


/* flex-box
---------------------------------------------------------------------- */
.c-flex {
  display: flex;
  gap: 24px;
}
.c-flex .c-flex-1  { flex: 0 0 8.3333%; }
.c-flex .c-flex-2  { flex: 0 0 16.6667%; }
.c-flex .c-flex-3  { flex: 0 0 25%; }
.c-flex .c-flex-4  { flex: 0 0 33.3333%; }
.c-flex .c-flex-5  { flex: 0 0 41.6667%; }
.c-flex .c-flex-6  { flex: 0 0 50%; }
.c-flex .c-flex-7  { flex: 0 0 58.3333%; }
.c-flex .c-flex-8  { flex: 0 0 66.6667%; }
.c-flex .c-flex-9  { flex: 0 0 75%; }
.c-flex .c-flex-10 { flex: 0 0 83.3333%; }
.c-flex .c-flex-11 { flex: 0 0 91.6667%; }
.c-flex .c-flex-12 { flex: 0 0 100%; }

.c-flex-pc {
  display: flex;
  gap: 24px;
}
.c-flex-pc .c-flex-pc-1  { flex: 0 0 8.3333%; }
.c-flex-pc .c-flex-pc-2  { flex: 0 0 16.6667%; }
.c-flex-pc .c-flex-pc-3  { flex: 0 0 25%; }
.c-flex-pc .c-flex-pc-4  { flex: 0 0 33.3333%; }
.c-flex-pc .c-flex-pc-5  { flex: 0 0 41.6667%; }
.c-flex-pc .c-flex-pc-6  { flex: 0 0 50%; }
.c-flex-pc .c-flex-pc-7  { flex: 0 0 58.3333%; }
.c-flex-pc .c-flex-pc-8  { flex: 0 0 66.6667%; }
.c-flex-pc .c-flex-pc-9  { flex: 0 0 75%; }
.c-flex-pc .c-flex-pc-10 { flex: 0 0 83.3333%; }
.c-flex-pc .c-flex-pc-11 { flex: 0 0 91.6667%; }
.c-flex-pc .c-flex-pc-12 { flex: 0 0 100%; }

@media (max-width: 768px) {
  .c-flex-pc {
    flex-direction: column;
  } 
  .c-flex-pc .c-flex-pc-1,
  .c-flex-pc .c-flex-pc-2,
  .c-flex-pc .c-flex-pc-3,
  .c-flex-pc .c-flex-pc-4,
  .c-flex-pc .c-flex-pc-5,
  .c-flex-pc .c-flex-pc-6,
  .c-flex-pc .c-flex-pc-7,
  .c-flex-pc .c-flex-pc-8,
  .c-flex-pc .c-flex-pc-9,
  .c-flex-pc .c-flex-pc-10,
  .c-flex-pc .c-flex-pc-11,
  .c-flex-pc .c-flex-pc-12 { flex: 0 0 100%; }
}


/* modal
---------------------------------------------------------------------- */
.c-modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.c-modal {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  background: white;
  position: relative;
}
.c-modal-close {
  background: #fff;
  border: 2px solid #333;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  height: 30px;
  position: absolute;
  right: -15px;
  top: -15px;
  transition: .3s;
  width: 30px;
}
.c-modal-close::before, .c-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 18px;
  background: #333;
}
.c-modal-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.c-modal-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.c-modal-close:hover { opacity: .7; }


/* modules
---------------------------------------------------------------------- */
.c-bg-sky {
  background-color: var(--color-sky);
}

.p-single ol.c-list-caution {
  list-style: decimal;
  margin-left: 3em;
}
.c-list-caution li {
  list-style-type: none;
  list-style-position: outside;
  counter-increment: cnt;
  &::before {
    display: inline-block;
    margin-left: -3em;
    width: 3em;
    content: "注" counter(cnt) "）";
  }
}

.p-single ol.c-list-caution-e {
  list-style: decimal;
  margin-left: 3em;
}
.c-list-caution-e li {
  list-style-type: none;
  list-style-position: outside;
  counter-increment: cnt;
  &::before {
    display: inline-block;
    margin-left: -3em;
    width: 3em;
    content: "※" counter(cnt) "）";
  }
}

.c-font11 { font-size: 11px; }
.c-font12 { font-size: 12px; }
.c-font14 { font-size: 14px; }
.c-font16 { font-size: 16px; }
.c-font18 { font-size: 18px; }
.c-font20 { font-size: 20px; }

.c-nowrap {
  white-space: nowrap;
}
.c-link-text {
  text-decoration: underline;
  transition: .3s;
}
.c-link-text:hover {
  color: var(--color-blue);
}

.c-text-right { text-align: right; }
.c-text-left { text-align: left; }
.c-text-center { text-align: center; }

.c-fl-right { float: right; }
.c-fl-left { float: left; }
.c-fl-clear { clear: both; }

.c-img-right { margin-left: auto; }
.c-img-left { margin-right: auto; }
.c-img-center { margin-right: auto; margin-left: auto; }

@media (max-width: 768px) {
  .c-xs-hidden { display: none; }
}

