@charset "UTF-8";
/*--スタイル初期化-------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
li,
ol,
li,
h1,
h2,
h3,
h4,
h5,
form,
p,
table,
th,
td,
address {
  margin: 0;
  padding: 0;
}

body {
  color: #555;
  font-family: Verdana, Arial, 'メイリオ', Meiryo, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
  line-height: 120%;
}

a img,
img {
  border: 0;
}

ul,
li,
ol,
li {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

a {
  color: #0096d4;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

input[type='text'],
input[type='password'],
select {
  padding: 3px;
  border: 1px solid #ccc;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*--clearfix------------------------------------------------------------------*/
.clearfix {
  zoom: 1;
}

.clearfix::after {
  content: '';
  display: block;
  clear: both;
  height: 0;
}

/*--汎用スタイル---------------------------------------------------------------*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 12px;
  background: #f5f5f5;
}

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

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

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

.cancel {
  text-decoration: line-through !important;
}

input[type='button'],
input[type='submit'] {
  display: inline-block;
  margin: 10px 3px;
  padding: 0 1.6em;
  font-size: 1em;
  background: #fff;
  border: 1px solid #999;
  border-radius: 3px;
  cursor: pointer;
}

.button {
  display: inline-block;
  margin: 5px 15px 5px 15px;
  padding: 15px 40px 15px 40px;
  color: #fff;
  font-size: 1.2em;
  text-align: center;
  text-decoration: none;
  background-color: #555;
  border: 1px solid #555;
  border-radius: 3px;
}

.button:hover {
  color: #555;
  background-color: #fff;
  border: 1px solid #555;
}

.button--firstMessage {
  margin: 25% 15px 0 15px;
}

.--itemRight {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.--itemRight-left {
  margin-right: auto;
}

.--itemCenter {
  display: flex;
  align-items: center;
}

#slideMenuInput {
  display: none;
}

.slideMenu {
  position: fixed;
  z-index: 9999;
  width: 100%;
  padding: 0;
}

.slideMenuNav {
  position: absolute;
  /* 開いてないときは画面外に配置 */
  top: -500px;
  z-index: 9999;
  width: 100%;
  text-align: center;
  background: #333;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.slideMenuNav__list {
  position: static;
  right: 0;
  bottom: 0;
  font-size: 11px;
  list-style: none;
}

.slideMenuNav__button {
  border-bottom: 1px solid #999;
}

.slideMenuNav__text {
  display: block;
  width: 100%;
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
}

.slideMenuNav__headline {
  padding: 5px;
  background: #999;
}

.slideMenuNav__headline span {
  color: #fff;
}

.slideMenuToggle {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 101;
  width: 34px;
  height: 36px;
}

.slideMenuToggle__check {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.slideMenuToggle__line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: #333;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.slideMenuToggle__line--line1 {
  top: 0;
}

.slideMenuToggle__line--line2 {
  top: 10px;
}

.slideMenuToggle__line--line3 {
  top: 20px;
}

/* .slideMenuToggle 切り替えアニメーション */
#slideMenuInput:checked + .slideMenuToggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

#slideMenuInput:checked + .slideMenuToggle span:nth-child(2) {
  left: 50%;
  width: 0;
}

#slideMenuInput:checked + .slideMenuToggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

/* .slideMenuNav スライドアニメーション */
#slideMenuInput:checked ~ .slideMenuNav {
  display: block;
  -moz-transform: translateY(556px);
  -webkit-transform: translateY(556px);
  transform: translateY(550px);
}

@media screen and (min-width: 768px) {
  .slideMenuNav,
  .slideMenuToggle,
  #slideMenuInput:checked ~ .slideMenuNav {
    display: none;
  }
}

/*--プログレストラッカー--------------------------------------------------------*/
.progressTracker {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  counter-reset: step;
  z-index: 0;
  position: relative;
}

.progressTracker__item {
  width: 30%;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #999;
}

.progressTracker__item::before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #eee;
}

.progressTracker__item::after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  top: 15px;
  left: -50%;
  z-index: -1;
  background-color: #eee;
}

.progressTracker__item:first-child::after {
  content: none;
}

.progressTracker__item--active {
  color: #555;
}

.progressTracker__item--active::before {
  background-color: #999;
  color: #fff;
}

.progressTracker__item--through::before {
  background-color: #999;
  color: #fff;
}

.progressTracker__item--through + .progressTracker__item::after {
  background-color: #999;
}

@media screen and (max-width: 768px) {
  #sc_message {
    order: 2;
  }
  #sc_form {
    order: 1;
  }
}

@media screen and (max-width: 320px) {
  body {
    font-size: 10px;
  }
}

.container {
  width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}

.container--register {
  width: 800px;
}

@media screen and (max-width: 768px) {
  .container--register {
    width: 100%;
  }
}

form {
  width: 100%;
}

--widthFull {
  width: 100%;
}

/*--区切り------------------------------------------------------------------*/
.head_ceparater {
  position: relative;
  overflow: hidden;
  margin: -30px 0;
  padding: 80px 0;
}

@media screen and (max-width: 480px) {
  .head_ceparater {
    margin: -10px 0;
    padding: 50px 0;
  }
}

.head_ceparater:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 80%;
  margin: 3% -10% 0;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  z-index: -1;
}

.head_ceparater:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 80%;
  margin: 3% -10% 0;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  z-index: -2;
}

.foot_ceparater {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .foot_ceparater {
    padding: 40px 0;
  }
}

.foot_ceparater:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 80%;
  margin: 3% -10% 0;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  z-index: 1;
}

.foot_ceparater:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 80%;
  margin: 3% -10% 0;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  z-index: 2;
}

/*--ヘッダー------------------------------------------------------------------*/
.header {
  padding: 20px 0 0 15px;
  min-height: 50px;
}

.header__icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  text-align: center;
  font-size: 1.5em;
  line-height: 2em;
  margin: 0 auto;
}

.header__icon:before {
  display: inline-block;
  content: ' ';
  background-size: 48px 48px;
  height: 48px;
  width: 48px;
}

.header__link {
  text-decoration: none;
  padding: 0 0 0 10px;
  font-size: 2em;
}

/*--フッター------------------------------------------------------------------*/
.footer__pagetop {
  text-align: right;
  font-size: 1em;
}

.footer__border {
  height: 1px;
  border: none;
  border-top: 1px solid #c4c4c4;
}

.footerMenu {
  display: flex;
  flex-wrap: wrap;
}

.footerMenu__list {
  padding: 0.5rem;
  font-size: 1em;
  flex-wrap: wrap;
}

/*--メイン------------------------------------------------------------------*/
.commonItemList {
  display: flex;
  padding: 0 0 0 0;
  line-height: 1.5;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.commonItemList--column {
  flex-direction: column;
  align-items: stretch;
}

.commonItem {
  margin: 1rem;
  justify-content: center;
  border-radius: 3px;
  min-width: 350px;
}

@media screen and (max-width: 768px) {
  .commonItem {
    width: 90%;
  }
}

.commonItem--wide {
  min-width: 800px;
}

@media screen and (max-width: 768px) {
  .commonItem--wide {
    min-width: 90%;
  }
}

.commonItem__title {
  font-size: 16px;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.commonItem__body {
  border-top: none;
  display: flex;
  padding: 1rem;
  flex-direction: column;
}

.commonItem__buttonList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 1rem;
}

@media screen and (max-width: 480px) {
  .commonItem__buttonList {
    flex-direction: column;
  }
}

.commonItem__button {
  margin: 5px 15px 5px 15px;
  padding: 10px 40px 10px 40px;
  color: #fff;
  font-size: 1.2em;
  background: #555;
  border: none;
  border: 1px solid #555;
  border-radius: 3px;
  text-decoration: none;
}

.commonItem__button:hover {
  text-decoration: none;
}

.first_message {
  margin-top: 25%;
}

.commonForm {
  margin: 1rem;
  justify-content: center;
  border-radius: 3px;
  min-width: 350px;
}

@media screen and (max-width: 768px) {
  .commonForm {
    width: 90%;
  }
}

.commonForm--wide {
  min-width: 800px;
}

@media screen and (max-width: 768px) {
  .commonForm--wide {
    min-width: 90%;
  }
}

.commonForm__title {
  font-size: 16px;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.commonForm__body {
  border-top: none;
  display: flex;
  padding: 1rem;
  flex-direction: column;
}

.commonForm__buttonList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: "row";
  margin: 1rem;
}

@media screen and (max-width: 480px) {
  .commonForm__buttonList {
    flex-direction: column;
  }
}

.commonForm__button input[type="submit"] {
  margin: 5px 15px 5px 15px;
  padding: 10px 40px 10px 40px;
  color: #fff;
  font-size: 1.2em;
  background: #555;
  border: none;
  border: 1px solid #555;
  border-radius: 3px;
  text-decoration: none;
}

.commonForm__button input[type="submit"]:hover {
  text-decoration: none;
}

.commonForm__input input[type="text"],
.commonForm__input input[type="password"],
.commonForm__input textarea {
  font-size: 1.2em;
  border-radius: 3px;
  margin: 0.5rem 0 0.5rem 0;
  padding: 0.5rem;
  width: 100%;
  min-width: 300px;
}

@media screen and (max-width: 768px) {
  .commonForm__input input[type="text"],
  .commonForm__input input[type="password"],
  .commonForm__input textarea {
    min-width: 0;
  }
}

.commonForm__input select {
  font-size: 1.2em;
  border-radius: 3px;
  margin: 0.5rem 0 0.5rem 0;
  padding: 0.5rem;
}

.commonForm__input--zip input[type="text"],
.commonForm__input--zip input[type="password"] {
  font-size: 1.2em;
  border-radius: 3px;
  padding: 0.5rem;
  width: 5rem;
}

.commonForm__label {
  padding-right: 0.5rem;
  text-align: right;
  width: 30%;
  min-width: 150px;
}

@media screen and (max-width: 480px) {
  .commonForm__label {
    width: 0;
    max-width: 30%;
  }
}

.commonForm__value {
  font-size: 1.2em;
  min-width: 300px;
  padding: 0.5rem;
}

.commonForm__message {
  line-height: 1.5em;
}

.requisite {
  margin-left: 0.5rem;
  padding: 0.2rem 0.5rem 0.2rem 0.5rem;
}

.error,
.validateMessage {
  font-weight: bold;
}

#contents {
  display: flex;
  justify-content: center;
  align-items: center;
}

#contents .contents_m {
  margin: 1rem;
  justify-content: center;
  border-radius: 3px;
  min-width: 350px;
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  #contents .contents_m {
    width: 90%;
  }
}

#contents .contents_m h2 {
  font-size: 16px;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

#contents .contents_m .main {
  border-top: none;
  display: flex;
  padding: 1rem;
  flex-direction: column;
}

#contents .contents_m ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 1rem;
}

@media screen and (max-width: 480px) {
  #contents .contents_m ul {
    flex-direction: column;
  }
}

#contents .contents_m li {
  margin: 5px 15px 5px 15px;
  padding: 10px 40px 10px 40px;
  color: #fff;
  font-size: 1.2em;
  background: #555;
  border: none;
  border: 1px solid #555;
  border-radius: 3px;
  text-decoration: none;
}

#contents .contents_m li:hover {
  text-decoration: none;
}

.linkMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: "row";
  margin: 1rem;
}

@media screen and (max-width: 480px) {
  .linkMenu {
    flex-direction: column;
  }
}

.linkMenu__button {
  margin: 5px 15px 5px 15px;
  padding: 10px 40px 10px 40px;
  color: #fff;
  font-size: 1.2em;
  background: #555;
  border: none;
  border: 1px solid #555;
  border-radius: 3px;
}

/*--管理者ログイン------------------------------------------------------------------*/
#super_user {
  display: flex;
  justify-content: right;
}

#super_user a {
  width: 100px;
  padding: 5px;
  margin: 0 0 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}
