@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
:root {
  --siteWidth: 940px;
  --headerHeight: 100px;
  --color1: #93001F;
  --color2: #D31B21;
  --color3: #f6f6f6;
  --color4: #1691d8;
  --color5: #F6F7F9;
  --textColor: #232323;
  --stop: rgb(241, 85, 33);
  --recovery: rgb(25, 143, 242);
  --other: rgb(48, 189, 2);
}

/*
  ----------
  reset
  ----------
*/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a {
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/*
input[type="text"],
select {
  -webkit-appearance: none;
  appearance: none;
}
*/
/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/*
  ----------
  layout
  ----------
*/
html {
  width: 100%;
  vertical-align: middle;
}

body {
  width: 100%;
  font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--textColor);
  background-color: var(--color1);
}

a {
  color: var(--color1);
  text-decoration: none;
}
a:hover {
  color: var(--color2);
}

i {
  margin-right: 0.4em;
}
i.__right {
  margin-left: 0.4em;
}

.sp-hide {
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .sp-hide {
    display: none;
  }
}

.hide {
  display: none;
}

.loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  background-image: url(./img/loading.gif);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: 88px 88px;
  z-index: 9999;
}

#wrap {
  position: relative;
  width: 100%;
  padding-top: var(--headerHeight);
  background-color: var(--color3);
}
#wrap.top {
  padding-top: 0;
}
#wrap .mask {
  display: none;
}
#wrap.open .mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}
@media screen and (max-width: 1080px) {
  #wrap {
    padding-top: calc(var(--headerHeight) - 40px) !important;
  }
}

#contents {
  width: 100%;
}

.container {
  width: 100%;
  padding: 0 clamp(20px, 2.857vw, 40px);
}
.container .inner {
  position: relative;
  max-width: var(--siteWidth);
  padding: clamp(40px, 7.14vw, 100px) 0;
  margin: 0 auto;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 clamp(20px, 2.85vw, 40px);
  background-color: var(--color1);
  z-index: 1000;
  -webkit-transition: top 0.3s, background-color 0.3s;
  transition: top 0.3s, background-color 0.3s;
}
#header .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: var(--headerHeight);
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #header .inner {
    height: 60px;
  }
}
#header .sitelogo a {
  position: relative;
  display: block;
  font-size: clamp(0.875rem, 0.648rem + 1.14vw, 1.5rem);
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
#header .user-nav {
  position: relative;
  width: 50px;
}
@media screen and (max-width: 640px) {
  #header .user-nav {
    width: 36px;
  }
}
#header .user-nav .user-icon {
  display: none;
  width: 100%;
  height: 50px;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  color: var(--color1);
  line-height: 50px;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  #header .user-nav .user-icon {
    display: block;
    height: 36px;
    line-height: 36px;
  }
}
#header .user-nav .user-icon i.fa-user {
  margin: 0;
}
#header .user-nav .user-icon:hover {
  background-color: var(--color3);
}
#header .user-nav .user-menu {
  position: absolute;
  top: 60px;
  right: -10px;
  display: none;
  width: 240px;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  padding: 1em 1em 0;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 640px) {
  #header .user-nav .user-menu {
    top: 40px;
  }
}
#header .user-nav .user-menu p {
  margin-bottom: 1em;
}
#header .user-nav .user-menu .user-name {
  color: var(--color1);
  text-align: left;
}
#header .user-nav .user-menu .btn2,
#header .user-nav .user-menu .btn3 {
  width: 100%;
}
#header .return-btn {
  position: absolute;
  bottom: -2em;
  left: 0;
  font-size: clamp(0.688rem, 0.619rem + 0.34vw, 0.875rem);
}

#footer {
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  background-color: var(--color1);
  text-align: center;
  color: #fff;
  padding: 0.6em 0;
}

#return {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 1000;
}
#return a {
  display: block;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  color: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background-color: var(--color2);
}
#return a i {
  margin: 0;
}
#return a:hover {
  opacity: 0.85;
}
@media screen and (max-width: 640px) {
  #return a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

/*
  ----------
  contents
  ----------
*/
h2 {
  position: relative;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  color: var(--color1);
  text-align: center;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  margin-bottom: 2em;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.8em;
  margin: 0 auto;
  width: 50px;
  height: 3px;
  background-color: var(--color2);
}

h3 {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  color: var(--color1);
  padding: 0 0.5em 0.5em;
  border-bottom: 1px solid var(--color2);
}

.btn1 {
  display: inline-block;
  color: var(--color2);
  text-align: center;
  padding: 0.4em;
  border: 2px solid var(--color2);
  background-color: #fff;
  border-radius: 5px;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  cursor: pointer;
}
.btn1:hover {
  color: #fff;
  background-color: var(--color2);
}

.btn2 {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 0.8em;
  background-color: var(--color2);
  border: none;
  border-radius: 5px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}
.btn2:hover {
  color: #fff;
  opacity: 0.8;
}

.btn3 {
  display: inline-block;
  color: var(--color1);
  text-align: center;
  padding: 0.4em;
  background-color: #EAEAEA;
  border-radius: 5px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}
.btn3:hover {
  color: var(--color1);
  opacity: 0.8;
}

.user-login .inner {
  max-width: 640px;
  padding-bottom: 0;
}
.user-login .login-box {
  padding-bottom: 2em;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.user-login .login-box .box-title {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  padding: 0.8em;
  background-color: var(--color2);
}
.user-login .login-box form {
  padding: 2em clamp(20px, 5vw, 70px);
}
.user-login .login-box form dl.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.user-login .login-box form dl.form-item dt {
  width: 25%;
  color: var(--color1);
  margin-bottom: 1.5em;
}
.user-login .login-box form dl.form-item dd {
  width: 75%;
  margin-bottom: 1.5em;
}
.user-login .login-box .error {
  color: red;
  font-weight: 700;
  padding-top: 1em;
  text-align: center;
}
.user-login .login-box .note {
  text-align: center;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  width: 100%;
  border: 1px solid #666;
  padding: 0.2em 0.5em;
  background-color: #fff;
  border-radius: 0;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  color: #000;
  border-radius: 5px;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
textarea::placeholder {
  color: #999;
}
input[type=text].__auto,
input[type=email].__auto,
input[type=password].__auto,
textarea.__auto {
  width: auto;
}
@media screen and (max-width: 640px) {
  input[type=text].__auto,
  input[type=email].__auto,
  input[type=password].__auto,
  textarea.__auto {
    width: 100%;
  }
}
input[type=text].__zip,
input[type=email].__zip,
input[type=password].__zip,
textarea.__zip {
  width: auto;
}

select {
  width: 100%;
  border: 1px solid #666;
  padding: 0.4em 0.5em;
  background-color: #fff;
  border-radius: 0;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  color: #000;
  border-radius: 5px;
}
select::-webkit-input-placeholder {
  color: #999;
}
select::-moz-placeholder {
  color: #999;
}
select:-ms-input-placeholder {
  color: #999;
}
select::-ms-input-placeholder {
  color: #999;
}
select::placeholder {
  color: #999;
}
select.__auto {
  width: auto;
}
@media screen and (max-width: 640px) {
  select.__auto {
    width: 100%;
  }
}

button[type=submit] {
  display: block;
  width: 100%;
  max-width: 260px;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  margin: 0 auto;
  background-color: var(--color4);
  border: none;
  border-radius: 5px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}
button[type=submit]:hover {
  color: #fff;
  opacity: 0.8;
}

.entry-guide .guide-sec {
  margin-bottom: 3em;
}
.entry-guide .guide-sec .text {
  padding: 1em;
}
.entry-guide .entry-btn {
  text-align: center;
}
.entry-guide .entry-btn .btn2 {
  width: 100%;
  max-width: 260px;
}

.forgot .inner {
  max-width: 640px;
}
.forgot .forgot-box {
  padding-bottom: 2em;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.forgot .forgot-box .box-title {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  padding: 0.8em;
  background-color: var(--color2);
}
.forgot .forgot-box form {
  padding: 2em clamp(20px, 10vw, 140px);
}
.forgot .forgot-box form .text {
  text-align: center;
  margin-bottom: 1.5em;
}
.forgot .forgot-box form .mailadd {
  margin-bottom: 1.5em;
}
.forgot .forgot-box .error {
  color: red;
  font-weight: 700;
  padding-top: 1em;
  text-align: center;
}
.forgot .forgot-box .success {
  color: var(--color2);
  font-weight: 700;
  padding-top: 1em;
  text-align: center;
}
.forgot .forgot-box .note {
  text-align: center;
}

.entry-form .form-box {
  padding: 3em;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 640px) {
  .entry-form .form-box {
    padding: 1.5em;
  }
}
.entry-form .form-box h3 {
  margin-bottom: 1em;
}
.entry-form .form-box #copydata {
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  margin-left: 1em;
}
.entry-form .form-box h4 {
  color: var(--color1);
  margin-bottom: 1em;
}
.entry-form .form-box .check-note {
  margin-bottom: 1em;
}
.entry-form .form-box .check-note.__last {
  margin-bottom: 3em;
}
.entry-form .form-box .contact-note {
  margin-bottom: 3em;
}
.entry-form .form-box .form-table {
  margin-bottom: 4em;
}
.entry-form .form-box .form-table th {
  width: 30%;
  text-align: left;
  vertical-align: top;
  padding: 1.2em 0.8em 0.3em;
  border-bottom: 1px solid #ccc;
}
.entry-form .form-box .form-table th span {
  display: inline-block;
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  color: #cf0000;
  margin-left: 1em;
}
.entry-form .form-box .form-table td {
  text-align: left;
  vertical-align: top;
  padding: 1em 0.8em;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 640px) {
  .entry-form .form-box .form-table th {
    display: inline-block;
    width: 100%;
    background-color: #F1F1F1;
    border: none;
    padding: 0.6em 0.8em;
    margin-top: 10px;
  }
  .entry-form .form-box .form-table td {
    display: inline-block;
    width: 100%;
  }
}
.entry-form .form-box .entry-submit input[type=button] {
  display: block;
  width: 100%;
  max-width: 260px;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  margin: 0 auto;
  background-color: var(--color4);
  border: none;
  border-radius: 5px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}
.entry-form .form-box .entry-submit input[type=button]:hover {
  color: #fff;
  opacity: 0.8;
}
.entry-form .form-box .error {
  color: red;
  font-weight: 700;
  text-align: left;
  display: none;
}

.entry-comp .inner {
  max-width: 640px;
}
.entry-comp .comp-box {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.entry-comp .comp-box .box-title {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  padding: 0.8em;
  background-color: var(--color2);
}
.entry-comp .comp-box .comp-message {
  padding: 2em clamp(20px, 5vw, 70px);
}
.entry-comp .comp-box .comp-message .text {
  margin-bottom: 1.5em;
}
.entry-comp .comp-box .comp-message .comp-btn {
  text-align: center;
}
.entry-comp .comp-box .comp-message .comp-btn .btn1 {
  width: 100%;
  max-width: 100px;
}

@media screen and (max-width: 640px) {
  .author-select {
    display: none;
  }
}
.author-select .inner {
  padding-bottom: 0;
}
.author-select .author-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}
.author-select .author-btns .author-btn {
  display: table;
  width: 38%;
}
.author-select .author-btns .author-btn a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-weight: 700;
  padding-left: 0.1em;
  color: var(--color1);
  line-height: 1.4;
  padding: 0.5em;
  background-color: #fff;
  border: 2px solid var(--color1);
  border-radius: 10px;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.author-select .author-btns .author-btn a:hover {
  color: #fff;
  background-color: var(--color1);
}
.author-select .author-btns .author-btn.__logout {
  width: 20%;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list li {
  margin-bottom: 10px;
}
.info-list li .list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
}
.info-list li .list-item::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.info-list li .list-item .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 40px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  background-color: #ccc;
}
.info-list li .list-item .icon.__stop {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(247, 104, 44)), color-stop(50%, rgb(241, 85, 33)));
  background-image: linear-gradient(rgb(247, 104, 44) 50%, rgb(241, 85, 33) 50%);
}
.info-list li .list-item .icon.__recovery {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(33, 161, 245)), color-stop(50%, rgb(25, 143, 242)));
  background-image: linear-gradient(rgb(33, 161, 245) 50%, rgb(25, 143, 242) 50%);
}
.info-list li .list-item .icon.__other {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(62, 202, 2)), color-stop(50%, rgb(48, 189, 2)));
  background-image: linear-gradient(rgb(62, 202, 2) 50%, rgb(48, 189, 2) 50%);
}
.info-list li .list-item .info-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  color: var(--color2);
  padding-top: 12px;
  padding-left: 0.5em;
}
.info-list li .list-item .info-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: clamp(0.938rem, 0.915rem + 0.11vw, 1rem);
  color: var(--textColor);
  padding-top: 6px;
  padding-right: 30px;
}
.info-list li .list-item .info-detail {
  display: none;
  width: 100%;
  font-size: clamp(0.813rem, 0.767rem + 0.23vw, 0.938rem);
  padding: 0.5em;
}
.info-list li .list-item.open::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.info-list li .list-item.open .info-title {
  -webkit-animation-name: move;
          animation-name: move;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes move {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    font-size: clamp(0.938rem, 0.915rem + 0.11vw, 1rem);
    font-weight: 500;
    border: none;
  }
  50% {
    opacity: 0;
    font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
    font-weight: 700;
    padding: 0 0.5em;
    border-bottom: 1px solid var(--color2);
  }
  100% {
    width: 100%;
    opacity: 1;
    font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
    font-weight: 700;
    padding: 0.5em 0.5em 0.2em;
    border-bottom: 1px solid var(--color2);
  }
}
@keyframes move {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    font-size: clamp(0.938rem, 0.915rem + 0.11vw, 1rem);
    font-weight: 500;
    border: none;
  }
  50% {
    opacity: 0;
    font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
    font-weight: 700;
    padding: 0 0.5em;
    border-bottom: 1px solid var(--color2);
  }
  100% {
    width: 100%;
    opacity: 1;
    font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
    font-weight: 700;
    padding: 0.5em 0.5em 0.2em;
    border-bottom: 1px solid var(--color2);
  }
}

.information .list-link {
  text-align: center;
  margin-top: clamp(30px, 4.28vw, 60px);
}
.information .list-link .btn1 {
  width: 100%;
  max-width: 260px;
}

.pagenation {
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
  line-height: 1.6;
  text-align: center;
  padding-top: 2em;
}
.pagenation a {
  display: inline-block;
  width: 2.4em;
  color: var(--color1);
  padding: 0.2em 0;
  margin: 0 0.2em;
  border-radius: 5px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.pagenation a.arrow {
  padding: 0.2em 0.3em 0.2em 0.7em;
}
.pagenation a:hover {
  background-color: #fff;
}
.pagenation .current {
  display: inline-block;
  width: 2.4em;
  color: #fff;
  padding: 0.2em 0;
  margin: 0 0.2em;
  border-radius: 5px;
  background-color: var(--color2);
}
.pagenation .to-mark {
  display: inline-block;
  margin: 0 0.2em;
}

.report h2:after {
  background-color: #999;
}
.report .entry-btn {
  text-align: center;
}
.report .entry-btn input[type=button] {
  min-width: 340px;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  letter-spacing: 0.1em;
  margin-bottom: 3em;
}
.report h3 {
  position: relative;
  margin-bottom: 1em;
}
.report h3 .unsent-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  display: inline-block;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}
.report .report-list {
  background-color: #fff;
  vertical-align: middle;
}
.report .report-list tr:nth-child(even) {
  background-color: #fafafa;
}
.report .report-list th {
  font-size: clamp(0.688rem, 0.619rem + 0.34vw, 0.875rem);
  padding: 0.5em;
  text-align: center;
  border: #ccc;
  background-color: #ffee9a;
  border: 1px solid #fff;
}
.report .report-list td {
  padding: 1em;
  border: 1px solid #ccc;
  text-align: center;
}
.report .report-list td.num {
  width: 8%;
}
.report .report-list td.title {
  text-align: left;
}
.report .report-list td.date {
  width: 20%;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}
.report .report-list td.action {
  width: 15%;
  padding: 1em 0.1em;
}
.report .report-list td.action a {
  color: var(--color1);
  display: inline-block;
  font-size: clamp(0.688rem, 0.619rem + 0.34vw, 0.875rem);
  margin: 0.2em;
  padding: 0.2em 0.5em;
  background-color: #fff;
  border: 1px solid var(--color1);
  border-radius: 5px;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  white-space: nowrap;
}
.report .report-list td.action a:hover {
  background-color: var(--color1);
  color: #fff;
}
.report .entry-form .form-box .form-table th {
  width: 20%;
}
@media screen and (max-width: 640px) {
  .report .entry-form .form-box .form-table th {
    width: 100%;
  }
}
.report .entry-form .form-box .send-btns {
  text-align: center;
}
.report .entry-form .form-box .send-btns input[type=button] {
  width: 20%;
  padding: 0.5em 1em;
}
@media screen and (max-width: 640px) {
  .report .entry-form .form-box .send-btns input[type=button] {
    width: auto;
  }
}
.report.__stop h2 {
  color: var(--stop);
}
.report.__stop .entry-btn input[type=button] {
  background-color: var(--stop);
}
.report.__stop h3 {
  color: var(--stop);
  border-color: var(--stop);
}
.report.__recovery h2 {
  color: var(--recovery);
}
.report.__recovery .entry-btn input[type=button] {
  background-color: var(--recovery);
}
.report.__recovery h3 {
  color: var(--recovery);
  border-color: var(--recovery);
}
.report.__other h2 {
  color: var(--other);
}
.report.__other .entry-btn input[type=button] {
  background-color: var(--other);
}
.report.__other h3 {
  color: var(--other);
  border-color: var(--sother);
}