@charset "UTF-8";
/* ========================================
リセットCSS
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

span {
  font: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font: inherit;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ========================================
変数・関数
======================================== */
:root {
  --color-black: #000;
  --color-blue: #004876;
  --color-light-blue: #669BF0;
  --color-orange: #E59780;
  --color-red:#760000;
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Jost", sans-serif;
  --z-index-headerFixed: 9;
  --z-index-nav: 10;
}

/* ========================================
mixin
======================================== */
/* ========================================
ベースCSS
======================================== */
body {
  color: var(--color-black);
  font-family: var(--font-base);
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  min-width: 1000px; /* 画面幅が1000px以下になったらスクロール */
}

body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

input {
  border: none; /* 枠線自体を消したいとき */
  outline: none; /* フォーカス時の枠を消す */
  box-shadow: none; /* Safariで枠っぽい影がつく場合に備えて */
}

*,
*::before,
*::after {
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s all;
}
a:hover {
  opacity: 0.6;
}

/* ========================================
モジュール・パーツ m-
======================================== */
.m-title {
  font-size: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  letter-spacing: 0.02em;
  line-height: 1.45;
  font-weight: 500;
}

.m-content {
  padding: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  background-color: #fff;
}
.m-content h3 {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  color: var(--color-blue);
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1.875;
}
.m-content__tab {
  width: clamp(69.4444444444%px, 100% / 1440 * 100vw, 100%px);
  border-bottom: 0.5px solid #000000;
  margin-bottom: clamp(24.3055555556px, 35 / 1440 * 100vw, 35px);
}
.m-content__tab p {
  width: clamp(88.1944444444px, 127 / 1440 * 100vw, 127px);
  height: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
  background-color: var(--color-blue);
  border-radius: 5px 5px 0 0;
  font-size: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #fff;
}
.m-content__top {
  display: flex;
  justify-content: space-between;
}
.m-content__top .-buttons {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  margin-left: auto;
  margin-top: clamp(-9.7222222222px, -14 / 1440 * 100vw, -14px);
}

.m-btn {
  color: var(--color-blue);
  display: inline-flex;
  align-items: center;
  gap: clamp(5.5555555556px, 8 / 1440 * 100vw, 8px);
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
}
.m-btn span {
  display: inline-grid;
}

.m-btn-fill {
  min-width: clamp(103.4722222222px, 149 / 1440 * 100vw, 149px);
  height: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  letter-spacing: 0.02em;
  font-weight: 500;
  border-radius: 50px;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  transition: 0.3s all;
}
.m-btn-fill.-blue {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}
.m-btn-fill.-orange {
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
}
.m-btn-fill.-red {
  border: 1px solid #ce0000;
  color: #ce0000;
}
.m-btn-fill.-bg-blue {
  background-color: var(--color-blue);
  color: #fff;
}
.m-btn-fill.-bg-orange {
  background-color: var(--color-orange);
  color: #fff;
}
.m-btn-fill.-large {
  font-size: clamp(12.5px, 18 / 1440 * 100vw, 18px);
  font-weight: bold;
  letter-spacing: 0.08em;
}
.m-btn-fill:hover {
  opacity: 0.6;
}

.m-line-btn {
  color: var(--color-orange);
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.m-label {
  width: clamp(62.5px, 90 / 1440 * 100vw, 90px);
  height: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  border-radius: 100px;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  letter-spacing: 0.02em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: var(--color-blue);
}
.m-label.-orange {
  background-color: var(--color-orange);
}
.m-label.-grey {
  background-color: #989898;
}
.m-label.-light-blue {
  background-color: var(--color-light-blue);
}
.m-label.-light-blue2 {
  background-color: #86adcb;
}
.m-label.-border-blue {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  background-color: transparent;
}
.m-label.-border-orange {
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  background-color: transparent;
}
.m-label.-transparent {
  background-color: transparent;
  border: 1px solid #989898;
  color: #989898;
}

.m-table {
  width: 100%;
  margin-top: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  border-bottom: 0.5px solid #d5d5d5;
}
.m-table th {
  background-color: #e6e6e6;
  padding: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px) clamp(6.9444444444px, 10 / 1440 * 100vw, 10px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  letter-spacing: 0.02em;
  background-color: #f5f5f5;
  width: clamp(161.8055555556px, 233 / 1440 * 100vw, 233px);
  font-weight: 500;
  padding: clamp(13.5416666667px, 19.5 / 1440 * 100vw, 19.5px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  text-align: left;
  vertical-align: top;
}
.m-table th.-line2 {
  padding: clamp(5.5555555556px, 8 / 1440 * 100vw, 8px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-table td {
  font-weight: 500;
  width: calc(100% - clamp(161.8055555556px, 233 / 1440 * 100vw, 233px));
  padding: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px) clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  font-weight: 400;
}
.m-table td span.-red,
.m-table td p.-red {
  color: #ce0000;
}
.m-table td span.-blue,
.m-table td p.-blue {
  color: var(--color-blue);
}
.m-table th,
.m-table td {
  border-top: 0.5px solid #d5d5d5;
}
.m-table.-beside {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  border-top: none;
}
.m-table.-beside th {
  height: clamp(30.5555555556px, 44 / 1440 * 100vw, 44px);
  padding: 0;
  text-align: center;
  vertical-align: middle;
  border-top: none;
}
.m-table.-beside th:not(:first-child) {
  border-left: 2px solid #fff;
}
.m-table.-beside td {
  height: clamp(41.6666666667px, 60 / 1440 * 100vw, 60px);
  padding: 0;
  vertical-align: middle;
  text-align: center;
  border-top: none;
  border-bottom: 0.5px dashed #707070;
  font-weight: 500;
}
.m-table.-beside .-time {
  font-size: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
  line-height: 1.4166666667;
  font-weight: 400;
}
.m-table .-link {
  color: #669bf0;
  text-align: left;
}
.m-table tr.not-active {
  background-color: #ecf3f7;
}
.m-table a {
  overflow-wrap: break-word;
  word-break: break-word;
}
.m-table__title {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 500;
  color: var(--color-blue);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.m-table__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m-table__top-right {
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-table__text-flex {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-table__memo {
  min-height: 144px;
}

.m-registration-btn {
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(103.4722222222px, 149 / 1440 * 100vw, 149px);
  height: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  color: #fff;
  border-radius: 100px;
  gap: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1;
  font-weight: 500;
}
.m-registration-btn span {
  width: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
}

.m-import-btn {
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(102.0833333333px, 147 / 1440 * 100vw, 147px);
  height: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  color: #fff;
  border-radius: 100px;
  gap: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1;
  font-weight: 500;
}
.m-import-btn span {
  width: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
}

.m-login-btn {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1;
  width: clamp(119.4444444444px, 172 / 1440 * 100vw, 172px);
  height: 30px;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.m-edit-btn {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1;
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
  height: 30px;
  background-color: var(--color-blue);
  color: white;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.m-delete-btn {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1;
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
  height: 30px;
  border: 1px solid #ce0000;
  color: #ce0000;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.m-completed-btn {
  font-size: clamp(12.5px, 18 / 1440 * 100vw, 18px);
  letter-spacing: 0.08em;
  font-weight: 500;
  width: clamp(304.1666666667px, 438 / 1440 * 100vw, 438px);
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border: 1px solid #ce0000;
  color: #ce0000;
  margin-top: 35px;
  border-radius: 100px;
}

.m-copy-btn {
  width: clamp(71.5277777778px, 103 / 1440 * 100vw, 103px);
  height: 30px;
  border-radius: 100px;
  border: 1px solid #ce0000;
  color: #ce0000;
  background-color: #fff;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-pageview-btn {
  width: clamp(100px, 144 / 1440 * 100vw, 144px);
  height: 30px;
  border: 1px solid #669bf0;
  color: #669bf0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
}

.m-private-btn {
  width: clamp(80.5555555556px, 116 / 1440 * 100vw, 116px);
  height: 30px;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
}

.m-breadcrumb {
  display: flex;
  font-size: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  font-weight: 500;
  color: #989898;
  margin-bottom: clamp(2.0833333333px, 3 / 1440 * 100vw, 3px);
  margin-top: -19px;
}
.m-breadcrumb span {
  margin: 0 0.5rem;
}

.m-form {
  border-top: 1px solid #d5d5d5;
}
.m-form__item {
  display: flex;
  border-bottom: 1px solid #d5d5d5;
}
.m-form__title {
  width: clamp(162.5px, 234 / 1440 * 100vw, 234px);
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 500;
  line-height: 1.5;
  background-color: #f5f5f5;
  padding: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-form__label {
  display: block;
  width: clamp(31.25px, 45 / 1440 * 100vw, 45px);
  position: absolute;
  top: clamp(15.2777777778px, 22 / 1440 * 100vw, 22px);
  left: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-form__label.-required {
  background-color: var(--color-orange);
  color: #fff;
  height: clamp(16.6666666667px, 24 / 1440 * 100vw, 24px);
  border-radius: 5px;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-form__content {
  width: calc(100% - clamp(162.5px, 234 / 1440 * 100vw, 234px));
  padding: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px) clamp(52.0833333333px, 75 / 1440 * 100vw, 75px);
  position: relative;
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  line-height: 1.5;
  font-weight: 400;
}
.m-form__content.-center {
  display: flex;
  align-items: center;
}
.m-form__content input {
  width: 100%;
  height: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
  border: 0.5px solid #989898;
  background-color: #fff;
  border-radius: 5px;
  padding: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px) clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__content input.-grey {
  background-color: #f5f5f5;
}
.m-form__content input.-post-number {
  width: clamp(104.1666666667px, 150 / 1440 * 100vw, 150px);
}
.m-form__content input.-medium {
  width: clamp(138.8888888889px, 200 / 1440 * 100vw, 200px);
  margin-right: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-form__content input.w136 {
  width: clamp(94.4444444444px, 136 / 1440 * 100vw, 136px);
}
.m-form__content input.w200 {
  width: clamp(138.8888888889px, 200 / 1440 * 100vw, 200px);
}
.m-form__content input.w150 {
  width: clamp(104.1666666667px, 150 / 1440 * 100vw, 150px);
}
.m-form__content input.w314 {
  width: clamp(218.0555555556px, 314 / 1440 * 100vw, 314px);
}
.m-form__content input.w229 {
  width: clamp(159.0277777778px, 229 / 1440 * 100vw, 229px);
}
.m-form__content input.w290 {
  width: clamp(201.3888888889px, 290 / 1440 * 100vw, 290px);
}
.m-form__content input[type=checkbox] {
  width: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
  height: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
  margin-right: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__content input[type=radio] {
  width: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
  height: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
  margin-right: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__content input[type=time] {
  width: clamp(71.5277777778px, 103 / 1440 * 100vw, 103px);
}
.m-form__content textarea {
  width: 100%;
  height: clamp(111.1111111111px, 160 / 1440 * 100vw, 160px);
  border: 0.5px solid #989898;
  background-color: #fff;
  border-radius: 5px;
  padding: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px) clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__content textarea.h76 {
  height: clamp(52.7777777778px, 76 / 1440 * 100vw, 76px);
}
.m-form__content textarea.h129 {
  height: clamp(89.5833333333px, 129 / 1440 * 100vw, 129px);
}
.m-form__content textarea.h110 {
  height: clamp(76.3888888889px, 110 / 1440 * 100vw, 110px);
}
.m-form__content .-label-text {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 400;
  color: #989898;
  margin-left: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
  vertical-align: middle;
}
.m-form__content .-text {
  height: 100%;
  display: flex;
  align-items: center; /* 垂直中央 */
}
.m-form__content button.-post-number-search {
  width: clamp(59.0277777778px, 85 / 1440 * 100vw, 85px);
  height: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  border-radius: 5px;
}
.m-form__content input::-moz-placeholder {
  color: #d8d8d8;
}
.m-form__content input::placeholder {
  color: #d8d8d8;
}
.m-form__content textarea::-moz-placeholder {
  color: #d8d8d8;
}
.m-form__content textarea::placeholder {
  color: #d8d8d8;
}
.m-form__content select {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
}
.m-form__content label {
  display: flex;
  align-items: center;
}
.m-form__content .-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.m-form__content .-items .-item {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  align-items: center;
}
.m-form .-red-text {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 400;
  color: #ce0000;
  margin-top: 5px;
}
.m-form__text {
  display: block;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
  margin-top: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
  margin-left: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__text.-small {
  line-height: 1.4285714286;
  color: #656565;
  margin-top: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.m-form__text.-red {
  color: var(--color-orange);
}
.m-form__error {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  line-height: 1;
  color: #ce0000;
  border: 1px solid #ce0000;
  padding: clamp(4.8611111111px, 7 / 1440 * 100vw, 7px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  margin-bottom: clamp(24.3055555556px, 35 / 1440 * 100vw, 35px);
}
.m-form__check {
  padding: 0 0 clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-form__check:not(:first-of-type) {
  border-top: 0.5px dashed #707070;
  padding: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px) 0;
}
.m-form__check-label {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 500;
  margin-top: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.m-form__check-item {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px) 0;
  flex-wrap: wrap;
  margin-top: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__check-item div {
  width: clamp(102.0833333333px, 147 / 1440 * 100vw, 147px);
  display: flex;
}
.m-form__check-item div label {
  white-space: nowrap;
}
.m-form__check-item div label span {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-feature-settings: "palt";
}
.m-form__check-item.-item1 div:nth-child(5) {
  width: -moz-fit-content;
  width: fit-content;
}
.m-form__time {
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-form__time-select {
  position: relative;
  width: clamp(71.5277777778px, 103 / 1440 * 100vw, 103px);
  height: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
  display: flex;
  align-items: center;
  padding-left: clamp(24.3055555556px, 35 / 1440 * 100vw, 35px);
  border: 1px solid #989898;
  border-radius: 5px;
}
.m-form__time-select select {
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
  border: none;
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 400;
}
.m-form__time-select::before {
  content: "";
  width: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  height: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  background-image: url("../image/time-icon.svg");
  background-size: cover;
}
.m-form__schedule ul {
  display: flex;
  justify-content: space-between;
}
.m-form__schedule li {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__schedule select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を非表示 */
  border: 1px solid #989898;
  width: clamp(57.6388888889px, 83 / 1440 * 100vw, 83px);
  height: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.m-form__schedule select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
.m-form__status-indicator, .m-form__ppl-display {
  border: 1px solid #989898;
  width: clamp(57.6388888889px, 83 / 1440 * 100vw, 83px);
  height: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 400;
}
.m-form__status-indicator.-holiday, .m-form__ppl-display.-holiday {
  color: #989898;
}
.m-form__status-indicator.-lect, .m-form__ppl-display.-lect {
  color: #000000;
}
.m-form__ppl-edit {
  display: flex;
  flex-direction: column;
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__ppl-edit input {
  display: block;
  width: clamp(57.6388888889px, 83 / 1440 * 100vw, 83px);
}
.m-form__radio {
  width: 100%;
  margin-top: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
  padding-left: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__radio ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px) 0;
}
.m-form__radio ul.col4 {
  display: flex;
  gap: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.m-form__radio ul li {
  display: flex;
  align-items: center;
}
.m-form__radio label {
  display: flex;
  align-items: center;
}
.m-form__tag {
  width: 100%;
  min-height: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
  border: 0.5px solid #989898;
  border-radius: 5px;
  padding: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.m-form__tag ul {
  display: flex;
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__tag ul li {
  display: flex;
  align-items: center;
  height: clamp(19.4444444444px, 28 / 1440 * 100vw, 28px);
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  border-radius: 5px;
  background-color: #e6e6e6;
  padding: clamp(1.3888888889px, 2 / 1440 * 100vw, 2px) clamp(6.1111111111px, 8.8 / 1440 * 100vw, 8.8px) clamp(1.3888888889px, 2 / 1440 * 100vw, 2px) clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.m-form__tag ul li button {
  width: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  height: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  display: flex;
}
.m-form__tag ul li button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.m-form__btn {
  text-align: center;
  margin-top: clamp(24.3055555556px, 35 / 1440 * 100vw, 35px);
}
.m-form__btn button {
  width: clamp(173.6111111111px, 250 / 1440 * 100vw, 250px);
  height: clamp(28.4722222222px, 41 / 1440 * 100vw, 41px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-blue);
  color: #fff;
  font-size: clamp(12.5px, 18 / 1440 * 100vw, 18px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.08em;
  border-radius: 20px;
}
.m-form__btn.-small button {
  letter-spacing: 0.02em;
}
.m-form__file {
  text-align: center;
  padding-top: 22px;
  border-top: 0.5px solid #d5d5d5;
  margin-top: 12px;
}
.m-form__file-text {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 500;
}
.m-form__file-box {
  width: 100%;
  text-align: center;
  padding: 35px 0;
  border: 0.5px solid #d5d5d5;
  margin-top: 22px;
}
.m-form__file-button {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  border-radius: 100px;
  padding: 0 clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  font-weight: 500;
}
.m-form__file-upload-text {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.875;
  font-weight: 400;
  color: #989898;
  margin-top: 20px;
}
.m-form__select {
  width: clamp(201.3888888889px, 290 / 1440 * 100vw, 290px);
  height: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
  position: relative;
  cursor: pointer;
}
.m-form__select select {
  width: 100%;
  height: 100%;
  border: 0.5px solid #989898;
  padding: 9px 10px;
  border-radius: 5px;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1.4285714286;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  -webkit-appearance: none; /* Chrome, Safari */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* 標準 */
}
.m-form__select::before {
  content: "";
  background-image: url("../image/common/select.svg");
  width: clamp(7.6388888889px, 11 / 1440 * 100vw, 11px);
  height: clamp(5.5555555556px, 8 / 1440 * 100vw, 8px);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form__check-box {
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  height: 100%;
}
.m-form__check-box label::before {
  width: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
  height: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
  border-radius: 3px;
  border: 0.5px solid #989898;
  content: "";
}
.m-form__check-box label:has(:checked)::after {
  position: absolute;
  top: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
  left: clamp(4.1666666667px, 6 / 1440 * 100vw, 6px);
  transform: rotate(45deg);
  width: clamp(4.8611111111px, 7 / 1440 * 100vw, 7px);
  height: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
  border: solid #2589d0;
  border-width: 0 3px 3px 0;
  content: "";
}
.m-form__check-box label {
  display: flex;
  align-items: center;
  gap: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  position: relative;
  cursor: pointer;
}
.m-form__check-box input {
  display: none;
}
.m-form__submit {
  width: clamp(173.6111111111px, 250 / 1440 * 100vw, 250px);
  height: 41px;
  color: white;
  background-color: var(--color-blue);
  border-radius: 100px;
  font-size: clamp(12.5px, 18 / 1440 * 100vw, 18px);
  letter-spacing: 0.08em;
  margin-top: clamp(24.3055555556px, 35 / 1440 * 100vw, 35px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-form__submit.-red {
  background-color: #760000;
}
.m-form .-flex {
  display: flex;
  align-items: center;
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form .-flex span {
  display: block;
  line-height: 1;
}
.m-form .-schedule {
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-form .-year,
.m-form .-time {
  margin-left: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-form .-year input,
.m-form .-time input {
  width: clamp(57.6388888889px, 83 / 1440 * 100vw, 83px);
}
.m-form .-date {
  position: relative;
  width: clamp(94.4444444444px, 136 / 1440 * 100vw, 136px);
}
.m-form .-date-input {
  padding-left: 36px; /* 左アイコン分の余白 */
  color: #989898;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  width: clamp(105.5555555556px, 152 / 1440 * 100vw, 152px);
  height: 34px;
  border-radius: 5px;
  border: 0.5px solid #989898;
}
.m-form .-date-icon {
  position: absolute;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  left: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  width: clamp(11.8055555556px, 17 / 1440 * 100vw, 17px);
}
.m-form {
  /* 右アイコンを透明化して残す */
}
.m-form .-date-input::-webkit-calendar-picker-indicator {
  opacity: 0; /* 完全に透明化 */
  cursor: pointer; /* カーソルは残す */
  position: absolute; /* input全体に広げる */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.m-form .-time {
  position: relative;
  width: clamp(94.4444444444px, 136 / 1440 * 100vw, 136px);
}
.m-form .-time-input {
  padding-left: 36px; /* 左アイコン分の余白 */
}
.m-form .-time-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-form {
  /* 右アイコンを透明化して残す */
}
.m-form .-time-input::-webkit-calendar-picker-indicator {
  opacity: 0; /* 完全に透明化 */
  cursor: pointer; /* カーソルは残す */
  position: absolute; /* input全体に広げる */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.m-col2wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.3774104683%;
}
.m-col2wrapper__content {
  width: 62.6605504587%;
  flex-shrink: 0;
}
.m-col2wrapper__side {
  width: 35.871559633%;
}

.m-chat {
  height: calc(100vh - clamp(97.2222222222px, 140 / 1440 * 100vw, 140px));
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #fff;
}
.m-chat__msg {
  overflow: scroll;
  padding: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px) clamp(20.8333333333px, 30 / 1440 * 100vw, 30px) 0;
}
.m-chat__msg ul {
  display: flex;
  flex-direction: column;
  gap: clamp(19.4444444444px, 28 / 1440 * 100vw, 28px);
}
.m-chat__msg-box {
  background-color: var(--color-blue);
  border-radius: 20px 0 20px 20px;
  color: white;
  padding: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-chat__msg-box p {
  font-size: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.m-chat__msg-box span {
  display: block;
  margin-top: clamp(6.25px, 9 / 1440 * 100vw, 9px);
  font-size: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
  line-height: 1.4166666667;
  font-weight: 400;
}
.m-chat__footer {
  padding: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px) clamp(20.8333333333px, 30 / 1440 * 100vw, 30px) clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  margin-top: auto;
}
.m-chat__footer textarea {
  width: 100%;
  height: clamp(162.5px, 234 / 1440 * 100vw, 234px);
  padding: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  letter-spacing: 0.02em;
}
.m-chat__footer-button {
  margin-top: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  text-align: right;
}
.m-chat__footer-button button {
  color: #fff;
  background-color: var(--color-blue);
  width: clamp(60.4166666667px, 87 / 1440 * 100vw, 87px);
  height: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.m-tab__buttons {
  display: flex;
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  border-bottom: 0.5px solid #000;
}
.m-tab__button {
  background-color: #eaeaea;
  font-size: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
  line-height: 1;
  font-weight: 500;
  width: clamp(88.1944444444px, 127 / 1440 * 100vw, 127px);
  height: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
  border-radius: 5px 5px 0 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-tab__button.is-active {
  background-color: var(--color-blue);
  color: #fff;
}
.m-tab__button.-large {
  width: clamp(111.1111111111px, 160 / 1440 * 100vw, 160px);
}

.m-search-btn {
  width: clamp(71.5277777778px, 103 / 1440 * 100vw, 103px);
  height: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  border-radius: 15px;
  color: #fff;
  background-color: var(--color-blue);
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.m-block {
  background-color: white;
  padding: 30px clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}

.m-keyword {
  margin-top: 14px;
}
.m-keyword .m-form {
  border-top: none;
}
.m-keyword .m-form input {
  height: 34px;
  border-radius: 5px;
  border: 0.5px solid #989898;
}
.m-keyword .m-form input[type=text] {
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-keyword .m-form .-checkbox-input {
  height: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
}
.m-keyword {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.m-keyword__flex {
  display: flex;
  gap: clamp(27.7777777778px, 40 / 1440 * 100vw, 40px);
}
.m-keyword__flex:nth-child(2) {
  margin-top: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-keyword__keyword {
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-keyword__keyword p {
  width: clamp(69.4444444444px, 100 / 1440 * 100vw, 100px);
}
.m-keyword__keyword input {
  width: clamp(246.5277777778px, 355 / 1440 * 100vw, 355px);
  height: 34px;
  border: 0.5px solid #989898;
  border-radius: 5px;
}
.m-keyword__date {
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-keyword__date p {
  width: clamp(69.4444444444px, 100 / 1440 * 100vw, 100px);
}
.m-keyword__date-wrapper {
  width: clamp(246.5277777778px, 355 / 1440 * 100vw, 355px);
  display: flex;
  align-items: center;
  gap: clamp(12.5px, 18 / 1440 * 100vw, 18px);
}
.m-keyword__date .-date {
  width: clamp(105.5555555556px, 152 / 1440 * 100vw, 152px);
}
.m-keyword__select {
  display: flex;
  align-items: center;
  gap: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  cursor: pointer;
}
.m-keyword__select-wrapper {
  width: clamp(99.3055555556px, 143 / 1440 * 100vw, 143px);
  height: 34px;
  position: relative;
}
.m-keyword__select-wrapper::before {
  content: "";
  background-image: url("../image/common/select.svg");
  width: clamp(7.6388888889px, 11 / 1440 * 100vw, 11px);
  height: clamp(5.8333333333px, 8.4 / 1440 * 100vw, 8.4px);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-keyword__select-wrapper select {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 0.5px solid #989898;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  -webkit-appearance: none; /* Chrome, Safari */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* 標準 */
}
.m-keyword__school-name {
  display: flex;
  align-items: center;
  gap: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
}
.m-keyword__school-name input {
  width: clamp(266.6666666667px, 384 / 1440 * 100vw, 384px);
}
.m-keyword__checkbox {
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-keyword__checkbox .-checkbox {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-keyword__checkbox .-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: clamp(5.5555555556px, 8 / 1440 * 100vw, 8px);
}
.m-keyword__checkbox .-checkbox-input {
  width: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
  height: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
  border: 1px solid #707070;
  border-radius: 3px;
  cursor: pointer;
}
.m-keyword__submit {
  margin-top: 30px;
  width: clamp(124.3055555556px, 179 / 1440 * 100vw, 179px);
  height: 34px;
  background-color: var(--color-blue);
  color: #fff;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin-inline: auto;
  transition: 0.3s all;
}
.m-keyword__submit:hover {
  opacity: 0.7;
}

.m-page-nation__top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.m-page-nation__items {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.m-page-nation__items span,
.m-page-nation__items a {
  width: clamp(23.6111111111px, 34 / 1440 * 100vw, 34px);
  height: clamp(23.6111111111px, 34 / 1440 * 100vw, 34px);
  border-radius: 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
}
.m-page-nation__items span {
  background-color: var(--color-blue);
  color: white;
}
.m-page-nation__items a {
  background-color: #fff;
  color: var(--color-blue);
}
.m-page-nation__bottom {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.4285714286;
  font-weight: 500;
  color: #989898;
  margin-top: 27px;
  text-align: center;
}

.m-prev-btn {
  width: clamp(71.5277777778px, 103 / 1440 * 100vw, 103px);
  height: 30px;
  background-color: var(--color-blue);
  border-radius: 100px;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  padding-left: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.m-prev-btn span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}

.m-fukusei-btn {
  width: clamp(71.5277777778px, 103 / 1440 * 100vw, 103px);
  height: 30px;
  background-color: var(--color-orange);
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
}

.m-signup-btn {
  width: clamp(71.5277777778px, 103 / 1440 * 100vw, 103px);
  height: 30px;
  background-color: var(--color-orange);
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
}

/* ========================================
補助的に使用 u-
======================================== */
/* ========================================
共通で使うレイアウト l-
======================================== */
.l-sidebar {
  width: clamp(55.5555555556px, 80 / 1440 * 100vw, 80px);
  transition: width 0.3s;
  background-color: #fff;
  height: calc(100vh - clamp(48.6111111111px, 70 / 1440 * 100vw, 70px));
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
}
.l-sidebar__button {
  cursor: pointer;
  position: relative;
  height: clamp(31.9444444444px, 46 / 1440 * 100vw, 46px);
  border-bottom: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
}
.l-sidebar__button .-open {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.l-sidebar__button .-open img {
  width: clamp(15.2777777778px, 22 / 1440 * 100vw, 22px);
}
.l-sidebar__icons {
  display: block;
}
.l-sidebar__item {
  min-height: clamp(52.7777777778px, 76 / 1440 * 100vw, 76px);
  height: auto;
}
.l-sidebar__item-links {
  display: flex;
  margin-top: clamp(15.2777777778px, 22 / 1440 * 100vw, 22px);
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  padding-left: clamp(17.3611111111px, 25 / 1440 * 100vw, 25px);
  padding-right: clamp(17.3611111111px, 25 / 1440 * 100vw, 25px);
}
.l-sidebar__item-links .-link {
  width: 100%;
  border-radius: 100px;
  height: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
}
.l-sidebar__item-links .-link:nth-of-type(1) {
  width: clamp(120.8333333333px, 174 / 1440 * 100vw, 174px);
  color: #989898;
  border: 1px solid #989898;
}
.l-sidebar__item-links .-link:nth-of-type(2) {
  width: clamp(45.8333333333px, 66 / 1440 * 100vw, 66px);
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: #fff;
}
.l-sidebar__link {
  display: flex;
  align-items: center;
}
.l-sidebar__link svg {
  width: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.l-sidebar__link h3 {
  white-space: nowrap;
  font-size: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 500;
}
.l-sidebar__link.js-acc-button {
  cursor: pointer;
}
.l-sidebar__item {
  position: relative;
  overflow: hidden;
}
.l-sidebar__item.-current {
  background-color: #f5fbff;
  position: relative;
}
.l-sidebar__item.-current::before {
  content: "";
  width: 10px;
  height: 70px;
  background-color: #004876;
  position: absolute;
  top: 0;
  left: 0;
}
.l-sidebar__item a.-current {
  pointer-events: none;
  cursor: default;
  color: var(--color-blue);
}
.l-sidebar__logo {
  width: clamp(55.5555555556px, 80 / 1440 * 100vw, 80px);
  height: clamp(52.7777777778px, 76 / 1440 * 100vw, 76px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-sidebar__logo span {
  width: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.l-sidebar__logo.-current svg path {
  fill: var(--color-blue);
}
.l-sidebar__icon {
  width: clamp(55.5555555556px, 80 / 1440 * 100vw, 80px);
  height: clamp(48.6111111111px, 70 / 1440 * 100vw, 70px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-sidebar__icon.-current svg path {
  fill: var(--color-blue);
}
.l-sidebar__body {
  width: 100%;
  display: flex;
  position: relative;
}
.l-sidebar__body .-arrow {
  width: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  height: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  position: absolute;
  right: clamp(4.1666666667px, 6 / 1440 * 100vw, 6px);
  top: calc(50% - 12px);
  transform: translateX(-50%);
  z-index: 3;
}
.l-sidebar__body .-arrow img {
  width: 100%;
}
.l-sidebar__class {
  display: none;
  text-align: right;
  width: 100%;
  background-color: #f5f5f5;
  border-top: 0.5px dashed #707070;
}
.l-sidebar__class .-items {
  display: flex;
  flex-direction: column;
}
.l-sidebar__class .-item {
  position: relative;
  padding: 6.5px 0px 6.5px clamp(19.4444444444px, 28 / 1440 * 100vw, 28px);
  padding-left: clamp(19.4444444444px, 28 / 1440 * 100vw, 28px);
}
.l-sidebar__class .-item a {
  display: flex;
  color: #669bf0;
  padding-left: clamp(4.8611111111px, 7 / 1440 * 100vw, 7px);
  border-left: 3px solid #669bf0;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.875;
}
.l-sidebar__class .-item a::before {
  content: "";
  background-image: url("../image/common/arrow-blue.svg");
  width: clamp(4.5138888889px, 6.5 / 1440 * 100vw, 6.5px);
  height: clamp(7.6388888889px, 11 / 1440 * 100vw, 11px);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(17.3611111111px, 25 / 1440 * 100vw, 25px);
}
.l-sidebar__class .-item.-current {
  background-color: #669bf0;
}
.l-sidebar__class .-item.-current a {
  color: #fff;
  border-left: 3px solid #fff;
}
.l-sidebar__class .-item.-current a::before {
  background-image: url("../image/common/arrow-white.svg");
}
.l-sidebar.is-active {
  width: clamp(208.3333333333px, 300 / 1440 * 100vw, 300px);
  flex-shrink: 0;
}
.l-sidebar.is-active .-open {
  right: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.l-sidebar.is-active .l-sidebar__logo {
  display: none;
}
.l-sidebar.is-active .l-sidebar__icon {
  width: clamp(36.1111111111px, 52 / 1440 * 100vw, 52px);
  height: clamp(29.1666666667px, 42 / 1440 * 100vw, 42px);
}
.l-sidebar.is-active .l-sidebar__link svg {
  width: clamp(15.9722222222px, 23 / 1440 * 100vw, 23px);
}
.l-sidebar.is-active .l-sidebar__items {
  display: block;
}
.l-sidebar.is-active .l-sidebar__item {
  border-top: 0.5px solid #004876;
  border-bottom: 0.5px solid #004876;
  height: auto;
  min-height: 42px;
  overflow: visible;
}
.l-sidebar.is-active .l-sidebar__item.-current::before {
  height: 42px;
}
.l-sidebar.is-active .l-sidebar__class {
  display: block;
}
.l-sidebar.is-active .l-sidebar__button {
  border-right: none;
}
.l-sidebar.is-active .l-sidebar__link {
  padding-left: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.l-sidebar.is-active .-open img {
  transform: rotate(180deg);
}

.l-main {
  display: flex;
}

.l-content {
  padding: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px) clamp(34.7222222222px, 50 / 1440 * 100vw, 50px);
  width: 100%;
  overflow: scroll;
  transition: none;
  background-color: #f5fbff;
}
.l-content__top {
  display: flex;
  justify-content: space-between;
}
.l-content__right a {
  margin-left: auto;
}
.l-content__right p {
  font-size: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  line-height: 1.5;
  margin-right: clamp(-6.9444444444px, -10 / 1440 * 100vw, -10px);
  margin-top: clamp(4.8611111111px, 7 / 1440 * 100vw, 7px);
}
.l-content h2 {
  font-size: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--color-blue);
  margin-bottom: clamp(1.3888888889px, 2 / 1440 * 100vw, 2px);
}
.l-content .-count {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1.5;
}
.l-content .m-registration-btn {
  width: clamp(71.5277777778px, 103 / 1440 * 100vw, 103px);
  height: 30px;
}

.header {
  width: 100%;
  background-color: #fff;
  height: clamp(48.6111111111px, 70 / 1440 * 100vw, 70px);
  padding-left: clamp(17.3611111111px, 25 / 1440 * 100vw, 25px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d5d5d5;
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: clamp(34.7222222222px, 50 / 1440 * 100vw, 50px);
}
.header__left {
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.header__left p {
  border-top: 1px solid #004876;
  border-bottom: 1px solid #004876;
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 500;
  width: clamp(75px, 108 / 1440 * 100vw, 108px);
  height: 32px;
  color: #004876;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__right {
  position: relative;
}
.header__right p {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.header__right button {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: clamp(5.5555555556px, 8 / 1440 * 100vw, 8px);
  color: var(--color-blue);
  margin-top: clamp(1.3888888889px, 2 / 1440 * 100vw, 2px);
}
.header__right button span {
  width: clamp(7.6388888889px, 11 / 1440 * 100vw, 11px);
}
.header__right a {
  display: none;
  position: absolute;
  left: 0;
  bottom: clamp(-22.2222222222px, -32 / 1440 * 100vw, -32px);
}
.header__logo {
  width: clamp(124.3055555556px, 179 / 1440 * 100vw, 179px);
}
.header__btn span {
  width: clamp(5.9027777778px, 8.5 / 1440 * 100vw, 8.5px);
}
.header__btn span img {
  width: 100%;
}
.header__btn {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  background-color: var(--color-blue);
  color: #fff;
  min-width: clamp(103.4722222222px, 149 / 1440 * 100vw, 149px);
  height: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  padding: 0 clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  border-radius: 15px;
}

.js-tab__button.is-active {
  background-color: var(--color-blue);
  color: white;
}
.js-tab-content {
  display: none;
  visibility: hidden;
}
.js-tab-content.is-active {
  display: block;
  visibility: visible;
}

.front-page .l-content h2 {
  margin-bottom: 38px;
}

.p-operation-index__top {
  display: flex;
  justify-content: space-between;
}
.p-operation-index__right form {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.p-operation-index__right .-top {
  display: flex;
  align-items: center;
  gap: clamp(12.5px, 18 / 1440 * 100vw, 18px);
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 400;
}
.p-operation-index__right .-top span {
  display: block;
}
.p-operation-index__right .-date {
  position: relative;
}
.p-operation-index__right .-date-input {
  padding-left: 36px; /* 左アイコン分の余白 */
  color: #989898;
  border-radius: 5px;
  border: 0.5px solid #989898;
  width: clamp(105.5555555556px, 152 / 1440 * 100vw, 152px);
  height: clamp(23.6111111111px, 34 / 1440 * 100vw, 34px);
}
.p-operation-index__right .-date-icon {
  position: absolute;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  left: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  width: clamp(11.8055555556px, 17 / 1440 * 100vw, 17px);
  border-radius: 5px;
}
.p-operation-index__right {
  /* 右アイコンを透明化して残す */
}
.p-operation-index__right .-date-input::-webkit-calendar-picker-indicator {
  opacity: 0; /* 完全に透明化 */
  cursor: pointer; /* カーソルは残す */
  position: absolute; /* input全体に広げる */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-operation-index__right .-submit {
  width: clamp(79.8611111111px, 115 / 1440 * 100vw, 115px);
  height: clamp(23.6111111111px, 34 / 1440 * 100vw, 34px);
  background-color: var(--color-blue);
  color: #fff;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.p-operation-index__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  margin-top: 22px;
}
.p-operation-index__item {
  border: 1px solid #e6e6e6;
  padding: 13px clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  display: flex;
  flex-direction: column;
  height: 199px;
}
.p-operation-index__item-top {
  display: flex;
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  align-items: flex-start;
  justify-content: space-between;
}
.p-operation-index__item-title {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
}
.p-operation-index__item-value {
  display: flex;
  align-items: center;
  padding: 7px clamp(4.8611111111px, 7 / 1440 * 100vw, 7px);
  line-height: 1;
  gap: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  border: 0.5px solid var(--color-blue);
}
.p-operation-index__item-value span {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
}
.p-operation-index__item-value p {
  font-size: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  font-weight: 500;
  font-family: var(--font-en);
  display: flex;
  align-items: center;
  gap: clamp(1.3888888889px, 2 / 1440 * 100vw, 2px);
}
.p-operation-index__item-value p span {
  font-size: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
.p-operation-index__item-main {
  margin-top: auto;
}
.p-operation-index__item-main svg {
  margin-top: 12px;
}
.p-operation-index__item-main .-subject {
  font-family: var(--font-en);
  font-size: clamp(22.2222222222px, 32 / 1440 * 100vw, 32px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1875;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.p-operation-index__item-main .-subject span {
  font-size: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
  font-family: var(--font-base);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4210526316;
  margin-left: clamp(2.7777777778px, 4 / 1440 * 100vw, 4px);
}
.p-operation-index__item-main .-price {
  font-family: var(--font-en);
  font-size: clamp(22.2222222222px, 32 / 1440 * 100vw, 32px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1875;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 0.5px solid #e6e6e6;
  margin-top: 8px;
  padding-top: 14px;
}
.p-operation-index__item-main .-price span {
  font-size: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  font-family: var(--font-base);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-right: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
}
.p-operation-index__item:nth-child(1) {
  color: var(--color-blue);
}
.p-operation-index__item:nth-child(1) .p-operation-index__item-main {
  margin-top: 10px;
}
.p-operation-index__item:nth-child(2) {
  color: var(--color-red);
}
.p-operation-index__item:nth-child(3) {
  color: var(--color-blue);
}

.p-todo {
  background-color: #fff;
  padding: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
  width: 100%;
  margin-top: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  padding-top: 42px;
}
.p-todo .m-title {
  margin-bottom: clamp(17.3611111111px, 25 / 1440 * 100vw, 25px);
}
.p-todo__items .tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.4285714286;
  font-weight: 500;
  border: 0.5px solid #989898;
  border-right: 0;
}
.p-todo__items .tab-button {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  border-right: 0.5px solid #989898;
}
.p-todo__items .tab-button:nth-child(n+4) {
  border-top: 0.5px solid #989898;
}
.p-todo__items .tab-button span {
  background-color: var(--color-orange);
  border-radius: 3px;
  height: clamp(13.1944444444px, 19 / 1440 * 100vw, 19px);
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  letter-spacing: 0.02em;
  line-height: 1.3571428571;
  font-weight: 500;
  color: white;
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-todo .m-table {
  margin-top: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.p-todo .m-table th {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.4285714286;
  font-weight: 500;
  width: clamp(74.3055555556px, 107 / 1440 * 100vw, 107px);
  background-color: #e6e6e6;
  padding: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px) 0;
  text-align: center;
}
.p-todo .m-table th:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-todo .m-table th:not(:nth-of-type(1)) {
  border-left: 2px solid #fff;
}
.p-todo .m-table th:nth-of-type(2) {
  width: 54.8979591837%;
}
.p-todo .m-table th:nth-of-type(3) {
  width: 9.6428571429%;
}
.p-todo .m-table th:nth-of-type(4) {
  width: 9.6428571429%;
}
.p-todo .m-table th:nth-of-type(5) {
  width: 11.0204081633%;
}
.p-todo .m-table th:nth-of-type(6) {
  width: 7.1428571429%;
}
.p-todo .m-table td {
  padding: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px) 0;
  text-align: center;
  border-bottom: 1px dashed #707070;
}
.p-todo .m-table td p {
  font-weight: 500;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.4285714286;
}
.p-todo .m-table td p.-small {
  font-size: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
  line-height: 1.4166666667;
}
.p-todo .m-table td a {
  color: #669bf0;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.4285714286;
}
.p-todo .m-table td .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
  color: white;
}
.p-todo .m-table td:nth-of-type(1) {
  vertical-align: middle;
}
.p-todo .m-table td:nth-of-type(2) {
  padding-left: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  text-align: left;
}

.company .l-content {
  padding-bottom: 172px;
}
.company .l-content h2 {
  margin-bottom: 4px;
}
.company.-form .l-content h2 {
  margin-bottom: 38px;
}
.company.-form .m-block {
  padding: 27px clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.company.-detail h2 {
  margin-bottom: 38px;
}

.p-company-table {
  margin-top: 30px;
}
.p-company-table .m-table {
  margin-top: 0;
}
.p-company-table .m-table th:nth-of-type(1),
.p-company-table .m-table td:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-company-table .m-table th:nth-of-type(2),
.p-company-table .m-table td:nth-of-type(2) {
  width: 17.8571428571%;
}
.p-company-table .m-table th:nth-of-type(3),
.p-company-table .m-table td:nth-of-type(3) {
  width: 23.7755102041%;
}
.p-company-table .m-table th:nth-of-type(4),
.p-company-table .m-table td:nth-of-type(4) {
  width: 10.612244898%;
}
.p-company-table .m-table th:nth-of-type(5),
.p-company-table .m-table td:nth-of-type(5) {
  width: 10.2040816327%;
}
.p-company-table .m-table th:nth-of-type(6),
.p-company-table .m-table td:nth-of-type(6) {
  width: 5.7142857143%;
}
.p-company-table .m-table th:nth-of-type(7),
.p-company-table .m-table td:nth-of-type(7) {
  width: 9.1836734694%;
}
.p-company-table .m-table th:nth-of-type(8),
.p-company-table .m-table td:nth-of-type(8) {
  width: 7.1428571429%;
}
.p-company-table .m-table th:nth-of-type(9),
.p-company-table .m-table td:nth-of-type(9) {
  width: 7.1428571429%;
}
.p-company-table .m-table td {
  padding: 10px clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-company-table .m-table td:nth-of-type(3) {
  text-align: left;
}
.p-company-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.p-company-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-company-form__top {
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  margin-bottom: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
}
.p-company-form__top h3 {
  height: 30px;
  border: 1px solid var(--color-blue);
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  line-height: 1;
  font-weight: 500;
  color: var(--color-blue);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(9.0277777778px, 13 / 1440 * 100vw, 13px);
}
.p-company-form__top h3.w170 {
  width: clamp(118.0555555556px, 170 / 1440 * 100vw, 170px);
}
.p-company-form__top h3.w134 {
  width: clamp(93.0555555556px, 134 / 1440 * 100vw, 134px);
}
.p-company-form__top p {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 400;
  font-weight: 400;
}
.p-company-form .m-form__submit {
  margin-top: 21px;
}
.p-company-form .-date {
  width: clamp(214.5833333333px, 309 / 1440 * 100vw, 309px);
}
.p-company-form .-date-input {
  width: 100%;
  color: #D8D8D8;
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
}

.p-company-detail {
  display: flex;
  flex-direction: column;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.p-company-detail__tab {
  margin-bottom: 29px;
}

.inquiry .l-content {
  padding-bottom: 150px;
}
.inquiry.-detail .l-content h2 {
  margin-bottom: 38px;
}

.p-inquiry-table {
  margin-top: 30px;
}
.p-inquiry-table .m-table {
  margin-top: 0;
}
.p-inquiry-table .m-table th:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-inquiry-table .m-table th:nth-of-type(2) {
  width: 9.5918367347%;
}
.p-inquiry-table .m-table th:nth-of-type(3) {
  width: 23.7755102041%;
}
.p-inquiry-table .m-table th:nth-of-type(4) {
  width: 24.8979591837%;
}
.p-inquiry-table .m-table th:nth-of-type(5) {
  width: 7.7551020408%;
}
.p-inquiry-table .m-table th:nth-of-type(6) {
  width: 11.6326530612%;
}
.p-inquiry-table .m-table th:nth-of-type(7) {
  width: 7.1428571429%;
}
.p-inquiry-table .m-table th:nth-of-type(8) {
  width: 7.1428571429%;
}
.p-inquiry-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-inquiry-table .m-table td:nth-of-type(2), .p-inquiry-table .m-table td:nth-of-type(3) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-inquiry-table .m-table td:nth-of-type(4) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.p-inquiry-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.p-inquiry-detail {
  display: flex;
  flex-direction: column;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.p-inquiry-detail__tab {
  margin-bottom: 29px;
}

.p-inquiry__status {
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  background-color: var(--color-orange);
  padding: 0 29px;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  margin-bottom: 15px;
}
.p-inquiry__status p {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  line-height: 1.5;
  color: white;
  font-weight: 500;
}
.p-inquiry__completion {
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  background-color: var(--color-light-blue);
  padding: 0 29px;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  margin-bottom: 15px;
}
.p-inquiry__completion p {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  line-height: 1.5;
  color: white;
  font-weight: 500;
}

.publish .l-content {
  padding-bottom: 150px;
}

.p-publish-table {
  margin-top: 30px;
}
.p-publish-table .m-table {
  margin-top: 0;
}
.p-publish-table .m-table th:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-publish-table .m-table th:nth-of-type(2) {
  width: 47.6530612245%;
}
.p-publish-table .m-table th:nth-of-type(3) {
  width: 18.7755102041%;
}
.p-publish-table .m-table th:nth-of-type(4) {
  width: 11.6326530612%;
}
.p-publish-table .m-table th:nth-of-type(5) {
  width: 7.1428571429%;
}
.p-publish-table .m-table th:nth-of-type(6) {
  width: 7.1428571429%;
}
.p-publish-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-publish-table .m-table td:nth-of-type(2) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-publish-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.p-publish-detail__tab {
  margin-bottom: 29px;
}

.open .l-content {
  padding-bottom: 150px;
}
.open.-detail .l-content h2 {
  margin-bottom: 38px;
}

.p-open-table {
  margin-top: 30px;
}
.p-open-table .m-table {
  margin-top: 0;
}
.p-open-table .m-table th:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-open-table .m-table th:nth-of-type(2) {
  width: 50.7142857143%;
}
.p-open-table .m-table th:nth-of-type(3) {
  width: 7.7551020408%;
}
.p-open-table .m-table th:nth-of-type(4) {
  width: 7.7551020408%;
}
.p-open-table .m-table th:nth-of-type(5) {
  width: 11.6326530612%;
}
.p-open-table .m-table th:nth-of-type(6) {
  width: 7.1428571429%;
}
.p-open-table .m-table th:nth-of-type(7) {
  width: 7.1428571429%;
}
.p-open-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-open-table .m-table td:nth-of-type(2) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-open-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.p-open-detail__buttons {
  display: flex;
  justify-content: center;
  gap: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.p-open-detail__buttons .m-form__submit {
  width: clamp(173.6111111111px, 250 / 1440 * 100vw, 250px);
  height: 41px;
  margin-inline: initial;
}
.p-open-detail__buttons.-line .m-form__submit {
  width: clamp(247.2222222222px, 356 / 1440 * 100vw, 356px);
}
.p-open-detail .m-table th {
  padding: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px) clamp(11.8055555556px, 17 / 1440 * 100vw, 17px);
}
.p-open-detail .m-table th .-red {
  color: #ce0000;
}
.p-open-detail .m-table td {
  width: calc(100% - clamp(161.8055555556px, 233 / 1440 * 100vw, 233px));
}

.manager-contact-inquiry .l-content {
  padding-bottom: 501px;
}
.manager-contact-inquiry .l-content__top {
  margin-bottom: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
}

.p-manager-contact-inquiry-table {
  margin-top: 30px;
}
.p-manager-contact-inquiry-table .m-table {
  margin-top: 0;
}
.p-manager-contact-inquiry-table .m-table th:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-manager-contact-inquiry-table .m-table th:nth-of-type(2) {
  width: 23.8775510204%;
}
.p-manager-contact-inquiry-table .m-table th:nth-of-type(3) {
  width: 26.6326530612%;
}
.p-manager-contact-inquiry-table .m-table th:nth-of-type(4) {
  width: 15.7142857143%;
}
.p-manager-contact-inquiry-table .m-table th:nth-of-type(5) {
  width: 11.6326530612%;
}
.p-manager-contact-inquiry-table .m-table th:nth-of-type(7) {
  width: 7.1428571429%;
}
.p-manager-contact-inquiry-table .m-table th:nth-of-type(8) {
  width: 7.1428571429%;
}
.p-manager-contact-inquiry-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
  font-weight: 500;
}
.p-manager-contact-inquiry-table .m-table td:nth-of-type(2), .p-manager-contact-inquiry-table .m-table td:nth-of-type(3) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-manager-contact-inquiry-table .m-table td:nth-of-type(4) {
  text-align: center;
}
.p-manager-contact-inquiry-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.school-correction-request .l-content {
  padding-bottom: 150px;
}
.school-correction-request .l-content__top {
  margin-bottom: clamp(26.3888888889px, 38 / 1440 * 100vw, 38px);
}

.p-school-correction-request-table {
  margin-top: 30px;
}
.p-school-correction-request-table .m-table {
  margin-top: 0;
}
.p-school-correction-request-table .m-table th:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-school-correction-request-table .m-table th:nth-of-type(2) {
  width: 12.2448979592%;
}
.p-school-correction-request-table .m-table th:nth-of-type(3) {
  width: 49.0816326531%;
}
.p-school-correction-request-table .m-table th:nth-of-type(4) {
  width: 12.2448979592%;
}
.p-school-correction-request-table .m-table th:nth-of-type(5) {
  width: 11.6326530612%;
}
.p-school-correction-request-table .m-table th:nth-of-type(6) {
  width: 7.1428571429%;
}
.p-school-correction-request-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-school-correction-request-table .m-table td:nth-of-type(2), .p-school-correction-request-table .m-table td:nth-of-type(3), .p-school-correction-request-table .m-table td:nth-of-type(4) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-school-correction-request-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.school-event .l-content {
  padding-bottom: 150px;
}
.school-event.-detail .m-block + .m-block {
  margin-top: 15px;
}
.school-event.-detail .l-content__top {
  margin-bottom: 38px;
}

.p-school-event-table {
  margin-top: 30px;
}
.p-school-event-table .m-table {
  margin-top: 0;
}
.p-school-event-table .m-table th:nth-of-type(1) {
  width: 16.1224489796%;
}
.p-school-event-table .m-table th:nth-of-type(2) {
  width: 16.1224489796%;
}
.p-school-event-table .m-table th:nth-of-type(3) {
  width: 10.8163265306%;
}
.p-school-event-table .m-table th:nth-of-type(4) {
  width: 6.7346938776%;
}
.p-school-event-table .m-table th:nth-of-type(5) {
  width: 9.1836734694%;
}
.p-school-event-table .m-table th:nth-of-type(6) {
  width: 9.387755102%;
}
.p-school-event-table .m-table th:nth-of-type(7) {
  width: 8.1632653061%;
}
.p-school-event-table .m-table th:nth-of-type(8) {
  width: 7.1428571429%;
}
.p-school-event-table .m-table th:nth-of-type(9) {
  width: 7.1428571429%;
}
.p-school-event-table .m-table th:nth-of-type(10) {
  width: 7.1428571429%;
}
.p-school-event-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-school-event-table .m-table td:nth-of-type(1), .p-school-event-table .m-table td:nth-of-type(2) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-school-event-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.p-school-event-detail-table1 th {
  vertical-align: middle;
}
.p-school-event-detail-table1 .-flex {
  display: flex;
  align-items: center;
  gap: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.p-school-event-detail-table1 .m-table__text {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  color: #ce0000;
  font-weight: 500;
}

.p-school-event-detail-table2 .m-table {
  margin-top: 10px;
}
.p-school-event-detail-table2 .m-table th:nth-of-type(1) {
  width: 11.2244897959%;
}
.p-school-event-detail-table2 .m-table th:nth-of-type(2) {
  width: 24.8469387755%;
}
.p-school-event-detail-table2 .m-table th:nth-of-type(3) {
  width: 7.1428571429%;
}
.p-school-event-detail-table2 .m-table th:nth-of-type(4) {
  width: 22.9591836735%;
}
.p-school-event-detail-table2 .m-table th:nth-of-type(5) {
  width: 11.887755102%;
}
.p-school-event-detail-table2 .m-table th:nth-of-type(6) {
  width: 11.2244897959%;
}
.p-school-event-detail-table2 .m-table th:nth-of-type(7) {
  width: 9.387755102%;
}
.p-school-event-detail-table2 .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-school-event-detail-table2 .m-table td:nth-of-type(1), .p-school-event-detail-table2 .m-table td:nth-of-type(2) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-school-event-detail-table2 .m-table .m-label {
  width: clamp(62.5px, 90 / 1440 * 100vw, 90px);
}

.event .l-content {
  padding-bottom: 150px;
}
.event.-form .l-content__top-right {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}

.p-event-table {
  margin-top: 30px;
}
.p-event-table .m-table {
  margin-top: 0;
}
.p-event-table .m-table th:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-event-table .m-table th:nth-of-type(2) {
  width: 34.1836734694%;
}
.p-event-table .m-table th:nth-of-type(3) {
  width: 10.8163265306%;
}
.p-event-table .m-table th:nth-of-type(4) {
  width: 6.7346938776%;
}
.p-event-table .m-table th:nth-of-type(5) {
  width: 9.1836734694%;
}
.p-event-table .m-table th:nth-of-type(6) {
  width: 9.387755102%;
}
.p-event-table .m-table th:nth-of-type(7) {
  width: 7.1428571429%;
}
.p-event-table .m-table th:nth-of-type(8) {
  width: 7.1428571429%;
}
.p-event-table .m-table th:nth-of-type(9) {
  width: 7.1428571429%;
}
.p-event-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-event-table .m-table td:nth-of-type(2) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-event-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.p-event-detail {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 38px;
}
.p-event-detail__image {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  padding: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  border-top: 0.5px solid #d5d5d5;
  border-bottom: 0.5px solid #d5d5d5;
  margin-top: 10px;
}
.p-event-detail__image li {
  aspect-ratio: 177.8/134;
  width: clamp(123.4722222222px, 177.8 / 1440 * 100vw, 177.8px);
}
.p-event-detail__image li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-event-detail__image li:first-child {
  position: relative;
}
.p-event-detail__image li:first-child span {
  font-size: clamp(9.0277777778px, 13 / 1440 * 100vw, 13px);
  font-weight: 400;
  color: #989898;
  width: clamp(36.1111111111px, 52 / 1440 * 100vw, 52px);
  height: clamp(20.1388888889px, 29 / 1440 * 100vw, 29px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  left: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  background-color: #fff;
}

.p-event-detail-table .-flex {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}

.p-event-form {
  display: flex;
  flex-direction: column;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  margin-top: 38px;
}
.p-event-form .m-form {
  margin-top: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
}
.p-event-form .m-form__top {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  align-items: center;
}
.p-event-form .m-form__top-title {
  width: clamp(118.0555555556px, 170 / 1440 * 100vw, 170px);
  height: 30px;
  border: 1px solid var(--color-blue);
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  border-radius: 100px;
  font-weight: 500;
}
.p-event-form .m-form__top-text {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 400;
}
.p-event-form .m-form__content .-date {
  width: 100%;
}
.p-event-form .m-form__content .-date-input {
  width: 100%;
  color: #D8D8D8;
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
}
.p-event-form .m-form__content .-to {
  color: #989898;
}
.p-event-form .m-form select {
  color: #989898;
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
}
.p-event-form .m-form .-post-number-search {
  margin-left: clamp(4.1666666667px, 6 / 1440 * 100vw, 6px);
}

.bill .l-content {
  padding-bottom: 150px;
}

.p-bill-table {
  margin-top: 30px;
}
.p-bill-table .m-table {
  margin-top: 0;
}
.p-bill-table .m-table th:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-bill-table .m-table th:nth-of-type(2) {
  width: 20.306122449%;
}
.p-bill-table .m-table th:nth-of-type(3) {
  width: 14.0816326531%;
}
.p-bill-table .m-table th:nth-of-type(4) {
  width: 9.387755102%;
}
.p-bill-table .m-table th:nth-of-type(5) {
  width: 6.3265306122%;
}
.p-bill-table .m-table th:nth-of-type(6) {
  width: 8.3673469388%;
}
.p-bill-table .m-table th:nth-of-type(7) {
  width: 11.6326530612%;
}
.p-bill-table .m-table th:nth-of-type(8) {
  width: 7.1428571429%;
}
.p-bill-table .m-table th:nth-of-type(9) {
  width: 7.1428571429%;
}
.p-bill-table .m-table th:nth-of-type(10) {
  width: 7.1428571429%;
}
.p-bill-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-bill-table .m-table td:nth-of-type(2) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-bill-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.p-bill-form .m-form__content {
  padding-left: clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.p-bill-form .m-block {
  padding-top: 38px;
}
.p-bill-form .m-form {
  margin-top: 10px;
}
.p-bill-form .m-form__select {
  width: clamp(214.5833333333px, 309 / 1440 * 100vw, 309px);
}
.p-bill-form .m-form__select select {
  color: #989898;
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
}
.p-bill-form .m-form .-date-input {
  width: clamp(214.5833333333px, 309 / 1440 * 100vw, 309px);
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  color: #d8d8d8;
}

.news .l-content {
  padding-bottom: 150px;
}
.news.-form .l-content h2 {
  margin-bottom: 38px;
}

.p-news-table {
  margin-top: 30px;
}
.p-news-table .m-table {
  margin-top: 0;
}
.p-news-table .m-table th:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-news-table .m-table th:nth-of-type(2) {
  width: 45.8163265306%;
}
.p-news-table .m-table th:nth-of-type(3) {
  width: 10.2040816327%;
}
.p-news-table .m-table th:nth-of-type(4) {
  width: 10.2040816327%;
}
.p-news-table .m-table th:nth-of-type(5) {
  width: 11.6326530612%;
}
.p-news-table .m-table th:nth-of-type(6) {
  width: 7.1428571429%;
}
.p-news-table .m-table th:nth-of-type(7) {
  width: 7.1428571429%;
}
.p-news-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-news-table .m-table td:nth-of-type(2) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-news-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.p-news-form .m-form {
  margin-top: 10px;
}
.p-news-form .m-block {
  padding-top: 35px;
}
.p-news-form .m-form__content {
  padding: clamp(8.3333333333px, 12 / 1440 * 100vw, 12px) clamp(9.0277777778px, 13 / 1440 * 100vw, 13px) clamp(8.3333333333px, 12 / 1440 * 100vw, 12px) clamp(52.0833333333px, 75 / 1440 * 100vw, 75px);
}
.p-news-form .-date-input {
  width: clamp(214.5833333333px, 309 / 1440 * 100vw, 309px);
  height: 38px;
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
}
.p-news-form textarea {
  height: 102px;
}

.login-page {
  align-items: center;
  justify-content: center;
  background-color: #f5fbff;
  width: 100%;
  height: 100dvh;
}

.p-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(486.1111111111px, 700 / 1440 * 100vw, 700px);
  height: 500px;
  background-color: white;
}
.p-login__logo {
  width: clamp(104.1666666667px, 150 / 1440 * 100vw, 150px);
  margin-inline: auto;
}
.p-login__title {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  line-height: 1;
  color: var(--color-blue);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(74.3055555556px, 107 / 1440 * 100vw, 107px);
  height: 32px;
  border-top: 1px solid var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  margin-top: 15px;
  margin-inline: auto;
}
.p-login__text {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  margin-top: 30px;
  line-height: 1.4285714286;
  font-weight: 500;
  text-align: center;
}
.p-login__form {
  margin-top: clamp(18.0555555556px, 26 / 1440 * 100vw, 26px);
}
.p-login__form ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-login__form li input[type=email],
.p-login__form li input[type=password] {
  border-radius: 3px;
  border: 0.5px solid #989898;
  display: block;
  width: clamp(246.5277777778px, 355 / 1440 * 100vw, 355px);
  height: 34px;
  display: block;
  margin-top: 5px;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-login__form li label {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  line-height: 1.4285714286;
  font-weight: 400;
}
.p-login__form li .-check-box {
  display: flex;
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  margin-top: 5px;
}
.p-login__form li .-check-box input[type=checkbox] {
  width: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  height: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  border: 0.5px solid #989898;
  border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-login__form button {
  width: clamp(124.3055555556px, 179 / 1440 * 100vw, 179px);
  height: 34px;
  background-color: var(--color-blue);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 500;
  line-height: 1;
  color: white;
  margin-inline: auto;
  margin-top: 50px;
}

.p-school-table {
  margin-top: 30px;
}
.p-school-table .m-table {
  margin-top: 0;
}
.p-school-table .m-table th:nth-of-type(1),
.p-school-table .m-table td:nth-of-type(1) {
  width: 6.5306122449%;
}
.p-school-table .m-table th:nth-of-type(2),
.p-school-table .m-table td:nth-of-type(2) {
  width: 10.2040816327%;
}
.p-school-table .m-table th:nth-of-type(3),
.p-school-table .m-table td:nth-of-type(3) {
  width: 22.4489795918%;
}
.p-school-table .m-table th:nth-of-type(4),
.p-school-table .m-table td:nth-of-type(4) {
  width: 9.1836734694%;
}
.p-school-table .m-table th:nth-of-type(5),
.p-school-table .m-table td:nth-of-type(5) {
  width: 9.1836734694%;
}
.p-school-table .m-table th:nth-of-type(6),
.p-school-table .m-table td:nth-of-type(6) {
  width: 9.1836734694%;
}
.p-school-table .m-table th:nth-of-type(7),
.p-school-table .m-table td:nth-of-type(7) {
  width: 9.1836734694%;
}
.p-school-table .m-table th:nth-of-type(8),
.p-school-table .m-table td:nth-of-type(8) {
  width: 6.7346938776%;
}
.p-school-table .m-table th:nth-of-type(9),
.p-school-table .m-table td:nth-of-type(9) {
  width: 9.4897959184%;
}
.p-school-table .m-table th:nth-of-type(10),
.p-school-table .m-table td:nth-of-type(10) {
  width: 6.7346938776%;
}
.p-school-table .m-table th:nth-of-type(11),
.p-school-table .m-table td:nth-of-type(11) {
  width: 6.7346938776%;
}
.p-school-table .m-table th:nth-of-type(12),
.p-school-table .m-table td:nth-of-type(12) {
  width: 6.7346938776%;
}
.p-school-table .m-table td {
  padding: 10px clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-school-table .m-table td:nth-of-type(3) {
  text-align: left;
}
.p-school-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.experience .l-content {
  padding-bottom: 150px;
}
.experience.-form .l-content__top-right {
  display: flex;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}
.experience.-detail .l-content__top {
  margin-bottom: 38px;
}

.p-experience-table {
  margin-top: 30px;
}
.p-experience-table .m-table {
  margin-top: 0;
}
.p-experience-table .m-table th:nth-of-type(1) {
  width: 3.5714285714%;
}
.p-experience-table .m-table th:nth-of-type(2) {
  width: 14.7959183673%;
}
.p-experience-table .m-table th:nth-of-type(3) {
  width: 7.1428571429%;
}
.p-experience-table .m-table th:nth-of-type(4) {
  width: 7.1428571429%;
}
.p-experience-table .m-table th:nth-of-type(5) {
  width: 9.1836734694%;
}
.p-experience-table .m-table th:nth-of-type(6) {
  width: 10.2040816327%;
}
.p-experience-table .m-table th:nth-of-type(7) {
  width: 25.5102040816%;
}
.p-experience-table .m-table th:nth-of-type(8) {
  width: 9.1836734694%;
}
.p-experience-table .m-table th:nth-of-type(9) {
  width: 7.1428571429%;
}
.p-experience-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-experience-table .m-table td:nth-of-type(2) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-experience-table .m-table td:nth-of-type(6) {
  text-align: left;
}
.p-experience-table .m-table td:nth-of-type(7) {
  text-align: left;
}
.p-experience-table .m-table .m-label {
  width: clamp(38.8888888889px, 56 / 1440 * 100vw, 56px);
}

.account .l-content {
  padding-bottom: 172px;
}
.account .l-content h2 {
  margin-bottom: 4px;
}
.account.-form .l-content h2 {
  margin-bottom: 38px;
}
.account.-form .m-block {
  padding: 27px clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.account.-detail h2 {
  margin-bottom: 38px;
}

.p-account-table {
  margin-top: 30px;
}
.p-account-table .m-registration-btn {
  width: clamp(126.3888888889px, 182 / 1440 * 100vw, 182px);
}
.p-account-table .m-table {
  margin-top: 10px;
}
.p-account-table .m-table th:nth-of-type(1),
.p-account-table .m-table td:nth-of-type(1) {
  width: 9.8979591837%;
}
.p-account-table .m-table th:nth-of-type(2),
.p-account-table .m-table td:nth-of-type(2) {
  width: 18.3673469388%;
}
.p-account-table .m-table th:nth-of-type(3),
.p-account-table .m-table td:nth-of-type(3) {
  width: 18.3673469388%;
}
.p-account-table .m-table th:nth-of-type(4),
.p-account-table .m-table td:nth-of-type(4) {
  width: 33.6734693878%;
}
.p-account-table .m-table th:nth-of-type(5),
.p-account-table .m-table td:nth-of-type(5) {
  width: 8.1632653061%;
}
.p-account-table .m-table th:nth-of-type(6),
.p-account-table .m-table td:nth-of-type(6) {
  width: 10.4081632653%;
}
.p-account-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-account-table .m-table td:nth-of-type(2) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-account-table .m-table td:nth-of-type(4) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-account-table .m-table .m-label {
  width: clamp(62.5px, 90 / 1440 * 100vw, 90px);
}

.p-account-form .m-table__title {
  color: #86adcb;
}
.p-account-form .m-form {
  margin-top: 10px;
}
.p-account-form .m-form__content.-check-box {
  padding-top: 21px;
}
.p-account-form .m-form__check-box {
  height: 24px;
}
.p-account-form .m-form__submit {
  background-color: #86adcb;
  width: clamp(173.6111111111px, 250 / 1440 * 100vw, 250px);
  letter-spacing: 0.02em;
  font-weight: bold;
  transition: opacity 0.3s;
}
.p-account-form .m-form__submit:hover {
  opacity: 0.8;
}

.school-import .l-content {
  padding-bottom: 150px;
}
.school-import.-detail .m-block + .m-block {
  margin-top: 30px;
}
.school-import.-detail .m-block {
  padding: 29px clamp(20.8333333333px, 30 / 1440 * 100vw, 30px);
}
.school-import.-detail .l-content__top {
  margin-bottom: 38px;
}

.p-school-import-table {
  margin-top: 30px;
}
.p-school-import-table .m-table {
  margin-top: 0;
}
.p-school-import-table .m-table th:nth-of-type(1) {
  width: 9.8979591837%;
}
.p-school-import-table .m-table th:nth-of-type(2) {
  width: 36.0204081633%;
}
.p-school-import-table .m-table th:nth-of-type(3) {
  width: 12.2448979592%;
}
.p-school-import-table .m-table th:nth-of-type(4) {
  width: 8.1632653061%;
}
.p-school-import-table .m-table th:nth-of-type(5) {
  width: 13.7755102041%;
}
.p-school-import-table .m-table th:nth-of-type(6) {
  width: 8.1632653061%;
}
.p-school-import-table .m-table th:nth-of-type(7) {
  width: 10.4081632653%;
}
.p-school-import-table .m-table td {
  padding: 0 clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
}
.p-school-import-table .m-table td:nth-of-type(2) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-school-import-table .m-table .m-label {
  width: clamp(62.5px, 90 / 1440 * 100vw, 90px);
}

.p-school-import-detail__info {
  width: -moz-fit-content;
  width: fit-content;
  padding: 30px clamp(20.8333333333px, 30 / 1440 * 100vw, 30px) 30px clamp(27.7777777778px, 40 / 1440 * 100vw, 40px);
}
.p-school-import-detail__info h3 {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 500;
}
.p-school-import-detail__info-table {
  margin-top: 19px;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  border: 0.5px solid #707070;
}
.p-school-import-detail__info-table th,
.p-school-import-detail__info-table td {
  height: 38px;
  border-bottom: 0.5px solid #707070;
}
.p-school-import-detail__info-table th {
  background-color: #e6e6e6;
  width: clamp(70.1388888889px, 101 / 1440 * 100vw, 101px);
  text-align: left;
  padding: 0 clamp(8.3333333333px, 12 / 1440 * 100vw, 12px);
  font-weight: 400;
}
.p-school-import-detail__info-table td {
  width: clamp(284.7222222222px, 410 / 1440 * 100vw, 410px);
  padding: 0 clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
}
.p-school-import-detail__info-table td .m-label {
  background-color: #669bf0;
  width: clamp(47.2222222222px, 68 / 1440 * 100vw, 68px);
  height: 30px;
}
.p-school-import-detail__info-delete {
  display: flex;
  align-items: center;
  gap: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  margin-top: 20px;
}
.p-school-import-detail__info-delete button {
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5.5555555556px, 8 / 1440 * 100vw, 8px);
  width: clamp(131.9444444444px, 190 / 1440 * 100vw, 190px);
  height: 30px;
  color: #fff;
  border-radius: 100px;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  transition: opacity 0.3s;
}
.p-school-import-detail__info-delete button:hover {
  opacity: 0.8;
}
.p-school-import-detail__info-delete button span {
  width: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
}
.p-school-import-detail__info-delete-text {
  color: #989898;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
}

.p-school-import-detail-table {
  margin-top: 30px;
}
.p-school-import-detail-table .m-table {
  margin-top: 0;
}
.p-school-import-detail-table .m-table th:nth-of-type(1) {
  width: 9.8979591837%;
}
.p-school-import-detail-table .m-table th:nth-of-type(2) {
  width: 34.0816326531%;
}
.p-school-import-detail-table .m-table th:nth-of-type(3) {
  width: 34.0816326531%;
}
.p-school-import-detail-table .m-table th:nth-of-type(4) {
  width: 10.4081632653%;
}
.p-school-import-detail-table .m-table th:nth-of-type(5) {
  width: 10.4081632653%;
}
.p-school-import-detail-table .m-table td:nth-of-type(2), .p-school-import-detail-table .m-table td:nth-of-type(3) {
  text-align: left;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-school-import-detail-table .m-table__title {
  color: #000000;
  margin-bottom: 10px;
}
.p-school-import-detail-table .m-label {
  width: clamp(62.5px, 90 / 1440 * 100vw, 90px);
}

.p-school-import-create h3 {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 500;
  display: flex;
  gap: clamp(9.0277777778px, 13 / 1440 * 100vw, 13px);
  align-items: center;
}
.p-school-import-create h3 span {
  background-color: var(--color-orange);
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  font-weight: 400;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  width: clamp(31.25px, 45 / 1440 * 100vw, 45px);
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-school-import-create .m-import {
  margin-top: 19px;
  width: -moz-fit-content;
  width: fit-content;
}
.p-school-import-create .m-import__file-area {
  display: flex;
  align-items: center;
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  overflow: hidden;
  cursor: pointer;
}
.p-school-import-create .m-import__file-name {
  flex: 1;
  padding: 10px;
  color: #989898;
  font-size: 16px;
  border: 1px solid #989898;
  border-radius: 5px;
  width: clamp(295.8333333333px, 426 / 1440 * 100vw, 426px);
  height: 38px;
  padding: 7px clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-school-import-create .m-import__browse {
  width: clamp(59.0277777778px, 85 / 1440 * 100vw, 85px);
  height: 38px;
  background: var(--color-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 5px;
}
.p-school-import-create .m-import__note {
  margin-top: 10px;
  color: var(--color-orange);
  font-size: 14px;
}
.p-school-import-create .m-import__buttons {
  display: flex;
  gap: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  margin-top: 25px;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
}
.p-school-import-create .m-import__btn {
  height: 30px;
  min-width: clamp(102.0833333333px, 147 / 1440 * 100vw, 147px);
  height: 30px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-school-import-create .m-import__btn.-primary {
  gap: clamp(5.5555555556px, 8 / 1440 * 100vw, 8px);
  background: var(--color-orange);
  color: #fff;
  gap: clamp(4.8611111111px, 7 / 1440 * 100vw, 7px);
}
.p-school-import-create .m-import__btn.-cancel {
  background: #fff;
  color: #989898;
  border: 1px solid #989898;
}

.p-school-import-create-table {
  margin-top: 26px;
}
.p-school-import-create-table tr.is-active {
  background-color: #fdf5f3;
}
.p-school-import-create-table th:nth-of-type(1) {
  width: 5%;
}
.p-school-import-create-table th:nth-of-type(2) {
  width: 30.4081632653%;
}
.p-school-import-create-table th:nth-of-type(3) {
  width: 6.9387755102%;
}
.p-school-import-create-table th:nth-of-type(4) {
  width: 56.9387755102%;
}
.p-school-import-create-table td:nth-of-type(2), .p-school-import-create-table td:nth-of-type(4) {
  text-align: left;
  padding: 0 clamp(12.5px, 18 / 1440 * 100vw, 18px);
}
.p-school-import-create-table td:nth-of-type(2) p {
  color: #760000;
  font-weight: 500;
}

.p-school-import-create-table__top {
  display: flex;
  align-items: center;
  gap: clamp(18.75px, 27 / 1440 * 100vw, 27px);
}
.p-school-import-create-table__top-title {
  font-size: clamp(11.1111111111px, 16 / 1440 * 100vw, 16px);
  font-weight: 500;
}
.p-school-import-create-table__top-btn {
  width: clamp(179.1666666667px, 258 / 1440 * 100vw, 258px);
  height: 30px;
  background: white;
  color: #66C5F0;
  border: 1px solid #66C5F0;
  display: flex;
  gap: clamp(4.8611111111px, 7 / 1440 * 100vw, 7px);
  align-items: center;
  justify-content: center;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  border-radius: 100px;
}
.p-school-import-create-table__top-text {
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  color: #989898;
  margin-top: 13px;
}
.p-school-import-create-table .m-table td .-flex {
  display: flex;
  align-items: center;
  gap: clamp(11.8055555556px, 17 / 1440 * 100vw, 17px);
}
.p-school-import-create-table .m-table td .-flex a {
  min-width: clamp(181.25px, 261 / 1440 * 100vw, 261px);
  height: 30px;
  display: flex;
  align-items: center;
  padding-left: clamp(6.25px, 9 / 1440 * 100vw, 9px);
  border-radius: 100px;
  gap: clamp(2.7777777778px, 4 / 1440 * 100vw, 4px);
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  color: #66c5f0;
  border: 1px solid #66c5f0;
  background-color: #fff;
}
.p-school-import-create-table .m-table td .-flex a span {
  display: block;
  width: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
}
.p-school-import-create-table .m-table td .-flex .-flex {
  gap: clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
}
.p-school-import-create-table .m-table td select {
  background-color: white;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 5px;
  width: clamp(77.7777777778px, 112 / 1440 * 100vw, 112px);
  height: 30px;
  padding: 0 clamp(6.9444444444px, 10 / 1440 * 100vw, 10px);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.p-school-import-create-table__select {
  position: relative;
}
.p-school-import-create-table__select .-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
  height: clamp(4.5138888889px, 6.5 / 1440 * 100vw, 6.5px);
}
.p-school-import-create-table__select .-arrow::before,
.p-school-import-create-table__select .-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--color-blue);
  transform-origin: 50% calc(100% - 1px);
}
.p-school-import-create-table__select .-arrow::before {
  transform: rotate(45deg);
}
.p-school-import-create-table__select .-arrow::after {
  transform: rotate(-45deg);
}

.p-school-import-create-bottom span {
  width: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
  height: clamp(13.8888888889px, 20 / 1440 * 100vw, 20px);
}
.p-school-import-create-bottom {
  margin-top: 20px;
  background-color: #E8F7FD;
  color: #669BF0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: clamp(9.7222222222px, 14 / 1440 * 100vw, 14px);
  gap: clamp(3.4722222222px, 5 / 1440 * 100vw, 5px);
  padding: 0 clamp(10.4166666667px, 15 / 1440 * 100vw, 15px);
}/*# sourceMappingURL=style.css.map */