@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --responsive-h1-font-size: 32px;
  --responsive-h2-font-size: 24px;
  --responsive-h3-font-size: 18px;
  --responsive-h4-font-size: 16px;
  --responsive-h5-font-size: 14px;
  --responsive-h6-font-size: 12px;
  --responsive-p-font-size: 16px;
  --responsive-note-font-size: 12px;
  --transitionShort: 0.2s;
  --transitionLong: 0.5s;
  --color-blue-100: #0279FF;
  --color-blue-90:  #1B86FF;
  --color-blue-80:  #3493FF;
  --color-blue-75:  #419AFF;
  --color-blue-70:  #4DA1FF;
  --color-blue-60:  #67AEFF;
  --color-blue-50:  #80BCFF;
  --color-blue-45:  #8DC2FF;
  --color-blue-40:  #99C9FF;
  --color-blue-30:  #B3D6FF;
  --color-blue-25:  #BFDDFF;
  --color-blue-20:  #CCE4FF;
  --color-blue-10:  #E5F1FF;
  --color-blue-5:  #F2F8FF;
  --color-blue-100-deep: #005ec9;
  --color-red-100: #E01111;
  --color-red-90: #E32828;
  --color-red-80: #E64040;
  --color-red-75: #E74C4C;
  --color-red-70: #E95858;
  --color-red-60: #EC7070;
  --color-red-50: #EF8888;
  --color-red-45: #F19393;
  --color-red-40: #F29F9F;
  --color-red-30: #F5B7B7;
  --color-red-25: #F7C3C3;
  --color-red-20: #F8CFCF;
  --color-red-10: #FBE7E7;
  --color-red-5: #FDF3F3;
  --color-red-100-deep: #b80000;
  --color-green-100: #18CC5A;
  --color-green-90: #2FD16A;
  --color-green-80: #46D67A;
  --color-green-75: #51D883;
  --color-green-70: #5DDB8B;
  --color-green-60: #74E09C;
  --color-green-50: #8BE5AC;
  --color-green-45: #97E8B4;
  --color-green-40: #A2EABD;
  --color-green-30: #B9EFCD;
  --color-green-25: #C5F2D5;
  --color-green-20: #D0F4DE;
  --color-green-10: #E7F9EE;
  --color-green-5: #F3FCF6;
  --color-green-100-deep: #073D1B;
  --color-gray-100: #111111;
  --color-gray-75: #4c4c4c;
  --color-gray-50: #888888;
  --color-gray-40: #8C8C8C;
  --color-gray-25: #c3c3c3;
  --color-gray-15: #bdbdbd;
  --color-gray-10: #e7e7e7;
  --color-gray-5: #f3f3f3;
  --color-gray-3: #f9f9f9;
  --color-gray-1: #fdfdfd;
  --color-white-100: #ffffff;
  --color-white-90: rgba(255,255,255,0.9);
  --color-white-80: rgba(255,255,255,0.8);
  --color-white-75: rgba(255,255,255,0.75);
  --color-white-70: rgba(255,255,255,0.7);
  --color-white-60: rgba(255,255,255,0.6);
  --color-white-50: rgba(255,255,255,0.5);
  --color-white-45: rgba(255,255,255,0.45);
  --color-white-40: rgba(255,255,255,0.4);
  --color-white-30: rgba(255,255,255,0.3);
  --color-white-25: rgba(255,255,255,0.25);
  --color-white-20: rgba(255,255,255,0.2);
  --color-white-10: rgba(255,255,255,0.1);
  --color-white-5: rgba(255,255,255,0.05);
}

@media screen and (max-width: 599px) {
  :root {
    --responsive-h1-font-size: 28px;
    --responsive-h2-font-size: 22px;
    --responsive-h3-font-size: 16px;
    --responsive-h4-font-size: 14px;
    --responsive-h5-font-size: 12px;
    --responsive-h6-font-size: 10px;
    --responsive-p-font-size: 12px;
    --responsive-note-font-size: 10px;
  }
}

body {
  overflow-y: scroll;
  font-family: 'Noto Sans JP', sans-serif;
}

/*------------------------------------------------------------------------------
  base
 -------------------------------------------------------------------------------*/

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}
body{
  font-size: var(--responsive-p-font-size);
}
#header {
  min-width: 980px;
}
#wrapper {
  width: inherit;
  margin: inherit;
}
body {
  height: 100%;
  overflow-y: scroll;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
hr {
  border-color: var(--color-gray-10);
}

/*-------------------------------------------------------------------
  SP/PC
-------------------------------------------------------------------*/

@media screen and (min-width: 1050px) {
  .pc-hidden {
    display: none;
  }
}
/*------------------------------- TABLET ------------------------------*/
@media screen and (max-width: 1049px) {
  .tb-hidden {
    display: none;
  }
}
/*------------------------------- SP ------------------------------*/

@media screen and (max-width: 599px) {
  .sp-hidden {
    display: none;
  }
}

/*------------------------------------------------------------------------------
  Utility
-------------------------------------------------------------------------------*/

/* font */

h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  transition: all var(--transitionShort);
}
h1 {
  font-size: var(--responsive-h1-font-size);
  transition: all var(--transitionShort);
}
h2 {
  font-size: var(--responsive-h2-font-size);
  font-weight: 800;
}
h3 {
  font-size: var(--responsive-h3-font-size);
  font-weight: 800;
}
h4 {
  font-size: var(--responsive-h4-font-size);
  font-weight: 800;
}
h5 {
  font-size: var(--responsive-h5-font-size);
}
h6 {
  font-size: var(--responsive-h6-font-size);
}
.montserrat {
  font-family: 'Montserrat', sans-serif;
}
.note {
  font-size: var(--responsive-note-font-size);
}
.f-size-3xl {
  font-size: 300%;
}
.f-size-2xl {
  font-size: 200%;
}
.f-size-l {
  font-size: 120%;
}
.f-size-m {
  font-size: 90%;
}
.f-size-s {
  font-size: 75%;
}
.f-size-ss {
  font-size: 9px;
}
.f-size-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.f-weight-normal {
  font-weight: inherit;
}
.f-weight-bold {
  font-weight: bold;
}
.f-weight-700 {
  font-weight: 700;
}
.underline {
  text-decoration: underline;
}
.bold {
  font-weight: bold !important;
}
.left {
  text-align: left !important;
}
.right {
  text-align: right !important;
}
.center {
  text-align: center !important;
}
.middle {
  vertical-align: middle !important;
}
.text-color-blue {
  color: var(--color-blue-100);
}
.text-color-gray {
  color: var(--color-blue-50);
}
.text-decoration-none {
  text-decoration: none;
}
.require-icon {
  display: block;
  width: fit-content;
  background: var(--color-red-100);
  color: var(--color-white-100);
  padding: 2px 4px 3px;
  border-radius: 2px;
  font-size: 11px;
  text-align: center;
  line-height: 1;
}
.search-results {
  font-size: 12px;
}
/* material-icons */
.material-icons {
  vertical-align: middle;
}
.material-icons.help-icon,
.material-icons.copy-icon {
  font-size: 14px;
  color: #5186ec;
  vertical-align: text-top;
  margin-left: 3px;
}
.material-icons.copy-icon {
  font-weight: bold;
}
.material-icons.help-icon:hover,
.material-icons.copy-icon {
  cursor: pointer;
}
/* width */
.w-auto {
  width: auto;
}
.w-fit {
  width: fit-content;
}
.w-max {
  width: max-content;
}
.w-min {
  width: min-content;
}
.w-screen {
  width: 100vw;
}
.w-full {
  width: 100%;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-1\/4 {
  width: 25%;
}
.w-3\/4 {
  width: 75%;
}
.w-1\/5 {
  width: 20%;
}
.w-2\/5 {
  width: 40%;
}
.w-3\/5 {
  width: 60%;
}
.w-4\/5 {
  width: 80%;
}
.w-1\/6 {
  width: 16.666667%;
}
.w-5\/6 {
  width: 83.333333%;
}
.w-1\/7 {
  width: 14.285714%;
}
.w-1\/10 {
  width: 10%;
}
.w-3\/10 {
  width: 30%;
}
.w-7\/10 {
  width: 70%;
}
.w-9\/10 {
  width: 90%;
}
.w-1\/12 {
  width: 8.333333%;
}
.w-5\/12 {
  width: 41.666667%;
}
.w-7\/12 {
  width: 58.333333%;
}
.w-11\/12 {
  width: 91.666667%;
}
.w-150px {
  width: 150px;
}
.w-100px {
  width: 100px;
}
.w-50px {
  width: 50px;
}
.w-40px {
  width: 40px;
}
.w-32px {
  width: 32px;
}
.w-30px {
  width: 30px;
}
.w-20px {
  width: 20px;
}
.w-10px {
  width: 10px;
}
/*------------------------------- SP ------------------------------*/
@media screen and (max-width: 950px) {
  .sp-w-full {
    width: 100%;
  }
  .sp-w-1\/2 {
    width: 50%;
  }
}

/* height */
/* margin */
.margin-auto {
  margin: auto;
}
.margin-top {
  margin-top: var(--responsive-p-font-size);
}
.margin-bottom {
  margin-bottom: var(--responsive-p-font-size);
}
.margin-right {
  margin-right: var(--responsive-p-font-size);
}
.margin-left {
  margin-left: var(--responsive-p-font-size);
}
.margin-top-half {
  margin-top: 5px;
}
.margin-bottom-half {
  margin-bottom: 5px;
}
.margin-right-half {
  margin-right: 5px;
}
.margin-left-half {
  margin-left: 5px;
}
.margin-top-5vh {
  margin-top: 5vh;
}
.margin-bottom-5vh {
  margin-bottom: 5vh;
}

/* padding */
.padding-zero {
  padding: 0;
}
.padding-w-zero {
  padding-left: 0;
  padding-right: 0;
}
.padding-w-1em {
  padding-left: 1em;
  padding-right: 1em;
}
.padding-h-zero {
  padding-top: 0;
  padding-bottom: 0;
}
.padding-top {
  padding-top: 10px;
}
.padding-bottom {
  padding-bottom: 10px;
}
.padding-left {
  padding-left: 10px;
}
.padding-right {
  padding-right: 10px;
}
.padding-top-half {
  padding-top: 5px;
}
.padding-bottom-half {
  padding-bottom: 5px;
}
.padding-left-half {
  padding-left: 5px;
}
.padding-right-half {
  padding-right: 5px;
}
/* a */
.not-alink {
  pointer-events: none;
}
a.edit-link {
  color: #5186ec;
}
a.edit-link:hover {
  text-decoration: underline;
}
/* flex */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex.is-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex.is-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex.is-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex.is-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex.is-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex.is-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex.is-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex.is-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex.is-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex .self-left {
  margin-right: auto;
}
.flex .self-right {
  margin-left: auto;
}
.flex .is-gap-1em,
.flex.is-gap-1em {
  gap: var(--responsive-p-font-size);
}
.flex .is-gap-05em,
.flex.is-gap-05em {
  gap: calc(var(--responsive-p-font-size) / 2);
}

/*------------------------------- SP ------------------------------*/
@media screen and (max-width: 950px) {
  .flex.sp-is-wrap {
    -ms-flex-wrap: inherit;
    flex-wrap: wrap;
  }
}

/*------------------------------------------------------------------------------
  header
-------------------------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 4px 4px -3px;
}
header h1 {
  padding: 0 24px;
  box-sizing: border-box;
  text-align: left;
}
header h1 img {
  width: 210px;
  height: auto;
}

@media screen and (max-width: 599px) {
  header h1 {
    padding: 0 0.25vw;
  }
  header h1 img {
    width: 40vw;
  }
}

/*------------------------------------------------------------------------------
  maincontent
 -------------------------------------------------------------------------------*/
.maincontent {
 max-width: 1260px;
 min-width: 960px;
 margin: 0 auto;
 padding: 10px;
 width: 98%;
 background-color: #e5e5e5;
}
.content {
  width: 100%;
}
.content.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.content-inner {
  display: block;
 padding: 20px;
 background-color: #ffffff;
 box-sizing: inherit;
 width: 100%;
  min-width: auto;
  box-sizing: border-box;
}
.content-inner .title {
 padding-bottom: 10px;
 font-size: 16px;
 font-weight: bold;
 display: block;
 text-align: center;
 color: #343434;
}
.footer-button {
 padding-top: 10px;
 text-align: center;
 display: flex;
 justify-content: center;
}

/*------------------------------------------------------------------------------
  content-outer
 -------------------------------------------------------------------------------*/
.content-outer + .content-outer {
  border-top: 1px solid #e7e7e7;
}
/*------------------------------------------------------------------------------
  content
 -------------------------------------------------------------------------------*/
.content {
  margin: 90px auto;
  max-width: 1280px;
  padding: 1.5em;
}
.content h2 {
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 0.5em;
}
.content .text-box {
  padding: calc(var(--responsive-p-font-size)*1.5);
  line-height: 1.6;
}
.content .card-box {
  padding: calc(var(--responsive-p-font-size)*1.5);
  line-height: 1.6;
  border-radius: 16px;
  max-width: 960px;
  box-sizing: content-box;
}
.content .text-box.is-border,
.content .card-box {
  border: 1px solid var(--color-gray-10);
}
.content .text-box.is-gray {
  color: var(--color-gray-50);
  border-color: var(--color-gray-10);
}
.content .card-box.is-header {
  padding: 0;
  padding-bottom: calc(var(--responsive-p-font-size)*1.5);
  overflow: hidden;
}
.content .card-box .card-header {
  padding: calc(var(--responsive-p-font-size)*1.5);
  background: var(--color-gray-10);
}
.content .card-box.is-header .inner {
  padding: calc(var(--responsive-p-font-size)*1.5);
}
.content .center-box {
  padding: calc(var(--responsive-p-font-size)*1.5) 0;
  max-width: 960px;
}
.step-bar {
  display: flex;
  max-width: 600px;
  position: relative;
  margin: 20px auto;
  text-align: center;
}
.step-bar li {
  font-size: 12px;
  list-style: none;
  position: relative;
  width: 33.333%;
}
.step-bar li:after {
  background: var(--color-gray-10);
  content: "";
  width: calc(100% - 24px);
  height: 4px;
  position: absolute;
  left: calc(-50% + 12px);
  top: 10px;
}
.step-bar li:first-child:after {
  display: none;
}
.step-bar li span {
  background: var(--color-gray-10);
  color:  var(--color-white-100);
  display: inline-block;
  height: 24px;
  margin-bottom: 5px;
  line-height: 24px;
  width: 24px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.step-bar .visited:after {
  background: var(--color-blue-80);
}
.step-bar .visited {
  color: var(--color-blue-80);
}
.step-bar .visited span {
  background: var(--color-blue-80);
  color:  var(--color-white-100);
}

/*-------------------------------------------------------------------
  message-box
-------------------------------------------------------------------*/

.message-box {
  display: flex;
  gap: 1em;
  padding: var(--responsive-p-font-size);
  border: 1px solid var(--color-gray-10);
  border-radius: 6px;
}
h2 + .message-box {
  margin-bottom: 32px;
}
.message-box .icon {
  font-size: var(--responsive-p-font-size);
  line-height: calc(var(--responsive-p-font-size)*1.4);
}
.message-box p {
  font-size: var(--responsive-p-font-size);
  line-height: calc(var(--responsive-p-font-size)*1.4);
}
.message-box.is-success {
  background: var(--color-green-5);
  border-color: var(--color-green-50);
  color: var(--color-green-100);
}
.message-box.is-success .icon {
  border-color: var(--color-green-100);
}
.message-box.is-error {
  background: var(--color-red-5);
  border-color: var(--color-red-50);
  color: var(--color-red-100);
}
.message-box.is-error > div p + p {
  margin-top: 0.25em;
}

/*------------------------------------------------------------------------------
  table
 -------------------------------------------------------------------------------*/
table {
  font-size: 15px;
  box-sizing: border-box;
  width: 100%;
}
table th {
  padding: 10px;
  background-color: #f1f1f1;
  border: 1px solid #dddddd;
  color: var(--color-gray-50);
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
  word-break: break-all;
}
table td {
  padding: 1em 10px;
  background-color: #fff;
  border: 1px solid  var(--color-gray-25);
  table-layout: fixed;
  vertical-align: middle;
  word-break: break-all;
}
table th a {
  color: var(--color-gray-50);
  text-decoration: none;
}
table td > a {
  color: var(--color-blue-90);
  text-decoration: underline;
}

table.table-list {
  width: 100%;
}
table.table-list tr:hover {
  background: var(--color-blue-5);
}
table.table-list.no-hover tr:hover {
  background: var(--color-white-100);
}
table.table-list th {
  text-align: left;
  background: transparent;
  width: inherit;
  border: none;
  background: #ffffff;
  border-bottom: 1px solid #c3c3c3;
}
table.table-list td {
  padding: 1em 10px;
  border: none;
  border-bottom: 1px solid #e7e7e7;
  text-align: left;
  table-layout: fixed;
  vertical-align: middle;
  background: transparent;
  color: var(--color-gray-75)
}

/* テーブル内での注釈テキスト */
.table-annotation {
  font-size: 14px;
  color: #343434;
  padding-bottom: 5px;
}

/*------------------------------------------------------------------------------
  input
 -------------------------------------------------------------------------------*/
input[type="text"]:hover ,
 input[type="number"]:hover ,
 input[type="tel"]:hover ,
 input[type="email"]:hover ,
 input[type="url"]:hover ,
 input[type="search"]:hover ,
 input[type="password"]:hover {
   border-color: var(--color-blue-100);
   transition: all var(--transitionShort);
 }
 input.validate.error {
   background: var(--color-red-10);
   border-color: var(--color-red-20);
 }
input[type="text"]:focus ,
input[type="number"]:focus ,
input[type="tel"]:focus ,
input[type="email"]:focus ,
input[type="url"]:focus ,
input[type="search"]:focus ,
input[type="password"]:focus {
  border: 2px solid var(--color-blue-100);
  outline: 1px solid var(--color-blue-100);
  transition: all var(--transitionShort);
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"] {
  border: 2px solid var(--color-gray-10);
  padding: var(--responsive-p-font-size) calc(var(--responsive-p-font-size)/2);
  font-size: var(--responsive-p-font-size);
  box-sizing: border-box;
  color: #333333;
  border-radius: 6px;
  line-height: 1.4;
}
input[type="password"] {
  font-family: Consolas, Monaco, monospace;
}
input[type="button"] {
  /*padding: 2px 0.5em;*/
  border-radius: 4px;
  font-size: 14px;
}
input::placeholder {
  color: #cbcbcb;
}
input:disabled {
  background: #dbdbdb;
  border-color: #dbdbdb;
  color: #8c8c8c;
}
textarea {
  resize: vertical;
  border: 2px solid #dddddd;
  padding: 4px;
  font-size: 14px;
  box-sizing: border-box;
  line-height: 20px;
  border: var(--color-gray-75);
}
/* float label */
.float-label-wrap {
  position: relative;
  display: inline-block;
}
.float-label-wrap input {
}
.float-label-wrap .float-label {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  transform-origin: left top;
  opacity: 0.5;
  font-size: 16px;
  color: var(--color-gray-50);
  pointer-events: none;
  transition: all var(--transitionShort) ease;
}
.float-label-wrap input {
  padding-top: calc(var(--responsive-p-font-size)*1.25);
  padding-bottom: calc(var(--responsive-p-font-size)*0.75);
}
.float-label-wrap input:focus + .float-label,
.float-label-wrap input:not(:placeholder-shown) + .float-label {
  top: 5px;
  left: 10px;
  transform: translateY(0) scale(0.65);
  opacity: 1;
  transition: all var(--transitionShort) ease;
}

.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
.selectbox select {
  appearance: none;
  min-height: 2.8em;
  width: 100%;
  padding: 9px calc(.8em + 30px) 9px .8em;
  border: 2px solid var(--color-gray-10);
  border-radius: 5px;
  color: var(--color-gray-75);
  font-size: 1em;
  cursor: pointer;
}
input[type="button"].edit {
  color: #4c4c4c;
  border: #c3c3c3 1px solid;
}
input[type="button"].edit:hover {
  cursor: pointer;
}
#file-drag-drop-area {
  border: 1px dashed #dddddd;
  background: #f6f6f6;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  text-align: center;
}
#file-drag-drop-area input[type="file"] {
  background: transparent;
  padding: 10px;
  margin: 10px auto;
  border: 1px solid #d9d8d8;
  border-radius: 4px;
  line-height: 1.4;
}
.file-size-attention {
  margin-top: 3px;
}
/* radio-box */
.radio-box {
  border: none;
}
.radio-box  label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  color: var(--color-gray-50);
  position: relative;
  margin-bottom: .4em;
  padding: .5em .7em;
  border: 1px solid var(--color-gray-15);
  border-radius: 6px;
  background-color: var(--color-gray-5);
  cursor: pointer;
}
.radio-box label:has(:checked) {
  background-color: var(--color-blue-100);
  border-color: var(--color-blue-100);
  color: var(--color-white-100);
}
.radio-box label::before,
.radio-box label:has(:checked)::after {
  border-radius: 50%;
  content: '';
}
.radio-box label::before {
  width: 14px;
  height: 14px;
  background-color: var(--color-white-100);
}
.radio-box label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: calc(7px + .7em);
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background-color: var(--color-blue-100);
}
.radio-box input {
  display: none;
}
/* radio  default-radio */
.default-radio-label {
  display: inline-flex;
  font-size: 24px;
}
.default-radio-label:hover {
  cursor: pointer;
}
.flex.is-left > .default-radio-label + .default-radio-label {
  margin-left:2em;
}
.default-radio-label input[type=radio] {
  display: none;
}
.default-radio-label input+.default-radio-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #dbdbdb;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: text-top;
  position: relative;
}
.default-radio-label input:checked+.default-radio-icon {
  border-color: #5186ec;
}
.default-radio-label input:checked+.default-radio-icon:after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #5186ec;
  border-radius: 50%;
  position: absolute;
}
.default-radio-labeltext {
  margin-left: 8px;
  display: block;
  font-size: 15px;
}
/* check-box */
.check-box {
  border: none;
}
.check-box label {
  display: flex;
  align-items: flex-start;
  gap: 0 .5em;
  color: var(--color-gray-75);
  position: relative;
  margin-bottom: .4em;
  padding: .5em .7em;
  border: 1px solid var(--color-gray-15);
  border-radius: 6px;
  background-color: var(--color-gray-1);
  cursor: pointer;
}
.check-box label:hover {
  border-color: var(--color-blue-60);
}
.check-box label:has(:checked) {
  background-color: var(--color-blue-10);
  border-color: var(--color-blue-100);
  color: var(--color-blue-100);
}
.check-box label::before {
  width: 14px;
  height: 14px;
  border-radius: 1px;
  background-color: var(--color-white-100);
  border: 1px solid var(--color-gray-10);
  content: '';
  display: block;
  margin: 4px 0;
}
.check-box label > span {
  width: calc(100% - 16px);
}
.check-box label:has(:checked)::before {
  border: 1px solid var(--color-blue-80);
}
.check-box label:has(:checked)::after {
  position: absolute;
  top: 12px;
  left: 15px;
  transform: rotate(45deg);
  width: 6px;
  height: 10px;
  border: solid #2589d0;
  border-width: 0 2px 2px 0;
  content: '';
}
.check-box input {
  display: none;
}
/* checkbox  default-checkbox */
.default-checkbox-label {
  padding: 0 2px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.flex.is-left > .default-checkbox-label + .default-checkbox-label {
  margin-left:2em;
}
.default-checkbox {
  margin: 0;
  width: 0;
  opacity: 0;
}
.default-checkbox:checked+.default-checkbox-icon {
  background: #5186ec;
}
.default-checkbox:checked+.default-checkbox-icon::before {
  content: '';
  position: absolute;
  display: block;
  width: 12px;
  height: 7px;
  top: 2px;
  left: 1px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(-45deg);
}
.default-checkbox-icon {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  border: solid 2px transparent;
  background: rgba(0, 0, 0, .1);
  border-radius: 2px;
}
.default-checkbox-labeltext {
  margin-left: 8px;
  display: block;
  font-size: 15px;
}
/* checkBox button */
.check-box-button input[type=checkbox] {
  display: none;
}
.check-box-button input[type="checkbox"]:checked+label.check-box-button-id-label {
  background: #31A9EE;
  color: #ffffff;
}
.check-box-button input[type="checkbox"]:checked+label.check-box-button-id-label::before {
  content: '';
  display: block;
  position: absolute;
  top: 35%;
  left: 0.6em;
  width: 8px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.check-box-button .check-box-button-id-label:hover {
  background-color: #E2EDF9;
}
.check-box-button .check-box-button-id-label {
  display: block;
  margin: 0 0 0 10px;
  width: auto;
  text-align: left;
  padding: 2px 10px 2px 1.75em;
  cursor: pointer;
  color: #aaaaaa;
  border: 1px solid #dddddd;
  border-radius: 5px;
  float: left;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  background: rgba(255, 255, 255, 0.6);
}
/* toggle button */
.switchAreaContents {
  margin-left: 10px;
}
.content-inner .switchAreaContents .title {
  font-size: 8px;
  display: block;
  text-align: center;
  color: #6e6e6e;
  margin-top: -15px;
  padding: 0;
}
.switchArea {
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  font-size: 13px;
  position: relative;
  margin: auto;
  width: 67px;
}
.switchArea input[type="checkbox"] {
  display: none;
}

.switchArea label {
  display: block;
  box-sizing: border-box;
  height: 32px;
  border: 2px solid var(--color-gray-40);
  border-radius: 16px;
}
.switchArea label:hover {
  cursor: pointer;
}
.switchArea input[type="checkbox"]:checked+label {
  border-color: var(--color-blue-100);
  cursor: pointer;
}
.switchArea label span:after {
  content: "OFF";
  padding: 0 0 0 19px;
  color: #999999;
}
.switchArea input[type="checkbox"]:checked+label span:after {
  content: "ON";
  padding: 0 19px 0 0;
  color: #0c85cf;
}
.switchArea .swImg {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #999999;
  top: 4px;
  left: 4px;
  border-radius: 12px;
  transition: .2s;
  cursor: pointer;
}
.switchArea input[type="checkbox"]:checked~label .swImg {
  transform: translateX(35px);
  background:  var(--color-blue-100);
}
.switchArea input[type="checkbox"]:disabled~label {
  color: var(--color-gray-50);
  background-color: var(--color-gray-5);
  border-color: var(--color-gray-40);
  cursor: auto;
}
.switchArea input[type="checkbox"]:disabled~label .swImg {
  background-color: var(--color-gray-40);
  cursor: auto;
}
.switchArea input[type="checkbox"]:disabled~label span:after {
  color: var(--color-white-100);
  border-color: var(--color-gray-40);
  cursor: auto;
}
/* ON/OFFで表示が変わるcheckbox */
.exchange-checkbox {
  color: #ffffff;
  border-color: #c7c7c7;
  cursor: auto;
}
.exchange-checkbox input[type="checkbox"] {
  display: none;
}
.exchange-checkbox .label .check-active,
.exchange-checkbox .label .check-passive {
  display: none;
}
.exchange-checkbox input[type="checkbox"]+.label .check-passive {
  display: inline-block;
}
.exchange-checkbox input[type="checkbox"]:checked+.label .check-active {
  display: inline-block;
}
.exchange-checkbox input[type="checkbox"]:checked+.label .check-passive {
  display: none;
}
.exchange-checkbox .label .check-active,
.exchange-checkbox .label .check-passive {
  padding: 5px 10px;
  line-height: 1;
  border: 1px solid #dbdbdb;
  background-color: #e7e7e7;
  color: #c3c3c3;
  border-radius: 100px;
  cursor: pointer;
  min-width: 5em;
  font-size: 13px;
  text-align: center;
  box-sizing: border-box;
}
.exchange-checkbox .label .check-active {
  border: 1px solid #5186ec;
  background-color: #5186ec;
  color: #ffffff;
}
.exchange-checkbox .label span .material-icons {
  font-size: 10px;
  margin-right: 2px;
  vertical-align: middle;
  display: inline-block;
  margin-left: -5px;
  font-weight: bold;
}
/*------------------------------------------------------------------------------
  button
 -------------------------------------------------------------------------------*/
button,
.button {
  display: block;
  transition: background-color color var(--transitionShort);
  font-weight: 800;
  padding: 1em;
  overflow: hidden;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: var(--responsive-p-font-size);
}
button.is-blue,
.button.is-blue {
  background-color: var(--color-blue-100);
  color: var(--color-white-100);
}
button.is-blue:hover,
.button.is-blue:hover {
  background-color: var(--color-blue-100-deep);
}
button.is-gray,
.button.is-gray {
  background-color: var(--color-gray-100);
  color: var(--color-white-100);
}
button.is-secondary,
.button.is-secondary,
button.is-white,
.button.is-white {
  background-color: var(--color-white-100);
  border: solid 2px var(--color-gray-25);
  color: var(--color-gray-50);
}
button.is-secondary.is-blue,
.button.is-secondary.is-blue {
  background-color: var(--color-white-100);
  border: solid 2px var(--color-blue-100);
  color: var(--color-blue-100);
}
button.is-noborder,
.button.is-noborder {
  border:none;
}
button.is-noborder.is-hover-blue:hover,
.button.is-noborder.is-hover-blue:hover {
  background-color: var(--color-blue-5);
}
button.is-noborder.is-hover-gray:hover,
.button.is-noborder.is-hover-gray:hover {
  background-color: var(--color-gray-5);
}
button.is-delete:hover,
.button.is-delete:hover {
  background-color: var(--color-red-5);
  border-color: var(--color-red-100);
  color: var(--color-red-100);
}

@media screen and (max-width: 599px) {
  button,
  .button {
    padding: 1.25em;
  }
}

/*------------------------------------------------------------------------------
  pager
 -------------------------------------------------------------------------------*/
.pager {
  margin: calc(var(--responsive-p-font-size)*0.9) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
}
.pager a {
  display: block;
  text-align: center;
  padding: calc(var(--responsive-p-font-size)*0.4) calc(var(--responsive-p-font-size)*0.3);
  min-width: 2em;
  line-height: 1;
  border: 1px solid var(--color-gray-10);
  border-radius: 2px;
  color: var(--color-gray-50);
  font-size: calc(var(--responsive-p-font-size)*0.9);
}
.pager a:not(.current):hover {
  background: var(--color-blue-10);
  color: var(--color-blue-75);
  border-color: var(--color-blue-50);
}
.pager a.current {
  background: var(--color-gray-10);
  color: var(--color-gray-100);
  border: 1px solid var(--color-gray-10);
  font-weight: bold;
}


/*------------------------------------------------------------------------------
  modal 仮
 -------------------------------------------------------------------------------*/
.modal-area {
  visibility: hidden;
  opacity : 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .4s;
}
.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}
.modal-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  padding: 10px 30px;
  background-color: #ffffff;
  border-radius: 8px;
}
.close-modal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}
.is-show {
  visibility: visible;
  opacity : 1;
}

/*------------------------------------------------------------------------------
  loading-bar
 -------------------------------------------------------------------------------*/
 .loading-bar {
   background: #ccc;
   height: 3px;
   position: relative;
   margin-bottom: 20px;
 }

 .loading-bar::before {
   -webkit-animation: width-0to100 0.6s ease-out forwards;
   -moz-animation: width-0to100 0.6s ease-out forwards;
   -o-animation: width-0to100 0.6s ease-out forwards;
   -ms-animation: width-0to100 0.6s ease-out forwards;
   animation: width-0to100 0.6s ease-out forwards;
   background: var(--color-blue-100);
   content: '';
   height: 3px;
   left: 0;
   position: absolute;
   top: 0;
 }
 @keyframes width-0to100 {
   0% {
     width: 0;
   }
   100% {
     width: 100%;
   }
 }

/*-------------------------------------------------------------------
   footer
 -------------------------------------------------------------------*/
 footer {
   background: #ffffff;
   box-shadow: rgba(0, 0, 0, 0.16) 0px 4px 4px 3px;
   width: 100%;
   padding: 1em;
   margin-top: 0px;
   position: fixed;
   bottom: 0;
 }
 footer .montserrat {
   color: var(--color-gray-100);
   letter-spacing: 0.03em;
 }
 .footer-inner {
   width: 1280px;
   margin: 0px auto;
   color: #FFF;
   display: flex;
   justify-content: flex-start;
   flex-wrap: nowrap;
 }

 .footer-copyright {
   text-align: center;
   margin-top: 60px;
   font-size: 1.2rem;
   color: #FFF;
 }

 .footer-nav  {
   text-align: center;
 }
 .footer-nav li {
   display: inline-block;
   text-align: center;
   font-size: 0.94rem;
 }
 .footer-nav li + li {
   margin-left: 1em;
 }
 .footer-nav a {
   color: #FFFFFF;
   text-decoration: underline;

 }

/*------------------------------- PC ------------------------------*/
@media screen and (min-width: 1780px) {
  footer .footer-inner {
    margin: auto;
  }
}
@media screen and (max-width: 1100px) {
  footer .company {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .logo {
    margin-right: 15px;
  }
  footer .address {
    width: 28em;
    height: auto;
    margin-bottom: 1em;
  }
  footer .post {
    margin-right: 1em;
  }
  footer .copy {
    display: block;
    text-align: right;
    margin-left: auto;
  }
}
/*------------------------------- SP ------------------------------*/
@media screen and (max-width: 599px) {
  footer {
    padding: 55px 0;
  }
  .footer-inner {
    width: 90%;
    margin: 0px auto;
    flex-wrap: wrap;
  }

  .footer-cyndinfo {
    width: 100%;
    order: 2;
  }

  .footer-cyndinfo-logo {
    width: 50%;
    height: auto;
  }

  .footer-cyndinfo-logo img {
    width: 100%;
    height: auto;
  }

  .footer-cynddata {
    margin-top: 20px;
  }

  .footer-cynddata p {
    line-height: 1.4;
  }

  .footer-cynddata a {
    height: auto;
    display: block;
    margin-top: 20px;
  }

  .footer-cynddata a img {
    width: 100%;
    height: auto;
  }

  .footer-copyright {
    text-align: center;
    margin-top: 60px;
    font-size: 1.2rem;
    color: #FFFFFF;
  }

  .footer-copyright {
    margin-top: 20px;
  }
}
