@charset "utf-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

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;
}

body {
  line-height:1;
  word-break: break-all;
}

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;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  line-height: 1.75;
  font-family: inherit;
  font-size: inherit;
  vertical-align:middle;
}
input[type="submit"] {
  cursor: pointer;
}

/* ----------------------------
  layout - outline
---------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}
button {
  cursor: pointer;
}

:focus {
  outline: none;
}

body {
  padding-top: 50px;
  min-width: 320px;
  position: relative;
  color: #333;
  font-family: Arial, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  background: #f2f2f2;
  -webkit-text-size-adjust: 100%;
}

@media screen and (min-width: 768px), print {
  body {
    min-width: 1100px;
    padding: 0;
  }
}

@media (hover: hover) {
  a {
    transition: color 0.2s ease-in;
  }

  a:hover {
    color: #179184;
  }
}


/* ----------------------------
  .global-header
---------------------------- */
@media screen and (max-width: 767px) {
  .global-header {
    line-height: 1.5;
    position: fixed;
    height: 50px;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 4px 0px rgba(4, 0, 0, 0.2);
    z-index: 900;
  }

  .global-header .gh-nav-icon {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 0;
    text-indent: -9999px;
    color: #FFF;
    -webkit-appearance: none;
    background: transparent;
    z-index: 910;
  }

  .global-header .gh-nav-icon span {
    position: absolute;
    display: block;
    width: 25px;
    height: 2px;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #179184;
    overflow: hidden;
  }

  .global-header .gh-nav-icon span:nth-of-type(1) {
    transform: translateY(-9px) rotate(0);
  }

  .global-header .gh-nav-icon[data-default="false"] span:nth-of-type(1) {
    animation: nav-icon-bar01 .25s forwards;
  }

  .global-header.is-open .gh-nav-icon span:nth-of-type(1) {
    animation: nav-icon-bar01-open .25s forwards;
  }

  .global-header .gh-nav-icon[data-default="false"] span:nth-of-type(2) {
    animation: nav-icon-bar02 .25s forwards;
  }

  .global-header.is-open .gh-nav-icon span:nth-of-type(2) {
    animation: nav-icon-bar02-open .25s forwards;
  }

  .global-header .gh-nav-icon span:nth-of-type(3) {
    transform: translateY(9px) rotate(0);
  }

  .global-header .gh-nav-icon[data-default="false"] span:nth-of-type(3) {
    animation: nav-icon-bar03 .25s forwards;
  }

  .global-header.is-open .gh-nav-icon span:nth-of-type(3) {
    animation: nav-icon-bar03-open .25s forwards;
  }

  @keyframes nav-icon-bar01 {
    0% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-9px) rotate(0); }
  }

  @keyframes nav-icon-bar01-open {
    0% { transform: translateY(-9px) rotate(0); }
    50% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(0) rotate(45deg); }
  }

  @keyframes nav-icon-bar02 {
    0% { transform: rotateX(90deg); }
    50% { transform: rotateX(90deg); }
    100% { transform: rotateX(0); }
  }

  @keyframes nav-icon-bar02-open {
    0% { transform: rotateX(0); }
    50% { transform: rotateX(90deg); }
    100% { transform: rotateX(90deg); }
  }

  @keyframes nav-icon-bar03 {
    0% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(9px) rotate(0); }
  }

  @keyframes nav-icon-bar03-open {
    0% { transform: translateY(9px) rotate(0); }
    50% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(0) rotate(-45deg); }
  }

  .global-header .gh-logo {
    position: absolute;
    width: 142px;
    height: 32px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .global-header .gh-help {
    display: none;
  }

  .global-header .gh-login {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 0;
    top: 0;
  }

  .global-header .gh-login a {
    display: block;
    width: 50px;
    height: 50px;
    background: url(../img/common/gh_login_sp.png) no-repeat center center;
    background-size: 40px 40px;
    text-indent: -9999px;
    overflow: hidden;
  }

  .global-header .gh-register {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 50px;
    top: 0;
  }

  .global-header .gh-register a {
    display: block;
    width: 50px;
    height: 50px;
    background: url(../img/common/gh_regist_sp.png) no-repeat center center;
    background-size: 40px 40px;
    text-indent: -9999px;
    overflow: hidden;
  }

  .global-header .gh-logout {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 50px;
    top: 0;
  }

  .global-header .gh-logout a {
    display: block;
    width: 50px;
    height: 50px;
    background: url(../img/common/gh_logout_sp.png) no-repeat center center;
    background-size: 40px 40px;
    text-indent: -9999px;
    overflow: hidden;
  }

  .global-header .gh-unread {
    display: none;
  }

  .global-header .gh-mypage {
    display: none;
  }

  .global-header .gh-user {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 0;
    top: 0;
  }

  .global-header .gh-user>a {
    display: block;
    width: 50px;
    height: 50px;
    padding: 5px;
  }

  .global-header .gh-user .gh-user-name {
    display: none;
  }

  .global-header .gh-user .gh-user-thumb {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
  }

  .global-header .gh-user .gh-user-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
  }

  .global-header .gh-user .gh-user-unread span {
    display: block;
    position: absolute;
    padding: 3px 5px;
    font-size: 8px;
    font-weight: bold;
    color: #fff;
    border: solid 1px red;
    border-radius: 20px;
    background: red;
    line-height: initial;
    top: 2px;
    right: 2px;
  }

  .global-nav-sp {
    position: fixed;
    padding: 0 20px 20px;
    width: 80%;
    height: calc(100% - 50px);
    top: 50px;
    left: -90%;
    background: #FFF;
    z-index: 899;
    overflow: scroll;
    transition: left 0.2s ease-in;
  }

  .global-header.is-open~.global-nav-sp {
    left: 0;
  }

  .global-nav-sp > ul > li {
    border-bottom: solid 1px #dedede;
  }

  .global-nav-sp > ul > li > a {
    position: relative;
    display: flex;
    padding: 15px 0;
    font-weight: bold;
  }

  .global-nav-sp > ul > li > a::before {
    display: block;
    content: '';
    margin-right: 0.5em;
    width: 1.5em;
    height: 1.5em;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .global-nav-sp > ul > li.gnav-home a::before {
    background-image: url(../img/common/icon_nav_home.png);
  }

  .global-nav-sp > ul > li.gnav-search a::before {
    background-image: url(../img/common/icon_nav_search.png);
  }

  .global-nav-sp > ul > li.gnav-mypage a::before {
    background-image: url(../img/common/icon_nav_mypage.png);
  }
    .global-nav-sp > ul > li.gnav-mypage a .aside-nav-mypage-user-unread {
      width: 20px;
      height: 20px;
      color: #fff;
      border: solid 1px red;
      border-radius: 20px;
      background: red;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      margin: 1px 0 0 10px;
      font-size: 12px;
    }

  .global-nav-sp > ul > li.gnav-policy a::before {
    background-image: url(../img/common/icon_nav_policy.png);
  }

  .global-nav-sp > ul > li.gnav-help a::before {
    background-image: url(../img/common/icon_nav_policy.png);
  }

  .global-nav-sp > ul > li > a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2px;
    margin: auto 0;
    display: block;
    content: '';
    width: 6px;
    height: 10px;
    background: url(../img/common/arrow_01.svg) no-repeat center center;
    background-size: contain;
  }

  .global-nav-sp > ul > li > .gnav-toggle {
    position: relative;
    display: block;
    padding: 15px 0;
    font-weight: bold;
  }

  .global-nav-sp > ul > li > .gnav-toggle::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2px;
    margin: auto 0;
    display: block;
    content: '';
    width: 6px;
    height: 10px;
    background: url(../img/common/arrow_01.svg) no-repeat center center;
    background-size: contain;
    transform: rotate(90deg);
    transition: transform 0.2s;
  }

  .global-nav-sp > ul > li > .gnav-toggle.is-open::after {
    transform: rotate(-90deg);
  }

  .global-nav-sp ul.gnav-secondary {
    position: relative;
    display: none;
    margin-top: -10px;
    padding-bottom: 5px;
  }

  .global-nav-sp ul.gnav-secondary li a {
    display: block;
    padding: 5px 10px;
  }

  .global-nav-sp ul.gnav-secondary li.is-active a {
    color: #8e6d4c;
  }

  .wrapper {
    width: 100%;
  }

  .wrapper::after {
    content: '';
    transition: background 0.2s;
  }

  .global-header.is-open~.wrapper::after {
    content: '';
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 898;
  }
}

@media screen and (min-width: 768px), print {
  .global-header {
    min-width: 1200px;
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    z-index: 900;
  }

  .global-header .gh-inner {
    display: block;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 25px;
  }

  .global-header .gh-logo {
    width: 174px;
    height: 39px;
  }

  .global-header .gh-help {
    height: 35px;
    margin-left: auto;
  }

  .global-header .gh-help a {
    display: flex;
    height: 35px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 33px;
    color: #179184;
    border: solid 1px #179184;
    border-radius: 3px;
    background: #fff;
  }

  .global-header .gh-register {
    height: 35px;
    margin-left: 20px;
  }

  .global-header .gh-register a {
    display: flex;
    height: 35px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 33px;
    color: #fff;
    border: solid 1px #179184;
    border-radius: 3px;
    background: #179184;
  }

  .global-header .gh-register a::before {
    content: '';
    margin-right: 5px;
    display: block;
    width: 22px;
    height: 22px;
    background: url(../img/common/gh_regist.png) no-repeat center center;
    background-size: contain;
  }

  .global-header .gh-login {
    height: 35px;
    margin-left: 20px;
  }

  .global-header .gh-login a {
    display: flex;
    height: 35px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 33px;
    color: #179184;
    border: solid 1px #179184;
    border-radius: 3px;
    background: #fff;
  }

  .global-header .gh-login a::before {
    content: '';
    margin-right: 5px;
    display: block;
    width: 22px;
    height: 22px;
    background: url(../img/common/gh_login.png) no-repeat center center;
    background-size: contain;
  }

  .global-header .gh-logout {
    height: 35px;
    margin-left: 20px;
  }

  .global-header .gh-logout a {
    display: flex;
    height: 35px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 33px;
    color: #179184;
    border: solid 1px #179184;
    border-radius: 3px;
    background: #fff;
  }

  .global-header .gh-logout a::before {
    content: '';
    margin-right: 5px;
    display: block;
    width: 22px;
    height: 22px;
    background: url(../img/common/gh_logout.png) no-repeat center center;
    background-size: contain;
  }

  .global-header .gh-user .gh-user-unread {
    display: block;
    position: relative;
  }

  .global-header .gh-user .gh-user-unread span {
    display: block;
    position: absolute;
    padding: 5px 0px;
    text-align: center;
    font-size: 8px;
    font-weight: bold;
    color: #fff;
    border: solid 1px red;
    border-radius: 40px;
    background: red;
    line-height: 8px;
    top: -30px;
    right: -5px;
    width: 19px;
  }

  .global-header .gh-mypage {
    height: 35px;
    margin-left: 20px;
  }

  .global-header .gh-mypage a {
    display: flex;
    height: 35px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 33px;
    color: #179184;
    border: solid 1px #179184;
    border-radius: 3px;
    background: #fff;
  }

  .gh-user {
    padding-left: 20px;
    margin-left: 20px;
    border-left: solid 1px #dedede;
  }

  .gh-user>a {
    height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .gh-user .gh-user-thumb {
    margin-left: 10px;
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
  }

  .gh-user .gh-user-thumb img {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
  }

  .global-header .gh-nav-icon {
    font-size: 10px;
    display: none!important;
  }

  .global-nav-sp {
    display: none;
  }
}

/* ----------------------------
  .global-footer
---------------------------- */
.global-footer .gf-inner {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.global-footer .gf-inner .gf-nav ul {
  display: inline-flex;
}

.global-footer .gf-inner .gf-nav ul li:not(:last-child) {
  margin-right: 1em;
}

.global-footer .gf-inner .gf-nav ul li a {
  display: inline-block;
}

.global-footer .gf-inner .gf-nav ul li a::before {
  display: inline-block;
  content: '';
  margin-right: 0.5em;
  vertical-align: middle;
  width: 0.45em;
  height: 0.45em;
  border-style: solid;
  border-color: #179184;
  border-width: 1.5px 1.5px 0 0;
  transform: rotate(45deg);
}

.global-footer .gf-inner .gf-copyright {
  display: block;
  font-size: 11px;
  font-style: normal;
  color: #999;
}

@media screen and (max-width: 767px) {
  .global-footer {
    padding-top: 0.5em;
    border-top: solid 1px #eeede7;
  }

  .global-footer .gf-inner .gf-nav {
    font-size: 12px;
  }

  .global-footer .gf-inner .gf-copyright {
    text-align: center;
  }
}

@media screen and (min-width: 768px), print {
  .global-footer {
    padding: 10px 0;
  }

  .global-footer .gf-inner {
    display: flex;
    justify-content: space-between;
  }

  .global-footer .gf-inner .gf-copyright {
    font-size: 13px;
  }
}

/* ----------------------------
  .breadcrumbs
---------------------------- */
.breadcrumbs {
  width: 100%;
  max-width: 1200px;
  margin: 0.5em auto;
  padding: 0;
  font-size: 13px;
}

.breadcrumbs ul {
  letter-spacing: -.4em;
}

.breadcrumbs ul li {
  display: inline-block;
  letter-spacing: normal;
  white-space: nowrap;
}

.breadcrumbs ul li:not(:first-child) {
  position: relative;
  margin-left: 0.5em;
  padding-left: 1em;
}

.breadcrumbs ul li:not(:first-child)::before {
  position: absolute;
  display: block;
  box-sizing: border-box;
  content: '';
  width: 0.5em;
  height: 0.5em;
  top: 0.625em;
  left: 0;
  overflow: hidden;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg) perspective(0);
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    overflow-x: auto;
  }

  .breadcrumbs::-webkit-scrollbar {
    height: 2px;
  }

  .breadcrumbs::-webkit-scrollbar-track {
    border-radius: 2px;
    background: #eee;
  }

  .breadcrumbs::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
  }

  .breadcrumbs ul {
    padding: 0 15px;
    white-space: nowrap
  }
}

@media screen and (min-width: 768px), print {
  .breadcrumbs {
    margin: 1em auto;
  }
}



/* ----------------------------
  .container
---------------------------- */
.container .container-main .main-title {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .container {
    margin: 0 auto;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
  }

  .container .container-main .main-inner {
    padding: 20px 0 40px;
    margin: 0 15px;
  }

  .container .container-main .main-title {
    padding-bottom: 18px;
    margin-bottom: 18px;
    text-align: center;
    border-bottom: solid 1px #eeede7;
  }

  .container-column .container-aside {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .container {
    margin: 0 auto;
    width: 1200px;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }

  .container-column {
    display: flex;
    overflow: hidden;
  }

  .container-column .container-main {
    flex: 0 0 75%;
    order: 2;
  }

  .container .container-main .main-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .container .container-main .main-inner {
    width: 1100px;
    margin: 0 auto;
    padding: 30px 50px 50px;
  }

  .container-column .container-main .main-inner {
    width: 720px;
  margin: 0 auto;
    padding: 30px 0 50px;
  }

  .container-column .container-main .main-inner {
    width: 720px;
  margin: 0 auto;
    padding: 30px 0 50px;
  }

  .container-column .container-aside {
    display: block!important;
    flex: 0 0 25%;
    padding: 30px;
    order: 1;
    border-right: solid 1px #f2f2f2;
  }

  .container-column .container-aside .aside-nav li {
    margin-bottom: 1em;
  }

  .container-column .container-aside .aside-nav li a {
    display: inline-flex;
  }

  .container-column .container-aside .aside-nav li a::before {
    display: block;
    content: '';
    margin-right: 0.5em;
    width: 1.5em;
    height: 1.5em;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .container-column .container-aside .aside-nav li.aside-nav-home a::before {
    background-image: url(../img/common/icon_nav_home.png);
  }

  .container-column .container-aside .aside-nav li.aside-nav-search a::before {
    background-image: url(../img/common/icon_nav_search.png);
  }

  .container-column .container-aside .aside-nav li.aside-nav-mypage a::before {
    background-image: url(../img/common/icon_nav_mypage.png);
  }
    .container-column .container-aside .aside-nav li.aside-nav-mypage a .aside-nav-mypage-user-unread {
      width: 20px;
      height: 20px;
      color: #fff;
      border: solid 1px red;
      border-radius: 20px;
      background: red;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      margin: 1px 0 0 10px;
      font-size: 12px;
    }

  .container-column .container-aside .aside-nav li.aside-nav-policy a::before {
    background-image: url(../img/common/icon_nav_policy.png);
  }

  .container-column .container-aside ul.aside-step {
    font-size: 13px;
    padding-right: 15px;
  }

  .container-column .container-aside ul.aside-step li {
    padding: 0.5em;
    margin-bottom: 0.5em;
  }

  .container-column .container-aside ul.aside-step li.is-active {
    position: relative;
    font-weight: bold;
    background: #ebf2f1;
  }

  .container-column .container-aside ul.aside-step li.is-active::after {
    display: block;
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: -13px;
    margin: auto 0;
    width: 25px;
    height: 25px;
    background: #ebf2f1;
    transform: rotate(45deg);
  }
}

/* ----------------------------
  class - section
---------------------------- */
.section-header {
  margin-bottom: 1em;
  padding: 5px 0;
  position: relative;
  font-size: 16px;
  border-bottom: solid 1px #dedede;
}

.section-header::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80px;
  height: 2px;
  background: #179184;
  overflow: hidden;
}

/* ----------------------------
  grid
---------------------------- */
.col-wrap {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  .col-wrap {
    margin: 0 auto;
    max-width: 1200px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto,
.col-sp-1, .col-sp-2, .col-sp-3, .col-sp-4, .col-sp-5, .col-sp-6, .col-sp-7, .col-sp-8, .col-sp-9, .col-sp-10, .col-sp-11, .col-sp-12, .col-sp, .col-sp-auto
{
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media screen and (max-width: 767px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
  }

  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto,
  .col-sp-1, .col-sp-2, .col-sp-3, .col-sp-4, .col-sp-5, .col-sp-6, .col-sp-7, .col-sp-8, .col-sp-9, .col-sp-10, .col-sp-11, .col-sp-12, .col-sp, .col-sp-auto
  {
    padding-right: 7.5px;
    padding-left: 7.5px;
  }

  .col-sp {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sp-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sp-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sp-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sp-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sp-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sp-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sp-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sp-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sp-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sp-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sp-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sp-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sp-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sp-first {
    order: -1;
  }

  .order-sp-last {
    order: 13;
  }

  .order-sp-0 {
    order: 0;
  }

  .order-sp-1 {
    order: 1;
  }

  .order-sp-2 {
    order: 2;
  }

  .order-sp-3 {
    order: 3;
  }

  .order-sp-4 {
    order: 4;
  }

  .order-sp-5 {
    order: 5;
  }

  .order-sp-6 {
    order: 6;
  }

  .order-sp-7 {
    order: 7;
  }

  .order-sp-8 {
    order: 8;
  }

  .order-sp-9 {
    order: 9;
  }

  .order-sp-10 {
    order: 10;
  }

  .order-sp-11 {
    order: 11;
  }

  .order-sp-12 {
    order: 12;
  }

  .offset-sp-0 {
    margin-left: 0;
  }

  .offset-sp-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sp-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sp-3 {
    margin-left: 25%;
  }

  .offset-sp-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sp-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sp-6 {
    margin-left: 50%;
  }

  .offset-sp-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sp-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sp-9 {
    margin-left: 75%;
  }

  .offset-sp-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sp-11 {
    margin-left: 91.6666666667%;
  }
}

/* ----------------------------
  class - margin
---------------------------- */
.mgt-none {
  margin-top: 0!important;
}

.mgt-xs {
  margin-top: 0.5rem!important;
}

.mgt-sm {
  margin-top: 1rem!important;
}

.mgt-md {
  margin-top: 1.5rem!important;
}

.mgt-lg {
  margin-top: 2rem!important;
}

.mgt-xl {
  margin-top: 3rem!important;
}

.mgr-none {
  margin-right: 0!important;
}

.mgr-xs {
  margin-right: 0.5rem!important;
}

.mgr-sm {
  margin-right: 1rem!important;
}

.mgr-md {
  margin-right: 1.5rem!important;
}

.mgr-lg {
  margin-right: 2rem!important;
}

.mgr-xl {
  margin-right: 3rem!important;
}

.mgb-none {
  margin-bottom: 0!important;
}

.mgb-xs {
  margin-bottom: 0.5rem!important;
}

.mgb-sm {
  margin-bottom: 1rem!important;
}

.mgb-md {
  margin-bottom: 1.5rem!important;
}

.mgb-lg {
  margin-bottom: 2rem!important;
}

.mgb-xl {
  margin-bottom: 3rem!important;
}

.mgl-none {
  margin-left: 0!important;
}

.mgl-xs {
  margin-left: 0.5rem!important;
}

.mgl-sm {
  margin-left: 1rem!important;
}

.mgl-md {
  margin-left: 1.5rem!important;
}

.mgl-lg {
  margin-left: 2rem!important;
}

.mgl-xl {
  margin-left: 3rem!important;
}

@media screen and (max-width: 767px) {
  .mgt-sp-none {
    margin-top: 0!important;
  }

  .mgt-sp-xs {
    margin-top: 0.5rem!important;
  }

  .mgt-sp-sm {
    margin-top: 1rem!important;
  }

  .mgt-sp-md {
    margin-top: 1.5rem!important;
  }

  .mgt-sp-lg {
    margin-top: 2rem!important;
  }

  .mgt-sp-xl {
    margin-top: 3rem!important;
  }

  .mgr-sp-none {
    margin-right: 0!important;
  }

  .mgr-sp-xs {
    margin-right: 0.5rem!important;
  }

  .mgr-sp-sm {
    margin-right: 1rem!important;
  }

  .mgr-sp-md {
    margin-right: 1.5rem!important;
  }

  .mgr-sp-lg {
    margin-right: 2rem!important;
  }

  .mgr-sp-xl {
    margin-right: 3rem!important;
  }

  .mgb-sp-none {
    margin-bottom: 0!important;
  }

  .mgb-sp-xs {
    margin-bottom: 0.5rem!important;
  }

  .mgb-sp-sm {
    margin-bottom: 1rem!important;
  }

  .mgb-sp-md {
    margin-bottom: 1.5rem!important;
  }

  .mgb-sp-lg {
    margin-bottom: 2rem!important;
  }

  .mgb-sp-xl {
    margin-bottom: 3rem!important;
  }

  .mgl-sp-none {
    margin-left: 0!important;
  }

  .mgl-sp-xs {
    margin-left: 0.5rem!important;
  }

  .mgl-sp-sm {
    margin-left: 1rem!important;
  }

  .mgl-sp-md {
    margin-left: 1.5rem!important;
  }

  .mgl-sp-lg {
    margin-left: 2rem!important;
  }

  .mgl-sp-xl {
    margin-left: 3rem!important;
  }
}

/* ----------------------------
  class - padding
---------------------------- */
.pdt-none {
  padding-top: 0!important;
}

.pdt-xs {
  padding-top: 0.5rem!important;
}

.pdt-sm {
  padding-top: 1rem!important;
}

.pdt-md {
  padding-top: 1.5rem!important;
}

.pdt-lg {
  padding-top: 2rem!important;
}

.pdt-xl {
  padding-top: 3rem!important;
}

.pdr-none {
  padding-right: 0!important;
}

.pdr-xs {
  padding-right: 0.5rem!important;
}

.pdr-sm {
  padding-right: 1rem!important;
}

.pdr-md {
  padding-right: 1.5rem!important;
}

.pdr-lg {
  padding-right: 2rem!important;
}

.pdr-xl {
  padding-right: 3rem!important;
}

.pdb-none {
  padding-bottom: 0!important;
}

.pdb-xs {
  padding-bottom: 0.5rem!important;
}

.pdb-sm {
  padding-bottom: 1rem!important;
}

.pdb-md {
  padding-bottom: 1.5rem!important;
}

.pdb-lg {
  padding-bottom: 2rem!important;
}

.pdb-xl {
  padding-bottom: 3rem!important;
}

.pdl-none {
  padding-left: 0!important;
}

.pdl-xs {
  padding-left: 0.5rem!important;
}

.pdl-sm {
  padding-left: 1rem!important;
}

.pdl-md {
  padding-left: 1.5rem!important;
}

.pdl-lg {
  padding-left: 2rem!important;
}

.pdl-xl {
  padding-left: 3rem!important;
}

@media screen and (max-width: 767px) {
  .pdt-sp-none {
    padding-top: 0!important;
  }

  .pdt-sp-xs {
    padding-top: 0.5rem!important;
  }

  .pdt-sp-sm {
    padding-top: 1rem!important;
  }

  .pdt-sp-md {
    padding-top: 1.5rem!important;
  }

  .pdt-sp-lg {
    padding-top: 2rem!important;
  }

  .pdt-sp-xl {
    padding-top: 3rem!important;
  }

  .pdr-sp-none {
    padding-right: 0!important;
  }

  .pdr-sp-xs {
    padding-right: 0.5rem!important;
  }

  .pdr-sp-sm {
    padding-right: 1rem!important;
  }

  .pdr-sp-md {
    padding-right: 1.5rem!important;
  }

  .pdr-sp-lg {
    padding-right: 2rem!important;
  }

  .pdr-sp-xl {
    padding-right: 3rem!important;
  }

  .pdb-sp-none {
    padding-bottom: 0!important;
  }

  .pdb-sp-xs {
    padding-bottom: 0.5rem!important;
  }

  .pdb-sp-sm {
    padding-bottom: 1rem!important;
  }

  .pdb-sp-md {
    padding-bottom: 1.5rem!important;
  }

  .pdb-sp-lg {
    padding-bottom: 2rem!important;
  }

  .pdb-sp-xl {
    padding-bottom: 3rem!important;
  }

  .pdl-sp-none {
    padding-left: 0!important;
  }

  .pdl-sp-xs {
    padding-left: 0.5rem!important;
  }

  .pdl-sp-sm {
    padding-left: 1rem!important;
  }

  .pdl-sp-md {
    padding-left: 1.5rem!important;
  }

  .pdl-sp-lg {
    padding-left: 2rem!important;
  }

  .pdl-sp-xl {
    padding-left: 3rem!important;
  }
}

/* ----------------------------
  class - color
---------------------------- */
.color-primary {
  color: #179184;
}

.color-gray {
  color: #999;
}

.color-error {
  color: #d83838;
}

/* ----------------------------
  class - text
---------------------------- */
.text-serif {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

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

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

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

@media screen and (max-width: 767px) {
  .text-sp-center {
    text-align: center!important;
  }

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

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

/* ----------------------------
  class - font
---------------------------- */
.font-xs {
  font-size: 12px!important;
}

.font-sm {
  font-size: 13px!important;
}

.font-md {
  font-size: 14px!important;
}

.font-lg {
  font-size: 16px!important;
}

.font-xl {
  font-size: 20px!important;
}

@media screen and (max-width: 767px) {
  .font-sp-md {
    font-size: 11px!important;
  }
  .font-sp-lg {
    font-size: 13px!important;
  }
}


/* ----------------------------
  class - link
---------------------------- */
a.link-normal {
  color: #179184;
  text-decoration: underline;
}

a.link-arrow {
  color: #179184;
}

a.link-arrow::before {
  display: inline-block;
  content: '';
  margin-right: 0.5em;
  vertical-align: middle;
  width: 0.45em;
  height: 0.45em;
  border-style: solid;
  border-color: #179184;
  border-width: 1.5px 1.5px 0 0;
  transform: rotate(45deg);
}
a.link-arrow:hover {
  text-decoration: underline;
}

a.link-pdf::after {
  display: inline-block;
  content: '';
  margin-right: 0.25em;
  margin-left: 0.25em;
  vertical-align: -0.25em;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/common/icon_pdf_01.svg) no-repeat center center;
  background-size: contain;
}

a.link-blank::after {
  display: inline-block;
  content: '';
  margin-right: 0.25em;
  margin-left: 0.25em;
  vertical-align: -0.25em;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_blank_01.svg) no-repeat center center;
  background-size: contain;
}

/* ----------------------------
  class - display
---------------------------- */
.d-none {
  display: none!important;
}

.d-inline-block {
  display: inline-block!important;
}

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

  .d-sp-inline-block {
    display: inline-block!important;
  }
}

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

  .d-pc-inline-block {
    display: inline-block!important;
  }
}

/* ----------------------------
  class - image
---------------------------- */
img.img-full {
  width: 100%;
}

img.img-inline {
  vertical-align: middle;
}

/* ------------------------------
  class - button
------------------------------ */
.button {
  display: inline-block;
  position: relative;
}

.button a,
.button button {
  padding: 8px 35px 8px 25px;
  font-weight: bold;
  display: inline-block;
  border: solid 1px #dedede;
  border-radius: 30px;
  font: inherit;
  -webkit-appearance: none;
}

.button::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: #179184;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  pointer-events: none;
}

.button-strong {
  display: inline-block;
  position: relative;
}

.button-strong a,
.button-strong button {
  padding: 8px 35px 8px 25px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  background: #179184;
  border: none;
  border-radius: 30px;
  transition: all 0.2s;
  font: inherit;
  -webkit-appearance: none;
}

.button-strong::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  pointer-events: none;
}

.button-strong a:hover,
.button-strong button:hover {
  color: #fff;
  background: #138477;
}

.button-disable {
  opacity: 0.4;
}

.button-disable::before {
  content: '';
  display: block;
  position: absolute;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: -5px;
  left: -5px;
  opacity: 0;
  z-index: 1;
}
.button {
  display: inline-block;
  position: relative;
}

.button-no-icon a {
  padding-right: 25px;
}
.button-no-icon:after {
  display: none;
}

@media screen and (max-width: 767px) {
  .button-sp-none a,
  .button-sp-none button {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
    padding-right: 15px;
    border: 0;
    text-decoration: underline;
    background-color: transparent;
    color: inherit
  }
  .button-sp-none:after {
    right: 0;
    border-color: #179184;
  }

}

/* ------------------------------
  class - list
------------------------------ */
ul.list-normal {
  padding-left: 1em;
}

ul.list-normal li {
  position: relative;
}

ul.list-normal li::before {
  display: block;
  position: absolute;
  left: -1em;
  top: 0.625em;
  content: '';
  width: 0.5em;
  height: 0.5em;
  overflow: hidden;
  background: #179184;
  border-radius: 50%;
}

ul.list-normal li:not(:last-child) {
  margin-bottom: 0.25em;
}

/* ------------------------------
  class - table
------------------------------ */
.table-info {
  width: 100%;
  max-width: 100%;
}

.table-info th {
  width: inherit;
  text-align: left;
  padding: 6px 1.5em 6px 0;
  white-space: nowrap;
}

.table-info td {
  padding: 6px 0;
  width: 100%;
}

.table-form tbody tr.form-col th,
.table-form tbody tr.form-col td {
  text-align: left;
  display: block;
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .table-info th {
    min-width: 210px;
  }
}

.table-form {
  width: 100%;
  max-width: 100%;
}

.table-form th {
  text-align: left;
  font-weight: bold;
  color: #999;
}

@media screen and (max-width: 767px) {
  .table-form>tbody>tr>th {
    display: block;
    margin-bottom: 5px;
  }

  .table-form>tbody>tr>td {
    display: block;
    padding-bottom: 25px;
  }
}

@media screen and (min-width: 768px), print {
  .table-form th {
    width: inherit;
    padding: 6px 1.5em 2em 0;
    white-space: nowrap;
  }

  .table-form td {
    padding: 6px 0 2em 0;
    width: 100%;
  }

  .table-form th {
    min-width: 210px;
  }

  .table-form tr.form-col {
    display: block;
    width: 100%;
  }

  .table-form tr.form-col th,
  .table-form tr.form-col td {
    padding: 0;
    width: 100%;
  }

}

/* ------------------------------
  class - hanging
------------------------------ */
table.hanging {
  border-collapse: collapse;
}

table.hanging>tbody>tr>td {
  padding: 0 0 0.25em;
  vertical-align: top;
  border: none;
}

table.hanging .hanging-icon {
  white-space: nowrap;
}

/* ----------------------------
  class - icon-status
---------------------------- */
.icon-status-success {
  display: inline-block;
  background: #ebf2f1;
  color: #179184;
  font-weight: normal!important;
  line-height: 1.5;
  padding: 0 0.4em;
  border-radius: 2px;
}
.icon-status-success.border {
  border: 1px solid #d1dad9;
}

.icon-status-warning {
  display: inline-block;
  background: #f3ecd5;
  color: #e9771b;
  font-weight: normal!important;
  line-height: 1.5;
  padding: 0 0.4em;
  border-radius: 2px;
}
.icon-status-warning.border {
  border: 1px solid #dcc1b2;
}

.icon-status-error {
  display: inline-block;
  background: #f3d5d5;
  color: #d83838;
  font-weight: normal!important;
  line-height: 1.5;
  padding: 0 0.4em;
  border-radius: 2px;
}
.icon-status-error.border {
  border: 1px solid #dcc1b2;
}

.icon-status-complete {
  display: inline-block;
  background: #f0f0f0;
  color: #777;
  font-weight: normal!important;
  line-height: 1.5;
  padding: 0 0.4em;
  border-radius: 2px;
}
.icon-status-complete.border {
  border: 1px solid #ccc;
}

.icon-status-borrow {
  display: inline-block;
  background: #179184;
  color: #fff;
  font-weight: normal!important;
  line-height: 1.5;
  padding: 0 0.4em;
  border-radius: 2px;
}
.icon-status-borrow.border {
  border: 1px solid #d1dad9;
}

.icon-status-lend {
  display: inline-block;
  background: #e9771b;
  color: #fff;
  font-weight: normal!important;
  line-height: 1.5;
  padding: 0 0.4em;
  border-radius: 2px;
}
.icon-status-lend.border {
  border: 1px solid #e9771b;
}

[class^="icon-status"].wide {
  min-width: 8em;
  padding: .2em 0;
  text-align: center;
  letter-spacing: 0.1em;
}


/* ----------------------------
  class - form
---------------------------- */
input, textarea {
  -webkit-appearance: none;
}

.icon-required {
  display: inline-block;
  background: #ea6d6d;
  color: #fff;
  font-size: 12px;
  font-weight: normal!important;
  line-height: 1.5;
  margin: 0 0.4em;
  padding: 0 0.4em;
  border-radius: 2px;
}

*::placeholder {
  color: #999;
}

.form-heading {
  font-weight: bold;
  color: #999;
}

input[type="tel"].form-text {
  width: 11em;
}

.form-text,
.form-text-full {
  background: #fff;
  font-size: 16px;
  padding: 8px;
  border: solid 1px #dedede;
  border-radius: 2px;
}

.form-text-full {
  width: 100%;
}

.form-select {
  position: relative;
  background: #fff;
  border: solid 1px #dedede;
  border-radius: 2px;
}

.form-select::after {
  position: absolute;
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  top: 17px;
  right: 14px;
  border-style: solid;
  border-color: #179184;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-select select {
  width: 100%;
  padding: 8px 30px 8px 8px;
  font-size: 16px;
  line-height: 1.75;
  cursor: pointer;
  text-overflow: ellipsis;
  background: transparent;
  background-image: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-textarea {
  background: #fff;
  font-size: 16px;
  padding: 8px;
  border: solid 1px #dedede;
  border-radius: 2px;
  width: 100%;
  height: calc(16px + 7em);
  max-width: 100%;
  vertical-align: top;
}

.form-submit {
  min-width: 140px;
  position: relative;
  margin: 0 auto;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
}

.form-submit::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  padding: 0;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  pointer-events: none;
}

.form-submit input[type="submit"] {
  width: 100%;
  -webkit-appearance: none;
  border: none;
  background: #179184;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 1.75;
  padding: 10px 35px 10px 25px;
  border-radius: 30px;
  transition: all 0.2s;
}

.form-submit input[type="submit"][disabled] {
  opacity: .6;
  cursor: not-allowed;
}

.form-submit input[type="submit"]:not([disabled]):hover {
  background: #138477;
}

.form-back {
  min-width: 140px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}

.form-back button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto 0;
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: #666;
  border-width: 2px 2px 0 0;
  transform: rotate(225deg);
  pointer-events: none;
}

.form-back button {
  width: 100%;
  -webkit-appearance: none;
  border: none;
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  color: #666;
  line-height: 1.75;
  padding: 9px 24px 9px 34px;
  border: solid 1px #dedede;
  border-radius: 30px;
  transition: all 0.2s;
}

.form-back button:hover {
  background: #ebf2f1;
}

.form-cancel {
  min-width: 140px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}

.form-cancel button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto 0;
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: #d83838;
  border-width: 2px 2px 0 0;
  transform: rotate(225deg);
  pointer-events: none;
}

.form-cancel button {
  width: 100%;
  -webkit-appearance: none;
  border: none;
  background: #f3d5d5;
  font-size: 16px;
  font-weight: bold;
  color: #d83838;
  line-height: 1.75;
  padding: 9px 24px 9px 34px;
  border: solid 1px #dedede;
  border-radius: 30px;
  transition: all 0.2s;
}

.form-cancel button:hover {
  background: #f5e9e9;
}

@media screen and (min-width: 768px), print {
  .form-back .font-md::after,
  .form-cancel .font-md::after {
    transform: rotate(225deg) translate(1px, 1px);
  }
}

.form-photo {
  position: relative;
  width: 100px;
  height: 100px;
  border: solid 1px #dedede;
  border-radius: 50%;
  overflow: hidden;
}

.form-photo label {
  display: block;
}

.form-photo a,
.form-photo input[type="file"] {
  display: none;
}

.form-photo img {
  position: absolute;
  width: 100%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-photo .photo-change {
  position: absolute;
  width: 100%;
  padding: 0.25em;
  text-align: center;
  font-size: 13px;
  color: #fff;
  bottom: 0;
  background: rgba(23, 145, 134, 0.8);
}

.form-img-confirm img {
  vertical-align: top;
}

.form-name-wrap {
  display: flex;
}

.form-name-wrap .form-name {
  display: flex;
  width: 100%;
  background: #fff;
  border: solid 1px #dedede;
  border-radius: 2px;
  overflow: hidden;
}

.form-name-wrap .form-name:not(:last-child) {
  margin-right: 16px;
}

.form-name-wrap .form-name label {
  display: block;
  width: 40px;
  padding: 8px 0;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: #999;
  background: #f2f2f2;
}

.form-name-wrap .form-name input {
  font-size: 16px;
  width: calc(100% - 40px);
  padding: 8px;
  border: none;
  background: none;
}

.form-bday-wrap {
  display: flex;
  flex-wrap: wrap;
}

.form-bday-wrap .form-bday {
  margin-bottom: 0.5em;
  position: relative;
  background: #f2f2f2;
  border-radius: 2px;
}

.form-bday-wrap .form-bday::after {
  position: absolute;
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  top: 17px;
  right: 14px;
  border-style: solid;
  border-color: #179184;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-bday-wrap .form-bday:not(:last-child) {
  margin-right: 16px;
}

.form-bday-wrap .form-bday select {
  padding: 8px 30px 8px 8px;
  font-size: 16px;
  line-height: 1.75;
  cursor: pointer;
  text-overflow: ellipsis;
  background: transparent;
  background-image: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-radio-group {
  display: flex;
  justify-content: flex-start;
  font-size: 16px;
}

.form-radio-group li:not(:last-child) {
  margin-right: 16px;
}

.form-radio-group li label {
  position: relative;
  padding: 8px 20px 8px 40px;
  background: #f2f2f2;
  border-radius: 2px;
}

.form-radio-group li label::before {
  display: block;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  content: '';
  width: 14px;
  height: 14px;
  background: #fff;
  border: solid 1px #dedede;
  border-radius: 50%;
}

.form-radio-group li input[type="radio"] {
  display: none;
}

.form-radio-group li input[type="radio"]:checked+label::after {
  display: block;
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  content: '';
  width: 6px;
  height: 6px;
  background: #179184;
  border-radius: 50%;
}

.form-postal-wrap {
  display: flex;
  align-items: center;
}

.form-postal-wrap input {
  margin-right: 16px;
  width: 8em;
}

.form-address {
  position: relative;
  display: flex;
  background: #fff;
  border: solid 1px #dedede;
  border-radius: 2px;
  overflow: hidden;
}

.form-address+.form-address {
  margin-top: 1em;
}

.form-address label {
  display: block;
  width: 80px;
  padding: 8px 0;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: #999;
  background: #f2f2f2;
}

.form-address .form-address-select {
  position: relative;
  width: calc(100% - 80px);
}

.form-address .form-address-select::after {
  position: absolute;
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  top: 17px;
  right: 14px;
  border-style: solid;
  border-color: #179184;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-address .form-address-select select {
  padding: 8px 38px 8px 8px;
  width: 100%;
  font-size: 16px;
  line-height: 1.75;
  cursor: pointer;
  text-overflow: ellipsis;
  background: transparent;
  background-image: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-address input {
  font-size: 16px;
  width: calc(100% - 80px);
  padding: 8px;
  border: none;
  background: none;
}

.form-check input[type="checkbox"] {
  display: none;
}

.form-check label {
  position: relative;
  padding-left: 1.5em;
}

.form-check label::before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  top: 0;
  left: 0;
  overflow: hidden;
  background: #fff;
  border: solid 1px #dedede;
}

.form-check input[type="checkbox"]:checked + label::after {
  content: '';
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.4em;
  left: 0.2em;
  top: 0.2em;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  border-style: solid;
  border-color: #179184;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
  backface-visibility: hidden;
}

.form-cardlimit-wrap {
  display: flex;
  align-items: center;
}

.form-cardlimit-wrap .form-cardlimit {
  position: relative;
  background: #f2f2f2;
  border-radius: 2px;
}

.form-cardlimit-wrap .form-cardlimit::after {
  position: absolute;
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  top: 17px;
  right: 14px;
  border-style: solid;
  border-color: #179184;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-cardlimit-wrap .form-cardlimit select {
  padding: 8px 30px 8px 8px;
  font-size: 16px;
  line-height: 1.75;
  cursor: pointer;
  text-overflow: ellipsis;
  background: transparent;
  background-image: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-cardname .form-text,
.form-cardnum .form-text {
  width: 300px;
}

.form-cardsecurity .form-text {
  width: 5em;
}

.form-authtype {
  position: relative;
  background: #f2f2f2;
  border-radius: 2px;
}

.form-authtype::after {
  position: absolute;
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  top: 17px;
  right: 14px;
  border-style: solid;
  border-color: #179184;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-authtype select {
  width: 100%;
  padding: 8px 30px 8px 8px;
  font-size: 16px;
  line-height: 1.75;
  cursor: pointer;
  text-overflow: ellipsis;
  background: transparent;
  background-image: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-itemdata-wrap+.form-itemdata-wrap {
  margin-top: 10px;
}

.form-itemdata {
  display: inline-flex;
  width: calc(100% - 4em);
  background: #fff;
  border: solid 1px #dedede;
  border-radius: 2px;
  overflow: hidden;
}

.form-itemdata label {
  display: inline-block;
  width: 100px;
  padding: 8px 0;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: #999;
  background: #f2f2f2;
}

.form-itemdata input {
  font-size: 16px;
  width: calc(100% - 100px);
  padding: 8px;
  border: none;
  background: none;
}

.form-complete {
  padding: 15px;
  text-align: center;
  font-weight: bold;
  background: #ebf2f1;
}

@media screen and (max-width: 767px) {
  .form-photo {
    margin: 0 auto;
  }
}

.photo-trimming-inner {
  background: #fff;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: content-box
}

@media screen and (min-width: 768px), print {
  .photo-trimming-inner {
    padding: 40px;
  }
}

.accepted-cards ul {
  display: inline-flex;
}

.accepted-cards ul li:not(:first-child) {
  margin-left: 10px;
}

/* ----------------------------
  .dropify
---------------------------- */
input[type="file"].dropify {
  font-size: 16px;
  letter-spacing: -.4em;
}

.dropify-wrapper.touch-fallback .dropify-clear {
  top: inherit;
  bottom: inherit;
  background: #fff;
}

.dropify-wrapper .dropify-preview .dropify-render img {
  max-height: 200px;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner {
  padding: 5px 0;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p {
  white-space: inherit;
}

/* ----------------------------
  .btn-group
---------------------------- */
.btn-group {
  margin: 20px auto;
  max-width: 580px;
  border: solid 1px #179184;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
}

.btn-group .btn-item {
  width: 100%;
}

.btn-group .btn-item > * {
  padding: 9px;
  color: #179184;
  display: block;
  font-weight: bold;
  text-align: center;
}

.btn-group .btn-item > *:not(:last-child) {
  border-right: solid 1px #179184;
}

.btn-group .btn-item > a {
  position: relative;
}

.btn-group .btn-item > a::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto 0;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-color: #179184;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  pointer-events: none;
}

.btn-group .btn-item.btn-item-active > * {
  color: #fff;
  background: #179184;
}

@media screen and (min-width: 768px), print {
  .btn-group {
    font-size: 16px;
  }
}

/* ----------------------------
  calender
---------------------------- */
.calender-wrap {
  position: relative;
  margin: 0 auto;
  width: 275px;
  max-height: 350px;
  overflow: hidden;
}

.calender-wrap .slick-arrow {
  position: absolute;
  top: 0;
  height: 26px;
  width: 40px;
  line-height: 26px;
  text-align: center;
  border: solid 1px #dedede;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  z-index: 1;
}

.calender-wrap .slick-arrow.slick-disabled {
  opacity: 0;
}

.calender-wrap .slick-arrow.slick-prev {
  left: 0;
}

.calender-wrap .slick-arrow.slick-next {
  right: 0;
}

.calender {
  padding: 0 1px 1px;
  width: 275px;
}

.calender .calender-month {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.calender table {
  text-align: center;
  font-size: 12px;
  width: 100%;
  table-layout: fixed;
}

.calender table * {
  box-sizing: content-box;
}

.calender table th {
  font-weight: normal;
}

.calender table td {
  padding: 0;
}

.calender table td:not(:empty) {
  padding: 6px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border: solid 1px #dedede;
  font-family: arial;
}

.calender table td a {
  width: 26px;
  height: 26px;
  display: inline-block;
  color: #179184;
  background: #ebf6f6;
  border-radius: 50%;
}

.calender table td a.update {
  background-color: #f3ecd5;
  color: #e9771b;
}

.calender table td label {
  width: 26px;
  height: 26px;
  display: inline-block;
  color: #999;
  border-radius: 50%;
  transition: all 0.2s;
}

.calender table td input[type="checkbox"] {
  display: none;
}

.calender table td input[type="checkbox"]:checked + label {
  background: #179184;
  color: #fff;
}

.calender table td span.calendar-valid {
  width: 26px;
  height: 26px;
  display: inline-block;
  background: #179184;
  color: #fff;
  border-radius: 50%;
  transition: all 0.2s;
}

/* ----------------------------
  .user
---------------------------- */
.user-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.user-wrap .user-thumb {
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50% 50%;
}

.user-wrap .user-thumb::before,
.user-wrap .user-thumb::after {
  box-sizing: border-box;
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
  background: transparent;
  border-radius: 50%;
}

.user-wrap .user-thumb::before {
  border-width: 3px;
  border-color: #fff;
  z-index: 1;
}

.user-wrap .user-thumb::after {
  border-width: 1px;
  border-color: #008489;
  z-index: 2;
}

.user-wrap .user-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.user-wrap .user-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
  line-height: 1.5;
}

.user-wrap .user-summary .user-name {
  font-size: 13px;
}

.user-wrap .user-summary .user-rating {
  display: inline-flex;
  font-size: 12px;
}

.user-wrap .user-summary .user-rating .rating-star {
  position: relative;
  width: 5.5em;
  height: 1.5em;
  letter-spacing: 0.1em;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  color: #ddd;
}

.user-wrap .user-summary .user-rating .rating-star::before {
  position: absolute;
  display: block;
  content: '★★★★★';
  width: 5em;
  height: 1.5em;
  left: 0;
  top: 0;
  text-indent: 0;
}

.user-wrap .user-summary .user-rating .rating-star span {
  display: block;
  position: absolute;
  width: 0%;
  left: 0;
  top: 0;
  overflow: hidden;
}

.user-wrap .user-summary .user-rating .rating-star span::before {
  display: block;
  content: '★★★★★';
  color: #e9c226;
  text-indent: 0;
}

.user-wrap .user-summary .user-area {
  font-size: 12px;
}

.user-wrap .user-message {
  margin-top: 10px;
  padding: 10px;
  position: relative;
  background: #eeede7;
  border-radius: 6px;
}

.user-wrap .user-message::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: -8px;
  left: 25px;
  border-style: solid;
  border-color: transparent;
  border-width: 0 5px 8px;
  border-bottom-color: #eeede7;
}

/* ----------------------------
  .pagenation
---------------------------- */
.pagenation {
  display: flex;
  justify-content: center;
}

.pagenation .pagenation-list {
  margin: 0 1.5em;
  display: inline-flex;
}

.pagenation .pagenation-next.is-disabled,
.pagenation .pagenation-prev.is-disabled {
  opacity: 0;
}

.pagenation .pagenation-next > span,
.pagenation .pagenation-next > a,
.pagenation .pagenation-prev > span,
.pagenation .pagenation-prev > a,
.pagenation .pagenation-list li > span,
.pagenation .pagenation-list li > a {
  display: block;
  text-align: center;
  width: 2em;
  height: 2em;
  line-height: 2em;
}

.pagenation .pagenation-list li > span {
  font-weight: bold;
  color: #179184;
}

/* ----------------------------
  .comming-soon
---------------------------- */
.comming-soon {
  padding: 15px;
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
  background: #ebf2f1;
}

.comming-soon strong {
  display: block;
  color: #179184;
  font-size: 20px;
}

@media screen and (min-width: 768px), print {
  .comming-soon {
    font-size: 15px;
    padding: 40px;
    margin: 40px auto;
  }
}



/* ------------------------------
  .reserve-no
------------------------------ */
.main-inner {
  position: relative;
}
.top-reserve-no {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: .5em .8em;
}
@media screen and (max-width: 767px) {
  .top-reserve-no {
    display: block;
    padding: .5em;
    margin: 0 auto 1.5em;
    text-align: center;
    border-bottom: solid 1px #dedede;
    background-color: #f8f8f8;
  }
}
@media screen and (min-width: 768px), print {
  .top-reserve-no {
    position: absolute;
    top: 30px;
    right: 0;
    height: 38px;
    border-bottom: solid 1px #dedede;
    background-color: #f8f8f8;
  }
}



/* ------------------------------
  .simple-footer
------------------------------ */

.simple-footer {
  margin: 15px 0;
  text-align: center;
}

.simple-footer .simple-copyright {
  font-size: 11px;
  font-style: normal;
  color: #999;
}

@media screen and (min-width: 768px), print {
  .simple-footer .simple-copyright {
    font-size: 13px;
  }

}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  background-image: none;
}
  .ui-datepicker .ui-datepicker-prev span::after,
  .ui-datepicker .ui-datepicker-next span::after {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 16px;
    height: 16px;
    margin: -4px 0 0 2px;
    text-indent: 0;
  }
  .ui-datepicker .ui-datepicker-prev span::after {
    content: '←';
    display: block;
  }
  .ui-datepicker .ui-datepicker-next span::after {
    content: '→';
    display: block;
  }
