/******************************************************************
Theme Name: ORIGAMI - all white
Theme URI: 
Description: 
Author: ORIGAMI WORKS
Author URI: 
Version: 1.0.5
Tags: 

License: WTFPL
License URI: http://sam.zoy.org/wtfpl/
****************************************************************** */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, 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, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; }
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display:block; }
nav ul { list-style:none; }
blockquote, q { quotes:none; }
blockquote:before, blockquote:after, q:before, q:after { content:''; content:none; }
a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; color: inherit; }
ins { background-color:#ff9; color:#000; text-decoration:none; }
mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }
table { border-collapse:collapse; border-spacing:0; }
hr { display:block; height:1px; border:0;   border-top:1px solid #cccccc; margin:1em 0; padding:0; }
input, select { vertical-align:middle; }


/* ==========================================================================
   Loading
========================================================================== */
body #container::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--color2) url(assets/common/img/logomark-w.svg) no-repeat center center / 3em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 105;
  transition: 1s cubic-bezier(.39, .575, .565, 1);
}
body.loaded #container::before {
  height: 0;
  transform: translateY(0);
}

/* ==========================================================================
   Setting
========================================================================== */
:root {
  --white: #FFF;
  --l-gray: #F5F5F5;
  --l-gray2: #EBEBEB;
  --gray: #BDBDBD;
  --d-gray: #555;
  --dd-gray: #222;
  --black: #111;
  --border1: #DBDBDB;
  --color1: #967F5A;
  --color2: #222;
  --color2-h: #181818;
  --red: #C31B24;
  --blue: #2E4BA2;
  --l-blue: #2E83A2;
  --green: #219166;
  --marker1: #FFFF66;

  --font1: 'DIN Cond', sans-serif;
  --font2: sans-serif;
}


@font-face {
    font-family: 'Inter';
    src: url('assets/common/fonts/Inter/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/common/fonts/Inter/Inter-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'DIN Cond';
    src: url('assets/common/fonts/DIN/DINPro-Cond.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'DIN Cond';
    src: url('assets/common/fonts/DIN/DINPro-CondMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'DIN Cond';
    src: url('assets/common/fonts/DIN/DINPro-CondBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'DIN Cond';
    src: url('assets/common/fonts/DIN/DINPro-CondBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

/* ==========================================================================
   Base
========================================================================== */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }


body {
  line-height: 2;
  color: var(--black);
}
body.lang-en {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
body.lang-kr {
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
}
body.lang-cn {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
}

#background {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: var(--color1);
  z-index: -1;
}
#background > div {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#background > div.img {
  background: url(assets/common/img/bg_img.svg) repeat center top / 300px;
}
#background > div.txt {
  background: url(assets/common/img/bg_txt.svg) repeat center top / 104px;
}

#wrap {
  overflow: hidden;
  position: relative;
}
#container {
  padding-top: 60px;
  margin-right: auto;
  margin-left: auto;
  max-width: 992px;
  background: #FFF;
  position: relative;
}
@media (min-width: 992px) {
  #container {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 30%), 0 1px 10px 0 rgb(0 0 0 / 15%);
  }
}
@media (min-width: 1180px) {
  #wrap {
    padding-left: 30px;
    padding-right: 280px;
  }
  #container {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1293px) {
  #container {
    margin-right: 0;
    margin-left: auto;
  }
}
@media (min-width: 1553px) {
  #wrap {
    padding-left: 0;
    padding-right: 0;
  }
  #container {
    margin-right: auto;
    margin-left: auto;
  }
}


.overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0,0,0,.5);
  z-index: 900;
  display: none;
}

#content {
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   Sections
========================================================================== */
.row.gutters_S {
  margin-right: -5px;
  margin-left: -5px;
}
.row.gutters_S > .col,
.row.gutters_S [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.section {
  margin-top: 8vw;
  margin-bottom: 8vw;
}
.section-padding {
  padding-top: 4vw;
  padding-bottom: 4vw;
}
.content {
  margin-top: 4vw;
  margin-bottom: 4vw;
}

.overflow-hidden {
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .content {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .container.container_XXS {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .container.container_XS {
    max-width: 720px;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
      max-width: 960px;
  }
}
.container_form {
  max-width: 39rem;
  margin-right: auto;
  margin-left: auto;
}


hr {
  margin: 2em 0;
  border-color: var(--border1);
}
/* ==========================================================================
   Links
========================================================================== */
a {
  color: inherit;
  transition: all .2s ease-in-out;
}
a.nolink {
  pointer-events: none;
}
.link-more,
.link-next,
.link-prev {
  display: inline-block;
  padding-right: 1.75em;
  font-size: .875em;
  font-weight: 600;
  text-align: right;
  text-decoration: none !important;
  position: relative;
  transition: all .2s ease-in-out;
}
.link-more::before,
.link-next::before,
.link-prev::before {
  content: '\f061';
  display: block;
  font-size: 1.4em;
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.link-more::after,
.link-next::after,
.link-prev::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .2s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.link-more {
  padding-right: 0;
  padding-left: 1.75em;
  color: var(--color1);
  cursor: pointer;
}
.link-more::before {
  left: 0;
  right: auto;
}

.link-prev {
  padding-right: 0;
  padding-left: 1.75em;
  text-align: left;
}
.link-prev::before {
  content: '\f060';
  left: 0;
  right: auto;
}
.link-prev::after {
  left: auto;
  right: 0;
}

.link-page-back {
  display: inline-block;
  padding-right: 1em;
  padding-left: 1em;
  font-size: .875em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  position: relative;
}

.link-more:hover::after,
.link-next:hover::after,
.link-prev:hover::after {
  width: 100%;
}

.underline {
  text-decoration: underline;
}

@media (min-width: 992px) {
  a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  }
}

/* ==========================================================================
   Image
========================================================================== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
svg {
  max-width: 100%;
  height: auto;
  color: currentColor;
  fill: currentColor;
}
.cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.no-image {
  background-color: var(--l-gray);
  color: var(--gray);
  position: relative;
}
.no-image .svg.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 70%;
}

.radius-1 { border-radius: .25rem; }
.radius-2 { border-radius: .5rem; }
.radius-3 { border-radius: 1rem; }
.radius-50 { border-radius: 50%; }

/* ==========================================================================
   Colors
========================================================================== */
.bg-white   { background-color: var(--white)!important; }
.bg-l-gray  { background-color: var(--l-gray)!important; }
.bg-l-gray2 { background-color: var(--l-gray2)!important; }
.bg-gray    { background-color: var(--gray)!important; }
.bg-d-gray  { background-color: var(--d-gray)!important; }
.bg-dd-gray { background-color: var(--dd-gray)!important; }
.bg-black   { background-color: var(--black)!important; }
.bg-red     { background-color: var(--red)!important; }
.bg-blue    { background-color: var(--blue)!important; }
.bg-green   { background-color: var(--green)!important; }
.bg-color1  { background-color: var(--color1)!important; }
.bg-color2  { background-color: var(--color2)!important; }

.white  { color: var(--white)!important; }
.gray   { color: var(--gray)!important; }
.d-gray { color: var(--d-gray)!important; }
.color1 { color: var(--color1)!important; }
.color2 { color: var(--color2)!important; }
.red    { color: var(--red)!important; }
.blue   { color: var(--blue)!important; }
.l-blue { color: var(--l-blue)!important; }
.green  { color: var(--green)!important; }

/* ==========================================================================
   Marker
========================================================================== */
.marker1 {
  background: linear-gradient(transparent 60%, var(--marker1) 60%);
}
[class^=marker] {
  display: inline;
  padding-right: 4px;
  padding-left: 4px;
}
.ttl [class^=marker] {
  padding-left: calc(.16em + 4px);
}

/* ==========================================================================
   Typography
========================================================================== */
.font1 {
  font-family: var(--font1);
}
.font2 {
  font-family: var(--font2);
}
.monospace {
  font-family: monospace;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  margin: 0;
  font-weight: 700;
  position: relative; }
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none; }

.huge {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h1,.h1 {
  font-size: 2.44em;
}
h2,.h2 {
  font-size: 1.95em;
}
h3,.h3 {
  font-size: 1.56em;
}
h4,.h4 {
  font-size: 1.25em;
  line-height: 1.5;
}
h5,.h5 {
  font-size: 1em;
}
h6,.h6 {
  font-size: 0.8em;
}
small, .small {
  font-size: 0.813rem;
}
.xsmall {
  font-size: 0.75rem;
}

.help-block {
  display: block;
  line-height: 1.75;
  font-size: .875em;
}
.help-block.small {
  font-size: 0.813rem;
}
.help-block.xsmall {
  font-size: 0.75rem;
}
.help-block p:not(:last-of-type) {
  margin-bottom: .5em;
}

p {
  margin-bottom: 1.5em;
}
.ttl + p {
  margin-top: 1.5em;
}
p:last-of-type {
  margin-bottom: 0;
}
p.more {
  margin-top: 2em;
}
sup,.super {
  vertical-align: super;
  font-size: .75em;
}
sub,.sub {
  vertical-align: sub;
  font-size: .75em;
}

.ls-0 {
  letter-spacing: 0;
}

.fw-400,
.text-normal { font-weight: 400 !important; }
.fw-500,
.text-medium { font-weight: 500 !important; }
.fw-600,
.text-semibold { font-weight: 600 !important; }
.fw-700,
.text-bold { font-weight: 700 !important; }
.fw-900,
.text-black { font-weight: 900 !important; }
.text-italic { font-style: italic; }
.text-justify { text-align: justify; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }

@media (min-width: 576px) {
  .text-sm-justify { text-align: justify !important; }
  .text-sm-left { text-align: left !important; }
  .text-sm-right { text-align: right !important; }
  .text-sm-center { text-align: center !important; }
}
@media (min-width: 768px) {
  .text-md-justify { text-align: justify !important; }
  .text-md-left { text-align: left !important; }
  .text-md-right { text-align: right !important; }
  .text-md-center { text-align: center !important; }
}
@media (min-width: 992px) {
  h1, .h1 { font-size: 2.5rem; }
  h2, .h2 { font-size: 2rem; }
  .text-lg-justify { text-align: justify !important; }
  .text-lg-left { text-align: left !important; }
  .text-lg-right { text-align: right !important; }
  .text-lg-center { text-align: center !important; }
}


/* ==========================================================================
   Button
========================================================================== */
.btn,
button,
input[type="button"],
input[type="submit"] {
  display: inline-block;
  font-size: .938em;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.5;
  letter-spacing: .05em;
  padding: 1em 1.5em;
  min-width: 18rem;
  background-color: var(--color2);
  border: 2px solid transparent;
  color: #FFF;
  border-radius: .25em;
  text-decoration: none !important;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all .2s ease-in-out;
  box-shadow: 0 2px 4px rgba(0,0,0,.12);
}
.btn .font1 {
  font-weight: 600;
}
.btn:hover {
  background-color: var(--color2-h);
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
  transform: translateY(-2px);
}
/*
.btn::before {
  content: '\f30b';
  display: block;
  font-size: 1.5em;
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: .1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.btn:hover::before {
  right: 1rem;
}
*/
.btn small {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  opacity: .5;
}

.btn.btn_UI {
  background-color: var(--color2);
  color: #FFF;
  text-align: center;
  font-weight: 400;
  font-size: .813rem;
  letter-spacing: 0;
  border-width: 1px;
  padding: .2em .75em;
  min-width: 4em;
  box-shadow: none;
}

.btn.btn_S {
  letter-spacing: 0;
  padding: .75em 1em;
  min-width: inherit;
}
.btn.btn_S::before {
  display: none;
}

.btn.btn_L {
  display: block;
  font-size: .938em;
  width: 100%;
}

.btn.btn-color1 {
  border-color: transparent;
  background-color: var(--color1);
  color: #FFF;
}
.btn.btn-gray {
  background-color: var(--l-gray);
  color: var(--d-gray);
}
.btn.btn-d-gray {
  background-color: var(--gray);
  color: #FFF;
}
.btn.btn-success {
  background-color: var(--green);
  color: #FFF;
}
.btn.btn-border {
  background-color: transparent;
  border-color: currentColor;
  color: currentColor;
}

.btn:disabled,
.btn.disabled {
  pointer-events: none;
  color: #AAA;
  box-shadow: none;
}
.btn.btn-color:disabled,
.btn.btn-color.disabled {
  background-color: #EEE;
  color: #CCC;
}

.btn_radius {
  border-radius: 4em;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-top: 3rem;
}
.buttons .btn {
  margin: 1rem .5rem;
}

@media (max-width: 767px) {
  .btn {
    display: block;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 510px;
  }
  .btn + .btn {
    margin-top: 1rem;
  }
}
@media (min-width: 576px) {
  .btn_width {
    padding: 1em 3em;
  }
}
@media (min-width: 768px) {
  .btn + .btn {
    margin-left: 1rem;
  }
}

/* ==========================================================================
   Badge
========================================================================== */
.badge {
  display: inline-block;
  text-align: center;
  line-height: 1;
  font-size: .875em;
  font-weight: 400;
  padding: .25em .5em;
  border-radius: 2px;
  letter-spacing: 0;
  color: var(--color1);
  border: 1px solid currentColor;
}
.badge + .badge {
  margin-left: .5em;
}
/* ==========================================================================
   Page header
========================================================================== */
.page__header {
  width: 100%;
  color: #FFF;
  position: relative;
  overflow: hidden;

  background: var(--dd-gray) url(assets/cover/cover.jpg) no-repeat center center / cover;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.page__header:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(34,34,34,0.75);
}
.page__header > .section {
  margin-top: 0;
  margin-bottom: 0;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.page__header .ttl {
  margin: 0;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .16em;
  position: relative;
}
.lang-en .page__header .ttl {
  display: none;
}
.page__header .en_ttl {
  display: block;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
}
.page__header .en_ttl span {
  display: inline-block;
}
.page__header .bar {
  content: '';
  display: block;
  margin: 0 1em;
  width: 3em;
  height: 1px;
  background-color: currentColor;
}
@media (max-width: 991px) {
  .page__header .en_ttl {
    font-size: 1.857em;
  }
}
@media (min-width: 992px) {
  .page__header > .section {
    height: 180px;
  }
  .page__header.page__header_S > .section {
    height: 120px;
  }
}

.page__header.page__header_S {
  background: var(--l-gray2);
  color: var(--dd-gray);
}
.page__header.page__header_S:before {
  display: none;
}
.page__header.page__header_S > .section {
  height: 5.5rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.page__header.page__header_S .en_ttl {
  margin-right: .5em;
}
@media (max-width: 575px) {
  .page__header.page__header_S > .section {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .page__header.page__header_S .en_ttl {
    font-size: 1.857em;
  }
}

.section__header .ttl {
  line-height: 1.4;
  position: relative; }
.section__header .label {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: .5rem;
  color: var(--color1);
}
.section__header .sub_ttl {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .04em;
  font-style: normal;
  white-space: nowrap;
  display: block;
}
.section__header .ttl + .sub_ttl {
  margin-top: 1em;
}


.content__header:not(.content) {
  margin-bottom: 2rem;
}
.content__header .label {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: .5rem;
  color: var(--color1);
}
.content__header .label:not(.font1) {
  letter-spacing: .16em;
}
.content__header .label + .ttl {
  margin-top: 0;
  margin-bottom: 2rem;
}
.content__header .ttl + .label {
  margin-top: .5rem;
  margin-bottom: 0;
}

.separator_ttl {
  text-align: center;
  position: relative;
  z-index: 2;
}
.separator_ttl::before {
  content: '';
  display: block;
  width: 100vw;
  height: 1px;
  border-top: 1px dotted currentColor;
  position: absolute;
  top: 50%;
  left: calc((100% - 100vw)/2);
}
.separator_ttl .separator_ttl__inner {
  padding: 0 1em;
  background-color: #FFF;
  display: inline-block;
  position: relative;
}


/* ==========================================================================
   Hero
========================================================================== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  position: relative;
}
.hero.cover {
  color: var(--white);
}
.hero.cover::before {
  content: '';
  display: block;
  background-color: rgba(36,38,40,0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
.hero .hero__inner {
  position: relative;
}

a.hero.cover::before {
  transition: 2s cubic-bezier(.2,1,.2,1);
}
a.hero.cover:hover::before {
  background-color: rgba(36,38,40,0.75);
}
a.hero:hover .btn {
  background-color: rgba(255,255,255,0.25);
}
a.hero:hover .btn::before {
  right: calc(1.5em - 4px);
}
a.hero:hover .btn::after {
  right: calc(1.5em - 5px);
}

/* ==========================================================================
   Responsive iframe
========================================================================== */
.iframeBox {
  width: 100%;
  padding-top: 65%;
  position: relative;
}
.iframeBox iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.row .iframeBox {
  height: 100%;
}


.ggmap {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.ggmap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ggmap_gray iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media(min-width: 576px){
  .ggmap {
    padding-top: 65%;
  }
}
@media(min-width: 768px){
  .ggmap {
    padding-top: 50%;
  }
}
/* ==========================================================================
   List
========================================================================== */
ul,
ol {
  margin-left: 1.5em;
}
ul.row,
ol.row,
ul.lists,
ul.no-dot,
ol.no-dot {
  list-style-type: none;
}
ul.no-dot,
ol.no-dot {
  margin-left: 0;
}


.lists .list {
  line-height: 1.6;
  border-bottom: 1px solid var(--border1);
}
.lists .list:first-of-type {
  border-top: 1px solid var(--border1);
}
.lists .list > a,
.lists > .list {
  display: block;
  position: relative;
  padding: 1.22rem 0;
  text-decoration: none !important;
}
.lists .list > a,
.lists > a.list {
  padding: 1.22rem;
}
.lists .list > a:hover,
.lists > a.list:hover {
  background-color: var(--l-gray);
}
.lists .list .entry__meta {
  display: flex;
  align-items: center;
}
.lists .list .entry__meta time {
  font-size: .625rem;
  font-weight: 700;
  min-width: 4.75rem;
}
.lists .list .entry__meta .cat {
  display: inline-block;
  min-width: 5rem;
  text-align: center;
  line-height: 1;
  font-size: .75em;
  font-weight: 700;
  padding: .25em .5em;
  border-radius: 2px;
  letter-spacing: 0;
  background: currentColor;
}
.lists .list .entry__meta .cat span {
  color: #FFF;
}
.lists .list .entry__meta .cat + .cat {
  margin-left: .5em;
}

.lists .list .ttl {
  line-height: 1.4;
  font-size: 1rem;
  letter-spacing: 0;
}

/* ==========================================================================
   Card
========================================================================== */
ul.cards {
  list-style-type: none;
}
.card {
  display: block;
  font-size: .938rem;
  line-height: 1.8;
  text-decoration: none !important;
}
.cards .card {
  margin-bottom: 30px;
}
.card .card-inner {
  background-color: #FFF;
  height: 100%;
  text-decoration: none;
  position: relative;
}
.card .card-inner:not(.row) {
  display: block;
}
.bg-l-gray .card .card-inner {
  box-shadow: 0px 0px 8px -2px rgba(0,0,0,0.2);
}
.card .card-border {
  position: relative;
}
.card .card-border::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border1);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.card a.link-more {
  margin-top: .5em;
}
.card .card-img {
  display: block;
  position: relative;
  overflow: hidden;
}
.card .card-img img {
  margin-bottom: 0;
}

a .card-img img {
  transition: 2s cubic-bezier(.2,1,.2,1);
}
a:hover .card-img img {
  transform: scale(1.1);
}

.card .card-header {
  padding: 1rem 0;
}
.card .card-inner .card-header {
  padding: 2rem 2rem 1rem;
}
.card .card-inner .card-header.cover {
  padding: 45px 2rem;
  margin-bottom: 2rem;
  color: #FFF;
  position: relative;
}
.card .card-inner .card-header.cover::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.4);
}
.card .card-header .label {
  display: block;
  margin: 0 0 .25em;
  position: relative;
}
.card .card-header .ttl {
  letter-spacing: 0;
  line-height: 1.5;
  margin: 0;
  position: relative;
}
.card .card-body {
  padding: 1rem 0;
  position: relative;
}
.card .card-inner .card-body {
  padding: 2rem;
}
.card .card-footer {
  padding: 1rem 0;
  position: relative;
}
.card .card-inner .card-footer {
  padding: 2rem;
}
.card .card-inner .row .card-img,
.card .card-inner .row .card-header,
.card .card-inner .row .card-body,
.card .card-inner .row .card-footer {
  padding: 1rem;
}
.card .card-header + .card-body,
.card .card-inner .card-header + .card-body,
.card .card-body + .card-footer,
.card .card-inner .card-body + .card-footer {
  padding-top: 0!important;
}
.card .card-body p:last-of-type {
  margin: 0;
}

.card .card-link {
  text-align: right;
  padding: .5em 15px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.card .card-link .link-more:empty {
  padding: .75em 12px;
}

.help-links {
  padding: 1em 1.5em;
  line-height: 1.5;
}

/* ==========================================================================
   Banner
========================================================================== */
ul.banners {
  list-style-type: none;
}
.banner {
  width: 100%;
  position: relative;
}
.banner > a,
a.banner:not(.nolink) {
  display: block;
  padding-top: 100%;
  font-size: .938rem;
  line-height: 1.8;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.banner-100 > a,
a.banner-100:not(.nolink) {
  padding-top: 100%;
}
.banner-70 > a,
a.banner-70:not(.nolink) {
  padding-top: 70%;
}
.banners .banner:not(:last-of-type) {
  margin-bottom: 30px;
}
.banner .imgBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.banner .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 2s cubic-bezier(.2,1,.2,1);
}
.banner > a:not(.nolink):hover .imgBox img,
a.banner:not(.nolink):hover .imgBox img {
  transform: scale(1.1);
}
.banner .caption {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(36,38,40,0.5);
  color: var(--white);
  opacity: 0;
  transition: .2s cubic-bezier(.645, .045, .355, 1);
}
.banner > a:not(.nolink):hover .caption,
a.banner:not(.nolink):hover .caption {
  opacity: 1;
}
.banner .label {
  display: inline-block;
  font-size: .625rem;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  background-color: var(--white);
  padding: .4em .6em;
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 5;
  transform: rotate(-90deg);
  transform-origin: right center;
}
.row > .banner .label {
  right: calc(100% - 15px);
}
.banner .badges {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

/* ==========================================================================
   Accordion
========================================================================== */
.acc .acc_body {
  display: none;
}
/* ==========================================================================
   Tab
========================================================================== */
.tabs,
.entry__content .tabs {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1px;
  margin-left: -1px;
  list-style-type: none;
}
.tabs .tab {
  padding: 1px;
}
.tabs .tab span {
  display: block;
  text-align: center;
  padding: 0 1.25em;
  background-color: var(--l-gray);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  text-decoration: none;
  transition: .2s ease-in-out;
  position: relative;
}
.tabs .tab span:hover {
  color: var(--color1);
}
.tabs .tab.active span {
  background-color: var(--color1);
  color: var(--white);
}

.tab-cont:not(:first-of-type) {
  display: none;
}

.tab-cont .tab-cont_label {
  font-size: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.tab-cont .tab-cont_label::before {
  content: '';
  display: block;
  width: 3em;
  height: 1px;
  background-color: currentColor;
  margin-right: 1em;
}

/* ==========================================================================
   TOC Navi
========================================================================== */
.stickyNav,
.tocNav {
  font-size: .813rem;
  line-height: 1;
  height: 3.5rem;
  position: relative;
}

.stickyNav nav,
.tocNav nav {
  display: block;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: var(--l-gray);
  color: var(--d-gray);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.stickyNav nav::-webkit-scrollbar,
.tocNav nav::-webkit-scrollbar {
  display: none;
}
.stickyNav .viewport,
.tocNav .viewport {
  display: block;
  width: 100%;
  height: 3.5rem;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 101;
  pointer-events: none;
}
.stickyNav .viewport::before,
.tocNav .viewport::before,
.stickyNav .viewport::after,
.tocNav .viewport::after {
  content: '';
  display: block;
  width: 15px;
  height: 100%;
  background: rgb(245,245,245);
  background: linear-gradient(90deg, rgba(245,245,245,1) 0%, rgba(245,245,245,0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.stickyNav .viewport::after,
.tocNav .viewport::after {
  background: linear-gradient(270deg, rgba(245,245,245,1) 0%, rgba(245,245,245,0) 100%);
  left: auto;
  right: 0;
}
.stickyNav ul,
.tocNav ul {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.stickyNav ul li,
.tocNav ul li {
  position: relative;
}
.stickyNav ul li::before,
.tocNav ul li::before {
  content: '';
  display: block;
  width: 1px;
  background: var(--border1);
  position: absolute;
  top: 30%;
  bottom: 30%;
  right: 0;
}
.stickyNav ul li:last-child::before {
  display: none;
}
.stickyNav ul li a,
.tocNav ul li a {
  display: block;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
  padding: 0 15px;
  position: relative;
}
.stickyNav ul li a span,
.tocNav ul li a span {
  display: block;
  line-height: 3.5rem;
  white-space: nowrap;
  padding: 0;
  position: relative;
}
.stickyNav ul li a span:before,
.tocNav ul li a span:before {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--color2);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: .2s;
}

.stickyNav ul li .active,
.stickyNav ul li .current,
.tocNav ul li .current {
  z-index: 102;
}

.stickyNav ul li .active span,
.stickyNav ul li .current span,
.tocNav ul li .current span {
  font-weight: 700;
  color: var(--color2);
}
.stickyNav ul li .active span:before,
.stickyNav ul li .current span:before,
.tocNav ul li .current span:before {
  width: 100%;
}

@media (max-width: 1179px) {
  .stickyNav.fixed nav,
  .tocNav.fixed nav {
    position: fixed;
    padding-top: 60px;
    transition: padding .2s;
  }
}

/* ==========================================================================
   Scroll
========================================================================== */
.scroll-wrap {
  position: relative;
}
.scroll-wrap .scroll-inner {
  overflow-x: auto;
  margin-bottom: 2rem;
}
.scroll-wrap .scroll_caption {
  display: inline-block;
  font-size: .625rem;
  line-height: 1;
  text-align: right;
  padding: .25em .75em;
  border-radius: 1.25em;
  position: absolute;
  top: -1.25em;
  right: 0;
  color: #FFF;
  background-color: var(--color2);
}
.scroll-wrap .scroll_caption::after {
  content: '\f101';
  display: inline-block;
  font-family: 'Line Awesome Free';
  font-weight: 900;
}
.scroll-wrap table {
  margin-bottom: .5rem!important;
}

@media (max-width: 767px) {
  .scroll-wrap table {
    width: auto;
    min-width: 100%;
    margin-top: .5rem;
    table-layout: auto !important;
    white-space: nowrap;
  }
  .scroll-wrap table td {
    width: auto;
  }
}

/* ==========================================================================
   Alert
========================================================================== */
.alert {
  padding: 1rem;
  margin: 1rem 0 2rem;
  border: 1px solid var(--border1);
  font-size: .938rem;
  line-height: 1.8;
  border-radius: .25rem;
}
.alert .alert-title {
  font-size: 1.175rem;
  font-weight: 600;
}
.alert .alert-scroll-box {
  max-height: 180px;
  overflow-y: auto;
}
.alert >*:not(:last-child) {
  margin-bottom: .5rem;
}

.alert-error {
  border-color: transparent;
  color: var(--red);
  background-color: #faeeef;
}

.alert a {
  color: var(--l-blue);
}

.alert .alert-footer {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Notice
========================================================================== */
.notice-bar {
  margin: .5rem 0;
  background-color: var(--l-gray);
  font-size: .938rem;
  line-height: 1.8;
  border-radius: .25rem;
}
a.notice-bar,
.notice-bar > a {
  display: block;
  padding: .5rem 1rem;
  text-decoration: none;
}
.notice-bar .underline {
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}

.notice-bar-success {
  color: #2c604c;
  background-color: #dcf3ea;
}
.notice-bar-info {
  color: #316b80;
  background-color: #ddeff5;
}
.notice-bar-error {
  color: #af1b23;
  background-color: #faeeef;
}
.notice-bar p {
  margin-bottom: .25em;
}
.notice-bar *:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   Modal
========================================================================== */
.fancybox-button {
  min-width: inherit;
}

/* ==========================================================================
   iframe
========================================================================== */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   iframe
========================================================================== */
pre {
  background: #323944;
  color: #f8f9fa;
  font-size: .75em;
  padding: 15px;
  border-radius: 3px;
  margin-bottom: 2rem;
}

/* ==========================================================================
   WP Post
========================================================================== */
.article__header {
  margin: 0 auto 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border1);
}
.article__header .ttl {
  margin: 0!important;
  letter-spacing: .04em;
}

.article__footer {
  margin: 4rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border1);
}

.entry__meta {
  display: flex;
  align-items: center;
  font-size: .875rem;
  margin-bottom: .5rem;
  color: var(--d-gray);
}
.entry__meta time + .category {
  margin-left: 1rem;
  font-size: .75em;
  font-weight: 700;
}
.entry__meta .category span + span {
  margin-left: 1em;
}

/* entry__content */
.entry__content a {
  color: var(--l-blue);
  text-decoration: underline;
}

.entry__content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid var(--color2);
  font-style: italic;
  color: var(--gray);
}

.entry__content figure {
  margin-bottom: 2rem;
}
.entry__content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
  
.entry__content .video{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.entry__content .video iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* tags */
.tags {
  margin: .75rem 0 0;
  font-size: .813rem;
  color: var(--d-gray);
}
.tags span {
  display: inline-block;
  border-radius: 2px;
  padding: .25rem .5rem;
  margin-right: .25rem;
  background: rgba(0,0,0,0.9);
}
.tags span:hover {
  background: rgba(0,0,0,0.3);
}
.tags a {  
  text-decoration: none;
}


.entry__content ul {
  margin-left: 1.5em;
  margin-bottom: 2em;
}
.entry__content ol {
  margin-left: 1.5em;
  margin-bottom: 2em;
}
.entry__content ol ol,
.entry__content ul ul,
.entry__content ol ul,
.entry__content ul ol {
  margin-top: 1rem;
  margin-left: 1.6em;
  margin-bottom: 2em;
}
.entry__content ul.no-dot,
.entry__content ol.no-dot {
  margin-left: 0;
}
.entry__content ul li,
.entry__content ol li {
  line-height: 1.5;
  margin: .75em 0;
}

.entry__content p  {
  margin-bottom: 2em;
}

.entry__content > h1,
.entry__content > .h1 {
  font-size: 2.44em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  padding-bottom: 0.335em;
  border-bottom: 2px solid currentColor;
}

.entry__content > h2,
.entry__content > .h2 {
  font-size: 1.56em;
  margin-top: 0.83em;
  margin-bottom: 1.5em;
  padding-bottom: 0.415em;
  border-bottom: 1px solid currentColor;
}
.entry__content > h2:first-child {
  margin-top: 0;
}
.entry__content > h3,
.entry__content > .h3 {
  font-size: 1.56em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.entry__content > h4,
.entry__content > .h4 {
  font-size: 1.25em;
  line-height: 1.5;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
}
.entry__content > h5,
.entry__content > .h5 {
  font-size: 1em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
}
.entry__content > h6,
.entry__content > .h6 {
  font-size: 0.8em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
}

.entry__content .scroll-inner::-webkit-scrollbar {
  height: 8px;
}
.entry__content .scroll-inner::-webkit-scrollbar-track {
  background: var(--white);
}
.entry__content .scroll-inner::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 0;
  background: var(--border1);
}


.entry__content .table-ttl {
  display: block;
  margin: 0 0 .5rem;
}
.entry__content .table-ttl .ttl {
  margin: 0;
}
.entry__content table {
  width: 100%;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.entry__content table caption {
  font-size: .75rem;
  text-align: left;
  color: var(--d-gray);
}
.entry__content table hr {
  margin: .5em 0 !important;
}
.entry__content table th {
  text-align: left;
  vertical-align: middle;
  font-weight: 600;
  font-size: .875rem;
  padding: .75em 1em;
  border: 1px solid var(--border1);
  white-space: nowrap;
}
.entry__content table th em {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: var(--d-gray);
}
.entry__content table td {
  vertical-align: middle;
  padding: .75em 1em;
  border: 1px solid var(--border1);
}
.entry__content table td p:not(:last-child) {
  margin-bottom: .5em;
}
.entry__content table td:last-child {
  margin-bottom: 0;
}

.entry__content thead {
  background-color: var(--l-gray);
  border-bottom: 2px solid var(--border1);
}
.entry__content thead th,
.entry__content thead td {
  vertical-align: middle;
  font-weight: 600;
  font-size: .875rem;
}

.entry__content table td *:last-child {
  margin-bottom: 0;
}

.entry__content table.table-inline {
  width: auto;
}
.entry__content table.table-inline th {
  padding: .25em .5em;
}
.entry__content table.table-inline td {
  padding: .25em .5em;
}


.entry__content table.table-price {
  table-layout: fixed;
}
.entry__content table.table-price th {
  background-color: var(--l-gray2);
}
.entry__content table.table-price .catch {
  display: block;
  line-height: 1;
  font-size: .75em;
}

.entry__content table.table-no-border th {
  padding-left: 0;
  border: 0;
}
.entry__content table.table-no-border td {
  padding-right: 0;
  border: 0;
}

@media (max-width: 767px) {
  .entry__content table.table-sp-block tr {
    display: block;
    width: 100%!important;
    border: none;
    border-bottom: 1px solid var(--border1);
    margin: 1.5rem 0;
    padding-bottom: 1.5rem;
  }
  .entry__content table.table-sp-block th {
    display: block;
    width: 100%!important;
    border: none;
    padding: 0;
    font-size: 1.125rem;
    font-weight: 600;
  }
  .entry__content table.table-sp-block td {
    display: block;
    width: 100%!important;
    border: none;
    padding: 0;
    margin-top: 1rem;
  }
}


.table-title {
  margin: 3rem 0 1.5rem;
}
.table-title .title {
  background-color: var(--d-gray);
  color: #FFF;
  font-size: .938em;
  line-height: 1.5;
  letter-spacing: .04em;
  padding: .5em .75em;
  margin-bottom: .5em;
}

.table-box {
  width: 100%;
  margin: 1rem auto 3rem;
  background-color: var(--l-gray);
  line-height: 1.35;
  border-radius: .25rem;
}
.table-box .table-header {
  border-bottom: 1px solid var(--border1);
}
.table-box .table-header th {
  font-size: .938rem !important;
  color: var(--d-gray);
}
.table-box th {
  width: 9rem;
  font-size: .813rem;
  text-align: left;
  padding: .25rem 1rem;
  white-space: nowrap;
  color: var(--color2);
}
.table-box td {
  text-align: left;
  padding: .25rem 1rem;
}
.table-box tr:first-child th,
.table-box tr:first-child td {
  padding-top: 1rem;
}
.table-box tr:last-child th,
.table-box tr:last-child td {
  padding-bottom: 1rem;
}
.table-box td .help-block {
  margin-top: .5rem;
}
@media (min-width: 768px) {
  .table-box th {
    width: 11em;
  }
}


.entry__content dl {
  margin-bottom: 2rem;
}
.entry__content dt {
  font-size: 1.25em;
  font-weight: 600;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
.entry__content dd {
  margin-left: 0;
  margin-bottom: 1rem;
}
.entry__content dd p,
.entry__content dd ol,
.entry__content dd ul,
.entry__content dd table {
  margin-bottom: 2rem;
}

/* not found */
#post-not-found {
  text-align: center;
  margin: 0 auto;
  padding: 1rem 0;
}

/* ==========================================================================
   Pagination - Archive
========================================================================== */
.pagination {
  text-align: center; }
.pagination ul {
  display: flex;
  justify-content: center;
  white-space: nowrap;
  padding: 0; }
.pagination li {
  padding: 0;
  margin: 0;
  overflow: hidden; }
.pagination li .page-numbers {
  margin: 0;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  font-size: 1.125rem;
  padding: .5em .75em;
  min-width: 1em;
  display: block;
  position: relative;
  color: var(--black); }
.pagination li .page-numbers:not(.current):not(.next):not(.prev):not(.dots) {
  color: var(--gray); }
.pagination li .page-numbers.current {
  cursor: default; }

/* ==========================================================================
   Pagination - Single
========================================================================== */
.paginav a.link-page-back {
  border-right: 1px solid var(--border1);
  border-left: 1px solid var(--border1);
}
.paginav a.not-post {
  pointer-events: none;
  opacity: .25;
}

/* ==========================================================================
   Lesson Icons
========================================================================== */
.lesson-icon {
  z-index: 5;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
}
.lesson-icon.icon-1 {
  color: #00BCD4; }
.lesson-icon.icon-2 {
  color: #8BC34A; }
.lesson-icon.icon-3 {
  color: #FF5722; }
.lesson-icon.icon-4 {
  color: #FFC107; }
.lesson-icon.icon-5 {
  color: #673AB7; }
.lesson-icon.icon-6 {
  color: #E91E63; }
.lesson-icon.icon-10 {
  color: #B0BEC5; }

.flag-0 {
  background: #F5F5F5; }
.flag-1 {
  background: #F7EDED; }  
.flag-2 {
  background: #EDF9F3; }
.flag-3 {
  background: #EAF1F4; }


/*********************
STEP BAR
*********************/
.stepbar {
  font-family: inherit !important;
  max-width: 46rem;
  margin: 2rem auto;
  padding: 0;
  counter-reset: step;
  z-index: 0;
  position: relative;
}
.stepbar li {
  list-style-type: none;
  width: 25%;
  font-size: 12px;
  font-weight: 400;
  padding: 0;
  position: relative;
  text-align: center;
  color: var(--gray);
}
.stepbar li:before {
  display: block;
  width: 30px;
  height: 30px;
  font-weight: 700;
  line-height: 26px;
  content: counter(step);
  counter-increment: step;
  text-align: center;
  font-style: normal;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #FFF;
  border: 2px solid currentColor;
}
.stepbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  border-top: 2px solid var(--l-gray2);
  position: absolute;
  top: 15px;
  left: 0;
  z-index: -1;
}


.stepbar li.current {
  color: var(--color2);
  font-weight: 700;
}
.stepbar li.current:before {
  border-color: var(--color2);
  background-color: var(--color2);
  color:#fff;
}

/* ==========================================================================
   Modal
========================================================================== */
@media (min-width: 1080px) {
  .fancybox-slide--iframe .fancybox-content,
  .fancybox-slide--map .fancybox-content,
  .fancybox-slide--pdf .fancybox-content,
  .fancybox-slide--video .fancybox-content {
    width: 992px !important;
    height: 558px !important;
    margin-right: auto;
    margin-left: auto;
  }
}

.modal-cont {
  padding: 0;
  line-height: 1.75;
}
.modal-cont-head {
  padding: .75rem 2rem;
  background-color: var(--l-gray);
}
.modal-cont-card .modal-cont-head {
  padding: 2rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: rgba(255,255,255,0.8);
  text-align: center;
  position: relative;
}
.modal-cont-card .modal-cont-head:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.modal-cont-card .modal-cont-head * {
  position: relative;
}
.modal-cont-card .modal-cont-head small {
  display: block;
}
.modal-cont-card .fancybox-close-small {
  color: #FFF;
}
.modal-cont-body {
  width: 100%;
  padding: 1.5rem 2rem 2rem;
  overflow: auto;
}
.modal-cont hr {
  margin: 1.5em 0;
}
.modal-cont table {
  width: 100%;
  min-width: 18rem;
  letter-spacing: 0;
}
.modal-cont table caption {
  background-color: var(--l-gray);
}
.modal-cont table th {
  text-align: left;
  padding: .4em 1.25em .4em .25em;
  color: var(--d-gray);
  font-size: .813rem;
  font-weight: 400;
  border-bottom: 1px solid var(--border1);
}
.modal-cont table td {
  padding: .4em .25em;
  border-bottom: 1px solid var(--border1);
}
.modal-cont .btn {
  min-width: inherit;
  width: 100%;
}
.modal-cont table + table {
  margin-top: 1rem;
}

.modal-cont table.table-price {
  font-size: .875em;
  line-height: 1.5;
  letter-spacing: 0;
}
.modal-cont table.table-price th {
  color: var(--d-gray);
  background-color: var(--l-gray2);
  border: 1px solid var(--border1);
  vertical-align: middle;
  text-align: center;
  line-height: 1.5;
  padding: .5em;
}
.modal-cont table.table-price td {
  border: 1px solid var(--border1);
  vertical-align: middle;
  text-align: center;
  line-height: 1.5;
  padding: .5em;
}
.modal-cont table.table-price thead {
  background-color: var(--l-gray);
  border-bottom: 2px solid var(--border1);
}
.modal-cont table.table-price thead th,
.modal-cont table.table-price thead td {
  color: var(--d-gray);
}
.modal-cont table.table-price small {
  font-size: .75em;
}
.modal-cont table.table-price hr {
  margin: .5em 0;
}

@media (min-width: 768px) {
  .modal-cont table.table-price th {
    padding: .75em 1em;
  }
  .modal-cont table.table-price td {
    padding: .75em 1em;
  }
}

.login-widget .um-row {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}
.login-widget .um-field {
  padding: .5rem 0 0 0;
}
.login-widget .um-field-label {
  margin: 0;
}
.login-widget .um-login .um-field-c {
  margin-bottom: 1em;
}
.login-widget .um-login .um-col-alt-b {
  padding-top: 1em;
}


.modal-gallery.row {
  margin-right: -5px;
  margin-left: -5px;
}
.modal-gallery.row li {
  padding-right: 5px;
  padding-left: 5px;
}
.modal-gallery.row li a {
  color: #FFF;
  display: block;
  position: relative;
}
.modal-gallery.row li a::before {
  content: "\f067";
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: .1s;
}
.modal-gallery.row li a::after {
  content: '';
  display: block;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  border: 1px solid currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0.5);
  opacity: 0;
  transition: .1s;
}
.modal-gallery.row li a:hover::after {
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
}

/* ==========================================================================
   Payment
========================================================================== */
.set_pay_method {
  max-width: 450px;
  padding: 15px;
  margin: 1rem auto;
  border-top: 1px solid var(--border1);
}

/* ==========================================================================
   Form
========================================================================== */
table.form-table {
  width: 100%;
  max-width: 46rem;
  margin-right: auto;
  margin-left: auto;
}
table.form-table th {
  text-align: left;
  vertical-align: top;
  font-size: .875em;
  line-height: 1.5;
  font-weight: 600;
  padding: 1em;
  width: 25%;
  border: none;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  color: var(--color2);
}
table.form-table th em {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: var(--d-gray);
}
table.form-table td {
  vertical-align: middle;
  line-height: 1.5;
  padding: 1em;
  border: none;
  border-bottom: 1px solid transparent;
}
table.form-table td .help-block {
  margin-top: .75rem;
}

@media (max-width: 767px) {
  table.form-table th {
    width: 100%;
    display: block;
    line-height: 1.5;
    padding: .75em 1em 0;
    margin-bottom: .5rem;
    border-bottom: none;
  }
  table.form-table td {
    display: block;
    padding: 0 1em 1em;
  }
}
@media (min-width: 768px) {
  table.form-table th {
    width: 30%; }
  .form_input table.form-table th {
    padding: 1.8em 1em;
  }
  .form_input table.form-table td {
    line-height: 44px;
  }
}
@media (max-width: 575px) {
  table.form-table {
    width: 100vw;
    margin-right: -15px;
    margin-left: -15px;
  }
}


.form-note {
  margin-bottom: 4rem;
}
.form-group {
  margin-bottom: 2rem;
}
.form-row {
  display: flex;
  align-items: center;
}
.form-row > *:not(:first-child) {
  margin-left: .5em;
}
.form-row:not(:last-of-type) {
  margin-bottom: 1rem;
}
.form-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin: 3rem -.5rem;
}
.form-buttons .btn {
  margin: 0 .5rem 1rem;
}
.form-buttons .back {
  border: 0;
  font-size: .938rem;
  display: block;
  margin: 0 .5rem 1rem;
  padding: 1em 1.5em;
  min-width: 100px;
  border: none;
  text-decoration: none;
  background-color: var(--l-gray);
  color: var(--d-gray);
  box-shadow: none;
}
.form-buttons .back span {
  text-decoration: underline;
}
table.form-table + .form-buttons{
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
}

::placeholder {
  color: var(--border1);
  letter-spacing: 0; }
::-ms-input-placeholder {
  color: var(--border1);
  letter-spacing: 0; }
:-ms-input-placeholder {
  color: var(--border1);
  letter-spacing: 0; }

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background-color: #FFF;
  border: 2px solid var(--gray);
  border-radius: .25em;
  outline: 0;
  box-sizing: border-box;
  font-size: 16px;
  color: inherit;
  transition: border 0.2s ease-out;
}
input:not([type="submit"]):focus,
textarea:focus,
select:focus {
  outline: 0;
  border: 2px solid var(--d-gray);
}
label {
  cursor: pointer;
}
input[type="number"] {
  height: 44px;
  padding: 12px;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="tel"] {
  width: 100%;
  height: 44px;
  padding: 12px;
}
input[type="password"] {
  letter-spacing: .2em;
}
textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
}
select {
  width: 290px;
  max-width: 100%;
  height: 44px;
  padding-left: 12px;
  padding-right: 30px;
  background: url(assets/common/img/icon-arrow-down.svg) no-repeat center right 10px/11px 7px;
}
select::-ms-expand {
  display: none;
}
select.number-select {
  width: 80px;
}

.checkbox-box,
.radio-box {
  display: flex;
  align-items: center;
  min-height: 40px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.checkbox-box.disabled,
.radio-box.disabled {
  opacity: .5;
}
.form-row .checkbox-box,
.form-row .radio-box {
  margin-bottom: 0 !important;
}
.checkbox-box-caption,
.radio-box-caption {
  line-height: 42px;
  font-size: 0.813rem;
  color: var(--d-gray);
  position: relative;
  z-index: 2;
}
.checkbox-box-caption::before,
.radio-box-caption::before {
  content: '';
  width: 100%;
  height: 1px;
  content: '';
  border-top: 1px dashed var(--border1);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
.checkbox-box-caption > span,
.radio-box-caption > span {
  display: inline-block;
  padding: 0 .5em;
  margin-left: 1.75em;
  background: #FFF;
}
.checkbox-box-cap,
.radio-box-cap {
  margin-left: 2em;
  margin-bottom: 8px;
  padding: .5em;
  border-radius: .25em;
  line-height: 1;
  font-size: 16px;
  background-color: var(--l-gray);
  color: var(--d-gray);
  position: relative;
  z-index: 2;
}
.checkbox-box-cap > span,
.radio-box-cap > span {
  display: block;
  font-size: 0.813rem;
}


input[type="checkbox"],
input[type="radio"] {
  width: 1.5em;
  height: 1.5em;
  margin: 0 .5em 0 0;
  position: relative;
}
input[type="radio"] {
  border-radius: 50%;
}
input[type="checkbox"] + span,
input[type="radio"] + span {
  display: inline-block;
  line-height: 1.5;
  vertical-align: middle;
  margin-right: 2em;
}
input[type="checkbox"]::before {
  content: '';
  display: block;
  width: .75em;
  height: .5em;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-75%) rotate(-45deg);
}
input[type="radio"]::before {
  content: '';
  display: block;
  width: .5em;
  height: .5em;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
  border-color: transparent;
  background-color: var(--color2);
}
input[type="radio"]:checked::before {
  opacity: 1;
}

.red input[type="checkbox"],
.red input[type="radio"] {
  border-color: transparent;
  background-color: #ffeeee;
}
.red input[type="checkbox"]:checked,
.red input[type="radio"]:checked {
  background-color: var(--red);
}



.form-label .req {
  position: relative;
}
.form-label .req::after,
input[type="checkbox"].req + span::after,
input[type="radio"].req + span::after {
  content: '*';
  display: inline-block;
  color: var(--red);
  margin-left: .25em;
}

.error-field input[type="text"],
.error-field input[type="email"],
.error-field input[type="number"],
.error-field input[type="checkbox"],
.error-field input[type="radio"],
.error-field textarea,
.error-field select {
  border-color: var(--red);
}
.error-field input[type="text"],
.error-field input[type="email"],
.error-field input[type="number"],
.error-field textarea,
.error-field select {
  background-color: #FFFAFA;
}


input:disabled {
  color: var(--d-gray);
}

.mw_wp_form .form-box .error {
  font-size: .813rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--red);
}
.mw_wp_form:not(.mw_wp_form_input) .input-only {
  display: none;
}
.mw_wp_form:not(.mw_wp_form_confirm) .confirm-only {
  display: none;
}

@media (min-width: 576px) {
  .mw_wp_form_confirm .form-box .form-group {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border1);
  }
  .mw_wp_form_confirm .form-box .form-group .form-label {
    flex: 0 0 33%;
    max-width: 33%;
    margin-bottom: 0;
  }
  .mw_wp_form_confirm .form-box .form-group .form-field {
    flex: 0 0 67%;
    max-width: 67%;
  }
}
