@charset 'utf-8';

/* Reset */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

/* Global */
html {
  margin: 0;
  height: 100%;
}
body {
  margin: 0;
  height: 100%;
  font-size: 14px;
  color: #000000;
  background-color: #f9f9f9;
}
input[type='text'], input[type='password'] {
  padding: 0 8px;
  width: 100%;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  border-radius: .25em;
  border: 1px solid #a0a0a0;
  outline: none;
}
input[type='text']:focus, input[type='password']:focus {
  border: 1px solid #065fd4; 
  outline: none; 
  -moz-box-shadow: 0 0 10px rgba(6, 95, 212, .8);
  -webkit-box-shadow: 0 0 10px rgba(6, 95, 212, .8);
  box-shadow: 0 0 10px rgba(6, 95, 212, .8);
}
textarea {
  padding: 8px;
  width: 100%;
  font-size: 14px;
  border-radius: .25em;
  border: 1px solid #a0a0a0;
  outline: none;
  resize: none;
}
a, button[type='button'] {
  transition: all .3s;
}
a:hover, button[type='button']:hover {
  opacity: .8;
}
button[type='button'] {
  color: #ffffff;
  height: 40px;
  line-height: 40px;
  border-radius: .2em;
  background-color: #065fd4;
  text-align: center;
  border: none;
  cursor: pointer;
  display: block;
}
button[type='button']:disabled {
  background-color: #c0c0c0;
  cursor: none;
  pointer-events: none;
}

/* Container(Width) */
.container, .container-sm {
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.container {
  max-width: 1128px;
}
.container-sm {
  max-width: 848px;
}
.container .container-sm {
  padding-left: 0;
  padding-right: 0;
  max-width: 800px;
}

@media (min-width: 481px) {
  .container, .container-sm {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Header */
header.site-header {
  margin: 0;
  padding: 24px 0;
  width: 100%;
  position: relative;
}
div.header-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center
}
div.header-box h1 {
  margin-top: 48px;
  margin-bottom: 16px
}
div.news-box {
  margin-left: auto;
  width: 50%;
  height: 40px;
  line-height: 40px;
  border-radius: .2em;
  background-color: #333333;
  overflow: hidden;
}
div.news-box p {
  margin-left: auto;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  animation: flowing 20s linear infinite;
  transform: translateX(100%);
}
@keyframes flowing {
  100% { transform: translateX(-100%); }
}

/* Wrapper */
div.wrapper {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
div.boxed-container {
  margin: 0 auto;
  max-width: 1440px;
  box-shadow: 0 24px 48px rgba(17, 16, 62, .12);
}

/* Main */
section.main {
  padding-top: 40px;
  text-align: center;
}
h1.main-title {
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 0px;
  font-family: '?־??', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
p.main-sub-title {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.1px;
}
@media(min-width: 641px) {
  p.main-sub-title {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.1px;
  }
}
div.main-form {
  margin: 0 auto;
  width: 100%;
}
.field-grouped > .control:not(:last-child) {
  margin-bottom: 8px;
}
@media(min-width: 641px) {
  .field-grouped {
    display: flex;
  }
  .field-grouped > .control {
    flex-shrink: 0;
  }
  .field-grouped > .control.control-expanded {
    flex-grow: 1;
    flex-shrink: 1;
  }
  .field-grouped > .control:not(:last-child) {
    margin-bottom: 0;
    margin-right: 8px;
  }
}
a.login-button {
  margin: 0 auto;
  width: 350px;
  height: 60px;
  line-height: 60px;
  font-size: 14px;
  text-decoration: none !important;
  border: none;
  border-radius: .25em;
  cursor: pointer;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  color: #ffffff !important;
  background-color: #065fd4;
  display: flex;
}
@media(max-width: 768px) {
  margin: 0 auto;
}
.main-illustration {
  position: relative;
  margin-top: 48px
}
.illust-shape {
  display: none;
  position: absolute;
}
.illust-main-shape {
  background: url('../images/screenshot.png') center center;
}
.illust-main-shape svg {
  width: 140%;
  height: auto;
}
@media(min-width: 641px) {
  section.main {
    text-align: left;
    padding-top: 160px;
  }
  div.main-inner {
    display: flex;
  }
  div.main-copy {
    padding-right: 48px;
    min-width: 512px;
  }
  div.main-form {
    margin: 0;
  }
  .main-illustration {
    margin-top: -143px;
    padding-bottom: 0;
  }
  .illust-shape {
    display: block;
  }
  .illust-shape-1 {
    left: -32px;
    top: 542px;
  }
  .illust-shape-2 {
    left: -733px;
    top: 538px;
  }
  .illust-main-shape svg {
    width: auto;
    height: 647px;
  }
}
@media(min-width: 1025px) {
  div.main-copy {
    padding-right: 92px;
    min-width: 620px;
  }
}

/* Question and Answer */
section.qa-box {
  position: relative;
  background-color: #11103e;
  text-align: left;
  color: #ffffff;
}
section.qa-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 279px;
  height: 274px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjk0IiBoZWlnaHQ9IjI3NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxkZWZzPiAgICA8bGluZWFyR3JhZGllbnQgeDE9IjEwNC42NTclIiB5MT0iLTQ1LjI3NCUiIHgyPSIyMS45NDQlIiB5Mj0iNC4wNzklIiBpZD0iYSI+ICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iIzU2NTY3OCIgb2Zmc2V0PSIwJSIvPiAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiM1NjU2NzgiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxMDAlIi8+ICAgIDwvbGluZWFyR3JhZGllbnQ+ICA8L2RlZnM+ICA8cGF0aCBkPSJNMTA4My4xMzYgMTI2SDE0NDB2MTc3Ljc4MkMxNDA0LjkxMyAzNjEuNDcgMTM0MS40NTYgNDAwIDEyNjkgNDAwYy0xMTAuNDU3IDAtMjAwLTg5LjU0My0yMDAtMjAwIDAtMjYuMTQxIDUuMDE1LTUxLjExMSAxNC4xMzYtNzR6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTE0NiAtMTI2KSIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJldmVub2RkIiBmaWxsLW9wYWNpdHk9Ii40OCIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
}
section.qa-box .section-msg {
  margin-bottom: 32px;
}
@media (min-width: 641px) {
  section.qa-box .section-msg {
    margin-bottom: 40px;
    padding-left: 72px;
    padding-right: 72px
  }
}
.section-inner {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}
@media(min-width: 641px) {
  .section-inner {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

/* Footer */
footer.site-footer {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #ffffff;
  background-color: #11103e;
  position: relative;
}
footer.site-footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 298px;
  height: 93px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjk4IiBoZWlnaHQ9IjkzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPiAgPGRlZnM+ICAgIDxsaW5lYXJHcmFkaWVudCB4MT0iMjguOTQlIiB5MT0iLTMwLjY4MyUiIHgyPSI2Ny40NzMlIiB5Mj0iMTM1LjAyMiUiIGlkPSJhIj4gICAgICA8c3RvcCBzdG9wLWNvbG9yPSIjNTY1Njc4IiBvZmZzZXQ9IjAlIi8+ICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iIzU2NTY3OCIgc3RvcC1vcGFjaXR5PSIwIiBvZmZzZXQ9IjEwMCUiLz4gICAgPC9saW5lYXJHcmFkaWVudD4gIDwvZGVmcz4gIDxwYXRoIGQ9Ik00MDMuMjQ0IDY5MGMyNC4yMDktNTQuNzc2IDc5LjAxOS05MyAxNDIuNzU2LTkzIDUzLjI1NSAwIDEyMy40NTggNTAuNjc0IDE5Ny4yMTUgOTNoLTMzOS45N3oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00MDMgLTU5NykiIGZpbGw9InVybCgjYSkiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZmlsbC1vcGFjaXR5PSIuMjQiLz48L3N2Zz4=);
  background-repeat: no-repeat;
}
footer.site-footer a {
  color: #ffffff;
  text-decoration: none
}
footer.site-footer a:hover, footer.site-footer a:active {
  color: #ffffff;
  text-decoration: underline;
}
.site-footer-inner {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.site-footer-inner.has-top-divider::before {
  background: #565678;
  background: linear-gradient(to right, rgba(86, 86, 120, 0.1) 0, rgba(86, 86, 120, 0.6) 50%, rgba(86, 86, 120, 0.1) 100%)
}
.footer-brand, .footer-links, .footer-social-links, .footer-copyright {
  flex: none;
  width: 100%;
  display: inline-flex;
  justify-content: center;
}
.footer-links {
  padding: 0;
  list-style: none;
}
.footer-brand, .footer-links, .footer-social-links {
  margin-bottom: 24px;
}
.footer-links li+li, .footer-social-links li+li {
  margin-left: 16px;
}
.footer-social-links li {
  display: inline-flex;
}
.footer-social-links li a {
  padding: 8px;
}
@media(min-width: 641px) {
  .site-footer-inner {
    justify-content: space-between;
  }
  .footer-brand, .footer-links, .footer-social-links, .footer-copyright {
    flex: 50%;
  }
  .footer-brand, .footer-copyright {
    justify-content: flex-start;
  }
  .footer-links, .footer-social-links {
    justify-content: flex-end;
  }
  .footer-links {
    margin-bottom: 0;
    order: 1;
  }
}

/* Login Window */
div.login-window-button {
  position: fixed;
  bottom: 16px;
  right: 16px;
}
div.login-window-button a {
  padding: 0;
  width: 200px;
  height: 200px;
  text-decoration: none;
  display: block;
  color: #02abe4;
  background-color: #3435e5;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 #000000;
  transition: all 0.2s;
  border-radius: 100%;
}
div.login-window-button a:hover {
  box-shadow: 0.4rem 0.4rem 0 #000000;
  transform: translate(-0.4rem, -0.4rem);
}
div.login-window-button a img {
  margin: 10% auto;
  width: 80%;
  height: 80%;
}

/* Login Form */
div#login-wrapper {
  margin: 0 auto;
  padding: 10px;
  max-width: 1000px;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
div.login-form-box {
  margin: -200px 0 0 0;
  padding: 10px;
  width: 500px;
  background-color: #ececec;
}
div.login-form-box h1 {
  margin-top: 10px;
  width: 100%;
  font-size: 24px;
  text-align: center;
}
div.login-msg {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}
div.login-photo {
  margin: 30px auto;
  width: 100%;
  text-align: center;
}
div.login-photo svg {
  width: 100px;
  height: 100px;
  vertical-align: middle;
  fill: #aaaaaa;
}
div.login-rows {
  margin: 10px auto;
  width: 260px;
}
a#login-button {
	margin-top: 10px;
  width: 100%;
	height: 48px;
	line-height: 48px;
	background-color: #065fd4;
	font-size: 14px;
	color: #ffffff;
	border-radius: .25em;
	border: 1px solid #cccccc;
	display: block;
	text-decoration: none;
	text-align: center;
}
div#alert-msg {
  margin: 10px auto;
  width: 260px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #fc0100;
}
div.forgot-pw {
  margin: 30px auto 30px auto;
  width: 260px;
  text-align: center;
}
div.forgot-pw a {
	color: #065fd4;
	text-decoration: none;
}
a.input-tool {
  width: 100%;
  font-size: 12px;
  display: block;
  border-radius: .2em;
  background-color: #606060;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}
a.input-tool:hover {
  background-color: #008000;
}
a.login-account-button {
	margin-top: 10px;
	padding: 4px 8px;
  width: 100%;
	height: 48px;
	line-height: 20px;
	background-color: #065fd4;
	font-size: 14px;
	color: #ffffff;
	border-radius: .25em;
	border: 1px solid #cccccc;
	display: block;
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
  white-space: nowrap;
}
a.login-account-button span {
  width: 100%;
  font-size: 12px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
  white-space: nowrap;
}

/* Inquiry Form */
div.inquiry-form-box {
  margin: 5% 0 0 0;
  padding: 10px;
  width: 500px;
  height: 80vh;
  background-color: #ececec;
  position: relative;
}
div.inquiry-form-box h1 {
  margin-top: 10px;
  width: 100%;
  font-size: 24px;
  text-align: center;
}
div.inquiry-msg {
  width: 100%;
  text-align: center;
}
div.inquiry-photo {
  margin: 30px auto;
  width: 100%;
  text-align: center;
}
div.inquiry-photo svg {
  width: 100px;
  height: 100px;
  vertical-align: middle;
  fill: #aaaaaa;
}
div.inquiry-form {
  margin: 30px auto 30px auto;
  padding: 0 12px;
  width: 90%;
  height: calc(100% - 350px);
  overflow-y: scroll;
}
button#inquiry-sender-button {
  margin-left: auto;
  width: 180px;
}
div.input-group {
  margin: 0;
  padding: 5px;
  width: 100%;
}
label.input-title {
  padding: 8px;
  font-size: 12px;
  color: #000000;
  text-align: left;
  width: 100%;
}
div.input-group > input[type='text'] {
  border: none;
}
div.input-group > input[type='text']:focus {
  border: none;
  outline: none; 
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
div.input-group > textarea {
  border: none;
  height: 100px;
  overflow-y: scroll;
}
div.input-group > select {
  padding: 0 8px;
  height: 36px;
  line-height: 36px;
  position: relative;
  background-color: transparent;
  font-size: 14px;
  width: 100%;
  border: none;
  border-radius: none;
}
div.input-group > select:focus {
  border: none;
  outline: none; 
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
div.secure-image-box {
  margin: 0 auto;
  padding: 0;
  width: 80%;
}
a.secure-image-tool {
  margin: 0 auto;
  width: 80%;
  font-size: 12px;
  display: block;
  border-radius: .2em;
  background-color: #606060;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}
a.secure-image-tool:hover {
  background-color: #008000;
}

/* Modal Window */
div.layer {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, .9);
  display: none;
  justify-content: center;
  align-items: center;
}
div.window-close-box {
  width: 100%;
  text-align: right;
}
a.window-close-button {
  margin: 10px;
  display: block;
}
a.window-close-button svg {
  width: 18px;
  height: 18px;
  fill: #606060;
}
div.modal-footer {
  padding: 0 20px;
  height: 70px;
  border-top: 1px solid #c0c0c0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Radio & Checkbox */
input[type='radio'], input[type='checkbox'] {
  display: none;
}
label.radio, label.checkbox {
  margin: 0 10px 4px 10px;
  padding: 12px 12px 12px 42px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  width: 170px;
  border-radius: .2em;
  vertical-align: middle;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff;
}
label.radio:hover, label.checkbox:hover {
  background-color: #ffffff;
  color: #333333;
}
label.radio:hover:after, label.checkbox:hover:after {
  border-color: #333333;
}
label.radio:after, label.checkbox:after {
  margin-top: -8px;
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  width: 17px;
  height: 17px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  content: '';
}
label.radio:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  margin-top: -5px;
  margin-left: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff4747;
  content: '';
  opacity: 0;
}
input[type='radio']:checked + label.radio:before {
  opacity: 1;
}
label.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #53b300;
  border-bottom: 3px solid #53b300;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type='checkbox']:checked + label.checkbox:before {
  opacity: 1;
}

/* Modal Message */
div.msg-layer {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
}
div#process-box {
  margin: 0 auto;
  padding: 10px;
  width: 400px;
  background-color: rgba(0, 0, 0, .9);
  color: #ffffff;
  text-align: center;
  border-radius: .25em;
}
p#process-title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c0c0c0;
  font-size: 14px;
}
p#process-msg {
  font-size: 12px;
}
