@charset "utf-8";
/* CSS Document */

/* =====================
  fonts
===================== */

/*  Yu Gothic
------------------------*/

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

/* =====================
  base
===================== */

body {
  font-family: "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", 'Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic', sans-serif;
  line-height: 2;
  color: #828284;
  font-size: 13px;
  background: #F9FAFC;
  letter-spacing: 1px;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: #828284;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-weight: normal;
}

svg {
  display: block;
}

.sp_none {
  display: none !important;
}

.flex {
  display: -webkit-flex;
  display: flex;
}

.inner {
  width: 85%;
  margin: 0 auto;
}

#wrapper {
  padding-top: 60px;
}

.contents {
  padding: 35px 0;
}

/* =====================
  icomoon
===================== */

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?q1ha4d');
  src:  url('../fonts/icomoon.eot?q1ha4d#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?q1ha4d') format('truetype'),
    url('../fonts/icomoon.woff?q1ha4d') format('woff'),
    url('../fonts/icomoon.svg?q1ha4d#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-change:before {
  content: "\e900";
}
.icon-gs:before {
  content: "\e901";
}
.icon-delay:before {
  content: "\e903";
}
.icon-late:before {
  content: "\e904";
}
.icon-early:before {
  content: "\e905";
}
.icon-day:before {
  content: "\e906";
}
.icon-arrow:before {
  content: "\e907";
}
.icon-over:before {
  content: "\e908";
}

/* =====================
  header
===================== */

#header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  background: #29abe2;
  box-sizing: border-box;
  padding: 0 20px;
  z-index: 999;
}

.title {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0;
  color: #f9fafc;
}

.title a {
  color: #fff;
}

.tel {
  width: 60px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background: #f9fafc;
}

#page_home .tel {
  margin-left: auto;
}

.tel a {
  color: #29abe2;
}

.btn_back {
  width: 60px;
}

.btn_back button {
  color: #fff;
  font-size: 20px;
}

/* =====================
  form
===================== */

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family : inherit;
  font-size : 100%;
}

input[type="text"],
input[type="email"],
select,
textarea {
  padding: 8px 10px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #C4C5C8;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 1px;
}

textarea {
  resize: vertical;
  display: block;
}

select:focus,
textarea:focus,
input:focus {
  background: #fffee1;
}

input::placeholder {
  color: #A8A9AB;
}

/* IE */
input:-ms-input-placeholder {
  color: #A8A9AB;
}

/* Edge */
input::-ms-input-placeholder {
  color: #A8A9AB;
}
/* =====================
  menu
===================== */

/*  tab
------------------------*/

.tab {
  background: #29abe2;
  padding-top: 10px;
}

.tab li {
  width: 105px;
  display: block;
  height: 45px;
  line-height: 45px;
  border-radius: 0 10px 0 0;
  text-align: center;
  font-weight: bold;
  background: #1d81ab;
  color: #f9fafc;
  padding-left: 10px;
  box-sizing: border-box;
  margin-left: -10px;
  position: relative;
  z-index: 0;
  font-size: 15px;
  transition: .3s;
}

.tab li:first-child {
  z-index: 1;
}

.tab li.active {
  background: #F9FAFC;
  color: #828284;
}

/*  menu_list
------------------------*/

.menu_list {
  display: none;
}

.menu_list.show {
  display: block;
}

.menu_list ul {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.menu_list ul li {
  width: 47%;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
  text-align: center;
  background: #E1E6EA;
  font-weight: bold;
  font-size: 14px;
}

.menu_list ul li a {
  display: block;
  padding: 26px 0 24px 0;
}

.menu_list ul li i {
  display: block;
  text-align: center;
  font-size: 35px;
  line-height: 35px;
  font-weight: normal;
  margin-bottom: 2px;
}

.menu_list ul li .icon-delay {
  font-size: 32px;
}

/* =====================
  main_visual
===================== */

#main_visual {
  padding: 20px;
}

.parent_title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}

/*  page_title
------------------------*/

.page_title {
  background: #dae0ea;
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  padding: 13px;
  letter-spacing: 2px;
  text-indent: 2px;
}

/* =====================
  form
===================== */

.label {
  font-weight: bold;
  position: relative;
}

.input {
  margin-bottom: 15px;
}

.required {
  color: #fff;
  background: #FE9494;
  width: 40px;
  height: 15px;
  line-height: 16px;
  text-align: center;
  border-radius: 3px;
  position: absolute;
  top: 4px;
  right: 0;
  font-size: 10px;
  font-weight: normal;
}

.required.nini {
  background: #29abe2;
}

.kome {
  color: #A8A9AB;
  font-size: 10px;
  display: block;
  line-height: 1.8;
  margin: 7px 0;
}

.kome strong {
  font-weight: 500;
  text-decoration: underline;
}

.btn_submit {
  width: 100%;
  height: 55px;
  line-height: 55px;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
  margin-top: 40px;
  display: block;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 2px;
  text-indent: 2px;
  background: #ffea78;
  color: #29abe2;
}

#form .error {
  background: #f36868;
  color: #fff;
  padding: 8px;
  line-height: 1;
  font-size: 10px;
  border-radius: 3px;
  margin-top: 10px;
  display: block;
  position: relative;
}

#form .error::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 16px;
  margin-left: 0;
  border: 5px solid transparent;
  border-bottom: 9px solid #f36868;
}

.txt_err {
  text-align: center;
  margin-bottom: 40px;
  color: #f36868;
  padding: 20px;
  font-weight: bold;
  border: 1px solid #f36868;
  box-sizing: border-box;
  border-radius: 4px;
}

/* =====================
  page_home
===================== */

#page_home {
  box-sizing: border-box;
  background: #29abe2;
  text-align: center;
}

#page_home #wrapper {
  padding-top: 0;
}

#login {
  padding: 0;
}

#login .inner {
  height: 100vh;
  -webkit-align-items: center;
  align-items: center;
}

.sitetitle {
  font-size: 35px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1;
}

#login form {
  width: 220px;
  margin: 0 auto 20px auto;
}

#login .btn_submit {
  height: 40px;
  line-height: 40px;
  margin: 15px auto 0 auto;
}

/* =====================
  end
===================== */

.txt_end {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.send_content {
  border: 1px solid #C4C5C8;
  padding: 20px 30px;
  box-sizing: border-box;
  letter-spacing: 0;
  border-radius: 4px;
}

.send_content li {
  border-bottom: 1px dotted #ccc;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 5px 0;
  font-size: 12px;
}

.send_content li:last-child {
  border: none;
}

.send_content li strong {
  display: block;
  width: 110px;
}

.send_content li span {
  display: block;
  width: -webkit-calc( 100% - 110px );
  width: calc( 100% - 110px );
}

.logout {
  width: 220px;
  height: 40px;
  line-height: 40px;
  margin: 40px auto 0 auto;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 2px;
  text-indent: 2px;
  background: #ffea78;
}

.logout a {
  display: block;
  color: #29abe2;
}

.name {
  font-weight: bold;
  background: #fff;
  margin-bottom: 20px;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 4px;
  color: #29abe2;
}












/**/
