* {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: #0089FF;
  transition: 0.3s 0s;
}
a:hover {
  color: #b2000e;
}

abbr[title] {
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
optgroup,
input,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
  border: 1px solid #A3A3A3;
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: auto;
  appearance: auto;
  transform: scale(1.4);
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  border: 0px;
  outline: none;
  background-color: transparent;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

html {
  font-size: 62.5%;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  width: 100%;
}
html body {
  margin: 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  color: #222222;
  background-color: #ffffff;
  overflow-x: hidden;
  width: 100%;
}
html body main {
  min-height: 70vh;
  padding-top: 85px;
}

.container {
//  width: 1020px;
  width: 90%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.col-6 {
  display: flex;
  align-items: center;
}
.col-6 > .col {
  width: 50%;
}

.section-padding {
  margin-top: 80px;
  margin-bottom: 80px;
}

.collapse {
  display: none;
}

.eng {
  font-family: "Open Sans", sans-serif;
}

.primary {
  color: #E50012;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

input[type=text],
input[type=date],
input[type=email],
input[type=number],
input[type=password],
select {
  height: 50px;
  border: 1px solid #A3A3A3;
  padding: 10px;
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
input[type=text].input-sm,
input[type=email].input-sm,
input[type=number].input-sm,
input[type=password].input-sm,
select.input-sm {
  height: 40px;
  padding: 8px;
  font-size: 1.4rem;
}

input[readonly] {
  background-color: #eeeeee;
}

label input[type=radio],
label input[type=checkbox] {
  position: relative;
  top: -0.15em;
  margin-right: 15px;
}

.width-ss {
  width: 60px;
}

.width-s {
  width: 86px;
}

.width-m {
  width: 140px;
}

.width-l {
  width: 170px;
}

.width-fit {
  width: 100%;
}

select {
  min-width: 80px;
  box-shadow: inset 0 10px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.input-set {
  position: relative;
  height: 50px;
}
.input-set.prepend input {
  padding-left: 50px;
}
.input-set.prepend .prepend {
  position: absolute;
  left: 0px;
  top: 0px;
}
.input-set.append input {
  padding-right: 50px;
}
.input-set.append .append {
  position: absolute;
  right: 0px;
  top: 0px;
}
.input-set .button {
  height: 50px;
  min-width: 50px;
  padding: 10px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: inset 0px -30px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #C9C9C9;
  cursor: pointer;
}
.input-set .text {
  padding-top: 7px;
}

.input-set02 {
  display: flex;
}
.input-set02 dt {
  line-height: 1.5;
  width: 105px;
  flex-shrink: 0;
}
.input-set02 dd {
  display: flex;
  width: 100%;
}
.input-set02 .input-item {
  display: flex;
  width: 30%;
}
.input-set02 .input-item input {
  margin-right: 2px;
  flex-shrink: 0;
}

.input-set03 {
  display: flex;
}
.input-set03 dt {
  line-height: 1.5;
  width: 105px;
  flex-shrink: 0;
}
.input-set03 dd {
  display: flex;
  width: 100%;
}
.input-set03 .input-item {
  display: flex;
  width: 30%;
}
.input-set03.move-right dd {
  position: relative;
  left: 110px;
}

.input-set04 {
  display: flex;
}
.input-set04 .item {
  margin-right: 10px;
}
.input-set04 .item:nth-last-of-type(1) {
  margin-right: 0px;
}
.input-set04 .item label {
  display: block;
  font-weight: bold;
}

.input-set05 {
  display: flex;
  align-items: center;
}
.input-set05 .text {
  margin-left: 10px;
  margin-right: 10px;
}

.input-set06 {
  display: flex;
}
.input-set06 dt {
  line-height: 1.5;
  width: 120px;
//  width: 200px;
  flex-shrink: 0;
}

.input-set07 {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
}
.input-set07.sm {
  height: 40px;
}
.input-set07 span {
  display: inline-block;
  height: 100%;
  color: #ffffff;
  font-weight: bold;
  padding: 3px 10px;
  background-color: #8E8E8E;
}
.input-set07 span.blue {
  background-color: #1789FC;
}

.input-set-base {
  display: flex;
}
.input-set-base dt {
  line-height: 1.5;
  width: 105px;
  flex-shrink: 0;
}
.input-set-base dd {
  display: flex;
}
.input-set-base.input-set-md dt {
  width: 200px;
}

.table-type01 {
  width: 100%;
}
.table-type01 colgroup col:nth-of-type(1) {
  width: 140px;
}
.table-type01 colgroup col:nth-of-type(3) {
  width: 140px;
}
.table-type01 colgroup col:nth-of-type(4) {
  width: 28%;
}
.table-type01 tr th {
  text-align: center;
  vertical-align: middle;
  padding: 10px 5px;
  background-color: #E6E6E6;
  border-bottom: 10px solid #eeeeee;
}
.table-type01 tr th.requierd:after {
  content: "*";
  color: #E50012;
}
.table-type01 tr td {
  background-color: #ffffff;
  padding: 5px;
  border-bottom: 10px solid #eeeeee;
}

.table-type02 {
  width: 100%;
}
.table-type02 th, .table-type02 td {
  padding: 5px;
  border: 1px solid #707070;
}
.table-type02 thead tr th {
  font-weight: bold;
  text-align: center;
  background-color: #E6E6E6;
}
.table-type02 tbody tr th {
  font-weight: bold;
  background-color: #ffffff;
}
.table-type02 tbody tr td {
  background-color: #ffffff;
}
.table-type02.th-bg tbody th {
  background-color: #e6e6e6;
}
.table-type02.td-all-left th, .table-type02.td-all-left td {
  text-align: left !important;
}

.h2-type01 {
  font-size: 3.6rem;
  font-weight: bold;
  color: #E50012;
  padding-bottom: 0px;
  border-bottom: 1px solid #C9C9C9;
  margin-bottom: 20px;
}
.h2-type01 .subtitle {
  position: relative;
  display: inline-block;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 1.6rem;
  color: #222222;
  font-weight: normal;
  margin-left: 15px;
}
.h2-type01 .subtitle:before, .h2-type01 .subtitle:after {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #C9C9C9;
  top: 50%;
}
.h2-type01 .subtitle:before {
  position: absolute;
  left: 0px;
}
.h2-type01 .subtitle:after {
  position: absolute;
  right: 0px;
}

.h2-type02 {
  font-size: 2.8rem;
  line-height: 1.5;
}
.h2-type02 .eng {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #E50012;
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: block;
}

.h2-type03 {
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 3px solid #000000;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.h2-type04 {
  font-size: 3.8rem;
}

.list-type01 > li {
  line-height: 1.5;
  border-bottom: 1px solid #C9C9C9;
  padding-bottom: 25px;
  margin-bottom: 25px;
  font-size: 1.4rem;
}
.list-type01 > li time {
  display: block;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  color: #F38A90;
  margin-bottom: 10px;
}
.list-type01 > li a {
  color: #222222;
}
.list-type01 > li a:hover {
  color: #E50012;
}

.list-type02 {
  display: flex;
  align-items: center;
}
.list-type02 > li {
  margin-right: 15px;
}
.list-type02 > li:last-child {
  margin-right: 0px;
}
.list-type02.justify-center {
  justify-content: center;
}

.list-type03 > li {
  margin-bottom: 15px;
}

.list-type04 {
  display: flex;
  flex-wrap: wrap;
}
.list-type04 > li {
  width: 20%;
  padding-right: 1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.list-att-text > li {
  padding-left: 3em;
  text-indent: -3em;
  color: #E50012;
}

.dl-type01 dt {
  display: block;
  font-weight: bold;
}
.dl-type01 dd {
  margin-bottom: 30px;
}
.dl-type01 dd a {
  display: inline-block;
  color: #222222;
}
.dl-type01 dd a:hover {
  color: #E50012;
}
.dl-type01 dd a:after {
  content: "|";
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
}
.dl-type01 dd a:nth-last-of-type(1):after {
  display: none;
}

.dl-type02 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.dl-type02 dt {
  padding-right: 15px;
  font-weight: normal;
}
.dl-type02 dd {
  padding-right: 30px;
}
.dl-type02 dd:nth-last-of-type(1) {
  padding-right: 0px;
}

.dl-type03 dt {
  padding-left: 90px;
}

.bg-gray {
  background-color: #eeeeee;
}

.btn-opacity {
  transition: 0.3s 0s;
  display: inline-block;
}
.btn-opacity:hover {
  opacity: 0.8;
}

.btn-text {
  display: inline-block;
  position: relative;
  line-height: 1.5;
  padding-left: 0.8em;
  color: #222222;
}
.btn-text:hover {
  color: #E50012;
}
.btn-text:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  background: center center url(../images/icon-arrow-red.svg) no-repeat;
  background-size: contain;
  top: 0.5em;
  left: 0px;
}

.btn-text02 {
  display: inline-block;
  position: relative;
  line-height: 1.5;
  padding-right: 1.5em;
  color: #222222;
}
.btn-text02:hover {
  color: #E50012;
}
.btn-text02:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: center center url(../images/icon-arrow-lg-red.svg) no-repeat;
  background-size: contain;
  top: 0.3em;
  right: 0px;
}

.btn-primary {
  display: inline-block;
  background-color: #E50012;
  border-radius: 4px;
  line-height: 1.5;
  padding: 8px 20px;
  padding-left: 50px;
  color: #ffffff;
  font-size: 1.4rem;
  position: relative;
  text-align: center;
  transition: 0.3s 0s;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #b2000e;
}
.btn-primary.btn-icon-prepend {
  padding-left: 50px;
}
.btn-primary.btn-icon-prepend i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-dark {
  background-color: #9B9B9B;
  padding: 5px;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s 0s;
}
.btn-dark:hover {
  background-color: #E50012;
}
.btn-dark .inner {
  background: linear-gradient(to bottom, #6d6d6d 0%, #3c3535 50%, #000000 50%, #000000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-radius: 5px;
  color: #ffffff;
  display: block;
  padding: 20px;
  text-align: center;
  position: relative;
}
.btn-dark .inner:before {
  content: "";
  width: 15px;
  height: 15px;
  background: center center url(../images/icon-arrow-lg-red.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-dark.btn-xxl {
  font-weight: bold;
}
.btn-dark.btn-xxl .inner {
  font-size: 4rem;
  line-height: 1.5;
}
.btn-dark.btn-xxl .inner small {
  font-size: 1.6rem;
  display: block;
  font-weight: normal;
}
.btn-dark.btn-xxl .inner .eng {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
}

.btn-dark02 {
  display: inline-block;
  transition: 0.3s 0s;
  color: #ffffff;
  background: linear-gradient(to bottom, #6C6C6C 0%, #3C3535 50%, #000000 50%, #000000 100%);
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: 0.3s 0s;
}
.btn-dark02:hover {
  background-color: #E50012;
  color: #ffffff;
  opacity: 0.8;
}

.btn-dark03 {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  border-radius: 100px;
  transition: 0.3s 0s;
}
.btn-dark03:hover {
  background-color: #333333;
}

.btn-gray {
  background-color: #DCDCDC;
  padding: 5px;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s 0s;
  color: #222222;
}
.btn-gray:hover {
  background-color: #E50012;
  color: #222222;
}
.btn-gray .inner {
  background: linear-gradient(to bottom, #F1F1F1 0%, #F1F1F1 50%, #E6E6E6 50%, #E6E6E6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-radius: 5px;
  display: block;
  padding: 15px;
  text-align: center;
  position: relative;
  border: 1px solid #C9C9C9;
}
.btn-gray .inner:before {
  content: "";
  width: 15px;
  height: 15px;
  background: center center url(../images/icon-arrow-lg-red.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-outline-white {
  width: 100%;
  border: 1px solid #E50012;
  padding: 22px 80px 22px 15px;
  background-color: #ffffff;
  position: relative;
  display: block;
  transition: 0.3s 0s;
  color: #222222;
}
.btn-outline-white.btn-md {
  font-size: 1.6rem !important;
}
.btn-outline-white:hover {
  background-color: #E50012;
  color: #ffffff;
}
.btn-outline-white:after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background: center center url(../images/icon-arrow-lg-gray.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-gray02 {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #e9e9e9 50%, #eeeeee 100%);
  padding: 15px;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s 0s;
  color: #222222;
  position: relative;
  border: 1px solid #C9C9C9;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.btn-gray02:hover {
  background-color: #E50012;
  color: #222222;
}

.btn-toggle {
  color: #8E8E8E;
  display: inline-block;
  padding-left: 35px;
  position: relative;
  cursor: pointer;
}
.btn-toggle i {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-white {
  display: inline-block;
  border: 1px solid #C9C9C9;
  border-radius: 2px;
  box-shadow: inset 0px -20px 20px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  text-align: center;
  transition: 0.3s 0s;
  color: #222222;
}
.btn-white:hover {
  opacity: 0.8;
}

.btn-lg {
  font-weight: bold;
}
.btn-lg .inner {
  font-size: 2.6rem;
  line-height: 1.5;
}
.btn-lg .inner .subtitle {
  font-size: 1.4rem;
  display: block;
  font-weight: normal;
}

.btn-md {
  font-size: 2rem;
  padding: 15px;
  min-width: 280px;
}

.btn-sm {
  padding: 5px;
  min-width: 150px;
}

.icon-cart {
  display: inline-block;
  width: 31px;
  height: 29px;
  background: center center url(../images/icon-cart.png) no-repeat;
  background-size: contain;
}

.icon-people {
  display: inline-block;
  width: 19px;
  height: 21px;
  background: center center url(../images/icon-people.png) no-repeat;
  background-size: contain;
}

.icon-more {
  display: inline-block;
  width: 90px;
  height: 61px;
  background: center center url(../images/icon-more.png) no-repeat;
  background-size: contain;
}

.icon-angle-down {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: center center url(../images/icon-angle-down.png) no-repeat;
  background-size: contain;
}

.icon-search {
  display: inline-block;
  width: 22px;
  height: 28px;
  background: center center url(../images/icon-search.png) no-repeat;
  background-size: contain;
}

.mt-m {
  margin-top: 40px;
}

.mt-xl {
  margin-top: 80px;
}

.mb-s {
  margin-bottom: 20px;
}

.mb-m {
  margin-bottom: 40px;
}

.mb-xl {
  margin-bottom: 80px;
}

.pt-s {
  padding-top: 20px;
}

.pt-m {
  padding-top: 40px;
}

.pb-xxl {
  padding-bottom: 180px;
}

.py-s {
  padding-top: 20px;
  padding-bottom: 20px;
}

.remodal {
  padding: 80px;
}
.remodal .title {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.remodal .title02 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: left;
}

.calendar-wrapper {
  background: #F1F1F1;
  border-top: 3px solid #e50012;
  padding: 30px 40px 20px;
  margin: 0 0 20px;
}

.business-calendar {
  width: 100%;
  text-align: center;
}
.business-calendar .business-calendar-past,
.business-calendar .business-calendar-future {
  font-size: 13px;
  float: left;
  margin: 0;
  position: relative;
  margin: 3px 0 0;
}
.business-calendar .business-calendar-past:before,
.business-calendar .business-calendar-future:before {
  content: "";
  position: absolute;
  top: 3px;
}
.business-calendar .business-calendar-past {
  float: left;
  padding: 0 0 0 15px;
}
.business-calendar .business-calendar-past:before {
  position: absolute;
  border-style: solid;
  border-width: 5px 8px 5px 0;
  border-color: transparent #e50012 transparent transparent;
  left: 20px;
  cursor: pointer;
}
.business-calendar .business-calendar-future {
  float: right;
  padding: 0 15px 0 0;
}
.business-calendar .business-calendar-future:before {
  position: absolute;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #e50012;
  right: 20px;
}
.business-calendar caption {
  font-size: 18px;
  line-height: 1;
  text-align: center;
  margin: 0 0 30px;
  font-weight: bold;
}
.business-calendar th {
  border-bottom: 1px solid #ddd;
  padding: 0 0 15px;
  width: 14%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.business-calendar td {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 40px;
  letter-spacing: 0;
  position: relative;
  z-index: 0;
  font-weight: bold;
}
.business-calendar .today {
  position: relative;
}
.business-calendar .today:before {
  content: "";
  background: #555;
  width: 15px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.business-calendar .attr0 {
  color: #fff;
}
.business-calendar .attr0.before:after, .business-calendar .attr0.after:after {
  content: "";
  background: #e50012;
  border-radius: 50px;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.business-calendar .attr1 {
  color: #FFF;
}
.business-calendar .attr1.before:after, .business-calendar .attr1.after:after {
  content: "";
  background: #00A2E8;
  border-radius: 50px;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.list-event {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
}
.list-event .red {
  color: #E50012;
}
.list-event .gray {
  color: #00A2E8;
}
.list-event li + li {
  margin-left: 20px;
}

.form-type01 .form-head {
  padding-top: 40px;
  padding-bottom: 20px;
}
.form-type01 .form-image01 {
  width: 100%;
  position: relative;
}
.form-type01 .form-image01 .image01 {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.box-type01 {
  border: 1px solid #C9C9C9;
  padding: 25px;
}

.box-type02 {
  position: relative;
  width: 100%;
  height: 400px;
//  background: 140px 45px url(../images/01.svg) no-repeat;
}
.box-type02 .box-item {
  position: absolute;
  left: 0px;
  top: 0px;
}

.box-type02 .box-input0101 {
  left: 46px;
  top: 39px;
}
.box-type02 .box-input0102 {
  left: 260px;
  top: 70px;
}
.box-type02 .box-input0201 {
  left: 30px;
  top: 137px;
}
.box-type02 .box-input0202 {
  left: 265px;
  top: 170px;
}
.box-type02 .box-input0301 {
  left: 276px;
  top: 300px;
}
.box-type02 .box-input0302 {
  left: 380px;
  top: 208px;
}
.box-type02 .box-input0402 {
  left: 390px;
  top: 99px;
}
.box-type02 .box-input0502 {
  left: 470px;
  top: 137px;
}
.box-type02 .box-input0602 {
  left: 470px;
  top: 27px;
}
.box-type02 .box-input0702 {
  left: 580px;
  top: 63px;
}
.box-type02 .box-input0802 {
  left: 600px;
  top: 170px;
}
.box-type02 .box-input0901 {
  left: 565px;
  top: 240px;
}
.box-type02 .box-input1001 {
  left: 140px;
  top: 240px;
}
.box-type02 .box-input1101 {
  left: 310px;
  top: 0px;
}
.box-type02 .box-input1201 {
  left: 670px;
  top: 120px;
}

.box-type03 {
  padding-left: 115px;
  padding-right: 115px;
}

.box-type04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.box-type04 > .left {
  width: calc(100% - 300px);
}
.box-type04 > .right {
  width: 300px;
}

.section-localnav .container {
  display: flex;
}
.section-localnav a {
  display: block;
  width: 246px;
  border: 1px solid #C9C9C9;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-right: 2px;
  padding: 25px 15px;
  position: relative;
  transition: 0.3s 0s;
  color: #222222;
}
.section-localnav a.active, .section-localnav a:hover {
  background-color: #E50012;
  border-color: #E50012;
  color: #ffffff;
}
.section-localnav a.active:after, .section-localnav a:hover:after {
  content: "";
  width: 0px;
  height: 0px;
  border: 10px solid transparent;
  border-top-color: #E50012;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.section-mv {
  margin-bottom: 80px;
}
.section-mv .copy {
  text-align: center;
  margin-bottom: 30px;
}
.section-mv .contents {
  line-height: 1.5;
  font-weight: bold;
  background: right center url(../images/mv-illust.svg) no-repeat;
}
.section-mv .contents h1 {
  font-size: 3.78rem;
  margin-bottom: 10px;
}
.section-mv .contents h1 span {
  color: #E50012;
}
.section-mv .button {
  margin-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
}
.section-mv .button a {
  display: block;
}

.section01 {
  display: flex;
  justify-content: space-between;
}
.section01 .col-left {
  width: 530px;
  flex-shrink: 0;
}
.section01 .col-right {
  width: 427px;
  flex-shrink: 0;
}
.section01 .col-right .button {
  margin-bottom: 30px;
}
.section01 .col-right .button a {
  display: block;
}

.section-guide {
  background-color: #F1F1F1;
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-guide .guide-inner {
  display: flex;
  margin-left: -26px;
  margin-right: -26px;
}
.section-guide .guide-inner .col {
  width: 33.33333%;
  border-right: 1px solid #C9C9C9;
  padding: 26px;
}
.section-guide .guide-inner .col:nth-last-of-type(1) {
  border: 0px;
}
.section-guide .guide-inner p {
  min-height: 5em;
  margin-bottom: 15px;
  line-height: 1.5;
}

.header {
  border-bottom: 1px solid #C9C9C9;
  display: flex;
  flex-wrap: nowrap;
  height: 135px;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  background-color: #ffffff;
  z-index: 1030;
}
.header .logo {
  border-right: 1px solid #C9C9C9;
  width: 210px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .content {
  width: calc(100% - 210px);
}
.header .content .subnav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 4px;
  margin-top: 3px;
}
.header .content .subnav .text {
  display: flex;
  margin-bottom: 3px;
}
.header .content .subnav .text a {
  margin-right: 30px;
  font-size: 1.3rem;
  color: #222222;
}
.header .content .subnav .text a:hover {
  color: #E50012;
}
.header .content .subnav .icons {
  margin-right: 30px;
  line-height: 0;
  margin-bottom: 3px;
}
.header .content .subnav .icons a {
  position: relative;
  display: inline-block;
}
.header .content .subnav .icons a .number {
  border-radius: 100%;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding-top: 10px;
  background-color: #E50012;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
}
.header .content .subnav .mypage {
  text-align: center;
  font-size: 1.3rem;
  margin-right: 15px;
}
.header .content .global-nav {
  border-top: 1px solid #C9C9C9;
}
.header .content .global-nav nav {
  display: flex;
}
.header .content .global-nav nav a {
  display: block;
  width: 33.3333%;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 12px;
  border-right: 1px solid #C9C9C9;
  color: #222222;
}
.header .content .global-nav nav a:hover, .header .content .global-nav nav a.active {
  background-color: #333333;
  color: #ffffff;
}
.header .content .global-nav nav a:nth-last-of-type(1) {
  border-right: 0px;
}

.header02 img {
  width: 190px;
  height: auto;
  padding-top: 45px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  padding: 65px 40px;
  border-top: 1px solid #636363;
}
.footer .left {
  width: calc(100% - 250px);
  flex-shrink: 0;
  font-size: 1.3rem;
}
.footer .right {
  font-size: 1.1rem;
  width: 250px;
  flex-shrink: 0;
  text-align: right;
}
.footer .right .logo {
  margin-bottom: 30px;
}
.footer .copyright {
  width: 100%;
  padding-top: 30px;
  font-size: 1.1rem;
  text-align: right;
}

.footer02 {
  margin-top: 160px;
  text-align: center;
}
.footer02 .copyright {
  width: 100%;
  padding-top: 20px;
  font-size: 1.1rem;
}

body > .login main {
  min-height: auto;
}




.chkbox {
//	margin:			0 0 10px 20px;
	margin:			0 0 0 0;
}
/* ラベルのスタイル　*/
.chkbox label {
	padding-left:		38px;			/* ラベルの位置 */
	font-size:		32px;
	line-height:		32px;
	display:		inline-block;
	cursor:			pointer;
	position:		relative;
}

/* ボックスのスタイル */
.chkbox label:before {
	content:		'';
	width:			32px;			/* ボックスの横幅 */
	height:			32px;			/* ボックスの縦幅 */
	display:		inline-block;
	position:		absolute;
	left:			0;
//	top:			0;
	background-color:	#fff;
	box-shadow:		inset 1px 2px 3px 0px #000;
	border-radius:		6px 6px 6px 6px;
}
/* 元のチェックボックスを表示しない */
.chkbox input[type=checkbox] {
	display:		none;
}
/* チェックした時のスタイル */
.chkbox input[type=checkbox]:checked + label:before {
	content:		'\2713';		/* チェックの文字 */ 
	font-size:		34px;			/* チェックのサイズ */
	color:			#fff;			/* チェックの色 */
	background-color:	#06f;			/* チェックした時の色 */
}

/* Chrome, Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* FireFox, IE */
input[type="number"] {
  -moz-appearance:textfield;
}

