@charset "UTF-8";

/* ---------------------------------------------------------
  Reset
--------------------------------------------------------- */

/* Common
--------------------------------------------------------- */

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
a,
small,
strong,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  margin: 0;
}

/* Document
--------------------------------------------------------- */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  line-height: 2;
  background-color: #fff;
  text-align: left;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

/* Sections
--------------------------------------------------------- */

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

/* Grouping content
--------------------------------------------------------- */

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

dt {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

address {
  font-style: normal;
  line-height: inherit;
}

/* Text-level semantics
--------------------------------------------------------- */

a {
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  text-decoration: underline;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/* Embedded content
--------------------------------------------------------- */

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

/* Forms
--------------------------------------------------------- */

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  border: none;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

select::-ms-value {
  color: currentColor;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

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

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

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

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

/* Attribute
--------------------------------------------------------- */

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ---------------------------------------------------------
 Base
--------------------------------------------------------- */

/* html
--------------------------------------------------------- */

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

/* body
--------------------------------------------------------- */

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, YuGothic, "Yu Gothic", "メイリオ", meiryo, sans-serif;
  font-size: 1.4rem;
  word-break: normal;
  word-wrap: break-word;
  letter-spacing: 0;
}

/* modal
--------------------------------------------------------- */

body.modal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.modal-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

/* ---------------------------------------------------------
  Element style
--------------------------------------------------------- */

/* section, article
--------------------------------------------------------- */

section,
article {
  clear: both;
}

/* heading
--------------------------------------------------------- */

h1,
h2,
h3 {
  clear: both;
}

h1:not([class]),
.heading1,
.seminar-title__text {
  font-size: 2rem;
}

h2:not([class]),
.heading2,
.seminar-section-title,
.formGroup__tit.group {
  position: relative;
  margin: 2em 0 1em;
  padding: 0.3em 0 0.3em 1.1em;
  font-size: 1.8rem;
}

h2:not([class])::before,
.heading2::before,
.seminar-section-title::before,
.formGroup__tit.group::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: calc(100% - 4px);
  border-radius: 5px;
  background-color: #00529f;
}

h1:not([class]) + h2:not([class]),
.heading1 + h2:not([class]),
.seminar-title__text + h2:not([class]),
h1:not([class]) + .heading2,
.heading1 + .heading2,
.seminar-title__text + .heading2,
h1:not([class]) + .seminar-section-title,
.heading1 + .seminar-section-title,
.seminar-title__text + .seminar-section-title,
h1:not([class]) + .formGroup__tit.group,
.heading1 + .formGroup__tit.group,
.seminar-title__text + .formGroup__tit.group {
  margin-top: 1em !important;
}

h3:not([class]),
.heading3,
.seminar-sub-title {
  margin: 2em 0 1.2em;
  padding: 0.5em 1em;
  background-color: #e7eef6;
  color: #00529f;
  font-size: 1.6rem;
}

h2:not([class]) + h3:not([class]),
.heading2 + h3:not([class]),
.seminar-section-title + h3:not([class]),
.formGroup__tit.group + h3:not([class]),
h2:not([class]) + .heading3,
.heading2 + .heading3,
.seminar-section-title + .heading3,
.formGroup__tit.group + .heading3,
h2:not([class]) + .seminar-sub-title,
.heading2 + .seminar-sub-title,
.seminar-section-title + .seminar-sub-title,
.formGroup__tit.group + .seminar-sub-title {
  margin-top: 1em !important;
}

h4:not([class]),
.heading4,
.teacher__prof-title {
  margin: 1.4em 0 0.5em;
  color: #00529f;
  font-size: 1.7rem;
}

h3:not([class]) + h4:not([class]),
.heading3 + h4:not([class]),
.seminar-sub-title + h4:not([class]),
h3:not([class]) + .heading4,
.heading3 + .heading4,
.seminar-sub-title + .heading4,
h3:not([class]) + .teacher__prof-title,
.heading3 + .teacher__prof-title,
.seminar-sub-title + .teacher__prof-title {
  margin-top: 1em !important;
}

h5:not([class]) {
  margin: 1.4em 0 0.7em;
  font-size: 1.6rem;
}

h4:not([class]) + h5:not([class]),
.heading4 + h5:not([class]),
.teacher__prof-title + h5:not([class]) {
  margin-top: 1em !important;
}

h6:not([class]) {
  margin: 1.1em 0 0.7em;
  font-size: 1.5rem;
}

h5:not([class]) + h6:not([class]) {
  margin-top: 1em !important;
}

/* text
--------------------------------------------------------- */

p:not([class]):not(:nth-child(1)) {
  margin-top: 1.2em;
}

h2 + p:not([class]),
h3 + p:not([class]),
h4 + p:not([class]),
h5 + p:not([class]),
h6 + p:not([class]) {
  margin-top: 0;
}

section:after,
article:after,
div:after {
  display: none;
}

/* list
--------------------------------------------------------- */

ul:not([class]),
ol:not([class]) {
  margin-top: 1em;
}

dl ul:not([class]),
dl ol:not([class]) {
  margin-top: 0;
}

ul:not([class]) > li:not([class]) {
  position: relative;
  padding-left: 1.2em;
}

ul:not([class]) > li:not([class])::before {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0;
  display: block;
  width: 0.5em;
  height: 0.5em;
  background: url("../img/base/icon_list.svg") no-repeat 0 0;
}

ul:not([class]) > li:not([class]) a {
  text-indent: 0;
}

ol:not([class]) {
  counter-reset: my-counter;
}

ol:not([class]) li {
  position: relative;
  padding-left: 1.2em;
}

ol:not([class]) li::before {
  content: counter(my-counter) ".";
  counter-increment: my-counter;
  position: absolute;
  left: 0;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: colors(main);
}

li > ul:not([class]),
li > ol:not([class]) {
  margin: 0.2em 0 0 0.2em;
}

dl:not([class]) dt:not([class]) {
  margin: 1em 0 0.5em;
  font-weight: 700;
}

/* link
--------------------------------------------------------- */

a[href]:not([class]) {
  color: #00529f;
  text-decoration: underline;
}

a[href]:not([class]):hover {
  color: #00529f;
  text-decoration: none;
  -webkit-transition: all .6s;
  transition: all .6s;
}

a[href][class] {
  color: #333;
  text-decoration: none;
}

a[href][class]:hover {
  color: #333;
  -webkit-transition: all .6s;
  transition: all .6s;
}

/* table
--------------------------------------------------------- */

table:not([class]) {
  margin-top: 1.5em;
  border-top: 1px solid bdr_colors(main);
}

table:not([class]) th,
table:not([class]) td {
  padding: 1.5rem 2rem;
  border: 1px solid bdr_colors(main);
}

table:not([class]) th {
  min-width: 6em;
  font-weight: 700;
  vertical-align: top;
}

table:not([class]) th[scope="col"] {
  background-color: colors(secondary);
  color: #fff;
  text-align: center;
}

table:not([class]) th[scope="row"] {
  background-color: #F7FAFF;
  text-align: left;
}

table:not([class]) td {
  vertical-align: middle;
}

table:not([class]) p:nth-of-type(1) {
  margin-top: 0;
}

td > p:nth-child(1),
td > ul:nth-child(1),
td > ol:nth-child(1),
td > .list-main:nth-child(1),
td > dl:not([class]):nth-of-type(1) dt:not([class]) {
  margin-top: 0;
}

/* form
--------------------------------------------------------- */

input,
textarea,
select,
button {
  font-size: 16px;
  vertical-align: middle;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="password"],
textarea {
  padding: 8px 15px;
  border-radius: 2px;
  border: 1px solid #c9c9c9;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #bfbfbf;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #bfbfbf;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #bfbfbf;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #bfbfbf;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
  color: #bfbfbf;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline: none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #535353;
  -webkit-box-shadow: 0 0 4px 1px rgba(83, 83, 83, 0.2);
  box-shadow: 0 0 4px 1px rgba(83, 83, 83, 0.2);
}

input[type="radio"],
input[type="checkbox"] {
  position: relative;
  top: -3px;
  margin-right: 0.4em;
  vertical-align: middle;
}

select {
  padding: 6px 12px;
  border: 1px solid #c9c9c9;
  border-radius: 1px;
  background: #fff;
}

textarea {
  width: 100%;
  padding: 20px;
  overflow: auto;
}

label {
  cursor: pointer;
}

/* ---------------------------------------------------------
  common: Flexbox layout
--------------------------------------------------------- */

.stepMenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.col-button-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#header .group__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

h1,
h2,
h3,
h5,
h6 {
  position: relative;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-weight: 700;
  letter-spacing: 0.05em;
}

.confirm-button,
.modal-close-button,
.print-button,
.stepMenu__item {
  font-weight: 700;
}

/* ---------------------------------------------------------
 Base
--------------------------------------------------------- */

/* section, article
--------------------------------------------------------- */

section,
article,
div {
  clear: both;
  *zoom: 1;
}

section:after,
article:after,
div:after {
  content: "";
  display: table;
  clear: both;
}

section:after,
article:after,
#header:after,
.header__menu:after,
#main:after,
.group__inner:after,
.itemInfo:after,
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* ------------------------------------------
  0.element style
--------------------------------------------- */

input[type="button"],
input[type="submit"],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.hiddenS {
  display: none;
}

::-webkit-input-placeholder {
  color: #bebebe;
  font-size: 14px;
}

::-moz-placeholder {
  color: #bebebe;
  opacity: 1;
  font-size: 14px;
}

:-ms-input-placeholder {
  color: #bebebe;
  font-size: 14px;
}

.imgTxt > img {
  display: none !important;
}

.imgTxt:after {
  display: block;
  content: attr(data-txt);
}

.txtBold {
  font-weight: bold;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

/* btn
--------------------------------------------------------- */

.btn,
.systemBtn {
  display: block;
  width: 100%;
  text-decoration: none;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

.icoContact:before,
.icoTxtLink:before,
.icoTxtLink2:before,
.icoArrowDwn:after,
.icoForward:after,
.icoReturn:after,
.icoForwardBF:before,
.icoReturnBF:before,
.ico2Return:before,
.icoMail:before,
.icoClose:before,
.icoexLinks:after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn,
.systemBtn {
  text-align: center;
  cursor: pointer;
}

.btn:hover,
.systemBtn:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.txtBlockLink {
  display: inline-block;
  padding: 4px 5px;
  border: 2px solid #666;
  border-radius: 5px;
  font-size: 90%;
}

.txtBlockLink:hover {
  border-color: #666;
  color: #fff !important;
  background-color: #666;
  text-decoration: none !important;
}

.txtBlockLink.icoFontBtn .fa-times {
  font-size: 20px;
  margin-right: 10px;
}

/* ------ systemBtn ------ */

.systemBtn {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 15px;
  border-radius: 0.4rem;
  background: #555;
  color: #fff !important;
  font-size: 1.7rem;
  overflow: hidden;
}

.systemBtn,
.systemBtn img {
  vertical-align: middle !important;
}

/* Ssize color */

.btn.forward,
.systemBtn.forward {
  background-color: #00529f !important;
}

.btn.registerBtn,
.systemBtn.registerBtn {
  background: #00529f;
}

.btn.registerBtn:hover,
.systemBtn.registerBtn:hover {
  background-color: #005aae;
}

.btn.return,
.systemBtn.return,
.systemBtn.deleteBtn,
.systemBtn#logoff {
  background: #818181;
}

.systemBtn.displayEtkBtn {
  background-color: #E53935;
}

/* ------------------------------------------
  Base layout
--------------------------------------------- */

.icoArrowDwn {
  position: relative;
}

.icoArrowDwn:after {
  left: 50%;
  margin-left: 5.6em;
  width: 14px;
  height: 7px;
  background-image: url("../img/icon.png");
  background-position: -26px 0;
  background-repeat: no-repeat;
  background-size: 658px auto;
}

/* ------------------------------------------
  Ico
--------------------------------------------- */

.icoForward,
.icoReturn {
  position: relative;
}

.icoForwardBF,
.icoReturnBF {
  position: relative;
}

.icoForward:after {
  right: 15px;
  width: 9px;
  height: 15px;
  background-image: url("../img/icon.png");
  background-position: -88px 0;
  background-repeat: no-repeat;
  background-size: 658px auto;
}

.icoReturn:after {
  left: 15px;
  width: 9px;
  height: 15px;
  background-image: url("../img/icon.png");
  background-position: -481px 0;
  background-repeat: no-repeat;
  background-size: 658px auto;
}

.icoReturnBF:before {
  left: 15px;
  width: 9px;
  height: 15px;
  background-image: url("../img/icon.png");
  background-position: -481px 0;
  background-repeat: no-repeat;
  background-size: 658px auto;
}

.icoTel,
.icoMail {
  position: relative;
  padding-left: 34px;
}

.icoTel:before {
  left: 0;
  width: 24px;
  height: 25px;
  background-image: url("../img/icon.png");
  background-position: -588px 0;
  background-repeat: no-repeat;
  background-size: 658px auto;
}

.icoMail:before {
  left: -18px;
  width: 36px;
  height: 27px;
  background-image: url(../img/ico_mail.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 36px 27px;
}

.icoFontBtn {
  padding: 10px;
  border: 1px solid #666;
  font-size: 14px;
  border-radius: 5px;
}

.icoClose {
  position: relative;
  padding-left: 30px;
  overflow: hidden;
}

.icoClose:before {
  left: 10px;
  width: 15px;
  height: 15px;
  background-image: url(../img/ico_close_b.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}

.icoClose:hover:before {
  background-image: url(../img/ico_close_w.png);
}

.icoexLinks {
  position: relative;
  padding-left: 10px;
}

.icoexLinks:after {
  left: 0;
  width: 14px;
  height: 15px;
  background-image: url(../img/ico_exLink.png);
  background-position: 0 0;
  background-size: 14px 15px;
}

/* ------------------------------------------
  Toppage
--------------------------------------------- */

.pageTit {
  margin-bottom: 30px;
  padding: 10px;
  font-size: 140%;
  border-top: 2px solid #F3F3F3;
  border-bottom: 2px solid #F3F3F3;
}

.pageTit.mbS {
  margin-bottom: 8px;
}

.formGroup.group + .pageTit.mbS {
  margin-top: 25px;
}

.pageTit.mtL {
  margin-top: 15px;
}

.pageTit__sub {
  margin-right: 0.5em;
}

.pageTit__sub:after {
  content: ":";
  margin-left: 0.5em;
}

.subTit {
  margin: 40px 0 20px;
  padding-top: 12px;
  border-top: 1px solid #ccc;
  font-size: 120%;
}

.bdrImg {
  border: 1px solid #C3B49A;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* numOfItem */

.numOfItem {
  margin-bottom: 5px;
}

.numOfItem__emphasis {
  margin-right: 0.2em;
  font-size: 110%;
  font-weight: bold;
}

/* ------------------------------------------
  Column
--------------------------------------------- */

.row {
  clear: both;
}

.col.colR {
  margin-top: 20px;
}

.col.span3 + .col.span3 {
  margin-top: 20px;
}

/* ------------------------------------------
  Tbl
--------------------------------------------- */

.tblCont {
  margin: 0 -10px;
}

.primaryTbl {
  border-top: 1px solid #ccc;
}

.primaryTbl th,
.primaryTbl td {
  padding: 15px;
  border-bottom: 1px solid #ccc;
}

.secondaryTbl th,
.secondaryTbl td {
  padding: 10px 15px;
  border: 1px solid #ccc;
}

.secondaryTbl th {
  background: #F4F2E8;
  color: #634727;
}

/* ------------------------------------------
  clearfix
--------------------------------------------- */

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* ------------------------------------------
  Iconlist
--------------------------------------------- */

.iconList__txt {
  position: relative;
  padding-left: 1.2em;
}

.iconList__txt + .iconList__txt {
  margin-top: 5px;
}

.iconList__txt:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  top: 0.3em;
  left: 0;
  background: #8B7041;
  border-radius: 0.7em;
}

.iconList.attention {
  clear: both;
  margin-top: 20px;
}

.iconList__txt.attention {
  font-size: 90%;
}

/* ------------------------------------------
  Bolck size
--------------------------------------------- */

.sizeMax {
  width: 100%;
}

.sizeL {
  width: 100%;
}

.sizeM {
  width: 80%;
}

.sizeS {
  width: 40%;
}

/* Size */

.size10 {
  width: 20% !important;
}

.size15 {
  width: 25% !important;
}

.size20 {
  width: 20% !important;
}

.size30 {
  width: 30% !important;
}

.size40 {
  width: 40% !important;
}

.size50 {
  width: 50% !important;
}

.size60 {
  width: 60% !important;
}

.size70 {
  width: 70% !important;
}

.size80 {
  width: 80% !important;
}

.size90 {
  width: 90% !important;
}

.size100 {
  width: 100% !important;
}

.size20.spMax {
  width: 100% !important;
}

/* ------------------------------------------
  Font size
--------------------------------------------- */

.fontXS {
  font-size: 80%;
}

.fontS {
  font-size: 90%;
}

.fontM {
  font-size: 110%;
}

.fontL {
  font-size: 120%;
}

.fontXL {
  font-size: 130%;
}

/* ------------------------------------------
  clear
--------------------------------------------- */

.clear {
  clear: both;
}

/* ------------------------------------------
  text-align
--------------------------------------------- */

.alignCenter {
  text-align: center;
}

.alignRight {
  text-align: right;
}

.alignLeft {
  text-align: left;
}

.flRight {
  float: right;
}

/* ------------------------------------------
  text Color
--------------------------------------------- */

.emphasis {
  color: #d53c14;
}

/* ------------------------------------------
  Link style
--------------------------------------------- */

/* ------ title ------ */

.centerTit__tit {
  position: relative;
  margin: 0 0 20px;
  font-size: 140%;
  text-align: center;
  color: #E53935;
}

.centerTit__tit:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 1px solid #ccc;
}

.centerTit__tit span {
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  background-color: #fff;
}

.beltTit_blue {
  margin: 30px 0 0;
  padding: 12px 0;
  font-size: 160%;
  text-align: center;
  background: #92c6ec;
  color: #fff;
  font-weight: bold;
}

.beltTit_green {
  margin: 30px 0 0;
  padding: 12px 0;
  font-size: 160%;
  text-align: center;
  background: #8dc556;
  color: #fff;
  font-weight: bold;
}

/* ---------------------------------------------------------
  Site header
--------------------------------------------------------- */

/* scroll header
--------------------------------------------------------- */

#header {
  margin-bottom: 2rem;
  padding: 15px 0;
  border-bottom: 1px solid #E8EDF3;
  /* background: #d6f3fa; */
}

.header__box1 {
  position: relative;
  width: 100%;
  text-align: center;
}

.header__logo img {
  max-width: 280px;
  max-height: 35px;
}

.header__box-right {
  width: 100%;
}

.header__company {
  margin-top: 6px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

/* 未使用 */

.header__box2 {
  float: right;
}

/* ---------------------------------------------------------
  Wrapper
--------------------------------------------------------- */

/* main
--------------------------------------------------------- */

#main {
  margin-bottom: 10px;
  padding-bottom: 20px;
}

/* group__inner
--------------------------------------------------------- */

.group__inner {
  clear: both;
  width: 100%;
  padding: 0 15px;
}

.group.bgPageTop {
  background: #e3dbba;
}

.group.bgType01 {
  background: #f4f0e4;
}

/* main, sub
--------------------------------------------------------- */

.sub {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

/* ---------------------------------------------------------
  Site footer
--------------------------------------------------------- */

/* Footer
--------------------------------------------------------- */

#footer {
  clear: both;
  margin-top: 2rem;
  *zoom: 1;
}

#footer::after {
  content: "";
  display: table;
  clear: both;
}

/* pagetop
--------------------------------------------------------- */

.pagetop {
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 6%;
}

.pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  line-height: 50px;
}

/* footerNav
--------------------------------------------------------- */

.group.bgFooter {
  background: #7bd8ef;
}

/* copyRight
--------------------------------------------------------- */

.group.bgCopyRight {
  background: #00529f;
}

.copyRight {
  padding: 2rem;
  letter-spacing: 0;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
}

/* ---------------------------------------------------------
  heading
--------------------------------------------------------- */

/* ---------------------------------------------------------
/* icon
--------------------------------------------------------- */

/* arrow up, down
--------------------------------------------------------- */

.icon-arrow-d::before,
.icon-arrow-u::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.6rem;
  height: 0.6rem;
  border: 0;
}

.icon-arrow-d:hover::before,
.icon-arrow-u:hover::before {
  border-right-color: #fff;
}

.icon-arrow-d::before {
  margin-top: -0.6rem;
  border-bottom: solid 0.2rem #333;
  border-right: solid 0.2rem #333;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.icon-arrow-d:hover::before {
  border-bottom-color: #fff;
}

.icon-arrow-u::before {
  margin-top: -0.4rem;
  border-top: solid 0.2rem #333;
  border-right: solid 0.2rem #333;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

.icon-arrow-u:hover::before {
  border-top-color: #fff;
}

/* arrow right
--------------------------------------------------------- */

.icon-arrow-r::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0.6rem;
  height: 0.6rem;
  border: 0;
}

.icon-arrow-r:hover::before {
  border-right-color: #fff;
}

.icon-arrow-r::before {
  margin-top: -4px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ---------------------------------------------------------
  button
--------------------------------------------------------- */

/* col-button-wrap
--------------------------------------------------------- */

.col-button-wrap {
  margin-top: 3rem;
  text-align: center;
}

.col-button-wrap__item {
  margin: 1em 1em 0;
}

/* common
--------------------------------------------------------- */

.confirm-button,
.modal-close-button,
.print-button {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  cursor: pointer;
}

.confirm-button:hover,
.modal-close-button:hover,
.print-button:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.confirm-button img,
.modal-close-button img,
.print-button img {
  line-height: 1;
  vertical-align: middle;
}

.confirm-button,
.modal-close-button,
.print-button {
  border-radius: 0.4rem;
  text-align: center;
}

.print-button {
  max-width: 5em;
  padding: 0.3em 1em;
  font-size: 1.3rem;
}

.modal-close-button {
  width: 100%;
  padding: 2rem;
  font-size: 1.5rem;
}

.confirm-button {
  width: 100%;
  padding: 2rem;
  font-size: 1.6rem;
}

/* confirm-button
--------------------------------------------------------- */

.confirm-button {
  max-width: 40rem;
  background: #d53c14;
  border: 1px solid #d53c14;
  color: #fff !important;
}

.confirm-button:hover {
  background-color: #e9451a;
}

/* modal-close-button
--------------------------------------------------------- */

.modal-close-button {
  min-width: 30rem;
  background: #535353;
  border: 1px solid #535353;
  color: #fff !important;
}

.modal-close-button:hover {
  background-color: #606060;
}

/* print-button
--------------------------------------------------------- */

.print-button {
  background: #fff;
  border: 1px solid #fff;
  color: #00529f !important;
}

.print-button:hover {
  opacity: 0.8;
}

/* ---------------------------------------------------------
/* Module
--------------------------------------------------------- */

/* Step-menu
--------------------------------------------------------- */

.stepMenu {
  width: 100%;
  margin: 1.5rem 0;
}

.stepMenu + h2 {
  margin-top: 1.5em;
}

.stepMenu__item {
  display: block;
  width: calc((100% - 4rem) / 3);
  padding-bottom: 0.8em;
  border-bottom: 3px solid #F3F3F3;
  font-size: 1.2rem;
  text-align: center;
}

.stepMenu__item.current {
  border-bottom-color: #00529f;
  color: #00529f;
}

/* ---------------------------------------------------------
/* Utility
--------------------------------------------------------- */

/* color
--------------------------------------------------------- */

.color-emphasis {
  color: #d53c14;
}

/* New line
--------------------------------------------------------- */

@media screen and (min-width: 480px) {
  .stepMenu__item {
    font-size: 1.3rem;
  }
}

@media print, screen and (min-width: 768px) {
  body {
    font-size: calc(1.4rem + ((1vw - 0.3rem) * 0.2222));
    line-height: 1.8;
  }

  h1:not([class]),
  .heading1,
  .seminar-title__text {
    font-size: calc(2rem + ((1vw - 0.48rem) * 1.3889));
  }

  h2:not([class]),
  .heading2,
  .seminar-section-title,
  .formGroup__tit.group {
    font-size: calc(1.8rem + ((1vw - 0.48rem) * 0.8333));
  }

  h3:not([class]),
  .heading3,
  .seminar-sub-title {
    font-size: calc(1.7rem + ((1vw - 0.48rem) * 0.6944));
  }

  h4:not([class]),
  .heading4,
  .teacher__prof-title {
    font-size: calc(1.7rem + ((1vw - 0.3rem) * 0.3333));
  }

  h5:not([class]) {
    font-size: calc(1.6rem + ((1vw - 0.3rem) * 0.3333));
  }

  h6:not([class]) {
    font-size: calc(1.5rem + ((1vw - 0.3rem) * 0.3333));
  }

  .systemBtn {
    font-size: 2rem;
  }

  #header {
    margin-bottom: 4rem;
  }

  .header__box1 {
    width: 300px;
    text-align: left;
  }

  .header__logo img {
    max-height: 45px;
  }

  .header__box-right {
    width: calc(100% - (300px));
  }

  .header__company {
    margin-top: 0;
    font-size: 17px;
    text-align: right;
  }

  #main {
    margin-bottom: 30px;
    padding-bottom: 40px;
  }

  .group__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
  }

  #header .group__inner,
  #seminar-timetable .group__inner {
    max-width: 1240px;
  }

  .main {
    float: right;
    width: 730px;
  }

  .sub {
    float: left;
    width: 200px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .pagetop {
    bottom: 5rem;
  }

  .copyRight {
    padding: 3rem 2rem;
    font-size: 1.4rem;
  }

  .icon-arrow-d::before,
  .icon-arrow-u::before {
    right: 2rem;
  }

  .print-button {
    font-size: calc(1.4rem + ((1vw - 0.48rem) * 0.2778));
  }

  .modal-close-button {
    font-size: calc(1.5rem + ((1vw - 0.3rem) * 0.3333));
  }

  .confirm-button {
    font-size: calc(1.6rem + ((1vw - 0.48rem) * 0.5556));
  }

  .stepMenu {
    margin: 2.5rem 0;
  }

  .stepMenu__item {
    font-size: 1.5rem;
  }

  .new-line-middle {
    display: block;
  }
}

@media screen and (min-width: 768px), print {
  .hiddenS {
    display: block !important;
  }

  .hiddenL {
    display: none !important;
  }

  .imgTxt > img {
    display: block !important;
  }

  .imgTxt:after {
    display: none;
  }

  .icoMenu:before,
  .icoArrowDwn:after,
  .icoForwardBF:before,
  .icoReturnBF:before,
  .ico2Return:before,
  .ico2Delete:before,
  .ico2Checkbox:before {
    display: none;
  }

  .btn,
  .systemBtn {
    width: auto;
  }

  .systemBtn.contactBtn {
    width: 240px;
    margin: 0 auto;
  }

  .systemBtn.contactBtn:hover,
  .btn.forward:hover,
  .systemBtn.forward:hover {
    background-color: #666;
  }

  .systemBtn.seminarBtn {
    width: 430px;
    margin: 0 auto;
  }

  .systemBtn.displayEtkBtn {
    width: 430px;
    margin: 0 auto;
  }

  .systemBtn.displayEtkBtn:hover {
    background-color: #F44336;
  }

  .icoArrowDwn {
    background: url("../img/item/ico_arrow_dwn.png?1681201") no-repeat 59% 50%;
  }

  .icoTel {
    padding-left: 0 !important;
  }

  .pageTit.mtL {
    margin-top: 25px;
  }

  .subTit {
    padding-top: 0;
    border-top: none;
  }

  .numOfItem {
    float: left;
    width: 40%;
    margin-bottom: 0;
  }

  .col.colL {
    clear: none;
    float: left;
  }

  .col.colR {
    clear: none;
    float: right;
    margin-top: 0;
  }

  .col.half {
    width: 48%;
  }

  .col.span3 {
    width: 231px;
    margin-left: 12px;
  }

  .col.span3:first-child {
    margin-left: 0;
  }

  .col.span3 + .col.span3 {
    margin-top: 0;
  }

  .tblCont {
    margin: 0;
  }

  .primaryTbl th {
    padding: 15px 5px;
  }

  .primaryTbl td {
    padding: 15px;
  }

  .iconList.attention {
    margin-top: 30px;
  }

  .sizeMax {
    width: 98%;
  }

  .sizeL {
    width: 70%;
  }

  .sizeM {
    width: 50% !important;
  }

  .sizeS {
    width: 30% !important;
  }

  .size10 {
    width: 10% !important;
  }

  .size15 {
    width: 10% !important;
  }

  .size100 {
    width: 98% !important;
  }

  .size20.spMax {
    width: 20% !important;
  }

  .header__box2 {
    width: 300px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .btn:hover,
  .systemBtn:hover {
    opacity: 0.9;
    filter: alpha(opacity=90);
  }

  .centerTit__tit {
    font-size: 160%;
  }

  .pagetop {
    right: 5%;
  }
}

@media print, screen and (min-width: 1025px) {
  h4:not([class]),
  .heading4,
  .teacher__prof-title {
    font-size: 2.1rem;
  }

  h5:not([class]) {
    font-size: 2rem;
  }

  h6:not([class]) {
    font-size: 1.9rem;
  }

  .col-button-wrap {
    margin-top: 4rem;
  }

  .print-button {
    font-size: 1.6rem;
  }

  .modal-close-button {
    font-size: 1.9rem;
  }

  .confirm-button {
    font-size: 2.2rem;
  }

  .stepMenu__item {
    font-size: 1.6rem;
  }
}

@media print, screen and (min-width: 1365px) {
  body {
    font-size: 1.6rem;
  }

  h1:not([class]),
  .heading1,
  .seminar-title__text {
    font-size: 3rem;
  }

  h2:not([class]),
  .heading2,
  .seminar-section-title,
  .formGroup__tit.group {
    font-size: 2.4rem;
  }

  h3:not([class]),
  .heading3,
  .seminar-sub-title {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 767px) {
  .hiddenStbl {
    display: none !important;
  }

  .primaryTbl.spDB {
    border-top: none;
  }

  .primaryTbl.spDB th,
  .primaryTbl.spDB td {
    display: block;
    padding: 10px 15px;
    border-top: none;
  }

  .primaryTbl.spDB th {
    background: #F4F2E8;
    color: #634727;
  }

  .primaryTbl.spDB tr:first-child th,
  .primaryTbl.spDB .hiddenStbl + tr th {
    border-top: 1px solid #ccc;
  }
}

@media screen and (max-width: 481px) {
  .sizeS.spMax,
  .sizeM.spMax {
    width: 100%;
  }

  .sizeS.spHalf {
    width: 60%;
  }
}

@media screen and (max-width: 480px) {
  .new-line-only-small {
    display: block;
  }
}

@media all and (-ms-high-contrast: none) {
  html {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #header,
  #footer {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  body {
    width: 100%;
  }

  .modal-content {
    min-height: 1px;
  }

  .icoFontBtn {
    padding: 10px 10px 8px;
  }
}